* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
        }
          .glowing-bulb {
    color: #000; /* Black bulb */
    font-size: 28px;
    text-shadow:
        0 0 4px  rgba(0, 0, 0, 0.4),
        0 0 8px  rgba(0, 0, 0, 0.3),
        0 0 14px rgba(0, 0, 0, 0.25);
}

        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            margin: 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus-visible,
        .navbar-nav .nav-link.active,
        .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


        .btn-get-started:hover {
    background: #86BC25;
}


        .theme-toggle {
           

             background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
        }

        .theme-toggle svg {
           width: 24px;
            height: 24px;
            stroke: #333;
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }
        body.dark-mode {
            background-color: #1a1a1a;
            color: #fff;
        }

        body.dark-mode .navbar {
            background-color: #2a2a2a;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        body.dark-mode .navbar-nav .nav-link {
            color: #e0e0e0 !important;
        }

        body.dark-mode .navbar-nav .nav-link:hover,
        body.dark-mode .navbar-nav .nav-link:focus-visible,
        body.dark-mode .navbar-nav .nav-link.active,
        body.dark-mode .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        body.dark-mode .theme-toggle svg {
            stroke: #fff;
        }

        body.dark-mode .dropdown-menu {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .dropdown-item {
            color: #e0e0e0;
        }

        body.dark-mode .dropdown-item:hover {
            background-color: #1a3a52;
            color: #4a9eff;
        }

        .hero-about {
            min-height: 100vh;
            padding: 0;
            margin: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
            background-size: cover;
            background-position: top center;
            background-attachment: scroll;
            background-repeat: no-repeat;
            width: 100%;
            overflow-x: hidden;
            overflow-y: visible;
            text-align: left;
            display: flex;
            flex-direction: column;
        }
        

        .hero-about .container {
            margin: 0;
            padding: 0;
            max-width: 100%;
            width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
            flex: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .hero-about-content {
            width: 100%;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
            flex: 1;
            min-height: 0;
            margin-right: 0;
            height: 100%;
        }

        .hero-about-image {
            border-radius: 0;
            overflow: hidden;
            width: 100%;
            position: relative;
            min-height: 420px;
            line-height: 0;
            background-color: #2b2b2b;
        }

        .hero-about-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            object-position: center center;
            background-color: #060708 !important;
        }

        body.dark-mode .hero-about-image img {
            filter: brightness(0.85);
        }

        .hero-about-copy {
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 4rem 2.5rem 2rem 2.5rem;
        }

        .hero-description {
            color: #1f2937;
            font-size: 1.1rem;
            max-width: 1100px;
            margin-top: 1rem;
            line-height: 1.8;
        }

        .hero-about .values-badge {
            transition: all 0.3s ease;
        }

        @media (max-width: 992px) {
            .hero-about {
                height: auto;
                min-height: unset;
                padding: 0;
                overflow-x: hidden;
                overflow-y: visible;
            }
            .hero-about .container {
                height: auto;
                padding-left: 0 !important;
                padding-right: 0 !important;
                max-width: 100% !important;
            }
            .hero-about-content {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                height: auto;
            }
            .hero-about-image {
                width: 100%;
                min-width: 0;
                height: auto;
                min-height: unset;
                position: relative;
                overflow: hidden;
                background-color: transparent;
                line-height: 0;
            }
            .hero-about-image img {
                position: static;
                width: 100%;
                height: auto;
                display: block;
                object-fit: initial;
                background-color: transparent !important;
            }
            .hero-about-copy {
                padding: 1.5rem 1.5rem 1.25rem;
                min-width: 0;
                width: 100%;
                height: auto;
                box-sizing: border-box;
                overflow: visible;
                justify-content: flex-start;
                align-items: center;
            }
            .hero-about h1 {
                font-size: 1.9rem;
                line-height: 1.2;
                margin-bottom: 0.5rem;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
            .hero-subheading {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
            .hero-about p {
                padding: 0;
                font-size: 0.88rem;
                line-height: 1.6;
                margin-bottom: 0;
                color: #1f2937;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
        }

        @media (max-width: 576px) {
            .hero-about {
                height: auto;
                min-height: unset;
                padding: 0;
                overflow-x: hidden;
                overflow-y: visible;
            }
            .hero-about .container {
                height: auto;
                padding-left: 0 !important;
                padding-right: 0 !important;
                max-width: 100% !important;
            }
            .hero-about-content {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                height: auto;
            }
            .hero-about-image {
                width: 100%;
                min-width: 0;
                height: auto;
                min-height: unset;
                position: relative;
                overflow: hidden;
                background-color: transparent;
                line-height: 0;
            }
            .hero-about-image img {
                position: static;
                width: 100%;
                height: auto;
                display: block;
                object-fit: initial;
                background-color: transparent !important;
            }
            .hero-about-copy {
                padding: 1.25rem 1.25rem 1rem;
                min-width: 0;
                width: 100%;
                height: auto;
                box-sizing: border-box;
                overflow: visible;
                justify-content: flex-start;
                align-items: center;
            }
            .hero-about h1 {
                font-size: 1.75rem;
                line-height: 1.2;
                margin-bottom: 0.5rem;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
            .hero-subheading {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
            .hero-about p {
                font-size: 0.82rem;
                padding: 0;
                margin-bottom: 0;
                line-height: 1.55;
                text-align: center !important;
                width: 100%;
                box-sizing: border-box;
            }
        }

        @media (max-width: 480px) {
            .hero-about {
                height: auto;
                min-height: unset;
                overflow-x: hidden;
                overflow-y: visible;
            }
            .hero-about .container {
                height: auto;
                padding-left: 0 !important;
                padding-right: 0 !important;
                max-width: 100% !important;
            }
            .hero-about-content {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                height: auto;
            }
            .hero-about-image {
                width: 100%;
                min-width: 0;
                height: auto;
                min-height: unset;
                position: relative;
                overflow: hidden;
                background-color: transparent;
                line-height: 0;
            }
            .hero-about-image img {
                position: static;
                width: 100%;
                height: auto;
                display: block;
                object-fit: initial;
                background-color: transparent !important;
            }
            .hero-about-copy {
                padding: 1.1rem 1rem 1rem;
                min-width: 0;
                width: 100%;
                height: auto;
                box-sizing: border-box;
                overflow: visible;
                justify-content: flex-start;
                align-items: center;
            }
            .hero-about h1 {
                font-size: 1.6rem;
                line-height: 1.2;
                margin-bottom: 0.4rem;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
            .hero-subheading {
                font-size: 1.1rem;
                margin-bottom: 0.45rem;
                width: 100%;
                box-sizing: border-box;
                text-align: center !important;
            }
            .hero-about p {
                font-size: 0.78rem;
                padding: 0;
                margin-bottom: 0;
                line-height: 1.5;
                text-align: center !important;
                width: 100%;
                box-sizing: border-box;
            }
        }

        .hero-about h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #000;
            margin-top: 0;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: left;
        }

        .hero-about h1 .highlight {
            background-color:#86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
         .key-facts-container h2 .highlight {
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
      
        .hero-subheading {
            font-size: 2.3rem;
            font-weight: 600;
            color: #86BC25;
            margin: 0 auto 1.5rem;
            line-height: 1.3;
            letter-spacing: 0.02em;
            text-transform: none;
            text-align: center;
            width: 100%;
            max-width: 1000px;
        }

        .hero-subheading-highlight {
            color: #86BC25;
        }

        .hero-subheading-prefix {
            color: white;
        }

        body:not(.dark-mode) .hero-subheading-prefix {
            color: #000;
        }

        .hero-about p {
            color: #1f2937;;
            font-size: 1.1rem;
            max-width: 1600px;
            width: 100%;
            margin: 0 auto 3rem;
            line-height: 1.8;
            text-align: left;
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: break-word;
            hyphens: auto;
            padding: 0 1.5rem;
            white-space: normal;
            -webkit-hyphens: auto;
            -moz-hyphens: auto;
            -ms-hyphens: auto;
            text-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
        }
        
        .hero-about p strong {
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-heading {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 2rem;
            text-align: center;
        }

        .about-heading .highlight {
            color: #86BC25;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .about-text p {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .about-image {
            background: linear-gradient(135deg, #86BC25 0%, #2563eb 100%);
            height: 400px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .value-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .value-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .value-icon {
            font-size: 2.5rem;
            color: #86BC25;
            margin-bottom: 1rem;
        }

        body.dark-mode .about-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .about-heading {
            color: #fff;
        }

        body.dark-mode .about-text h3 {
            color: #fff;
        }

        body.dark-mode .about-text p {
            color: #ccc;
        }

        body.dark-mode .value-card {
            background-color: #2a2a2a;
        }

        body.dark-mode .value-card h4 {
            color: #fff;
        }
        .values-badge {
             width: 32px;
            height: 32px;
             align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #e3f2fd;
            border-radius: 9999px;
            border: 1px solid #dbeafe;
            color: #86BC25;
            font-size: 0.875rem;
            font-weight: 500;
        }

        body.dark-mode .value-card p {
            color: ;
        }

        body.dark-mode .hero-about {
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(17, 17, 17, 0.9) 100%);
            background-size: cover;
            background-position: top center;
            background-attachment: scroll;
            color: #f8fafc;
        }

        body.dark-mode .hero-about h1{
            color: #f8fafc !important;
        }

        body.dark-mode .hero-about .hero-subheading {
            color:white;
        }

        body.dark-mode .hero-about p {
            color: #e2e8f0;
            text-shadow: none;
        }

        body.dark-mode footer {
            background-color: #111313;
            border-top: 1px solid #333;
        }

        body.dark-mode footer h6 {
            color: #ffffff !important;
        }

        body.dark-mode footer a {
            color: #b0b0b0 !important;
        }

        body.dark-mode footer a:hover {
            color: #d3d3d8 !important;
        }

        body.dark-mode footer .text-muted {
            color: #888 !important;
        }

        body.dark-mode footer .text-dark {
            color: #ffffff !important;
        }

        body.dark-mode footer hr {
            border-color: #333 !important;
        }

        body.dark-mode footer svg {
            stroke: #b0b0b0;
        }

        body.dark-mode footer a:hover svg {
            stroke: #4a9eff;
        }

        .footer-email-line {
            margin-bottom: 0.65rem;
            color: #e3ecf4;
            font-size: 0.95rem;
            letter-spacing: 0.01em;
        }

        .footer-email-line .footer-email-label {
            white-space: normal;
        }

        @media (min-width: 992px) {
            .footer-email-line .footer-email-label {
                white-space: nowrap;
            }
        }

        .footer-email-line .footer-email-label {
            color: #ffffff;
            font-weight: 600;
            display: inline-block;
            margin-right: 0.45rem;
        }

        .footer-email-line a {
            color: #cfd9e6;
            text-decoration: none;
        }

        .footer-email-line a:hover {
            color: #ffffff;
        }
         
         footer a:hover {
            color: #86BC25 !important;
        }

        @media (max-width: 1024px) {
            .navbar {
                padding: 0.8rem 0;
            }

            .navbar-brand img {
                height: 45px;
            }

            .navbar-nav .nav-link {
                font-size: 0.95rem;
                margin-left: 0.75rem;
            }

            .dropdown-menu {
                font-size: 0.95rem;
            }

            .dropdown-item {
                padding: 0.7rem 1rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

            
            .hero-about {
                height: auto;
                padding: 0;
            }
            
            .hero-about .container {
                padding: 0 1.5rem;
            }
            
            .hero-about h1 {
                font-size: 2.5rem;
            }
            
            .hero-about p {
                font-size: 0.98rem;
                max-width: 900px;
                line-height: 1.75;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.7rem 0;
            }

            .navbar-brand img {
                height: 42px;
            }

            /* .navbar-nav {
                text-align: center;
                margin-left: 0 !important;
            } */

            .navbar-nav .nav-link {
                font-size: 0.9rem;
                margin-left: 0;
                padding: 0.6rem 0;
            }

            .dropdown-menu {
                min-width: 200px;
                font-size: 0.9rem;
                text-align: left;
            }

            .dropdown-item {
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        }

        @media (max-width: 640px) {
            .navbar {
                padding: 0.6rem 0;
            }

            .navbar-brand img {
                height: 38px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.85rem;
                padding: 0.5rem 0;
            }

            .dropdown-menu {
                min-width: 180px;
                font-size: 0.85rem;
            }

            .dropdown-item {
                font-size: 0.85rem;
                padding: 0.65rem 0.9rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

            
            .hero-about {
                height: auto;
                min-height: unset;
                padding: 0;
            }
            
            .hero-about .container {
                padding: 0 1rem !important;
                width: 100% !important;
            }
            
            .hero-about h1 {
                font-size: 1.85rem;
                margin-bottom: 0.9rem;
            }
            
            .hero-subheading {
                font-size: 1.6rem;
            }
            
            .hero-about p {
                font-size: 0.92rem !important;
                max-width: 100% !important;
                line-height: 1.68 !important;
                margin-bottom: 0.45rem !important;
                padding: 0 !important;
                text-align: left !important;
            }
            
            .hero-about p strong {
                font-size: inherit !important;
                display: inline !important;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.5rem 0;
            }

            .navbar-brand img {
                height: 35px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.8rem;
                margin-left: 0;
                padding: 0.4rem 0;
            }

            .dropdown-menu {
                min-width: 160px;
                font-size: 0.8rem;
            }

            .dropdown-item {
                font-size: 0.8rem;
                padding: 0.6rem 0.8rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        }

        /* Mission and Vision Section */
        .mission-vision-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .mission-vision-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .mission-card, .vision-card {
            padding: 2.5rem;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        body.dark-mode .mission-vision-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .mission-card, body.dark-mode .vision-card {
            background-color: #222222;
            border: 1px solid #333333;
        }

        body.dark-mode .mission-card p, body.dark-mode .vision-card p {
            color: #b0b0b0 !important;
        }

        body.dark-mode .mission-card h2, body.dark-mode .vision-card h2 {
            color: #ffffff !important;
        }

        body.dark-mode .mission-card h4, body.dark-mode .vision-card h4 {
            color: #ffffff !important;
        }

        body.dark-mode .mission-card span[style*="color"], body.dark-mode .vision-card span[style*="color"] {
            color: #b0b0b0 !important;
        }

        /* Keep Purpose and Aspiration badge text blue in dark mode */
        body.dark-mode .mission-card div[style*="background-color: #eff6ff"] span[style*="color: #1d4ed8"],
        body.dark-mode .vision-card div[style*="background-color: #eff6ff"] span[style*="color: #1d4ed8"] {
            color: #1d4ed8 !important;
        }

        @media (max-width: 768px) {
            .mission-vision-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 0;
            }
        }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Floating WhatsApp circle */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #0003;
    z-index: 999;
    animation: pulse 1.5s infinite;
}

/* Icon inside */
.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


        @media (max-width: 768px) {
            .touch-header-wrapper {
                flex-direction: column;
                gap: 1.5rem;
                margin-bottom: 1rem;
            }

            .get-in-touch-section h2 {
                font-size: 1.8rem;
                white-space: normal;
            }
        }
   

        

        @media (max-width: 768px) {
            .hero-about {
                height: auto;
                min-height: unset;
                padding: 0;
            }
            
            .hero-about .container {
                padding: 0 1.2rem !important;
                width: 100% !important;
            }
            
            .hero-about .values-badge {
                padding: 0.6rem 1.5rem !important;
                gap: 0.6rem !important;
            }
            
            .hero-about .values-badge svg {
                width: 14px !important;
                height: 14px !important;
            }
            
            .hero-about .values-badge span {
                font-size: 0.85rem !important;
            }

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

            .hero-about h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero-about p {
                font-size: 0.95rem !important;
                max-width: 100% !important;
                line-height: 1.7 !important;
                margin-bottom: 0.5rem !important;
                padding: 0 !important;
                text-align: left !important;
            }
            
            .hero-about p strong {
                font-size: inherit !important;
            }

            .about-heading {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-about {
                height: auto;
                min-height: unset;
                padding: 0;
            }
            
            .hero-about .container {
                padding: 0 0.9rem !important;
                width: 100% !important;
            }
            
            .hero-about .values-badge {
                padding: 0.5rem 1.25rem !important;
                gap: 0.5rem !important;
                margin-top: 0.25rem !important;
                margin-bottom: 0.75rem !important;
            }
            
            .hero-about .values-badge svg {
                width: 12px !important;
                height: 12px !important;
            }
            
            .hero-about .values-badge span {
                font-size: 0.8rem !important;
            }
            
            .hero-about h1 {
                font-size: 1.75rem;
                margin-bottom: 0.85rem;
            }
            
            .hero-about p {
                font-size: 0.88rem !important;
                max-width: 100% !important;
                line-height: 1.65 !important;
                margin-bottom: 0.4rem !important;
                padding: 0 !important;
                text-align: left !important;
            }
            
            .hero-about p strong {
                font-size: inherit !important;
            }
            
            .about-heading {
                font-size: 1.75rem;
            }
            
            .mission-card, .vision-card {
                padding: 2rem 1.5rem;
            }
            
            .key-facts-container {
                padding: 2rem 1.5rem;
            }
            
            .core-values-container {
                padding: 2rem 1.5rem;
            }
        }
        
        @media (max-width: 375px) {
            .hero-about {
                height: auto;
                min-height: unset;
                padding: 0;
            }
            
            .hero-about .container {
                padding: 0 0.75rem !important;
                width: 100% !important;
            }
            
            .hero-about .values-badge {
                padding: 0.4rem 1rem !important;
                gap: 0.4rem !important;
                margin-top: 0.25rem !important;
                margin-bottom: 0.6rem !important;
            }
            
            .hero-about .values-badge svg {
                width: 11px !important;
                height: 11px !important;
            }
            
            .hero-about .values-badge span {
                font-size: 0.75rem !important;
            }
            
            .hero-about h1 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }
            
            .hero-about p {
                font-size: 0.82rem !important;
                max-width: 100% !important;
                line-height: 1.6 !important;
                margin-bottom: 0.35rem !important;
                padding: 0 !important;
                text-align: left !important;
            }
            
            .hero-about p strong {
                font-size: inherit !important;
            }
            
            .about-heading {
                font-size: 1.5rem;
            }
            
            .mission-card, .vision-card {
                padding: 1.5rem 1rem;
            }
            
            .key-facts-container {
                padding: 1.5rem 1rem;
            }
            
            .core-values-container {
                padding: 1.5rem 1rem;
            }
        }

        /* Key Facts Section */
        .key-facts-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .key-facts-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 3rem;
            background-color: #F9FAFB;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

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

        .key-facts-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
        }

        .key-facts-header p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .fact-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .fact-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .fact-card:hover .fact-title {
            color: #86BC25;
        }

        .fact-card .fact-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fact-card .fact-number {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .fact-card .fact-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.4rem;
            transition: color 0.3s ease;
        }

        .fact-card .fact-description {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.5;
        }

        body.dark-mode .key-facts-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .key-facts-container {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .key-facts-header h2 {
            color: #fff;
        }

        body.dark-mode .key-facts-header p {
            color: #ccc;
        }

        body.dark-mode .fact-card {
            background-color: #1a1a1a;
        }

        body.dark-mode .fact-card .fact-title {
            color: #fff;
        }

        body.dark-mode .fact-card:hover .fact-title {
            color: #86BC25;
        }

        body.dark-mode .fact-card .fact-description {
            color: #ccc;
        }
         .values-badge {
             align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #e3f2fd;
            border-radius: 9999px;
            border: 1px solid #dbeafe;
            color: #86BC25;
            font-size: 0.875rem;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .key-facts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .key-facts-grid {
                grid-template-columns: 1fr;
            }

            .key-facts-header h2 {
                font-size: 2rem;
            }

            .fact-card {
                padding: 2rem;
            }

            .fact-card .fact-number {
                font-size: 2rem;
            }
        }

        /* Core Values Section */
        .core-values-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .core-values-container {
            max-width: 1200px;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 3rem;
            background-color: #F9FAFB;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            margin: 0 auto;
        }

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

        .core-values-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .core-values-header h2 .highlight {
            color: #86BC25;
        }

        .core-values-header p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .core-value-card {
            background: transparent;
            padding: 0;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

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

        .core-value-card:hover h3 {
            color: #86BC25;
        }

        .core-value-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .core-value-icon.excellence {
            color: #86BC25;
        }

        .core-value-icon.integrity {
            color: #86BC25;
        }

        .core-value-icon.innovation {
            color: #86BC25;
        }

        .core-value-icon.partnership {
            color: #86BC25;
        }

        .core-value-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .core-value-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        body.dark-mode .core-values-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .core-values-container {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .core-values-header h2 {
            color: #fff;
        }

        body.dark-mode .core-values-header p {
            color: #ccc;
        }

        body.dark-mode .core-value-card {
            background-color: transparent;
        }

        body.dark-mode .core-value-card h3 {
            color: #fff;
        }

        body.dark-mode .core-value-card:hover h3 {
            color: #86BC25;
        }

        body.dark-mode .core-value-card p {
            color: #ccc;
        }

        @media (max-width: 1024px) {
            .core-values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .core-values-grid {
                grid-template-columns: 1fr;
            }

            .core-values-header h2 {
                font-size: 2rem;
            }
        }

        .working-process-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .working-process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .working-process-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
        }

        .working-process-header p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

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

        .process-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .process-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .process-card:hover h3 {
            color: #86BC25;
        }

        .process-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            background-color: #86BC25;
            color: #000;
        }

        .process-icon.goal,
        .process-icon.challenges,
        .process-icon.solution {
            background-color: #86BC25;
            color: #000;
        }

        .process-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .process-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
            margin: 0;
        }

        body.dark-mode .working-process-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .working-process-header h2 {
            color: #fff;
        }

        body.dark-mode .working-process-header p {
            color: #ccc;
        }

        body.dark-mode .process-card {
            background-color: #2a2a2a;
        }

        body.dark-mode .process-card h3 {
            color: #fff;
        }

        body.dark-mode .process-card:hover h3 {
            color: #86BC25;
        }

        body.dark-mode .process-card p {
            color: #ccc;
        }

        body.dark-mode .process-icon {
            background-color: #86BC25;
            color: #000;
        }

        @media (max-width: 1024px) {
            .working-process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .working-process-grid {
                grid-template-columns: 1fr;
            }

            .working-process-header h2 {
                font-size: 2rem;
            }

            .process-card {
                padding: 2rem;
            }
        }

        .best-services-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .best-services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .best-services-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
        }

        .best-services-header p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .best-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 0.85rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
            transition: box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 230px;
        }

        .service-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: #86BC25;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: #000;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .service-icon i,
        .service-icon i::before {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transform-origin: center;
            -webkit-transform-origin: center;
            will-change: transform;
        }

        @-webkit-keyframes slow-rotate {
            0% {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }
            100% {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

        @keyframes slow-rotate {
            0% {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }
            100% {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

        @-webkit-keyframes handshake-shake {
            0% {
                -webkit-transform: rotate(0deg) translateX(0);
                transform: rotate(0deg) translateX(0);
            }
            20% {
                -webkit-transform: rotate(8deg) translateX(1px);
                transform: rotate(8deg) translateX(1px);
            }
            40% {
                -webkit-transform: rotate(-6deg) translateX(-1px);
                transform: rotate(-6deg) translateX(-1px);
            }
            60% {
                -webkit-transform: rotate(5deg) translateX(0.5px);
                transform: rotate(5deg) translateX(0.5px);
            }
            80% {
                -webkit-transform: rotate(-3deg) translateX(-0.5px);
                transform: rotate(-3deg) translateX(-0.5px);
            }
            100% {
                -webkit-transform: rotate(0deg) translateX(0);
                transform: rotate(0deg) translateX(0);
            }
        }

        @keyframes handshake-shake {
            0% {
                -webkit-transform: rotate(0deg) translateX(0);
                transform: rotate(0deg) translateX(0);
            }
            20% {
                -webkit-transform: rotate(8deg) translateX(1px);
                transform: rotate(8deg) translateX(1px);
            }
            40% {
                -webkit-transform: rotate(-6deg) translateX(-1px);
                transform: rotate(-6deg) translateX(-1px);
            }
            60% {
                -webkit-transform: rotate(5deg) translateX(0.5px);
                transform: rotate(5deg) translateX(0.5px);
            }
            80% {
                -webkit-transform: rotate(-3deg) translateX(-0.5px);
                transform: rotate(-3deg) translateX(-0.5px);
            }
            100% {
                -webkit-transform: rotate(0deg) translateX(0);
                transform: rotate(0deg) translateX(0);
            }
        }

        .service-icon.spin-1,
        .service-icon.spin-1 i,
        .service-icon.spin-1 i::before {
            animation: slow-rotate 14s linear infinite;
            -webkit-animation: slow-rotate 14s linear infinite;
        }

        .service-icon.spin-2,
        .service-icon.spin-2 i,
        .service-icon.spin-2 i::before {
            animation: slow-rotate 12s linear infinite;
            -webkit-animation: slow-rotate 12s linear infinite;
        }

        .service-icon.spin-3,
        .service-icon.spin-3 i,
        .service-icon.spin-3 i::before {
            animation: slow-rotate 16s linear infinite;
            -webkit-animation: slow-rotate 16s linear infinite;
        }

        .service-icon.shake-hand,
        .service-icon.shake-hand i,
        .service-icon.shake-hand i::before {
            animation: handshake-shake 3.2s ease-in-out infinite;
            -webkit-animation: handshake-shake 3.2s ease-in-out infinite;
        }

        @media (prefers-reduced-motion: reduce) {
            .service-icon.spin-1,
            .service-icon.spin-1 i,
            .service-icon.spin-1 i::before,
            .service-icon.spin-2,
            .service-icon.spin-2 i,
            .service-icon.spin-2 i::before,
            .service-icon.spin-3,
            .service-icon.spin-3 i,
            .service-icon.spin-3 i::before,
            .service-icon.shake-hand,
            .service-icon.shake-hand i,
            .service-icon.shake-hand i::before {
                animation: none;
                -webkit-animation: none;
            }
        }

        .service-card:hover .service-icon {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
        }

        .service-icon.technology {
            background-color: #86BC25;
            color: #000;
        }

        .service-icon.customized {
            background-color: #86BC25;
            color: #000;
        }

        .service-icon.confidentiality {
            background-color: #86BC25;
            color: #000;
        }

        .service-icon.timely {
            background-color: #86BC25;
            color: #000;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin: 0 0 0.75rem 0;
            transition: opacity 0.3s ease, max-height 0.3s ease;
            opacity: 1;
            max-height: 100px;
        }

        .service-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            margin: 0;
            opacity: 1;
            transition: opacity 0.3s ease, max-height 0.3s ease;
            max-height: none;
            overflow: visible;
        }

        body.dark-mode .best-services-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .best-services-header h2 {
            color: #fff;
        }

        body.dark-mode .best-services-header p {
            color: #ccc;
        }

        body.dark-mode .service-card {
            background-color: #2a2a2a;
        }

        body.dark-mode .service-card h3 {
            color: #fff;
        }

        body.dark-mode .service-description {
            color: #ccc;
        }

        body.dark-mode .service-icon {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .service-icon.technology {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .service-icon.customized {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .service-icon.confidentiality {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .service-icon.timely {
            background-color: #86BC25;
            color: #000;
        }

        @media (max-width: 1024px) {
            .best-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .best-services-grid {
                grid-template-columns: 1fr;
            }

            .best-services-header h2 {
                font-size: 2rem;
            }
        }

        .why-choose-us-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .why-choose-us-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose-us-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .why-choose-us-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
        }

        .why-choose-us-header p {
            color: #666;
            font-size: 1rem;
            margin: 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .reason-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .reason-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .reason-card:hover h3 {
            color: #86BC25;
        }

        .reason-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            background-color: #86BC25;
            color: #000;
        }

        .reason-icon.expertise {
            background-color: #86BC25;
            color: #000;
        }

        .reason-icon.cost-effective {
            background-color: #86BC25;
            color: #000;
        }

        .reason-icon.security {
            background-color: #86BC25;
            color: #000;
        }

        .reason-icon.results {
            background-color: #86BC25;
            color: #000;
        }

        .reason-icon.solutions {
            background-color: #86BC25;
            color: #000;
        }

        .reason-icon.support {
            background-color: #86BC25;
            color: #000;
        }

        .reason-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .reason-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
            margin: 0;
        }

        body.dark-mode .reason-icon {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .why-choose-us-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .why-choose-us-header h2 {
            color: #fff;
        }

        body.dark-mode .why-choose-us-header p {
            color: #ccc;
        }

        body.dark-mode .reason-card {
            background-color: #2a2a2a;
        }

        body.dark-mode .reason-card h3 {
            color: #fff;
        }

        body.dark-mode .reason-card:hover h3 {
            color: #86BC25;
        }

        body.dark-mode .reason-card p {
            color: #ccc;
        }

        @media (max-width: 1024px) {
            .why-choose-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-choose-us-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-us-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 1024px) {
            footer .row {
                gap: 1.5rem !important;
            }

            footer h6 {
                font-size: 0.95rem;
            }

            footer small {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 2rem 1rem !important;
            }

            footer .row {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.5rem !important;
                justify-content: flex-start !important;
            }

            footer .row > div {
                flex: none !important;
                width: 100% !important;
                min-width: auto !important;
            }

            footer img {
                max-width: 120px !important;
            }

            footer h6 {
                font-size: 0.95rem;
                margin-bottom: 1rem !important;
            }

            footer ul {
                padding-left: 0;
            }

            footer li {
                margin-bottom: 0.75rem !important;
            }

            footer small {
                font-size: 0.8rem;
            }

            footer svg {
                width: 16px !important;
                height: 16px !important;
            }

            .row.align-items-center {
                flex-direction: column !important;
                text-align: center !important;
                gap: 1rem !important;
            }

            .row.align-items-center .col-md-4 {
                width: 100% !important;
                text-align: center !important;
            }

            footer hr {
                margin: 1rem 0 !important;
            }
        }

        @media (max-width: 640px) {
            footer {
                padding: 1.5rem 1rem !important;
            }

            footer img {
                max-width: 100px !important;
                margin-bottom: 0.75rem !important;
            }

            footer h6 {
                font-size: 0.9rem;
                margin-bottom: 0.75rem !important;
            }

            footer .mb-4 {
                margin-bottom: 0.75rem !important;
            }

            footer li {
                margin-bottom: 0.5rem !important;
            }

            footer small {
                font-size: 0.75rem;
            }

            footer .text-muted.small {
                margin-bottom: 0.5rem !important;
            }

            footer p {
                margin-bottom: 0.5rem !important;
            }

            footer svg {
                width: 14px !important;
                height: 14px !important;
                margin-right: 0.4rem !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.75rem;
            }

            footer hr {
                margin: 0.75rem 0 !important;
            }
            
            footer .row[style*="display: flex"] {
                flex-direction: column !important;
                gap: 1.5rem !important;
            }
            
            footer .row[style*="display: flex"] > div {
                min-width: 100% !important;
                flex: none !important;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 1rem !important;
            }

            footer .mb-5 {
                margin-bottom: 1rem !important;
            }

            footer .row {
                gap: 1rem !important;
            }

            footer img {
                max-width: 90px !important;
                margin-bottom: 0.5rem !important;
            }

            footer h6 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem !important;
            }

            footer ul.list-unstyled {
                margin-bottom: 0;
            }

            footer li {
                margin-bottom: 0.35rem !important;
            }

            footer small {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            footer .text-muted {
                font-size: 0.7rem !important;
            }

            footer svg {
                width: 12px !important;
                height: 12px !important;
                margin-right: 0.3rem !important;
            }

            footer a {
                font-size: 0.7rem;
            }

            footer hr {
                margin: 0.5rem 0 !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.7rem;
            }
            
            footer .row[style*="display: flex"] {
                flex-direction: column !important;
                gap: 1rem !important;
            }
            
            footer .row[style*="display: flex"] > div {
                min-width: 100% !important;
                flex: none !important;
            }
        }
        
        @media (max-width: 375px) {
            .hero-about {
                height: auto;
                min-height: unset;
            }
            
            .hero-about .container {
                padding: 0 0.6rem !important;
                width: 100% !important;
            }
            
            .hero-about .values-badge {
                padding: 0.35rem 0.85rem !important;
                gap: 0.35rem !important;
            }
            
            .hero-about .values-badge svg {
                width: 10px !important;
                height: 10px !important;
            }
            
            .hero-about .values-badge span {
                font-size: 0.7rem !important;
            }
            
            .hero-about h1 {
                font-size: 1.4rem;
                margin-bottom: 0.6rem;
                max-width: 1000px;
            }
            
            .hero-about p {
                font-size: 0.78rem !important;
                max-width: 100% !important;
                line-height: 1.55 !important;
                margin-bottom: 0.3rem !important;
                padding: 0 !important;
                text-align: left !important;
                max-width:1000px;
            }
            
            .hero-about p strong {
                font-size: inherit !important;
            }
            
            footer {
                padding: 0.75rem !important;
            }
            
            footer img {
                max-width: 80px !important;
            }
            
            footer h6 {
                font-size: 0.8rem;
            }
            
            footer .text-muted,
            footer small,
            footer a {
                font-size: 0.65rem;
            }
            
            footer svg {
                width: 10px !important;
                height: 10px !important;
            }
            
            footer .row[style*="display: flex"] {
                gap: 0.75rem !important;
            }
        }
        
        @media (max-width: 320px) {
            .hero-about {
                height: auto;
                min-height: 280px;
                padding: 0.85rem 0.4rem;
            }
            
            .hero-about .container {
                padding: 0 0.5rem !important;
                width: 100% !important;
            }
            
            .hero-about h1 {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }
            
            .hero-about p {
                font-size: 0.7rem !important;
                max-width: 100% !important;
                line-height: 1.55 !important;
                margin-bottom: 0.25rem !important;
                padding: 0 !important;
                text-align: left !important;
                word-spacing: normal !important;
            }
            
            .hero-about p strong {
                font-size: inherit !important;
                font-weight: 600 !important;
            }
            
            .hero-about .values-badge {
                padding: 0.3rem 0.7rem !important;
                gap: 0.3rem !important;
            }
            
            .hero-about .values-badge svg {
                width: 9px !important;
                height: 9px !important;
            }
            
            .hero-about .values-badge span {
                font-size: 0.65rem !important;
            }
        }
        
        @media (max-width: 280px) {
            .hero-about {
                height: auto;
                min-height: 260px;
                padding: 0.75rem 0.3rem;
            }
            
            .hero-about .container {
                padding: 0 0.4rem !important;
                width: 100% !important;
            }
            
            .hero-about h1 {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }
            
            .hero-about p {
                font-size: 0.68rem !important;
                line-height: 1.5 !important;
                margin-bottom: 0.2rem !important;
            }
            
            .hero-about .values-badge {
                padding: 0.25rem 0.6rem !important;
                gap: 0.25rem !important;
            }
            
            .hero-about .values-badge svg {
                width: 8px !important;
                height: 8px !important;
            }
            
            .hero-about .values-badge span {
                font-size: 0.6rem !important;
            }
        }
      
        
