
        /* ===== GLOBAL STYLES ===== */
        :root {
            --primary-color: #003366;
            --secondary-color: #e67e22;
            --light-color: #f4f4f4;
            --dark-color: #333;
            --white: #fff;
        }

         * {
            /* margin: 0; */
            /* padding: 0; */
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            line-height: 1.6;
            color: var(--dark-color);
            /* margin-top: 100px; */
            margin: 0;
            padding: 0;
            margin-top: 0 !important; /* Force remove any top margin */
            
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a, button {
            min-width: 48px;
            min-height: 48px;
        }

        /* ===== HEADER ===== */
        header {
            background: linear-gradient(to right, #9bb1c9, var(--white));
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            height: auto;
            padding: 10px 0;
            margin-top: 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: all 0.3s ease;
        }

        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            height: 100%;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .desktop-nav ul li {
            margin-left: 40px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .desktop-nav ul li a {
            font-weight: 100;
            color: #000;
            transition: color 0.3s;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .desktop-nav ul li a:hover {
            color: var(--secondary-color);
        }

        /* Mobile Navigation */
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            padding-top: 70px;
           
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            width: 250px;
            background: linear-gradient(to bottom, #9bb1c9, var(--white));
            box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            border-radius: 0 0 0 10px;
            
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            padding: 10px 0;
        }

        .mobile-nav ul li a {
            font-weight: 100;
            color: #000;
            display: block;
            padding: 12px 20px;
            transition: all 0.3s;
        }

        .mobile-nav ul li a:hover {
            color: var(--secondary-color);
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    
    overflow: hidden;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 1;
}



.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

/* ===== HERO SLIDER CONTENT ALIGNMENT ===== */
.slide-content {
    position: absolute;
    top: 65%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 3;
    text-align: left;
}

.slide h2 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 80%;
}

.slide p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.2;
}

/* Large desktops (1200px and up) */
@media (min-width: 1200px) {
    .slide h2 {
        font-size: 3rem;
        max-width: 800px;
    }
    .slide p {
        font-size: 1.4rem;
        max-width: 700px;
    }
}

/* Desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .slide h2 {
        font-size: 2.8rem;
    }
    .slide p {
        font-size: 1.2rem;
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .slide-content {
        width: 85%;
    }
    .slide h2 {
        font-size: 2.3rem;
        max-width: 100%;
    }
    .slide p {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

/* Landscape phones (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .slide-content {
        width: 90%;
        top: 40%;
        transform: translate(-50%, -40%); /* Adjust transform to match new top value */
    }
    .slide h2 {
        font-size: 2.4rem;
    }
    .slide p {
        font-size: 1rem;
    }
}

/* Portrait phones (below 576px) */
@media (max-width: 575px) {
    .slide-content {
        width: 95%;
        top: 35%; /* Even higher on very small screens if needed */
        transform: translate(-50%, -35%);
    }
    .slide h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    .slide p {
        font-size: 0.95rem;
    }
}

/* Very small phones (under 400px) */
@media (max-width: 400px) {
    .slide h2 {
        font-size: 1.8rem;
    }
    .slide p {
        font-size: 0.9rem;
    }
}

.slider-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}

.slider-arrow {
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.whatsapp-float img{
    width: 36px;
    height: 36px;
}
.hero-slider .slide:nth-child(1) {
    background-image: url('../images/slide1.jpg');
}

.hero-slider .slide:nth-child(2) {
    background-image: url('../images/slide2.jpg');
}

.hero-slider .slide:nth-child(3) {
    background-image: url('../images/slide3.jpeg');
}
/* ===== RESPONSIVE STYLES ===== */
/* Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        margin-top: 60px;
    }
    
    /* Mobile-specific background images */
    .hero-slider .slide:nth-child(1) {
        background-image: url('../images/Home.jpg');
    }
    .hero-slider .slide:nth-child(2) {
        background-image: url('../images/mobile-slide2.jpg');
    }
    .hero-slider .slide:nth-child(3) {
        background-image: url('../images/mobileslide3.jpg');
    }
    
    .slide-content {
        margin-top: 50% !important;
        padding: 0 20px !important;
        margin-bottom: -10px; 
        
    }
    
    .slide h2 {
        font-size: 2.2rem;
        text-align: center;
        margin: 0 auto 15px;
    }
    
    .slide p {
        font-size: 1rem;
        text-align: center;
        margin: 0px auto 20px;
        max-width: 90%;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .slider-dot {
        margin-top: -50px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Large desktops (1200px and up) */
@media (min-width: 1200px) {
    .slide-content {
        padding: 0 100px;
        
        
    }
    .slide h2 {
        font-size: 4rem;
        max-width: 800px;
    }
    .slide p {
        font-size: 1.3rem;
        max-width: 700px;
        margin-bottom: 10px;
    }
}

/* Desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .slide-content {
        padding: 0 80px;
         margin-bottom: -10px;
    }
    .slide h2 {
        font-size: 3.2rem;
    }.slide p{
        margin-bottom: 10px;
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .slide-content {
        padding: 0 30px;
        margin-bottom:-10px;
         
    }
    .slide h2 {
        font-size: 2.8rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide p{
        margin-bottom: 10px;
    } {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
    .slider-dot {
        margin-top: -50px;
    }
}

/* Landscape phones (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .slide-content {
        padding: 0 20px;
         margin-bottom:-10px;
       
    }
    .slide h2 {
        font-size: 2.4rem;
        text-align: center;
        
    }
    .slide p {
        font-size: 1.1rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: 10px;
    }
    .slider-dot {
        margin-top: -50px;
    }
}

/* Portrait phones (below 576px) */
@media (max-width: 575px) {
    .slide-content {
        padding: 0 10px;
        margin-bottom: 30px;
    }
    .slide h2 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }
    .slide p {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

/* Very small phones (under 400px) */
@media (max-width: 400px) {
    .slide h2 {
        font-size: 1.8rem;
    }
    .slide p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        /* ===== ABOUT SECTION ===== */
.about {
    position: relative;
    min-height: 100vh;
    padding: 0px 0;
    background: white;
    display: flex;
    align-items: center;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    z-index: 2;
    text-align: justify;
}

.about-title {
    font-size: 2.8rem;
    color: #0071bc;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #0071bc;
    margin: 25px 0 15px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* Desktop Image (shown by default) */
.about-image .desktop-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: 190px;
    
}

/* Mobile Image (hidden by default) */
.about-image .mobile-image {
    display: none;
    max-width: 100%;
    height: auto;
   
}

.rope-image {
    position: absolute;
    right: 390px; /* Adjusted position */
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 180px; /* Increased width */
    height: 100%; /* Increased height */
    object-fit: contain; /* Ensures proper scaling */
}

.rope-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== RESPONSIVE FIXES ===== */


/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .about {
        padding: 60px 0;
    }

    .about-title {
        font-size: 3.2rem;
        text-align: left;
    }

    .section-subtitle {
        font-size: 1.7rem;
        text-align: left;
    }

    .about-text {
        padding: 30px;
    }

    .about-text p {
        font-size: 1.2rem;
    }

    .about-image {
        justify-content: flex-end;
    }

    .about-image .desktop-image {
        margin-left: 100px; /* Adjust as needed */
        max-width: 500px;
    }

    .rope-image {
        right: 300px; /* You can adjust positioning for large screens */
        width: 200px;
    }
}

/* Extra Large Screens (1600px and up) */
/* Extra Large Screens (1600px and up) */
@media (min-width: 1600px) {
    .about-title {
        font-size: 3.6rem;
    }

    .section-subtitle {
        font-size: 1.9rem;
    }

    .about-text p {
        font-size: 1.25rem;
    }

    .about-image .desktop-image {
        margin-left: 150px;
        max-width: 600px;
    }

    .rope-image {
        right: 400px;
        width: 220px;
    }
}


/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .about {
        padding: 0px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        order: 2;
        padding: 0;
        text-align: justify;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .rope-image {
        display: none;
        
    }
    
    .about-title {
        font-size: 2.4rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        text-align: center;
        
    }
}

/* Mobile (768px and below) - Switch to mobile image */
@media (max-width: 768px) {
    .about-image .desktop-image {
        display: none;
    }
    
    .about-image .mobile-image {
        display: block;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .about {
        padding: 10px 0;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin: 20px 0 10px;
         text-align: left;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: justify;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
    .about {
        padding: 30px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
         text-align: left;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
         text-align: left;
    }
    
    .about-text p {
        font-size: 0.95rem;
        text-align: justify;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
}

        /* ===== SERVICES SECTION ===== */
        #services {
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #0071bc;
        }

        .service-title {
            text-align: left;
            margin-bottom: 40px;
            position: relative;
            width: 400px;
        }

        .service-title h2 {
            font-size: 2rem;
            font-weight: 550;
            text-transform: uppercase;
            color: #ffffff;
            letter-spacing: 3px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            padding-left: 40px;
            margin-left: 70px;
        }

        .row-box-container {
            position: absolute;
            left: 40px;
            top: 46%;
            transform: translateY(-50%);
            width: 500px;
            height: 480px;
            z-index: 2;
        }

        .row-box {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-top: 30px;
            margin-left: 70px;
        }

        .row {
            width: 100%;
            height: 70px;
            background-color: rgba(40, 94, 181, 0.2);
            border-left: 3px solid rgba(255, 255, 255, 0.5);
            box-sizing: border-box;
            padding: 15px;
            position: relative;
            transition: all 0.3s ease;
        }

        .row:hover {
            background: linear-gradient(90deg, rgba(54, 141, 213, 0.9), rgba(79, 152, 216, 0.8));
            border-left: 3px solid rgb(75, 190, 239);
            transform: translateX(5px);
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .row:hover .service-item-name {
            text-shadow: 0 0 5px rgba(248, 197, 55, 0.3);
        }

        .row:hover .service-item-desc {
            color: white;
            font-weight: 500;
        }

        .service-item-name {
            font-size: 1.1rem;
            margin-top: -10px;
            color: white;
            font-weight: 500;
        }

        .service-item-desc {
            font-size: 0.7rem;
            margin-top: -20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: .9;
        
        }

        .container-image {
            position: absolute;
            left: 870px;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            width: 350px;
            text-align: center;
            margin-top: -130px;
        }

        .container-image img {
            width: 100%;
            max-width: 100%;
            opacity: 0.9;
            filter: brightness(0.95);
            margin-top: -100px;
            
        }

        .services-image-wrapper {
            width: 100%;
            height: auto;
            margin-top: -12%;
        }

        .services-bottom-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        

        /* ===== MAIN SECTORS ===== */
        .main-sectors {
            width: 100%;
            height: auto;
            max-height: auto;
            overflow:visible;
            position: relative;
            margin: 0;
            padding: 0;
            min-height: 100vh; /* Or your preferred height */
            
            background-color:  white;
            z-index: 1;
        }

        .main-sectors img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .sectors-menu {
            position: absolute;
            height: 100%;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 113, 188, 0.7); /* 70% opacity */
            padding: 4rem 7rem;
            border-radius: 0 40px 40px 0;
            max-width: 400px;
            color: white;
            
  z-index: 100; /* Higher than base */
            /* Optional enhancements */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Adds depth */
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
        }
.sectors-menu h1 {
    width: 100%;
    max-width: 300px;
    margin-top: -30px;
    margin: 0px 0 1rem 0; /* Reset top margin */
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.3;
  }
  
  /* Small Tablets (576px - 767px) */
  @media (min-width: 576px) {
    .sectors-menu h1 {
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
    }
  }
  
  /* Tablets (768px - 991px) */
  @media (min-width: 768px) {
    .sectors-menu h1 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      max-width: 280px;
    }
  }
  
  /* Small Desktops (992px - 1199px) */
  @media (min-width: 992px) {
    .sectors-menu h1 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      max-width: 300px;
      margin-top: -30px; /* Only apply negative margin on larger screens */
    }
  }
  
  /* Large Desktops (1200px - 1599px) */
  @media (min-width: 1200px) {
    .sectors-menu h1 {
      font-size: 1.4rem;
      margin-top: -40px;
    }
  }
  
  /* Extra Large Screens (1600px and up) */
  @media (min-width: 1600px) {
    .sectors-menu h1 {
      font-size: 1.4rem;
      margin-top: -50px;
    }
  }
        .main-list {
            list-style: none;
            padding: 10;
            margin-top: 20px;
            margin-right: 10px;
        }

        .main-list > li {
            position: relative;
            margin: 0.9rem 0;
            background: linear-gradient(135deg, rgba(112, 222, 244, 0.921) 0%, rgba(10, 86, 226, 0.9) 100%);
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            width: 250px;
        }

        .main-item {
    display: flex;                      /* ➤ NEW: Enables flex layout */
    justify-content: space-between;    /* ➤ NEW: Pushes arrow to the right */
    align-items: center;               /* ➤ NEW: Vertically centers items */
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

       .main-item .arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg); /* ▼ Down */
    transition: transform 0.3s ease;
    margin-left: 8px;
}


/* Rotate arrow up when active */
.main-list > li.active .main-item .arrow {
    transform: rotate(-135deg); /* ▲ Up */
}

        .main-list > li:hover {
            background: linear-gradient(135deg, rgba(35, 82, 130, 0.8) 0%, rgba(48, 98, 150, 0.9) 100%);
            position: relative; /* New stacking context */
        }

        .main-list > li.active {
            background: linear-gradient(135deg, rgba(30, 72, 120, 0.9) 0%, rgba(40, 88, 140, 1) 100%);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 300; /* Active item above others */
        }

        .dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(36, 94, 159, 0.7);
    border-radius: 0 0 6px 6px;
    display: block;

    /* NEW: Set a max height and allow scroll if content exceeds */
    max-height: 0;
    overflow-y: auto;
}

/* When active, expand with scroll */
.main-list > li.active .dropdown {
    max-height: 250px;  /* Set max height as per your design */
    overflow-y: auto;
}

/* Style for individual dropdown items */
.dropdown li {
    padding: 0.6rem 1.5rem;
    font-size: .8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}
        /* ===== OUR PRESENCE SECTION ===== */
        .full-page-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background-image: url('../images/ght.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }

        .content-overlay {
            position: relative;
            z-index: 2;
            padding: 40px 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .benefits-container {
            font-family: Arial, sans-serif;
            max-width: 1000px;
            line-height: 1.2rem;
            padding: 20px;
        }

        .benefits-container h2 {
            font-size: 34px;
            text-align: left;
            margin-bottom: 30px;
            color: #0071bc;
        }

        .benefit-item {
            margin-bottom: 15px;
            display: flex;
            align-items: baseline;
        }

        .benefit-item h3 {
            font-size: 26px;
            margin: 0;
            margin-right: 5px;
            color: #0071bc;
            white-space: nowrap;
        }

        .benefit-item p {
            margin: 0;
            font-size: 24px;
            color: #0071bc;
        }

        .presence-container {
            width:1000px;
            height: 180px;
            margin-top: 170px;
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            overflow: visible;
        }

        .presence-content {
            display: flex;
            width: 100%;
            height: 100%;
            margin-right: 20px;
        }

        .image-section {
            width: 200px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .image-section img {
            width: 150px;
            height: auto;
            border-radius: 6px;
        }

        .locations-section {
            flex: 1;
            background: white;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            scroll-padding-right: 20px;
        }

        .section-title {
            font-size: 35px;
            color: #0071bc;
            margin-bottom: 5px;
            margin-left: -10px;
        }

        .locations-row {
            display: flex;
            gap: 10px;
            flex-wrap: nowrap;
            margin-bottom: 20px;
           margin-left: 0px;
           margin-right: 20px;
        }

        .location-box {
            padding: 15px;
            background: white;
            border-radius: 6px;
            border-left: 4px solid #0071bc;
            min-width: 150px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        
             
        }

        .location-box h3 {
            font-size: 20px;
            margin: 0 0 0px 0;
            color: #0071bc;
        }

        .location-box p {
            font-size: 16px;
            margin: 0;
            color: #0071bc;
        }
/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .presence-container {
        max-width: 1000px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .benefits-container h2 {
        font-size: 30px;
    }
    
    .benefit-item h3 {
        font-size: 22px;
    }
    
    .benefit-item p {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .full-page-section {
        background-position: bottom center;
        background-size: contain;
        margin-top: 50px;
        
        
    }
    
    .content-overlay {
        padding: 60px 20px 40px;
        margin-top: -300px;
    }
    
    .benefits-container h2 {
        font-size: 28px;
        text-align: left;
    }
    
    .benefit-item {
        margin-bottom: 20px;
        text-align: left;
    }
    
    .benefit-item h3 {
        
        font-size: 20px;
        display: block;

    }
    
    .benefit-item p {
        font-size: 18px;
        display: block;
    }
    
    .presence-container {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin: 15px 0 0 0;
  }
  
  .presence-content {
    flex-direction: column;
  }
  
  .image-section img {
    max-width: 180px;
    margin: 0 auto;
  }
  
  .locations-section {
    padding: 10px;
  }
  
  .location-box {
    min-width: 100%;
    margin: 5px 0;
    padding: 8px;
  }
  
  .location-box h3 {
    font-size: 14px;
  }
  
  .location-box p {
    font-size: 12px;
  }
}

/* Small Phones (up to 575px) */
@media (max-width: 575px) {
    .benefits-container h2 {
        font-size: 24px;
    }
    
    .benefit-item h3 {
        font-size: 18px;
    }
    
    .benefit-item p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .location-box {
        min-width: 100%;
    }
    
    .location-box h3 {
        font-size: 18px;
    }
    
    .location-box p {
        font-size: 14px;
    }
    
    .image-section img {
        max-width:80px;
        margin-top: -5px;
        margin-left: -5px;

    }
    .presence-container {
    margin-top: 10px;
  }
}

/* Extra Small Phones (up to 400px) */
@media (max-width: 400px) {
    .benefits-container h2,
    .section-title {
        font-size: 22px;
    }
    
    .benefit-item h3 {
        font-size: 17px;
    }
    
    .content-overlay {
        padding: 40px 15px;
    }
}
        /* ===== STATS SECTION ===== */
        .stats {
  background: white;
  color: #0071bc;
  text-align: left;
  padding: 60px 0;
  margin-left: 20px;
}
.stats .container{
    margin-left: 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.stat-item h3 {
  font-size: 3.5rem;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1;
}

.stat-item h5 {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0;
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
  .stats {
    padding: 30px 0;
  }
  .stats .container{
    margin-left: 30px;
}

  
  .stat-item h3 {
    font-size: 4.5rem;
  }
  
  .stat-item h5 {
    font-size: 1.5rem;
  }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
  .stats {
    padding: 30px 0;
  }
  .stats .container{
    margin-left: 50px;
}

  
  .stats-grid {
    gap: 30px;
  }
  
  .stat-item h3 {
    font-size: 5rem;
  }
  
  .stat-item h5 {
    font-size: 2rem;
    margin-top: -20px;
  }
}

/* Small Phones (up to 575px) */
@media (max-width: 575px) {
  .stats {
    padding: 20px 0;
  }
  .stats .container{
    margin-left: 10px;
}

  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item h3 {
    font-size: 3rem;
  }
  
  .stat-item h5 {
    font-size: 1rem;
  }
}

        /* ===== CUSTOMER REVIEWS ===== */
        .customer-review {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            text-align: left;
        }

        .customer-review h1 {
            font-size: 2.5rem;
            color: #4e4e50ce;
            margin-bottom: 40px;
            position: relative;
            line-height: 2.7rem;
        }

        .reviews-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .review-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 350px;
            text-align: left;
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-10px);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .profile-img-container {
            width: 60px;
            height: 60px;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-meta {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stars {
            color: #FFD700;
            font-size: 1.5rem;
            line-height: 1;
            margin-left: 20px;
            margin-top: -10px;
        }

        .review-stars-row {
            display: flex;
            gap: 5px;
        }

        .star-box {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 24px;
            height: 24px;
            background-color: rgb(170, 169, 169);
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            color: #FFD700;
            font-size: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .review-date {
            font-size: 0.9rem;
            color: #555;
        }

        .review-content {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }
        /* Tablets: screen width up to 991px */
@media (max-width: 991px) {
    .customer-review {
        padding: 0 15px;
        margin: 40px auto;
    }

    .customer-review h1 {
        font-size: 2rem;
        line-height: 2.4rem;
        margin-bottom: 30px;
    }

    .review-card {
        width: 100%;
        max-width: 450px;
        padding: 25px;
    }

    .stars {
        font-size: 1.3rem;
        margin-left: 10px;
        margin-top: -20px;
    }

    .star-box {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
}

/* Mobile: screen width up to 767px */
@media (max-width: 767px) {
    .reviews-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .customer-review h1 {
        font-size: 1.7rem;
        line-height: 2.1rem;
        text-align: left;
        margin-left: 30px;
    }

    .review-card {
        width: 100%;
        padding: 20px;
    }

    .profile-img-container {
        width: 50px;
        height: 50px;
    }

    .stars {
        font-size: 1.2rem;
       width: 200px;
        margin-left: -20px;
    }
    .review-stars-row {
        justify-content: flex-start;
        gap: 5px;
        flex-wrap: nowrap;
    }

   
    .review-meta {
        gap: 4px;
    }

    .review-content {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .review-date {
        font-size: 0.85rem;
    }
}

/* Extra small mobile: screen width below 480px */
@media (max-width: 480px) {
    .customer-review h1 {
        font-size: 1.5rem;
        line-height: 2rem;
        text-align: left;
         margin-left: 30px;
    }
    .review-stars-row {
        justify-content: flex-start;
        gap: 5px;
        flex-wrap: nowrap;
    }
    .stars {
        font-size: 1.2rem;
        width: 200px;
        margin-left:-20px;
    }


    .review-card {
        padding: 15px;
    }

    .review-content {
        font-size: 0.9rem;
    }

    .star-box {
        width: 20px;
        height: 20px;
        font-size: 0.85rem;
    }
}


        /* ===== LOCATION MAP ===== */
        .location {
            padding: 0px 0;
            width: 100%;
            margin: 0;
        }

        .map-container {
            width: 100%;
            margin-bottom: -8px;
            padding: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 0;
        }

        footer {
  background-color: #0071bc;
  color: white;
  padding: 40px 0 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h3 {
  margin-bottom:10px; /* Reduced from 20px */
  font-size: 1.1rem; /* Slightly smaller */
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0; /* Removed negative margin */
}

.footer-col ul li {
  margin-bottom: 4px; /* Reduced from 12px */
  line-height: 1.1; /* Tighter line spacing */
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px; /* Reduced from 8px */
  padding: 2px 0; /* Small vertical padding */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    gap: 20px;
  }
  
  .footer-col h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .footer-col ul li {
    margin-bottom: 3px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-col {
    margin-bottom: 5px;
  }
  
  .footer-col:last-child {
    margin-bottom: 0;
  }
}
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.7rem;
            opacity: 0.8;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ===== RESPONSIVE MEDIA QUERIES ===== */
        @media (max-width: 768px) {
    .service-title {
        padding-left: 20px;
        
    }
    
    .service-title h2 {
        font-size: 1.8rem;
        margin-left: -40px;
    }
    .row-box{
        margin-left: -10px;
    }
    
    .container-image {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .container-image {
        max-width: 200px;
    }
     .service-title h2 {
        font-size: 1.8rem;
        margin-left: -30px;
    }
    .row-box{
        margin-left: -5px;
    }
    
    
    .services-image-wrapper {
        margin-top: 40px;
    }
}

        @media (max-width: 1200px) {
            .presence-container {
                width: 90%;
                margin-left: 5%;
            }
            
            .benefit-item h3 {
                font-size: 24px;
            }
            
            .benefit-item p {
                font-size: 22px;
            }
        }

        @media (max-width: 992px) {
            .desktop-nav ul li {
                margin-left: 30px;
            }
            
            .about-text {
                width: 60%;
                text-align: justify;
            }
            
            .about-image {
                width: 40%;
            }
            
            .rope-image {
                left: calc(60% - 50px);
            }
            
            .container-image {
                display: none;
                margin-left: 70px;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav-btn {
                display: flex;
                margin-top: -60px;
            }
            
            .logo img {
                height: 60px;
            }
            
            .hero-slider {
                margin-top: 60px;
                height: 70vh;
            }
            
            .slide-content {
                margin-top: 50% !important;
                padding: 0 20px !important;
                text-align: center !important;
            }
            
            .slide h2 {
                font-size: 2rem !important;
                text-align: center !important;
                margin: 0 auto 15px !important;
                max-width: 100% !important;
            }
            
            .slide p {
                text-align: center !important;
                margin: 0 auto 20px !important;
                max-width: 90% !important;
            }
            
            .about {
                height: auto;
                padding: 40px 0;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                width: 100%;
                text-align: justify;
            }
            
            .about-text {
                order: 2;
                margin-top: 0 !important;
                text-align: justify;
            }
            
            .about-image {
                order: 1;
                position: relative;
                margin-top: 0;
            }
            
            .rope-image {
                display: none;
            }
            
            .row-box-container {
                position: relative !important;
                left: auto !important;
                top: auto !important;
                transform: none !important;
                width: 100% !important;
                height: auto !important;
                margin: 20px 0;
                padding: 0 20px;
            }
            
            .row {
                height: auto !important;
                min-height: 60px;
                padding: 10px 15px;
                margin-bottom: 10px;
            }
            
            .main-sectors {
                flex-direction: column;
            }
            
            .main-sectors img {
                height: 300px;
                object-fit: cover;
            }
            .sectors-menu h1 {
                margin-left: 70px;
                
            }
            .sectors-menu {
                position: relative;
                width: 100%;
                max-width: 100%;
                padding: 2rem;
                border-radius: 0;
                margin-top: 220px;
                
            }
            .main-list  {
                margin-left: 70px;
            }
            
            .main-list > li {
                width: 80%;
                
                margin: 10px 0;
            }
            
            .presence-container {
                width: 90%;
                margin: 0px auto 0;
                flex-direction: column;
            }
            
            .presence-content {
                flex-direction: column;
                margin-left: -50px;
            }
            
            .image-section {
                width: 100%;
                padding: 30px 0;
               

            }
            
            .locations-section {
                padding: 10px;
                
            }
            
            .locations-row {
                flex-wrap:wrap;
                gap: 10px;
                justify-content: center;
                margin-top: 10px;
                margin-left: -0px;
            }
            
            .location-box {
                min-width: 100px;
                flex: 1;
                margin-top: -10px;
            }
            
            .stats-grid {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 15px;
            }
            
            .stats-grid::-webkit-scrollbar {
                display: none;
            }
            
            .stat-item {
                flex: 0 0 auto;
                min-width: 100px;
                padding: 0 10px;
                text-align: left;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-col ul li a {
                justify-content: center;
            }
        }
        

        @media (max-width: 576px) {
            .slide h2 {
                font-size: 1.8rem !important;
            }
            
            .slide p {
                font-size: 1rem !important;
            }
            
            .about-title {
                font-size: 2rem;
            }
            .about-text{
                text-align: justify;
            }
            
            .service-title h2 {
                font-size: 1.5rem;
            }
            
            .benefits-container h2{
            
                font-size: 20px;
                width: 100%;
                
                margin-top: -350px;
                
            }
            
            .section-title {
                font-size: 20px;
                width: 100%;
                margin-bottom: 10px;
                margin-left: 70px;
                
            }
            
            .benefit-item h3,
            .benefit-item p {
                font-size: 16px;
                text-align:justify;
                display:contents
            }
            
            .presence-container {
                width: 60%;
               margin-top: 10px;
                margin-left: 10px;
                
            }
            
            .location-box {
                min-width: 160px;
                margin-left: 70px;
                
            }
            
            .customer-review h1 {
                font-size: 1.8rem;
                line-height: 2rem;
                margin-top: -30px;
            }
            
            .review-card {
                padding: 20px;
            }
            
            .map-container iframe {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .slide h2 {
                font-size: 1.5rem !important;
                line-height: 1.8rem !important;
            }
            
            .slide p {
                font-size: 0.9rem !important;
            }
            
            .about-title {
                font-size: 1.8rem;
            }
            
            .service-title h2 {
                font-size: 1.3rem;
                margin-top: 30px;
            }
            
            .row {
                padding: 10px;
            }
            
            .service-item-name {
                font-size: 0.9rem;
            }
            
            .service-item-desc {
                font-size: 0.6rem;
            }
            
            .main-item {
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .benefits-container h2,
            .section-title {
                font-size: 21px;
                margin-top: -160px;
            }
            
            .stat-item h3 {
                font-size: 2.5rem;
            }
            
            .stat-item h5 {
                font-size: 1rem;
            }
            
            .profile-img-container {
                width: 50px;
                height: 50px;
            }
            
            .star-box {
                width: 20px;
                height: 20px;
                font-size: 0.9rem;
            }
            
            .review-date {
                font-size: 0.85rem;
            }
            
            .map-container iframe {
                height: 300px;
            }
        }
        @media (min-width: 1600px) {
    .container-image {
        left: 50%; /* center it horizontally */
        width: 400px; /* slightly larger image on big screens */
        margin-top: -100px;
        
    }
        }
    @media (min-width: 1200px) {
    .container-image {
        left: 870px;
        width: 350px;
        margin-top: -50px;
    }
}
@media (min-width: 1920px) {
    .container-image {
        left: 1250px;
        width: 500px;
        margin-top: -170px;
    }
    .service-title{
        margin-top: 15px;
    }
    .row-box-container{
        margin-top: 100px;
    }
}




    