
        


      /* Hero Section */
        .hero {
            display: flex;
            align-items: flex-start;
            justify-content: space-evenly;
            padding: 0 30px;
            margin-top: 10rem;
            min-height: 80vh;
        }

        .hero-content {
            flex: 1;
           
        }

        .hero-title {
            font-size: 20px;
            /* font-weight: 500; */
           
            line-height: 1;
            color: #113554;
            margin-bottom: 34px;
            /* Animation properties */
            opacity: 0;
            transform: translateX(-100px);
            animation: slideInFromLeft 1s ease-out 0.2s forwards;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            margin-bottom: 34px;
            /* Animation properties */
            opacity: 0;
            transform: translateX(-100px);
            animation: slideInFromLeft 1s ease-out 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
            /* Animation properties */
            opacity: 0;
            transform: translateX(-100px);
            animation: slideInFromLeft 1s ease-out 1s forwards;
        }

        .btn-primary {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(228, 74, 27, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #e44a1b;
            padding: 18px 24px ;
            border: 1px solid #e44a1b;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
         .btn-primarys {
            background-color: #e44a1b;
            color: #fdfeff;
            width: 200px;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            text-align: center;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background-color: #fff;
            color: #e44a1b;
            /* border: #fff; */
            transform: translateY(-2px);
        }

        .hero-images {
          
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            width: 44%;
        }

        .hero-image {
            width: 100%;
            border-radius: 16px;
            object-fit: cover;
            object-position: center;
            height: 200px;
            opacity: 0;
        }
        .lady{
            width: 100%;
            border-radius: 16px;
            object-fit: cover;
            object-position: top;
            
        }

        /* Individual image animations */
        .hero-image:nth-child(1) {
            transform: translate(-200px, -200px);
            animation: slideInFromTopLeft 1.2s ease-out 0.4s forwards;
        }

        .hero-image:nth-child(2) {
            transform: translate(200px, -200px);
            animation: slideInFromTopRight 1.2s ease-out 0.6s forwards;
        }

        .hero-image:nth-child(3) {
            transform: translate(-200px, 200px);
            animation: slideInFromBottomLeft 1.2s ease-out 0.8s forwards;
        }

        .hero-image:nth-child(4) {
            transform: translate(200px, 200px);
            animation: slideInFromBottomRight 1.2s ease-out 1s forwards;
        }

        /* Keyframe animations */
        @keyframes slideInFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromTopLeft {
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        @keyframes slideInFromTopRight {
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        @keyframes slideInFromBottomLeft {
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        @keyframes slideInFromBottomRight {
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 0 20px;
                margin-top: 50px;
            }

            .hero-content {
                margin-right: 0;
                margin-bottom: 40px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-images {
                width: 100%;
                max-width: 500px;
            }

            .hero-buttons {
                justify-content: center;
            }
        }

        /* Add some placeholder styling for missing icons */
        .btn-icon {
            width: 24px;
            height: 24px;
            background-color: currentColor;
            border-radius: 4px;
            opacity: 0.8;
        }
        /* Industries Section */
        .industries {
            background-color: #fdfeff;
           
            padding: 34px 0;
            margin-top: 148px;
        }

        .industries-header {
            text-align: start;
            width: 100%;
            overflow: hidden;
            margin-bottom: 60px;
            padding: 0 30px;
        }

        .section-badge {
            background-color: #efefef;
            color: #325573;
            width: fit-content;
            padding: 10px 15px;
            border-radius: 22px;
            font-size: 18px;
            font-weight: 400;
            justify-content: left;
            align-items: flex-start;
            display: flex;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3;
            color: #113554;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            margin-bottom: 30px;
        }

        .industries-grid {
            display: grid;
           /* justify-content: space-evenly; */
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 30px;
        }

        .industry-card {
            background-color: #fafafa;
            border: 1px solid #113554;
            border-bottom: 6px solid #113554;
            border-radius: 20px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(17, 53, 84, 0.15);
        }

        .industry-icon {
            width: 70px;
            height: 70px;
            background-color: #fdfeff;
            border-radius: 8px;
            padding: 4px;
            margin-bottom: 20px;
        }

        .industry-title {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 10px;
        }

        .industry-description {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
        }

        /* Who We Are Section */
        .who-we-are {
            background-color: #ffffff;
            padding: 68px 56px;
            margin-top: 10px;
        }

        .who-content {
            display: flex;
            /* align-items: center; */
            /* gap: 36px; */
        }

      /* --- unchanged positioning/flex wrapper --- */
.who-images{
    
    flex:1;
    display:flex;
    justify-content:left;
    align-items:center;
    position:relative;
}

/* --- shared card shell --- */
.leader-card{
    position:relative;          /* anchor for the absolute img */
    overflow:hidden;            /* hide img overflow from radius */
    border-radius:30px;
    border:6px solid #efefef;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;   /* push text to bottom */
}

/* --- specific sizes & margins (exactly as before) --- */
.leader-card.rachel{
    width:50%;
    height:80vh;
    padding:94px 14px;
}
.leader-card.carol{
    width:35%;
    height:50vh;               
    border-radius:22px;
    border-color:#f5eeee;
    padding:48px 14px;
    margin-left:-80px;
    margin-bottom:40px;
}

/* --- the new <img> fills the card --- */
.leader-photo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;           /* or 'contain' if preferred */
    object-position:center;
    z-index:0;
}

/* --- text above the image --- */
.leader-name,
.leader-title{
    position:relative;
    z-index:1;
    margin:0;
}
.leader-name{
    font-size:24px;
    font-weight:600;
    color:#fdfeff;
    margin-bottom:4px;
}
.leader-title{
    font-size:16px;
    font-weight:500;
    color:#113554;
}

        .who-text {
            width: 40%;
        }

        .who-title {
            font-size: 32px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 20px;
        }

        .who-description {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            margin-bottom: 30px;
        }

        .stats {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 600;
            color: #e44a1b;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 400;
            color: #e44a1b;
        }

        /* Vision Section */
        .vision {
            background-color: #113554;
            border-radius: 30px;
            margin: 30px 56px;
            padding: 86px 56px;
            background: url('../images/img_bg_image_position_absolute.png'), #113554;
            background-size: cover;
            background-position: center;
        }

        .vision-header {
            margin-bottom: 90px;
        }

        .vision-title {
            font-size: 32px;
            font-weight: 600;
            color: #fdfeff;
            margin-bottom: 20px;
        }

        .vision-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 58px;
            /* margin: 0 50px; */
        }

        .vision-card {
            background-color: #fafafa;
            border-radius: 20px;
            padding: 10px;
            text-align: center;
        }

        .vision-image {
            width: 100%;
            border-radius: 14px;
            margin-bottom: 30px;
        }

        .vision-card-title {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 10px;
        }

        .vision-card-description {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            padding: 0 14px;
        }

        .vision-footer {
            width: 100%;
            font-size: 18px;
            font-weight: 400;
            text-align: left;
            line-height: 1.4;
            color: #efefef;
            margin-top: 36px;
            /* padding: 0 72px; */
        }

        /* Products Section */
        .products {
            background-color: #ffffff;
            padding: 46px 0;
            margin-top: 30px;
        }

        .products-header {
            padding: 0 30px;
            margin-bottom: 46px;
        }

        .products-title {
            font-size: 32px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 20px;
        }

        .products-nav {
            display: flex;
            gap: 14px;
            margin: 46px 26px 28px;
        }

        .nav-arrow {
            width: 30px;
            height: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            transform: scale(1.1);
        }

        .slider-nav {
    display: flex;
    gap: 0.5rem;
}
.slider-nav {
    display: flex;
    margin: 1rem;
    gap: 0.5rem;
}

.slider-btn {
    
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background: #e2e8f0;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    color: #1e3a5f;
}

        .products-grid {
            display: flex;
            margin: 2rem 0.9rem;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10 26px;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
            cursor: grab;
        }
        .product-grid:active {
            cursor: grabbing;
        }

     .product-grid::-webkit-scrollbar {
          display: none; /* WebKit */
    }

        .product-card {
            background-color: #fff7f5;
            border: 1px solid #e44a1b;
            min-width: 300px;
            border-radius: 20px;
            /* height: 60vh; */
            padding: 10px ;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(228, 74, 27, 0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            border-radius: 14px;
            margin-bottom: 20px;
        }

        .product-content {
            padding: 0 8px 28px;
        }

        .product-title {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 10px;
        }

        .product-description {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            margin-bottom: 30px;
        }

        /* Markets Section */
        .markets {
            background-color: #efefef;
            padding: 52px 30px;
            margin-top: 30px;
        }

        .markets-header {
            margin-bottom: 36px;
        }

        .markets-badge {
            background-color: #113554;
            color: #fdfeff;
            padding: 10px 15px;
            border-radius: 24px;
            font-size: 18px;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .markets-title {
            font-size: 32px;
            font-weight: 600;
            color: #113554;
        }

        .markets-content {
            display: flex;
            gap: 16px;
            align-items: start;
        }

        .main-market {
            flex: 1;
        }

        .market-image {
            width: 100%;
            border-radius: 20px;
            margin-bottom: 38px;
        }

        .market-title {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 10px;
        }

        .market-description {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
            color: #325573;
        }

        .other-markets {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .market-item {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .market-item-image {
            width: 200px;
            border-radius: 6px;
        }

        .market-item-content h3 {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 10px;
        }

        .market-item-content p {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
            color: #325573;
        }

      .testimonials {
       position: relative;
       width: 80%;
       height: 90vh;

       margin: auto;
       padding: 80px 60px;
       background-color: #f8f8f8;
       /* overflow: hidden; */
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    /* margin-bottom: 60px; */
}

.testimonials-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #113554;
    width: 65%;
}

.quote-icon {
    width: 150px;
    height: auto;
    /* margin-top: 20px; */
}

.testimonials-body {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.testimonials-info {
    width: 20%;
    padding-right: 40px;
}

.testimonials-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #113554;
    margin-bottom: 10px;
}

.testimonials-info p {
    font-size: 16px;
    color: #325573;
    margin-bottom: 20px;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-nav .nav-arrow {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.testimonial-wrapper {
    width: 80%;
    position: relative;
}

.testimonials-bg {
    background-color: #113554;
    border-radius: 20px;
    width: 100%;
    height: 55vh;
    margin-top: 1rem;
    padding: 60px 40px;
    position: absolute;
    top: -5rem;
    right: -15rem;
    /* overflow: visible; */
}

.close-icon {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    z-index: 10;
}

.testimonials-list {
    display: flex;
    gap: 22px;
    transform: translateX(12%);
    position: absolute;
    left: -30%;
}

.testimonial-card {
    background-color: #efefef;
    border-radius: 10px;
    padding: 18px;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #113554;
    margin-bottom: 4px;
}

.testimonial-company {
    font-size: 14px;
    color: #325573;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.5;
    color: #325573;
}


        /* FAQ Section */
        .faq {
            background-color: #ffffff;
            border-radius: 30px;
            padding: 56px 30px;
            margin: 38px 56px 0;
        }

        .faq-title {
            font-size: 32px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 38px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 0 80px 38px;
        }

        .faq-item {
            background-color: #efefef;
            border-radius: 10px;
            padding: 28px 24px;
        }

        .faq-question {
            display: flex;
            align-items: start;
            gap: 24px;
            margin-bottom: 8px;
        }

        .faq-number {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .faq-question-text {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            flex: 1;
        }

        .faq-answer {
            font-size: 14px;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            margin-left: 48px;
        }

        .faq-contact {
            text-align: center;
        }

        .faq-contact h3 {
            font-size: 24px;
            font-weight: 600;
            color: #113554;
            margin-bottom: 8px;
        }

        .faq-contact p {
            font-size: 16px;
            font-weight: 400;
            color: #3e3e3e;
            margin-bottom: 30px;
        }

    

    

        .social-icon {
            width: 40px;
            height: 40px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .social-icon.twitter {
            border: 1px solid #ffffff3f;
            border-radius: 20px;
            padding: 12px;
        }

        /* WhatsApp Chat */
        .whatsapp-chat {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        /* Responsive Design */
        @media (max-width: 640px) {
           .who-images{
              display: block;
              width: 100%;
              margin: 0 auto;
               
            }
            .leader-card{
                width: 100%;
                /* height: 80vh; */
            }
            .leader-card.rachel{
                width: 100%;
                /* height: 80vh; */
                padding: 94px 14px;
            }
            .leader-card.carol{
                width: 100%;
                padding: 94px 14px;
               margin: auto;
            }
            .container {
                padding: 0 24px;
            }

            .hero-title {
                /* font-size: 60px; */
            }

            .section-title {
                font-size: 40px;
            }

            .industries-grid {
                margin: 0 auto;
                grid-template-columns: repeat(1, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq{
                width: 100%;
                margin: 0 auto;
            }
            .faq-grid {
                margin: 0 20px 38px;
                grid-template-columns: repeat(1, 1fr);
            }
        }

        @media (min-width: 768px) {
             .leader-card{
                width: 100%;
                /* height: 80vh; */
            }
            
           
            .vision{
                width: 100%;
                margin: 20px 0px;
            }
            .hamburger {
                display: none;
            }

            .nav-menu {
                display: flex;
            }

            .hero-title {
                font-size: 72px;
            }

            .section-title {
                font-size: 50px;
            }

            .industries-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .vision-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .vision{
                width: 100%;
                margin: 20px 0px;
            }
            .container {
                padding: 0 32px;
            }

            .hero-title {
                /* font-size: 90px; */
            }

            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }

           

            .footer-title {
                font-size: 50px;
            }
        }

        @media (max-width: 767px) {
            .hero{
                margin-top:8rem;
            }
             .leader-card{
                width: 100%;
                /* height: 80vh; */
            }
             .leader-card.rachel{
                width: 100%;
                /* height: 80vh; */
                padding: 94px 14px;
            }
            .leader-card.carol{
                width: 100%;
                padding: 94px 14px;
                margin: auto;
            }
            .vision{
                /* width: 100%; */
                margin: 20px 5px;
            }
            .header-content {
                padding: 0 16px;
            }

            .hero {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .hero-content {
                margin-right: 0;
            }

            .hero-images {
                width: 100%;
            }

            .who-content {
                flex-direction: column;
            }

            .who-text {
                width: 100%;
            }

            .stats {
                justify-content: center;
            }

            .markets-content {
                flex-direction: column;
            }
            .testimonials{
             display: none;
            }

            .testimonials-content {
                flex-direction: column;
            }

            .testimonials-info {
                width: 100%;
                margin: 0;
            }

            .testimonials-list {
                width: 100%;
            }

            .footer-links {
                flex-direction: column;
                gap: 40px;
                margin: 0 0 60px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }

            .footer-bottom-right {
                width: 100%;
                flex-direction: column;
                gap: 20px;
            }

            .cta-title {
                padding: 0 20px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
   