/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 80px;
}

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 0;
}

.tagline {
    font-size: 0.9rem;
    color: #003366;
    margin: 0;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    margin: 0;
}

.logo h1::first-letter {
    color: #FFA500;
}

.tagline {
    font-size: 0.9rem;
    color: #003366;
    margin-top: 5px;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav a {
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}

nav a:hover {
    color: #3498db;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s;
    transform-origin: center;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    margin-left: 2rem;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.cta-button.mobile {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .secondary-btn {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    header .container {
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        transform: translateX(100%);
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    .whatsapp-btn {
        display: none;
    }

    .cta-button.mobile {
        display: block;
        margin-top: 2rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #3498db;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background-color: #f8f9fa;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    background-color: #fff;
    color: #003366;
    border: 2px solid #003366;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background-color: #003366;
    color: #fff;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #fff;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #FFA500;
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials .container {
    position: relative;
    overflow: visible;
}

.testimonials-slider-container {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #003366 #f8f9fa;
}

.testimonials-slider-container::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.testimonials-slider-container::-webkit-scrollbar-thumb {
    background-color: #003366;
    border-radius: 4px;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 400px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: #003366;
    margin-bottom: 0.5rem;
}

.rating i {
    color: #FFA500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: #FFA500;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #003366;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #FFA500;
}

/* Footer */
footer {
    background-color: #003366;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #FFA500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature {
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats .container {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
.testimonials-slider-container .slider-nav,
.testimonials-slider-container .slider-nav button {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Floating WhatsApp Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}
.testimonials-slider-container .slider-nav,
.testimonials-slider-container .slider-nav button {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}