@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #1B365D;
    --secondary-blue: #2563EB;
    --accent-green: #10B981;
    --accent-orange: #F97316;
    --light-blue: #EFF6FF;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-green) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --font-primary: 'Montserrat', sans-serif !important;
    --font-secondary: 'Montserrat', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    padding-top: 120px
}

.header-top {
    background: var(--gradient-primary);
    padding: 10px 0;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    transition: transform 0.3s ease
}

.header-top.hide {
    transform: translateY(-100%)
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white)
}

.header-top .contact-item {
    display: flex;
    align-items: center;
    gap: 6px !important;
    font-size: 13px !important;
    color: var(--white)
}

.header-top .contact-item i {
    font-size: 12px;
    color: var(--white)
}

.header-top .social-links {
    display: flex;
    gap: 10px
}

.header-top .social-links a {
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition)
}

.header-top .social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px)
}

@media (max-width:768px) {
    body {
        padding-top: 100px
    }

    .header-top {
        padding: 8px 0
    }

    .header-top .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px
    }

    .header-top .contact-item {
        font-size: 12px
    }

    .header-top .contact-item span {
        display: none
    }

    .header-top .contact-item i {
        font-size: 14px
    }

    .header-top .social-links {
        justify-content: center;
        gap: 8px
    }

    .header-top .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%
}

.navbar.hide {
    transform: translateY(-100%)
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 1) !important
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary)
}

.navbar-brand img {
    height: 40px;
    width: auto
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-800) !important;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    font-size: 15px
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition)
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

@media (max-width:768px) {
    .navbar.scrolled {
        top: 0
    }

    .navbar-brand {
        font-size: 1.5rem
    }

    .navbar-brand img {
        height: 35px
    }
}

.offcanvas {
    background: var(--white)
}

.offcanvas-header {
    background: var(--gradient-primary);
    color: var(--white)
}

.offcanvas-title {
    color: var(--white)
}

.offcanvas .nav-link {
    color: var(--gray-800);
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition)
}

.offcanvas .nav-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 30px
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background: #20B858;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none
}

.whatsapp-float i {
    line-height: 60px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

@media (max-width:768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 20px;
        font-size: 24px
    }

    .whatsapp-float i {
        line-height: 55px
    }
}

.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="120" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 20s ease-in-out infinite
}

.hero-content {
    color: var(--white);
    z-index: 2;
    position: relative
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-secondary)
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9
}

.btn-hero {
    background: var(--gradient-accent);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-xl)
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3)
}

.owl-carousel .item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius)
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%)
}

.owl-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-md) !important
}

.owl-carousel .owl-nav button:hover {
    background: var(--white) !important;
    transform: scale(1.1) !important
}

.owl-carousel .owl-nav button i {
    color: var(--primary-blue) !important;
    font-size: 18px !important
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px
}

.owl-carousel .owl-dot {
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    transition: var(--transition) !important
}

.owl-carousel .owl-dot.active {
    background: var(--white) !important;
    transform: scale(1.2) !important
}

.stats-section {
    background: var(--light-blue);
    padding: 80px 0
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 100%
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl)
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-secondary)
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 500
}

.banner-section {
    background: var(--gradient-accent);
    padding: 80px 0;
    color: var(--white);
    text-align: center
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-secondary)
}

.banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9
}

.about-section {
    padding: 100px 0;
    background: var(--white)
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary)
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px
} */

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--gray-800);
    position: relative;
    padding-left: 30px
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
    top: 10px
}

.services-section {
    padding: 100px 0;
    background: var(--gray-100)
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.1)
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl)
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-family: var(--font-secondary)
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6
}

.why-choose-section {
    padding: 100px 0;
    background: var(--white)
}

.feature-card {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
    font-family: var(--font-secondary)
}

.feature-text {
    color: var(--gray-600);
    line-height: 1.6
}

.certification-section {
    padding: 100px 0;
    background: var(--gray-100)
}

.certification-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid transparent;
    height: 100%
}

.certification-card.bronze {
    border-color: #cd7f32
}

.certification-card.silver {
    border-color: #c0c0c0
}

.certification-card.gold {
    border-color: #ffd700
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl)
}

.certification-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
    font-family: var(--font-secondary)
}

.bronze .certification-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%)
}

.silver .certification-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%)
}

.gold .certification-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%)
}

.process-section {
    padding: 100px 0;
    background: var(--white)
}

.process-step {
    text-align: center;
    position: relative;
    margin-bottom: 40px
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    font-family: var(--font-secondary)
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-family: var(--font-secondary)
}

.process-description {
    color: var(--gray-600);
    line-height: 1.6
}

.testimonials-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white)
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15)
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-secondary)
}

.testimonial-position {
    opacity: 0.8;
    font-size: 0.9rem
}

.industries-section {
    padding: 100px 0;
    background: var(--white)
}

.industry-card {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%
}

.industry-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px
}

.industry-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    font-family: var(--font-secondary)
}

.contact-section {
    padding: 100px 0;
    background: var(--gray-100)
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.1)
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-family: var(--font-secondary)
}

.contact-info {
    color: var(--gray-600);
    line-height: 1.6
}

.cta-section {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0;
    text-align: center
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4A574;
    font-family: var(--font-secondary)
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    transition: var(--transition)
}

.btn-whatsapp:hover {
    background: #1FAB58;
    color: var(--white);
    transform: translateY(-3px)
}

.btn-call {
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    transition: var(--transition)
}

.btn-call:hover {
    background: #E5630B;
    color: var(--white);
    transform: translateY(-3px)
}

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 30px
}

.footer-section {
    margin-bottom: 40px
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    font-family: var(--font-secondary)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--accent-orange)
}

.social-links {
    display: flex;
    gap: 15px
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition)
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #ccc
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-20px)
    }
}

.floating {
    animation: float 6s ease-in-out infinite
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .stat-number {
        font-size: 2.5rem
    }

    .hero-section {
        padding: 50px 0
    }

    .navbar-nav {
        text-align: center
    }

    .navbar-nav .nav-link {
        margin: 5px 0
    }

    .cta-title {
        font-size: 2rem
    }

    .banner-title {
        font-size: 2rem
    }
}






/* abouts use */







:root {
    --primary-blue: #1B365D;
    --secondary-blue: #2563EB;
    --accent-green: #10B981;
    --accent-orange: #F97316;
    --light-blue: #EFF6FF;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-green) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    padding-top: 120px
}

.header-top {
    background: var(--gradient-primary);
    padding: 10px 0;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    transition: transform 0.3s ease
}

.header-top.hide {
    transform: translateY(-100%)
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white)
}

.header-top .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white)
}

.header-top .contact-item i {
    font-size: 12px;
    color: var(--white)
}

.header-top .social-links {
    display: flex;
    gap: 10px
}

.header-top .social-links a {
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.header-top .social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px)
}

@media (max-width:768px) {
    body {
        padding-top: 100px
    }

    .header-top {
        padding: 8px 0
    }

    .header-top .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px
    }

    .header-top .contact-item a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2)
    }

    .header-top .contact-item a:hover {
        background: var(--accent-orange);
        transform: translateY(-2px)
    }

    .header-top .contact-item i {
        font-size: 16px;
        color: var(--white)
    }

    .header-top .social-links {
        justify-content: center;
        gap: 8px
    }

    .header-top .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%
}

.navbar.hide {
    transform: translateY(-100%)
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 1) !important
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    gap: 10px
}

.navbar-brand img {
    height: 40px;
    width: auto
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-800) !important;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    font-size: 15px
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition)
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

@media (max-width:768px) {
    .navbar.scrolled {
        top: 0
    }

    .navbar-brand {
        font-size: 1.5rem
    }

    .navbar-brand img {
        height: 35px
    }
}

.offcanvas {
    background: var(--white)
}

.offcanvas-header {
    background: var(--gradient-primary);
    color: var(--white)
}

.offcanvas-title {
    color: var(--white)
}

.offcanvas .nav-link {
    color: var(--gray-800);
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition)
}

.offcanvas .nav-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 30px
}

.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="120" fill="rgba(255,255,255,0.08)"/></svg>')
}

.page-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    position: relative;
    z-index: 1
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.section {
    padding: 80px 0
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary)
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px
} */

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px
}

.story-section {
    background: var(--white)
}

.story-timeline {
    position: relative;
    padding: 40px 0
}

.timeline-item01 {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    align-items: flex-start
}

.timeline-item01:last-child {
    margin-bottom: 0
}

.timeline-item01:last-child::before {
    display: none
}

.timeline-item01::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 50px;
    bottom: -50px;
    width: 3px;
    background: var(--gradient-primary);
    z-index: 0
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    box-shadow: var(--shadow-lg)
}

.timeline-content {
    flex: 1;
    background: var(--gray-100);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
    margin-left: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition)
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg)
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue)
}

.mission-vision-section {
    background: var(--gray-100)
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border-top: 5px solid var(--accent-orange)
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl)
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.values-section {
    background: var(--white)
}

.value-card {
    background: var(--gray-100);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200)
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-blue)
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-900)
}

.value-text {
    color: var(--gray-600);
    line-height: 1.6
}

.team-section {
    background: var(--gray-100)
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl)
}

.team-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem
}

.team-content {
    padding: 30px
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-blue)
}

.team-position {
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 15px
}

.team-bio {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem
}

.services-section {
    background: var(--white)
}

.service-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200)
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-blue)
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue)
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6
}

.awards-section {
    background: var(--gray-100)
}

.award-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.award-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px
}

.award-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue)
}

.award-year {
    color: var(--gray-600);
    font-size: 0.9rem
}

.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-secondary)
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9
}

.cta-section {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0;
    text-align: center
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4A574;
    font-family: var(--font-secondary)
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9
}

.btn-cta {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-lg)
}

.btn-cta:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background: #20B858;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none
}

.whatsapp-float i {
    line-height: 60px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 30px
}

.footer-section {
    margin-bottom: 40px
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--accent-orange)
}

.social-links {
    display: flex;
    gap: 15px
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition)
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #ccc
}

@media (max-width:992px) {
    .timeline-item01 {
        flex-direction: row
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1rem
    }

    .timeline-content {
        margin-left: 20px;
        padding: 25px
    }

    .page-title {
        font-size: 2.5rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .stat-number {
        font-size: 2.8rem
    }

    .section {
        padding: 60px 0
    }
}

@media (max-width:768px) {
    body {
        padding-top: 80px
    }

    .page-header {
        padding: 100px 0 60px
    }

    .page-title {
        font-size: 2rem
    }

    .page-subtitle {
        font-size: 1rem
    }

    .timeline-item01 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px
    }

    .timeline-item01::before {
        display: none
    }

    .timeline-year {
        margin-bottom: 20px;
        width: 70px;
        height: 70px;
        font-size: 0.9rem
    }

    .timeline-content {
        margin-left: 0;
        padding: 20px;
        width: 100%
    }

    .section {
        padding: 50px 0
    }

    .section-title {
        font-size: 1.8rem
    }

    .section-text {
        font-size: 1rem
    }

    .mission-card,
    .value-card,
    .service-card {
        margin-bottom: 20px
    }

    .stat-number {
        font-size: 2.5rem
    }

    .stat-label {
        font-size: 1rem
    }

    .cta-title {
        font-size: 2rem
    }

    .cta-subtitle {
        font-size: 1rem
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px
    }

    .whatsapp-float i {
        line-height: 50px
    }
}

@media (max-width:480px) {
    .page-title {
        font-size: 1.8rem
    }

    .section-title {
        font-size: 1.6rem
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.85rem
    }

    .timeline-content {
        padding: 15px
    }

    .stat-number {
        font-size: 2rem
    }

    .mission-card,
    .value-card {
        padding: 30px 20px
    }
}






















/* Color Variables */
:root {
    --primary-blue: #1B365D;
    --secondary-blue: #2563EB;
    --accent-green: #10B981;
    --accent-orange: #F97316;
    --light-blue: #EFF6FF;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-green) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif !important;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    padding-top: 120px
}

/* Header Styles */
.header-top {
    background: var(--gradient-primary);
    padding: 10px 0;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    transition: transform 0.3s ease
}

.header-top.hide {
    transform: translateY(-100%)
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white)
}

.header-top .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white)
}

.header-top .contact-item i {
    font-size: 12px;
    color: var(--white)
}

.header-top .social-links {
    display: flex;
    gap: 10px
}

.header-top .social-links a {
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.header-top .social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px)
}

/* Mobile Header */
@media (max-width:768px) {
    body {
        padding-top: 100px
    }

    .header-top {
        padding: 8px 0
    }

    .header-top .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px
    }

    .header-top .contact-item a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2)
    }

    .header-top .contact-item a:hover {
        background: var(--accent-orange);
        transform: translateY(-2px)
    }

    .header-top .contact-item i {
        font-size: 16px;
        color: var(--white)
    }

    .header-top .social-links {
        justify-content: center;
        gap: 8px
    }

    .header-top .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%
}

.navbar.hide {
    transform: translateY(-100%)
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 1) !important
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    gap: 10px
}

.navbar-brand img {
    height: 40px;
    width: auto
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-800) !important;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    font-size: 15px
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition)
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

@media (max-width:768px) {
    .navbar.scrolled {
        top: 0
    }

    .navbar-brand {
        font-size: 1.5rem
    }

    .navbar-brand img {
        height: 35px
    }
}

.offcanvas {
    background: var(--white)
}

.offcanvas-header {
    background: var(--gradient-primary);
    color: var(--white)
}

.offcanvas-title {
    color: var(--white)
}

.offcanvas .nav-link {
    color: var(--gray-800);
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition)
}

.offcanvas .nav-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 30px
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="120" fill="rgba(255,255,255,0.08)"/></svg>')
}

.page-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-secondary)
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto
}

/* Section Styles */
.section {
    padding: 100px 0
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary)
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px
} */

/* Contact Ways Section */
.contact-ways {
    background: var(--white);
    padding: 80px 0
}

.contact-way-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden
}

.contact-way-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary)
}

.contact-way-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--primary-blue)
}

.contact-way-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.contact-way-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue)
}

.contact-way-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px
}

.contact-way-action {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block
}

.contact-way-action:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

/* Contact Section - Circular Icon Design */
.contact-section {
    padding: 100px 0;
    background: var(--gray-100)
}

.contact-info-wrapper {
    max-width: 500px
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition)
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.contact-circle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4A574, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition)
}

.contact-circle-icon i {
    color: var(--white);
    font-size: 24px
}

.contact-details {
    flex: 1
}

.contact-detail-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-family: var(--font-secondary)
}

.contact-detail-text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0
}

/* Team Contact Section */
.team-contact-section {
    background: var(--white);
    padding: 100px 0
}

.team-member-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200)
}

.team-member-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.team-member-image {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--white)
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-blue)
}

.team-member-position {
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 15px
}

.team-member-contact {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 10px
}

/* FAQ Section */
.faq-section {
    background: var(--gray-100);
    padding: 100px 0
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    padding: 20px 30px
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--white)
}

.accordion-body {
    padding: 30px;
    background: var(--white);
    color: var(--gray-600);
    line-height: 1.8
}

/* Follow Us Section */
.follow-us-section {
    padding: 25px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md)
}

.follow-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    font-family: var(--font-secondary)
}

.social-circle-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.social-circle-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px
}

.social-circle-icon.facebook {
    background: linear-gradient(135deg, #4267B2, #3b5998);
    color: var(--white)
}

.social-circle-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: var(--white)
}

.social-circle-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: var(--white)
}

.social-circle-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white)
}

.social-circle-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15)
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200)
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    transition: var(--transition)
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(27, 54, 93, 0.25)
}

.form-control-lg {
    padding: 18px 20px;
    font-size: 16px
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--white)
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

/* Office Hours */
.office-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-top: 30px
}

.office-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200)
}

.hours-item:last-child {
    border-bottom: none
}

.day {
    font-weight: 500;
    color: var(--gray-800)
}

.time {
    color: var(--gray-600)
}

/* Quick Actions */
.quick-actions {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-top: 30px
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%
}

.quick-action-btn.call {
    background: var(--gradient-primary);
    color: var(--white)
}

.quick-action-btn.whatsapp {
    background: #25D366;
    color: var(--white)
}

.quick-action-btn.email {
    background: var(--gradient-accent);
    color: var(--white)
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white)
}

/* Testimonial Section */
.testimonial-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15)
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem
}

.testimonial-position {
    opacity: 0.8;
    font-size: 0.9rem
}

/* CTA Section */
.cta-section {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0;
    text-align: center
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4A574;
    font-family: var(--font-secondary)
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    transition: var(--transition)
}

.btn-whatsapp:hover {
    background: #1FAB58;
    color: var(--white);
    transform: translateY(-3px)
}

.btn-call {
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    transition: var(--transition)
}

.btn-call:hover {
    background: #E5630B;
    color: var(--white);
    transform: translateY(-3px)
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background: #20B858;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none
}

.whatsapp-float i {
    line-height: 60px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 30px
}

.footer-section {
    margin-bottom: 40px
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--accent-orange)
}

/* 
 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px
 } */

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition)
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #ccc
}

/* Mobile Responsiveness */
@media (max-width:768px) {
    .page-title {
        font-size: 2.5rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
        padding: 20px 15px
    }

    .contact-circle-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center
    }

    .social-circle-icons {
        justify-content: center
    }

    .contact-detail-title {
        font-size: 1.1rem
    }

    .contact-detail-text {
        font-size: 0.95rem
    }

    .team-member-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem
    }
}

@media (max-width:576px) {
    .contact-info-wrapper {
        max-width: 100%
    }

    .contact-circle-icon {
        width: 55px;
        height: 55px
    }

    .contact-circle-icon i {
        font-size: 20px
    }

    .social-circle-icon {
        width: 45px;
        height: 45px;
        font-size: 18px
    }
}













/* Color Variables */
:root {
    --primary-blue: #1B365D;
    --secondary-blue: #2563EB;
    --accent-green: #10B981;
    --accent-orange: #F97316;
    --light-blue: #EFF6FF;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-green) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif !important;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    padding-top: 120px
}

/* Header Styles */
.header-top {
    background: var(--gradient-primary);
    padding: 10px 0;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    transition: transform 0.3s ease
}

.header-top.hide {
    transform: translateY(-100%)
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white)
}

.header-top .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white)
}

.header-top .contact-item i {
    font-size: 12px;
    color: var(--white)
}

.header-top .social-links {
    display: flex;
    gap: 10px
}

.header-top .social-links a {
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.header-top .social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px)
}

/* Mobile Header */
@media (max-width:768px) {
    body {
        padding-top: 100px
    }

    .header-top {
        padding: 8px 0
    }

    .header-top .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px
    }

    .header-top .contact-item a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2)
    }

    .header-top .contact-item a:hover {
        background: var(--accent-orange);
        transform: translateY(-2px)
    }

    .header-top .contact-item i {
        font-size: 16px;
        color: var(--white)
    }

    .header-top .social-links {
        justify-content: center;
        gap: 8px
    }

    .header-top .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%
}

.navbar.hide {
    transform: translateY(-100%)
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 1) !important
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    gap: 10px
}

.navbar-brand img {
    height: 40px;
    width: auto
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-800) !important;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    font-size: 15px
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition)
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

@media (max-width:768px) {
    .navbar {
        /* top: 42px; */
        padding: 10px 0
    }

    .navbar.scrolled {
        top: 0
    }

    .navbar-brand {
        font-size: 1.5rem
    }

    .navbar-brand img {
        height: 35px
    }
}

.offcanvas {
    background: var(--white)
}

.offcanvas-header {
    background: var(--gradient-primary);
    color: var(--white)
}

.offcanvas-title {
    color: var(--white)
}

.offcanvas .nav-link {
    color: var(--gray-800);
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition)
}

.offcanvas .nav-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 30px
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="120" fill="rgba(255,255,255,0.08)"/></svg>')
}

.page-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-secondary)
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto
}

/* Section Styles */
.section {
    padding: 100px 0
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary)
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px
} */

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary)
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue)
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center
}

.service-description {
    color: var(--gray-600);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px
}

/* ZED Levels */
.zed-level-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative
}

.zed-level-card.bronze {
    border-top: 5px solid #cd7f32
}

.zed-level-card.silver {
    border-top: 5px solid #c0c0c0
}

.zed-level-card.gold {
    border-top: 5px solid #ffd700
}

.zed-level-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl)
}

.zed-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold
}

.bronze .zed-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%)
}

.silver .zed-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%)
}

.gold .zed-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%)
}

/* Process Steps */
.process-section {
    background: var(--gray-100)
}

.process-step {
    text-align: center;
    margin-bottom: 40px
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    position: relative
}

.process-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 3px;
    background: var(--gray-300);
    transform: translateY(-50%)
}

.process-step:last-child .process-number::after {
    display: none
}

.process-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue)
}

.process-description {
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto
}

/* Benefits Section */
.benefits-section {
    background: var(--white)
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: 15px;
    border-left: 5px solid var(--accent-green)
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem
}

.benefit-content h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px
}

.benefit-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0
}

/* Pricing Table */
.pricing-section {
    background: var(--gray-100)
}

.pricing-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    text-align: center
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px
}

.pricing-subtitle {
    opacity: 0.9
}

.pricing-body {
    padding: 40px 30px
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0
}

.pricing-feature i {
    color: var(--success);
    margin-right: 15px;
    font-size: 1.2rem
}

.pricing-feature span {
    color: var(--gray-700);
    font-size: 1.1rem
}

/* ISO Section */
.iso-section {
    background: var(--white)
}

.iso-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200)
}

.iso-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-blue)
}

.iso-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white)
}

.iso-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue)
}

.iso-description {
    color: var(--gray-600);
    line-height: 1.6
}

/* FAQ Section */
.faq-section {
    background: var(--gray-100)
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    padding: 20px 30px
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--white)
}

.accordion-body {
    padding: 30px;
    background: var(--white);
    color: var(--gray-600);
    line-height: 1.8
}

/* CTA Section */
.cta-section {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0;
    text-align: center
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4A574;
    font-family: var(--font-secondary)
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9
}

.btn-cta {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg)
}

.btn-cta:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background: #20B858;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none
}

.whatsapp-float i {
    line-height: 60px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 30px
}

.footer-section {
    margin-bottom: 40px
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--accent-orange)
}


.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition)
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #ccc
}

/* Responsive */
@media (max-width:768px) {
    .page-title {
        font-size: 2.5rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .process-number::after {
        display: none
    }

    .process-step {
        margin-bottom: 30px
    }
}




















/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="600" cy="700" r="120" fill="rgba(255,255,255,0.08)"/></svg>')
}

.page-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-secondary)
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto
}

/* Section Styles */
.section {
    padding: 100px 0
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary)
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px
} */

/* ZED Certification Cards */
.zed-section {
    background: var(--gray-100);
    padding: 100px 0
}

.zed-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden
}

.zed-card.bronze {
    border-top: 6px solid #cd7f32
}

.zed-card.silver {
    border-top: 6px solid #c0c0c0
}

.zed-card.gold {
    border-top: 6px solid #ffd700
}

.zed-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15)
}

.zed-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
    position: relative
}

.bronze .zed-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.3)
}

.silver .zed-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3)
}

.gold .zed-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3)
}

.zed-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue)
}

.zed-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-orange)
}

.zed-price-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 30px
}

.zed-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px
}

.zed-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 40px
}

.zed-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    font-size: 1.1rem
}

.zed-features li:last-child {
    border-bottom: none
}

.zed-features i {
    color: var(--success);
    margin-right: 15px;
    font-size: 1.2rem
}

.zed-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg)
}

.zed-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

/* ISO Certification Section */
.iso-section {
    background: var(--white);
    padding: 100px 0
}

.iso-card {
    background: var(--gray-100);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative
}

.iso-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: var(--primary-blue)
}

.iso-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.2)
}

.iso-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue)
}

.iso-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem
}

.iso-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 40px
}

.iso-features li {
    padding: 10px 0;
    color: var(--gray-700);
    display: flex;
    align-items: center
}

.iso-features i {
    color: var(--success);
    margin-right: 12px
}

/* Comparison Section */
.comparison-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0
}

.comparison-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.comparison-header {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px
}

.comparison-subtitle {
    opacity: 0.9
}

.comparison-body {
    padding: 0
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.comparison-row:last-child {
    border-bottom: none
}

.comparison-cell {
    flex: 1;
    padding: 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1)
}

.comparison-cell:last-child {
    border-right: none
}

.comparison-cell h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px
}

.comparison-cell p {
    margin: 0;
    opacity: 0.9
}

/* Process Timeline */
.process-section {
    background: var(--gray-100);
    padding: 100px 0
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--gradient-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right
}

.timeline-item:nth-child(even) {
    left: 50%
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background: var(--white);
    border: 4px solid var(--primary-blue);
    top: 32px;
    border-radius: 50%;
    z-index: 1
}

.timeline-item:nth-child(even)::after {
    left: -13px
}

.timeline-content {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition)
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl)
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue)
}

.timeline-description {
    color: var(--gray-600);
    line-height: 1.6
}

/* Benefits Grid */
.benefits-section {
    background: var(--white);
    padding: 100px 0
}

.benefit-card {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200)
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--accent-green)
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2)
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue)
}

.benefit-description {
    color: var(--gray-600);
    line-height: 1.6
}

/* Requirements Section */
.requirements-section {
    background: var(--gray-100);
    padding: 100px 0
}

.requirement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border-left: 5px solid var(--accent-orange)
}

.requirement-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.requirement-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue)
}

.requirement-list {
    list-style: none;
    padding: 0
}

.requirement-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center
}

.requirement-list li:last-child {
    border-bottom: none
}

.requirement-list i {
    color: var(--accent-orange);
    margin-right: 12px;
    width: 20px
}

/* CTA Section */
.cta-section {
    background: var(--gray-900);
    color: var(--white);
    padding: 100px 0;
    text-align: center
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #D4A574;
    font-family: var(--font-secondary)
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg)
}

.btn-cta.primary {
    background: var(--gradient-accent);
    color: var(--white)
}

.btn-cta.secondary {
    background: var(--accent-orange);
    color: var(--white)
}

.btn-cta:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl)
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background: #20B858;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none
}

.whatsapp-float i {
    line-height: 60px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}




/* Mobile Responsive CSS for Certification Page */

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .lead {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* ZED Cards Mobile */
    .zed-card,
    .iso-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .zed-badge {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .zed-title,
    .iso-title {
        font-size: 1.5rem;
    }

    .zed-price {
        font-size: 2rem;
    }

    .zed-description,
    .iso-description {
        font-size: 1rem;
        text-align: left;
    }

    .zed-features,
    .iso-features {
        text-align: left;
        padding-left: 0;
    }

    .zed-features li,
    .iso-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .iso-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    /* Timeline Mobile */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 18px;
    }

    .timeline-item:nth-child(even)::after {
        left: 18px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-description {
        font-size: 0.95rem;
    }

    /* Benefits Cards Mobile */
    .benefit-card {
        padding: 30px 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .benefit-title {
        font-size: 1.2rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }

    /* Requirements Mobile */
    .requirement-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .requirement-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .requirement-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* Comparison Table Mobile */
    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        text-align: center;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .comparison-cell h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .comparison-cell p {
        font-size: 0.9rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .comparison-subtitle {
        font-size: 0.9rem;
    }

    /* CTA Section Mobile */
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-cta {
        width: 90%;
        text-align: center;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    /* Container Padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* ZED Cards Small Mobile */
    .zed-card,
    .iso-card {
        padding: 20px 15px;
    }

    .zed-badge {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .zed-title,
    .iso-title {
        font-size: 1.3rem;
    }

    .zed-price {
        font-size: 1.8rem;
    }

    .zed-features li,
    .iso-features li {
        font-size: 0.9rem;
    }

    .iso-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Timeline Small Mobile */
    .timeline-content {
        padding: 25px 20px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }

    /* Benefits Small Mobile */
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }

    /* Requirements Small Mobile */
    .requirement-card {
        padding: 20px 15px;
    }

    .requirement-list li {
        font-size: 0.85rem;
    }

    /* Comparison Small Mobile */
    .comparison-cell {
        padding: 12px 10px;
    }

    .comparison-cell h4 {
        font-size: 0.95rem;
    }

    .comparison-cell p {
        font-size: 0.85rem;
    }

    /* CTA Small Mobile */
    .cta-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .btn-cta {
        width: 95%;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .zed-card,
    .iso-card {
        padding: 15px 10px;
    }

    .zed-badge {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .zed-features li,
    .iso-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .timeline-content {
        padding: 20px 15px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .requirement-card {
        padding: 15px 12px;
    }

    .comparison-cell {
        padding: 10px 8px;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .zed-card,
    .iso-card {
        padding: 25px 15px;
    }

    .timeline-content {
        padding: 25px 20px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .page-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .zed-card,
    .iso-card,
    .benefit-card,
    .requirement-card {
        margin: 0 5px 20px 5px;
    }

    .btn-cta {
        width: 100%;
        margin: 0 5px 10px 5px;
    }
}