/* Modern Plumbing Website CSS - 2024 Design */

/* CSS Variables */
:root {
    --primary-color: #c62020;
    --primary-dark: #a01a1a;
    --primary-light: #e02a2a;
    --secondary-color: #1c75b9;
    --accent-color: #ff6630;
    --yellow-color: #fcd057;
    --blue-light: #27a8e1;
    --success-color: #059669;
    --danger-color: #dc2626;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c62020 0%, #a01a1a 100%);
    --gradient-secondary: linear-gradient(135deg, #1c75b9 0%, #27a8e1 100%);
    --gradient-accent: linear-gradient(135deg, #ff6630 0%, #fcd057 100%);
    --gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --gradient-blue: linear-gradient(135deg, #27a8e1 0%, #1c75b9 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Modern Header */
.modern-header {
    background: var(--white);
    backdrop-filter: none;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 124px;
    overflow: hidden;
}

/* Global override for Bootstrap navbar-toggler visibility on mobile - covers all breakpoints */
@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-toggler,
    .modern-header .navbar-expand-lg .navbar-toggler,
    .navbar.navbar-expand-lg .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.modern-header .navbar {
    height: 140px;
    padding: 0;
    margin: 0;
}

.modern-header .navbar-brand {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.modern-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-900);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}
.navbar-scrolled {
    backdrop-filter: blur(10px);
}
.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: var(--gray-50);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-color);
}

.phone-link i {
    color: var(--primary-color);
}

/* Modern Hero Section - Advanced Design */
.hero-section {
    background: linear-gradient(135deg, #000 0%, #1c75b938 50%, #00000061 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    /* z-index: 2; */
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-left: 2rem;
}

.hero-slide {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: var(--transition);
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #dc2626);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(198, 32, 32, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(198, 32, 32, 0.4);
    color: var(--white);
}

/* Carousel Indicators - Progress Bar Style */
.carousel-indicators {
    position: static;
    margin-top: 2rem;
    justify-content: center;
    gap: 1rem;
    display: flex;
    align-items: center;
}

.carousel-indicators button {
    width: 50px!important;
    height: 4px!important;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #c62020, #ff6630);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.carousel-indicators button.active::before {
    width: 100%;
    background: linear-gradient(90deg, #c62020, #ff6630);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.6);
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.carousel-indicators button:hover::before {
    width: 30%;
    background: linear-gradient(90deg, #c62020, #ff6630);
}

/* Carousel Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Contact Form Card - Modern Glass Design */
.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #dc2626, #3b82f6);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-bottom-color: #f97316;
    box-shadow: 0 2px 0 rgba(249, 115, 22, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.form-control option {
    background: #1e293b;
    color: var(--white);
}

.form-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(198, 32, 32, 0.3);
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.form-btn:hover::before {
    left: 100%;
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(198, 32, 32, 0.4);
    color: var(--white);
}

/* Modern Buttons */
.btn {
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2.25rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    transition: var(--transition);
}

.service-card:hover h4 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Team Cards */
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.team-image img {
    transition: var(--transition);
    width: 100%;
    height: 446px;
    object-fit: cover;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.team-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-social .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.team-content {
    padding: 0 1rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.team-phone {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.team-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.team-phone a:hover {
    color: var(--info-color);
    text-decoration: underline;
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 1rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    position: relative;
}

.stars {
    font-size: 1.1rem;
}

.stars i {
    margin-right: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    /* Mobile Carousel Indicators */
    .carousel-indicators {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .carousel-indicators button {
        width: 40px;
        height: 3px;
    }
    
    .carousel-indicators button.active {
        transform: none;
    }
    
    /* .carousel-indicators button:hover {
        transform: scale(1.1);
    } */
    
    .about-indicators {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .about-indicators button {
        width: 40px;
        height: 3px;
    }
    
    .about-indicators button.active {
        transform: none;
    }
    
    .about-indicators button:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Small Mobile Carousel Indicators */
    .carousel-indicators {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .carousel-indicators button {
        width: 35px;
        height: 3px;
    }
    
    .carousel-indicators button.active {
        transform: none;
    }
    
    .carousel-indicators button:hover {
        transform: translateY(-1px);
    }
    
    .about-indicators {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .about-indicators button {
        width: 35px;
        height: 3px;
    }
    
    .about-indicators button.active {
        transform: none;
    }
    
    .about-indicators button:hover {
        transform: translateY(-1px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* About Section - Exact Match */
.about-section {
    background: #f8fafc url('../assets/images/body-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.85);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.section-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Feature List - Professional Design */
.feature-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    /* margin-bottom: 1.5rem; */
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Founder Profile */
.founder-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
}

.founder-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
}

.founder-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.founder-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

/* About Visuals */
.about-visuals {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Main Image Container */
.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Statistics Cards */
.stats-card {
    position: absolute;
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    width: 180px;
}

.successful-services {
    background: #f59e0b;
    color: var(--white);
    top: 15%;
    right: -10%;
}

.satisfied-clients {
    background: #2563eb;
    color: var(--white);
    bottom: 15%;
    left: -10%;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .about-visuals {
        margin-top: 3rem;
    } */
    
    .stats-card {
        position: static;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .images-grid {
        height: 400px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    
    .image-1,
    .image-2,
    .image-3 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-profile {
        flex-direction: column;
        text-align: center;
    }
}

/* Our Services Section */
.our-services-section {
    background: #fff;
    padding: 5rem 0;
    position: relative;
}

.our-services-section .section-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7F8C8D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.our-services-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.service-card-new {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon-new {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.service-icon-new i {
    font-size: 2rem;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-new {
    background: #3498DB;
    border-color: #3498DB;
    transform: scale(1.1);
}

.service-card-new:hover .service-icon-new i {
    color: var(--white);
}

.service-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
    line-height: 1.3;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.portfolio-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid #e9ecef;
    color: #2C3E50;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 32, 32, 0.3);
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.portfolio-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.portfolio-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 32, 32, 0.3);
    opacity: 0.9;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* About Us Section - Redesigned to Match Image */
.about-us-section {
    background: #F0F7FF;
    padding: 5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7F8C8D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Carousel Container */
#aboutCarousel {
    position: relative;
}

.carousel-inner {
    overflow: visible;
}

.carousel-item {
    transition: opacity 0.6s ease-in-out;
}

/* Feature Cards */
.feature-cards {
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498DB, #2196F3);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #F8F8F8;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3E50;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 2px solid #e9ecef;
}

.feature-icon i {
    color: #3498DB;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: #3498DB;
    color: var(--white);
    transform: scale(1.1);
    border-color: #3498DB;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    color: #7F8C8D;
    line-height: 1.6;
    margin: 0;
}

/* Redesigned Carousel Indicators - Circular Design */
.about-indicators {
    position: static;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about-indicators button {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(174, 205, 224, 0.3);
    border: none;
    margin: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.about-indicators button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #27a8e1, #1c75b9);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.about-indicators button.active::before {
    width: 100%;
    background: linear-gradient(90deg, #27a8e1, #1c75b9);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.6);
}

.about-indicators button:hover {
    background: rgba(174, 205, 224, 0.5);
    transform: translateY(-1px);
}

.about-indicators button:hover::before {
    width: 30%;
    background: linear-gradient(90deg, #27a8e1, #1c75b9);
}

.about-indicators button:hover {
    background: rgba(52, 152, 219, 0.15);
    border-color: #3498DB;
    transform: scale(1.15);
    box-shadow: 0 5px 18px rgba(52, 152, 219, 0.3);
}

.about-indicators button:hover::before {
    width: 8px;
    height: 8px;
}

/* Carousel Navigation Arrows (Optional) */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    border: 2px solid #3498DB;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #3498DB;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-color: #3498DB;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--white);
}

/* Modern Carousel Redesign */
.modern-carousel {
    position: relative;
    padding: 2rem 0;
}

.feature-cards-modern {
    padding: 1rem 0;
}

.feature-card-modern {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c62020, #ff6630);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(198, 32, 32, 0.15);
    border-color: rgba(198, 32, 32, 0.2);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.feature-icon-modern i {
    font-size: 2rem;
    color: #c62020;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover .feature-icon-modern {
    background: linear-gradient(135deg, #c62020 0%, #ff6630 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(198, 32, 32, 0.3);
}

.feature-card-modern:hover .feature-icon-modern i {
    color: var(--white);
    transform: scale(1.1);
}

.feature-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-title-modern {
    color: #c62020;
}

.feature-description-modern {
    font-size: 0.95rem;
    color: #7F8C8D;
    line-height: 1.7;
    margin: 0;
}

/* Modern Carousel Indicators */
.carousel-indicators-modern {
    position: static;
    margin: 3rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.carousel-indicators-modern button {
    width: 60px;
    height: 5px;
    border-radius: 10px;
    background: rgba(198, 32, 32, 0.2);
    border: none;
    margin: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.carousel-indicators-modern button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #c62020, #ff6630);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators-modern button.active {
    background: rgba(198, 32, 32, 0.3);
}

.carousel-indicators-modern button.active::before {
    width: 100%;
}

.carousel-indicators-modern button:hover {
    background: rgba(198, 32, 32, 0.4);
    transform: translateY(-2px);
}

.carousel-indicators-modern button:hover::before {
    width: 50%;
}

/* Modern Carousel Navigation */
.carousel-control-modern {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid rgba(198, 32, 32, 0.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control-modern i {
    color: #c62020;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-control-modern:hover {
    background: linear-gradient(135deg, #c62020, #ff6630);
    border-color: #c62020;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(198, 32, 32, 0.3);
}

.carousel-control-modern:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.carousel-control-prev.carousel-control-modern {
    left: -25px;
}

.carousel-control-next.carousel-control-modern {
    right: -25px;
}

/* Carousel Fade Animation Enhancement */
.modern-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.modern-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.modern-carousel .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* 4-Column Carousel Responsive Design */
.feature-cards .row {
    margin: 0 -10px;
}

.feature-cards .col-lg-3 {
    padding: 0 10px;
    margin-bottom: 1.5rem;
}

/* Tablet: 2 cards per row */
@media (max-width: 992px) and (min-width: 769px) {
    .feature-cards .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile: 1 card per row */
@media (max-width: 768px) {
    .feature-cards .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Modern Carousel Mobile Styles */
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-modern {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon-modern i {
        font-size: 1.75rem;
    }
    
    .feature-title-modern {
        font-size: 1.1rem;
    }
    
    .feature-description-modern {
        font-size: 0.9rem;
    }
    
    .carousel-control-modern {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-modern i {
        font-size: 1rem;
    }
    
    .carousel-control-prev.carousel-control-modern {
        left: -15px;
    }
    
    .carousel-control-next.carousel-control-modern {
        right: -15px;
    }
    
    .carousel-indicators-modern {
        margin: 2rem 0 1rem;
        gap: 0.5rem;
    }
    
    .carousel-indicators-modern button {
        width: 40px;
        height: 4px;
    }
    
    /* Our Services Section Responsive */
    .our-services-section .section-title {
        font-size: 2rem;
    }
    
    .service-card-new {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-new {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-new i {
        font-size: 1.75rem;
    }
    
    /* Portfolio Section Responsive */
    .portfolio-section .section-title {
        font-size: 2rem;
    }
    
    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .portfolio-image img {
        height: 250px;
    }
    
    .portfolio-title {
        font-size: 1.25rem;
    }
    
    .portfolio-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    /* .feature-title {
        text-align: center;
    } */
}

/* Request A Quote Section */
.quote-section {
    background: #27a8e1;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.quote-content {
    max-width: 1200px;
    margin: 0 auto;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.quote-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.quote-badge {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.quote-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    font-family: var(--font-heading);
}

.category-cards {
    display: flex;
    gap: 1rem;
}

.category-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card.active {
    background: #FFD700;
    border-color: #FFD700;
}

.category-icon {
    margin-bottom: 0.5rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: #333;
}

.category-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: block;
}

.quote-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.quote-form .form-control {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quote-form .form-control:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.quote-form .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.quote-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.btn-quote {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(198, 32, 32, 0.3);
}

.btn-quote:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 32, 32, 0.4);
    color: var(--white);
    opacity: 0.9;
}

/* Testimonials 2-Column Layout */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.stars {
    font-size: 1.2rem;
}

.testimonial-content h6 {
    font-size: 1.1rem;
    color: #333;
}

.testimonial-content p.text-muted {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-image img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-content p.lead {
        font-size: 1rem;
    }
    
    .stars {
        font-size: 1rem;
    }
}

/* Budget Friendly Pricing Section */
.pricing-section {
    background: #f8fafc;
}

.pricing-badge {
    display: inline-block;
    background: #27a8e1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6c757d;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #fcd057;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Pricing Cards */
.pricing-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-image {
    height: 200px;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-card-new:hover .pricing-image img {
    transform: scale(1.05);
}

.pricing-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Basic Plan - Dark Gray Background */
.basic-plan .pricing-content {
    background: #2c3e50;
    color: white;
}

.basic-plan .plan-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.basic-plan .price-amount {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.basic-plan .price-period {
    color: white;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.basic-plan .discount-text {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.basic-plan .pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

.basic-plan .pricing-features li {
    color: white;
    margin-bottom: 0.5rem;
}

.basic-plan .pricing-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Standard Plan - Yellow Background */
.standard-plan .pricing-content {
    background: #fcd057;
    color: #2c3e50;
}

.standard-plan .plan-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.standard-plan .price-amount {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

.standard-plan .price-period {
    color: #2c3e50;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.standard-plan .discount-text {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.standard-plan .pricing-divider {
    height: 1px;
    background: rgba(44, 62, 80, 0.3);
    margin: 1rem 0;
}

.standard-plan .pricing-features li {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.standard-plan .pricing-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Premium Plan - Dark Gray Background */
.premium-plan .pricing-content {
    background: #2c3e50;
    color: white;
}

.premium-plan .plan-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.premium-plan .price-amount {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.premium-plan .price-period {
    color: white;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.premium-plan .discount-text {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.premium-plan .pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

.premium-plan .pricing-features li {
    color: white;
    margin-bottom: 0.5rem;
}

.premium-plan .pricing-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Pricing Section Responsive */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-description {
        font-size: 1rem;
    }
    
    .pricing-toggle {
        gap: 0.5rem;
    }
    
    .toggle-label {
        font-size: 1rem;
    }
    
    .pricing-content {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem !important;
    }
}

/* New Footer Design */
.footer-new {
    background: #27a8e1;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-new .container {
    position: relative;
    z-index: 2;
}

/* Logo Styling */
.navbar-brand {
    padding: 0;
    margin: 0;
}

.logo {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.logo {
    text-decoration: none;
    display: inline-block;
}

a.logo:hover {
    text-decoration: none;
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-img {
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    display: block;
    /* filter: hue-rotate(320deg) saturate(1.5) brightness(0.9); */
}

/* .logo-img:hover {
    transform: scale(1.05);
    filter: hue-rotate(320deg) saturate(2) brightness(1.1) contrast(1.2);
} */

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Footer Company Info */
.footer-company-info {
    color: white;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1) hue-rotate(200deg) saturate(1.5);
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    display: block;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) hue-rotate(200deg) saturate(2) brightness(1.2);
}


/* Footer Description */
.footer-description {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Working Hours */
.working-hours {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hours-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hours-icon i {
    color: #27a8e1;
    font-size: 1.2rem;
}

.hours-text {
    color: white;
}

.hours-days {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hours-time {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27a8e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD700;
    color: #2c3e50;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Section Titles */
.footer-section-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #FFD700;
    opacity: 1;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: white;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-item span a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item span a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Download Section */
.download-description {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-btn:hover {
    transform: scale(1.05);
}

.app-btn img {
    max-width: 140px;
    height: auto;
}

/* Payment Modes */
.payment-modes {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27a8e1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: #FFD700;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-bottom-links a:hover {
    color: #FFD700;
    opacity: 1;
}

.separator {
    color: white;
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    white-space: nowrap;
}

.whatsapp-button:hover {
    background: #20BA5A;
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    color: var(--white);
    font-size: 1.5rem;
}

.whatsapp-button .whatsapp-text {
    display: inline-block;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(198, 32, 32, 0.3);
}

.scroll-to-top:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198, 32, 32, 0.4);
    opacity: 0.9;
}

/* Logo Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 120px;
        width: auto;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    /* Fix header on mobile - ensure it stays above hero section */
    .modern-header {
        z-index: 9999;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: auto;
        min-height: 70px;
        background: var(--white) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: visible !important;
    }
    
    /* Container adjustments for mobile header */
    .modern-header .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }
    
    .modern-header .navbar {
        height: auto;
        min-height: 70px;
        padding: 0.5rem 0;
        overflow: visible !important;
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0.5rem;
    }
    
    .modern-header .navbar-brand {
        height: auto;
        min-height: 50px;
        order: 1;
        flex: 0 0 auto;
        max-width: calc(100% - 60px);
    }
    
    .modern-header .navbar-brand .logo-img {
        max-height: 100px;
        height: 100px;
        width: auto;
    }
    
    /* Navbar toggler button styling - ensure it's visible */
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 2px solid var(--gray-300);
        border-radius: var(--radius);
        padding: 0.5rem 0.75rem;
        background: var(--white);
        z-index: 10000;
        position: relative;
        margin-left: auto;
        order: 2;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Override Bootstrap's navbar-expand-lg hiding on mobile - multiple selectors for maximum specificity */
    .navbar-expand-lg .navbar-toggler,
    .modern-header .navbar-expand-lg .navbar-toggler,
    .navbar.navbar-expand-lg .navbar-toggler,
    header .navbar-expand-lg .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure toggler is not hidden by any parent - maximum specificity */
    .modern-header .navbar .navbar-toggler,
    .modern-header .container .navbar .navbar-toggler,
    header.modern-header .navbar .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 0;
        margin-left: auto;
        position: relative !important;
    }
    
    /* Ensure toggler icon is visible */
    .modern-header .navbar-toggler .navbar-toggler-icon {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-toggler[aria-expanded="true"] {
        background: var(--gray-100);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
    
    .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
    
    /* Mobile navigation menu */
    .navbar-collapse {
        background: var(--white);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 9998;
        position: relative;
        width: 100%;
        order: 3;
        flex-basis: 100%;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Header actions on mobile */
    .header-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid var(--gray-200);
    }
    
    .header-actions .phone-link {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
    }
    
    .header-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Add padding to hero section to account for fixed header and reduce height */
    .hero-section {
        padding-top: 80px;
        min-height: 60vh !important;
        padding-bottom: 2rem;
    }
    
    .hero-section .row.min-vh-100 {
        min-height: auto !important;
    }
    
    .hero-content {
        padding-left: 0 !important;
        padding-top: 1rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-new {
        padding: 3rem 0 2rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .working-hours {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hours-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .app-downloads {
        gap: 0.5rem;
    }
    
    .app-btn img {
        max-width: 120px;
    }
    
    .payment-modes {
        gap: 0.5rem;
    }
    
    .payment-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .whatsapp-button {
        padding: 10px 16px;
        bottom: 70px;
        right: 15px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .whatsapp-button i {
        font-size: 1.3rem;
    }
    
    .whatsapp-button .whatsapp-text {
        display: inline-block;
        font-size: 0.85rem;
    }
    
    /* For very small screens, show icon only */
    @media (max-width: 480px) {
        .whatsapp-button {
            padding: 12px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        
        .whatsapp-button .whatsapp-text {
            display: none;
        }
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

/* New About Page Styles */

/* Page Header */
.page-header {
    background-image: url('../assets/images/inner-page-banner.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
    height: 250px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.85) 50%, rgba(71, 85, 105, 0.85) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

/* Service Benefits */
.service-benefit {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fcd057, #ff6630);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(252, 208, 87, 0.3);
}

.service-benefit h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-benefit p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

/* Statistics Overlay */
.stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Video CTA Section */
.video-cta-section {
    background: linear-gradient(135deg, #27a8e1 0%, #1c75b9 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.video-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.video-cta-section .container {
    position: relative;
    z-index: 2;
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #fcd057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(252, 208, 87, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(252, 208, 87, 0.4);
}

.partner-logos {
    margin-top: 2rem;
}

.partner-logo {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Our Trusted Partners Section */
.partner-logo-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px solid var(--gray-200);
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.partner-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo-item:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Statistics Cards */
.stat-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #27a8e1;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Service Features */
.service-feature {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27a8e1, #1c75b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(39, 168, 225, 0.3);
}

.service-feature h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-feature p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

/* Expert Team Section */
.expert-team-section {
    background: #fcd057;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.expert-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.expert-team-section .container {
    position: relative;
    z-index: 2;
}

.expert-team-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expert-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expert-team-card .team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expert-team-card h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.expert-team-card p {
    font-size: 0.9rem;
    color: #27a8e1;
    margin: 0;
}

/* FAQ Section */
.faq-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.faq-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--white);
}

.faq-cta h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta .btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-cta .btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 32, 32, 0.3);
    opacity: 0.9;
}

/* Accordion Styling */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: #2c3e50;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #27a8e1;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(39, 168, 225, 0.25);
}

.accordion-body {
    padding: 1.25rem;
    background: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

/* Happy Customers Section */
.customer-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.customer-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stars i {
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .page-header {
        padding: 10rem 0 2rem !important;
        height: auto !important;
        min-height: 200px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .page-header .breadcrumb {
        font-size: 0.875rem;
    }
    
    .service-benefit,
    .service-feature {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stats-overlay {
        position: static;
        margin-top: 1rem;
        flex-direction: column;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .video-container {
        height: 200px;
        margin-bottom: 2rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .expert-team-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .expert-team-card .team-image img {
        width: 100px;
        height: 100px;
    }
    
    .faq-image img {
        height: 300px;
    }
    
    .customer-visual img {
        height: 300px;
    }
    
    .customer-info img {
        width: 50px;
        height: 50px;
    }
}

/* Quote Section Responsive */
@media (max-width: 992px) {
    .quote-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .quote-header-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-cards {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .category-card {
        min-width: 80px;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-title {
        font-size: 2rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
    }
    
    .quote-icon i {
        font-size: 1.2rem;
    }
    
    .category-cards {
        gap: 0.5rem;
    }
    
    .category-card {
        min-width: 70px;
        padding: 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-text {
        font-size: 0.8rem;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .quote-form .form-control {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-quote {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Redesigned CTA Section */
.cta-section-redesigned {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-section-redesigned .container {
    position: relative;
    z-index: 2;
}

.cta-content-wrapper {
    color: var(--white);
}

.cta-icon-wrapper {
    display: inline-block;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cta-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cta-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.cta-feature-item i {
    color: #fcd057;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 32, 32, 0.1), transparent);
    transition: var(--transition);
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.cta-button-primary i {
    transition: var(--transition);
}

.cta-button-primary:hover i {
    transform: translateX(5px);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary i {
    font-size: 1.1rem;
}

/* Responsive Design for CTA Section */
@media (max-width: 992px) {
    .cta-section-redesigned {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-section-redesigned {
        padding: 3rem 0;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.faq-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.faq-cta {
    text-align: left;
}

.faq-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.faq-cta-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-content {
    padding-left: 40px;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}

.faq-section .accordion {
    border: none;
}

.faq-section .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    border-radius: 10px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--yellow-color);
    color: var(--dark-color);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c62020'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    /* background-color: var(--primary-color); */
    background-size: 0.8rem;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-color: var(--dark-color);
}

.faq-section .accordion-body {
    padding: 20px 25px;
    background: #f8f9fa;
    color: #6c757d;
    line-height: 1.6;
    border-radius: 0 0 10px 10px;
}

/* Responsive Design for FAQ */
@media (max-width: 991px) {
    .faq-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-section .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 15px 20px;
    }
}

/* Quote Popup Modal */
.quote-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.quote-popup-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    color: var(--white);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.quote-popup-overlay.show .quote-popup-container {
    transform: scale(1);
}

.quote-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    pointer-events: auto;
}

.quote-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.quote-popup-close i {
    font-size: 1.2rem;
}

.quote-popup-content {
    position: relative;
    z-index: 1;
}

.quote-popup-header {
    margin-bottom: 2rem;
}

.quote-popup-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-popup-description {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.quote-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-popup-form .form-group {
    position: relative;
}

.quote-popup-form .form-control {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.quote-popup-form .form-control:focus {
    outline: none;
    border-bottom-color: #f97316;
    box-shadow: 0 2px 0 rgba(249, 115, 22, 0.3);
}

.quote-popup-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.quote-popup-form .form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.quote-popup-form .form-control option {
    background: #1e293b;
    color: var(--white);
}

.quote-popup-form .form-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(198, 32, 32, 0.3);
}

.quote-popup-form .form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.quote-popup-form .form-btn:hover::before {
    left: 100%;
}

.quote-popup-form .form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(198, 32, 32, 0.4);
    color: var(--white);
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .quote-popup-container {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .quote-popup-title {
        font-size: 1.5rem;
    }
    
    .quote-popup-description {
        font-size: 0.9rem;
    }
    
    .quote-popup-close {
        width: 35px;
        height: 35px;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* ============================================
   Modern Testimonials Section Styles
   ============================================ */

.testimonials-section-modern {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

/* Decorative Background Elements */
.testimonials-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 32, 32, 0.05) 0%, rgba(28, 117, 185, 0.05) 100%);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Testimonials Header */
.testimonial-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #c62020 0%, #a01a1a 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(198, 32, 32, 0.3);
}

.testimonial-title-modern {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonial-subtitle-modern {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Carousel */
.testimonials-carousel-modern {
    position: relative;
    padding: 2rem 0;
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c62020 0%, #1c75b9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card-modern:hover::before {
    transform: scaleX(1);
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(198, 32, 32, 0.1) 0%, rgba(28, 117, 185, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c62020;
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-quote-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(198, 32, 32, 0.15) 0%, rgba(28, 117, 185, 0.15) 100%);
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fcd057;
    font-size: 1.125rem;
    text-shadow: 0 2px 4px rgba(252, 208, 87, 0.3);
}

/* Testimonial Text */
.testimonial-text-modern {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid rgba(198, 32, 32, 0.2);
}

/* Author Section */
.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(198, 32, 32, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card-modern:hover .testimonial-avatar-modern {
    border-color: rgba(198, 32, 32, 0.3);
    transform: scale(1.05);
}

.testimonial-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.testimonial-author-role {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0;
}

/* Carousel Controls */
.testimonials-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 1rem;
}

.testimonial-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(198, 32, 32, 0.2);
    color: #c62020;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
}

.testimonial-carousel-btn:hover {
    background: linear-gradient(135deg, #c62020 0%, #a01a1a 100%);
    color: var(--white);
    border-color: #c62020;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(198, 32, 32, 0.3);
}

.testimonial-carousel-btn:active {
    transform: scale(0.95);
}

.testimonial-carousel-prev {
    left: -25px;
}

.testimonial-carousel-next {
    right: -25px;
}

/* Carousel Indicators */
.testimonials-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.testimonials-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(198, 32, 32, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-carousel-indicators button.active {
    background: linear-gradient(135deg, #c62020 0%, #a01a1a 100%);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(198, 32, 32, 0.4);
}

.testimonials-carousel-indicators button:hover {
    background: rgba(198, 32, 32, 0.5);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .testimonial-title-modern {
        font-size: 2.25rem;
    }
    
    .testimonial-subtitle-modern {
        font-size: 1rem;
    }
    
    .testimonial-card-modern {
        padding: 2rem;
    }
    
    .testimonial-carousel-prev {
        left: 0;
    }
    
    .testimonial-carousel-next {
        right: 0;
    }
    
    .testimonial-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section-modern {
        padding: 3rem 0;
    }
    
    .testimonial-title-modern {
        font-size: 1.875rem;
    }
    
    .testimonial-subtitle-modern {
        font-size: 0.9375rem;
    }
    
    .testimonial-card-modern {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        top: 1rem;
        right: 1rem;
    }
    
    .testimonial-text-modern {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author-modern {
        gap: 0.75rem;
    }
    
    .testimonial-avatar-modern {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author-name {
        font-size: 1rem;
    }
    
    .testimonial-author-role {
        font-size: 0.875rem;
    }
    
    .testimonials-carousel-controls {
        padding: 0;
    }
    
    .testimonial-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .bg-circle-1,
    .bg-circle-2,
    .bg-circle-3 {
        display: none;
    }
}