:root {
            --primary: #31413a;
            --secondary: #f5a623;
            --dark: #1a2a4b;
            --light: #f8f9fa;
            --accent: #e74c3c;
        }
        /* Add to your body or html element */
html {
    scroll-padding-top: 100px; /* Height of your navbar */
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            perspective: 1000px;
            padding-top: 80px; /* Space for fixed navbar */
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        
        
        /* ===================== */
        /* Professional Hero Section */
        /* ===================== */
        .video-header {
            position: relative;
            height: 100vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            transform-style: preserve-3d;
            margin-top: -80px;
            padding-top: 80px;
            box-sizing: border-box;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            transform: translateZ(-50px) scale(2.1);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(49 65 58) 0%, rgb(2 2 3 / 95%) 100%);
            z-index: -1;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            max-width: 900px;
            margin: 0 auto;
            transform: translateZ(50px);
			padding-top: 30px; /* Reduced from original */
			 padding-top: 60px;
    margin-bottom: 40px;
        }
        
        .profile-pic {
            width: 230px;
            height: 230px;
            border-radius: 50%;
            border: 5px solid rgba(255, 255, 255, 0.3);
            margin: 30px auto 15px; /* Reduced from 85px auto 30px */
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-width: 4px; 
            transform-style: preserve-3d;
        }
        
        .profile-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(10%);
        }
        
        .header-content h1 {
            font-size: 4rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            letter-spacing: -1px;
            line-height: 1.1;
			margin-bottom: 10px; /* Reduced from 15px */
        }
        
        .subheading {
            font-size: 1.6rem;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
        
        .tagline {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            padding-bottom: 1px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .tagline:after {
            content: '';
            position: absolute;
            bottom: 85px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .cta-button {
            background: var(--secondary);
            color: var(--dark);
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            transform-style: preserve-3d;
            transform: translateZ(20px);
            box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
            letter-spacing: 0.5px;
			margin-bottom:100px;
			
        }
        
        .cta-button:hover {
            background: #ffbb42;
            transform: translateY(-5px) translateZ(30px);
            box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
        }
		
		/* Mobile Hero Section - Ultra Compact */
@media (max-width: 768px) {
    .video-header {
        min-height: 65vh; /* Reduced height */
        padding-top: 40px; /* Less top padding */
    }
    
    .profile-pic {
        width: 100px; /* Very compact profile image */
        height: 100px;
        margin: 20px auto 10px; /* Tight spacing */
        border-width: 2px;
    }
    
    .header-content h1 {
        font-size: 1.8rem; /* Very compact heading */
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .subheading {
        font-size: 1rem; /* Small subheading */
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .tagline {
        font-size: 1.1rem; /* Compact tagline */
        margin-bottom: 15px;
    }
    
    .tagline:after {
        bottom: 45px; /* Adjusted underline position */
        width: 50px;
        height: 2px;
    }
    
    .header-buttons {
        gap: 10px; /* Tight button spacing */
        margin-top: 15px; /* Reduced top margin */
    }
    
    .cta-button {
        padding: 10px 20px; /* Very compact buttons */
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    /* Remove floating animation on mobile */
    .floating {
        animation: none !important;
    }
}

/* Extreme small screen optimization */
@media (max-width: 400px) {
    .video-header {
        min-height: 60vh;
    }
    
    .profile-pic {
        width: 80px;
        height: 80px;
        margin: 15px auto 8px;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .subheading span.d-block {
        display: inline !important; /* Single line subheading */
        margin: 0 5px;
    }
    
    .cta-button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}
		/* Reduce space between tagline and buttons */
@media (max-width: 768px) {
    .tagline {
        margin-bottom: 8px !important;  /* Reduced from 15px */
    }
    
    .header-buttons {
        margin-top: 8px !important;  /* Reduced from 15px */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .tagline {
        margin-bottom: 5px !important;
    }
    
    .header-buttons {
        margin-top: 5px !important;
        gap: 8px;  /* Reduced button gap */
    }
    
    .cta-button {
        margin-bottom: 5px !important;  /* Reduced bottom margin */
    }
}
        
        /* ===================== */
        /* 3D Animated Sections */
        /* ===================== */
        .section-container {
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            padding: 120px 0;
        }
        
        .section-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
        }
        
        .intro-bg-animation {
            background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            animation: bgMove 40s linear infinite;
        }
        
        .why-bg-animation {
            background: url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            animation: bgMoveReverse 35s linear infinite;
        }
        
        .stats-bg-animation {
            background: url('https://images.unsplash.com/photo-1605146769289-440113cc3d00?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            animation: bgMove 50s linear infinite;
            opacity: 0.2;
        }
        
        .contact-bg-animation {
            background: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            animation: bgMoveReverse 45s linear infinite;
        }
        
        /* ===================== */
        /* Content Sections */
        /* ===================== */
        .intro-section {
            background: white;
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            gap: 60px;
            transform-style: preserve-3d;
        }
        
        .intro-image {
            flex: 1;
            text-align: center;
            transform-style: preserve-3d;
        }
        
        .intro-image .round-img {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            border: 10px solid white;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            margin: 0 auto;
            transition: all 0.4s ease;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(-10deg);
        }
        
        .intro-image .round-img:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.05);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
        }
        
        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .intro-text {
            flex: 1;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(10deg);
        }
        
        .intro-text:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .intro-text h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .intro-text h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .intro-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        /* Why Work With Me Section */
        .why-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            transform-style: preserve-3d;
        }
        
        .section-title h2 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        /* Benefits Row */
        .benefits-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 80px;
            justify-content: center;
            transform-style: preserve-3d;
        }
        
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            width: calc(25% - 30px);
            min-width: 250px;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
        }
        
        .benefit-card:hover {
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
            color: var(--dark);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }
        
        .benefit-card:hover .benefit-icon {
            transform: rotateY(360deg);
            background: var(--primary);
            color: white;
        }
        
        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Visual Graphics Row */
        .graphics-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            transform-style: preserve-3d;
        }
        
        .graphic-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            width: calc(33.333% - 30px);
            min-width: 300px;
            text-align: center;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(-5deg);
        }
        
        .graphic-card:hover {
            transform: perspective(1000px) rotateX(0deg) translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .graphic-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .chart-container {
            position: relative;
            height: 250px;
            width: 100%;
            transform-style: preserve-3d;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 20px 0 10px;
            line-height: 1;
            transform: translateZ(20px);
        }
        
        .stat-description {
            font-size: 1.1rem;
            color: var(--dark);
            transform: translateZ(10px);
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a2a4b 100%);
            color: white;
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            transform-style: preserve-3d;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(-10deg);
        }
        
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
        }
        
        .stat-card .number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1;
            transform: translateZ(30px);
        }
        
        .stat-card .title {
            font-size: 1.3rem;
            color: var(--secondary);
            transform: translateZ(20px);
        }
        
        /* Contact Section */
        .contact-section {
            background: white;
        }
        
        .contact-form {
            background: white;
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .contact-form:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .contact-form h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary);
            transform: translateZ(30px);
        }
        
        .form-group {
            margin-bottom: 25px;
            transform-style: preserve-3d;
        }
        
        .form-control {
            padding: 18px 25px;
            border-radius: 12px;
            border: 1px solid #ddd;
            width: 100%;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            transform: translateZ(10px);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(42, 75, 124, 0.2);
            outline: none;
            transform: translateZ(20px);
        }
        
        .btn-submit {
            background: var(--primary);
            color: white;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 40px auto 0;
            transform: translateZ(30px);
            box-shadow: 0 10px 25px rgba(42, 75, 124, 0.3);
        }
        
        .btn-submit:hover {
            background: #1a2a4b;
            transform: translateY(-5px) translateZ(40px);
            box-shadow: 0 20px 40px rgba(42, 75, 124, 0.4);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 100px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
            transform: translateZ(30px);
        }
        
        .social-links {
            margin: 40px 0;
            transform: translateZ(20px);
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 15px;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-8px) translateZ(20px);
            color: var(--dark);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 60px;
            transform: translateZ(10px);
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px) translateZ(20px); }
            50% { transform: translateY(-20px) translateZ(30px); }
            100% { transform: translateY(0px) translateZ(20px); }
        }
        
        /* Background animation */
        @keyframes bgMove {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }
        
        @keyframes bgMoveReverse {
            0% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .intro-image .round-img {
                width: 350px;
                height: 350px;
            }
        }
        
        @media (max-width: 992px) {
            .intro-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .intro-image .round-img {
                width: 300px;
                height: 300px;
            }
            
            .header-content h1 {
                font-size: 3rem;
            }
            
            .subheading {
                font-size: 1.5rem;
            }
            
            .tagline {
                font-size: 1.8rem;
            }
            
            .benefit-card {
                width: calc(50% - 30px);
            }
            
            .graphic-card {
                width: calc(50% - 30px);
            }

            .navbar-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                backdrop-filter: blur(5px);
				height: 80px; /* Ensure this matches the value used in JS */
    /* ... other navbar styles ... */
            }
            
            .navbar-menu.active {
                display: flex;
            }
            
            .navbar-menu li {
                margin: 10px 0;
            }
            
            .navbar-menu a {
                padding: 12px;
                display: block;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .video-header {
                min-height: 600px;
            }
            
            .header-content h1 {
                font-size: 2.5rem;
            }
            
            .subheading {
                font-size: 1.3rem;
            }
            
            .tagline {
                font-size: 1.6rem;
            }
            
            .profile-pic {
                width: 160px;
                height: 160px;
            }
            
            .section-container {
                padding: 80px 0;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .benefit-card,
            .graphic-card {
                width: 100%;
            }
        }
		
		/* ===================== */
/* Contact Section Enhancements */
/* ===================== */
.contact-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    flex: 1;
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.contact-info {
    flex: 1;
    background: var(--primary);
    border-radius: 25px;
    padding: 60px;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.contact-info h2 {
    color: white;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.info-content p, 
.info-content a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form,
    .contact-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form,
    .contact-info {
        padding: 30px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===================== */
/* Testimonials Section */
/* ===================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 120px 0;
}

.testimonials-bg-animation {
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    animation: bgMove 40s linear infinite;
    opacity: 0.1;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.testimonials-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(5deg);
}

.testimonial-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    top: -60px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(42, 75, 124, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
    }
    
    .testimonial-card {
        min-width: auto;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
        clip-path: none;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

/* Services Section */
.services-section {
    background: white;
    padding: 100px 0;
}

.services-bg-animation {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    animation: bgMove 40s linear infinite;
    opacity: 0.03;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 75, 124, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
	transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

.sub-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.sub-services span {
    background: rgba(42, 75, 124, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-services i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .service-card {
        min-width: calc(33% - 30px);
    }
}

@media (max-width: 992px) {
    .service-row:first-child .service-card {
        min-width: calc(50% - 30px);
    }
    .service-row:last-child .service-card {
        min-width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .service-card {
        min-width: 100%;
        max-width: 450px;
    }
}


/* Service Number Styling */
.service-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-card {
    position: relative; /* Required for absolute positioning of number */
    overflow: visible; /* Ensures number isn't clipped */
}

/* Adjust existing hover effect to accommodate number */
.service-card:hover .service-number {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(42, 75, 124, 0.3);
}

/* Responsive adjustments for numbers */
@media (max-width: 768px) {
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: -12px;
        right: -12px;
    }
}
/* Mobile Navigation Bar Height Adjustment */
@media (max-width: 992px) {
    .navbar {
        height: 60px; /* Reduced from 80px */
        padding: 10px 0; /* Adjusted padding */
    }
    
    .navbar-brand img {
        height: 30px; /* Scale down logo proportionally */
    }
    
    .mobile-menu-btn {
        font-size: 1.3rem; /* Slightly smaller icon */
    }
    
    /* Adjust menu position to account for new navbar height */
    .navbar-menu {
        top: 60px; /* Matches new navbar height */
    }
    
    /* Ensure close button stays properly positioned */
    .menu-close-btn-container {
        margin: -5px -5px 5px 0; /* Tighter spacing */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .navbar {
        height: 55px; /* Even more compact */
        padding: 8px 0;
    }
    
    .navbar-brand img {
        height: 28px;
    }
}


/* Navbar Styles */
/* Navbar base styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    z-index: 1000;
    background: transparent;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo styles */
.logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Desktop menu styles */
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin-left: 30px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.navbar-menu a:hover {
    color: var(--secondary);
}

/* Mobile menu button (hidden on desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-icon, .close-icon {
    transition: opacity 0.3s ease;
}

.close-icon {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Mobile menu styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(49, 65, 58, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 60px 20px 20px;
        margin: 0;
        z-index: 1000;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-menu a {
        font-size: 1.3rem;
        padding: 10px;
        display: block;
    }
    
    /* When menu is active */
    .mobile-menu-btn.active .menu-icon {
        display: none;
    }
    
    .mobile-menu-btn.active .close-icon {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 80px;
        height: 80px;
    }
}


/* ===================== */
/* New Navbar Styles */
/* ===================== */

/* Navbar Base Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
   /* background: rgba(255, 255, 255, 0.98); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
	height:60px;
	backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.navbar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles (Left Corner) */
.logo-wrapper {
    display: flex;
    align-items: center;
	gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    margin-right: 12px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.2;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

/* Desktop Menu Styles (Right Corner) */
.desktop-menu-wrapper {
    display: block;
}

.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
   /* padding: 0px 0px 35px; */
}

.desktop-menu li {
    margin-left: 2rem;
    position: relative;
}

.desktop-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-menu a:hover {
    color: var(--secondary);
}

.desktop-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.desktop-menu a:hover:after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu a:hover {
    color: var(--secondary);
}

/* Active States */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger:before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger:after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-menu-panel.active {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-menu-wrapper {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-title {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        display: none;
    }
    
    .logo-img {
        margin-right: 9px;
    }
    
    .mobile-menu-panel {
        width: 85%;
        padding: 5rem 1.5rem 1.5rem;
    }
}
/* Logo with white circle background */
.logo-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0px 0px 0px 10px; /* Creates space between logo and circle edge */
	    margin-top: 15px;
		

}

.logo-img {
    width: 100%; /* Logo takes 80% of circle diameter */
    height: auto;
    object-fit: contain;
}
.logo-circle:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Adjust existing logo styles */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-title {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        display: none;
    }
    
    .logo-circle {
        margin-right: 0;
        width: 45px;
        height: 45px;
    }
}

/* Add to your existing CSS */
section {
    scroll-margin-top: 100px; /* Height of navbar + some extra space */
    padding-top: 40px; /* Creates space below navbar */
}

/* For specific section containers */
.section-container {
    padding-top: 80px;
    padding-bottom: 80px;
}


:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% { background-color: rgba(245, 166, 35, 0.1); }
    100% { background-color: transparent; }
}