/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f8ff;
    color: #1e1e1e;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}


.logo-link {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.logo-container {
    position: relative;
    overflow: hidden;
    height: 35px;
    width: 250px;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease-in-out;
}

.short-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.4s ease-in-out;
}

.logo-details {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.full-name {
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    color: #ffffff;
}

.title {
    font-size: 0.8rem;
    color: #FFA500;
    margin-top: 2px;
    font-weight: 500;
    white-space: nowrap;
}

.logo-container:hover .short-text {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
}

.logo-container:hover .logo-details {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a:hover {
    color: #FFA500;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFA500;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Submenu Styling */
.submenu, .sub-submenu {
    display: none;
    position: absolute;
    min-width: 250px;
    padding: 10px 0;
    list-style: none;
    background-color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    border-top: 2px solid #FFA500;
}

.submenu {
    top: 100%;
    left: 0;
}

.sub-submenu {
    top: 0;
    left: 100%;
    border-top: none;
    margin-left: 0;
    margin-right: 0;
}

.submenu li a, .sub-submenu li a {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.submenu li a:hover, .sub-submenu li a:hover {
    background-color: #2a2a2a;
    color: #FFA500;
}

.submenu li a::after, .sub-submenu li a::after {
    content: none;
}

.nav-links li:hover > .submenu {
    display: block;
}

.submenu li:hover > .sub-submenu {
    display: block;
}

/* SVG Icon Styling */
.submenu-icon {
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-links li a .submenu-icon svg {
    display: block;
}

.nav-links li:hover > a .submenu-icon {
    transform: rotate(90deg);
}

.submenu li:hover > a .submenu-icon {
    transform: rotate(90deg);
}

/* Knowledge Bank's sub-submenus open to the LEFT */
.nav-links li:nth-child(4) .submenu li .sub-submenu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0;
}

.nav-links li:nth-child(4) .submenu li:hover > a .submenu-icon {
    transform: rotate(-90deg);
}

.nav-links li a:hover .submenu-icon svg path,
.submenu li a:hover .submenu-icon svg path {
    stroke: #FFA500;
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu .bar {
    width: 2rem;
    height: 0.25rem;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 5;
        padding-top: 5rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        position: relative;
    }

    .nav-links li a {
        padding: 1rem;
        border-bottom: 1px solid #333;
        width: 100%;
    }

    .nav-links li a::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
    
    /* Toggle icon animation */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Submenu changes for mobile */
    .submenu, .sub-submenu {
        position: static;
        width: 100%;
        background-color: #1b1b1b;
        box-shadow: none;
        border-top: none;
        padding: 0;
        margin-left: 1rem;
        transition: max-height 0.3s ease-in-out;
        max-height: 0;
        overflow: hidden;
    }
    
    .submenu li, .sub-submenu li {
        width: 100%;
    }

    .submenu li a, .sub-submenu li a {
        padding: 0.75rem 1.5rem;
        border-bottom: none;
    }
    
    /* Active class for submenus on mobile */
    .nav-links li.active > .submenu,
    .submenu li.active > .sub-submenu {
        display: block;
        max-height: 500px;
    }

    /* Icon rotation for mobile */
    .nav-links li a .submenu-icon {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
    
    .nav-links li.active > a .submenu-icon,
    .submenu li.active > a .submenu-icon {
        transform: rotate(90deg);
    }
}
.nav-links {
  background-color: #000000 !important;
  color: #fff;
}


@media (max-width: 1024px) {
    /* Ensure nav does not overflow */
    .nav-links,
    .nav-links li,
    .nav-links li a {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* Submenu icons fixed to right side but inside boundary */
    .submenu-icon {
        margin-left: auto;
        flex-shrink: 0;
        max-width: 20px;
        overflow: hidden;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 1.2rem;
    }

    /* Prevent body scroll from overflowing */
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 5;
        padding-top: 5rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li,
    .nav-links li a {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .nav-links li a {
        padding: 1rem 1.2rem;
        border-bottom: 1px solid #333;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .nav-links li a::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }

    .hamburger-menu .bar {
        width: 2rem;
        height: 0.25rem;
        background-color: #ffffff;
        border-radius: 10px;
        transition: all 0.3s linear;
        transform-origin: 1px;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg);
    }

    .submenu,
    .sub-submenu {
        position: static;
        width: 100%;
        background-color: #333;
        box-shadow: none;
        border-top: none;
        padding: 0;
        margin: 0;
        transition: max-height 0.3s ease-in-out;
        max-height: 0;
        overflow: hidden;
    }

    .submenu li,
    .sub-submenu li {
        width: 100%;
    }

    .submenu li a,
    .sub-submenu li a {
        padding: 0.75rem 1.5rem;
        border-bottom: none;
    }

    .nav-links li.active > .submenu,
    .submenu li.active > .sub-submenu {
        display: block;
        max-height: 500px;
    }

    .submenu-icon {
        margin-left: auto;
        flex-shrink: 0;
        max-width: 20px;
        overflow: hidden;
    }

    .nav-links li.active > a .submenu-icon,
    .submenu li.active > a .submenu-icon {
        transform: rotate(90deg);
    }
}


/* hero  */


        /* Hero Section Container */
        .hero-section {
            width: 100%;
            height: 70vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 5%;
            overflow: hidden;
            color: #fff;
            transition: background-image 0.7s ease-in-out;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            overflow: hidden;
        }

        .hero-content h1,
        .hero-content p {
            opacity: 0;
            transform: translateY(20px);
        }
        
        /* Text Animation */
        .hero-content h1.animate-in,
        .hero-content p.animate-in {
            animation: slideUpFadeIn 0.8s forwards;
        }

        .hero-content h1.animate-out,
        .hero-content p.animate-out {
            animation: slideDownFadeOut 0.5s forwards;
        }

        @keyframes slideUpFadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideDownFadeOut {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .hero-content p {
            font-size: 1.4rem;
            line-height: 1.5;
            margin-bottom: 20px;
            animation-delay: 0.2s;
        }

        /* Read More Button */
        .read-more-btn {
            background: #fff;
            color: #000;
            padding: 15px 30px;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            border-radius: 5px;
            transition: background-color 0.3s;
            position: absolute;
            bottom: 25px;
            right: 5%;
            z-index: 3;
        }
        
        .read-more-btn:hover {
            background-color: #ddd;
        }

        .read-more-btn span {
            margin-left: 10px;
        }
        /* Hero Content Buttons */
.slide-btn {
    background: #fff;
    color: #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    display: none; /* Default hide all buttons */
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: absolute;
    bottom: 25px;
    right: 5%; 
    z-index: 3;
}

.slide-btn.active {
    display: inline-flex; /* Show active button on desktop */
}

.slide-btn:hover {
    background-color: #ddd;
}

/* Media Query for screens smaller than 768px */
@media (max-width: 767px) {
    .hero-content {
        padding-bottom: 80px; 
        text-align: center;
    }

    .slide-btn {
        position: static; 
        width: 30%;
        text-align: center;
    }
    
    .slide-btn.active {
        display: block; /* Show active button as a block on mobile */
    }

    .carousel-thumbnails {
        justify-content: center;
    }
}
@media (max-width: 425px) {
    .hero-content {
        padding-bottom: 80px; 
        text-align: center;
    }

    .slide-btn {
        position: static; 
        width: 50%;
        text-align: center;
    }
    
    .slide-btn.active {
        display: block; /* Show active button as a block on mobile */
    }

    .carousel-thumbnails {
        justify-content: center;
    }
}
@media (max-width: 374px) {
    .slide-btn{
        width: 60%;
    }
}
        
        /* Navigation Buttons (Arrows) */
        .carousel-nav-arrows {
            position: absolute;
            bottom: 25px;
            left: 5%;
            z-index: 3;
            display: flex;
        }
        
        .carousel-arrow {
            background: rgba(255, 255, 255, 0.9);
            color: #000;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 1.8rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .carousel-arrow:hover {
            background-color: #ddd;
        }
        
        .carousel-arrow:first-child {
            margin-right: 5px;
        }
        
        /* Thumbnails */
        .carousel-thumbnails {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        .thumbnail {
            width: 90px;
            height: 60px;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s, transform 0.3s;
        }

        .thumbnail:hover {
            transform: translateY(-3px);
        }

        .thumbnail.active {
            border-color: #fff;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
        }

        /* Font Awesome for Icons */
        .fa-chevron-right:before { content: "\f054"; }


@media (max-width: 768px) {
    
    .hero-section {
        padding: 0 20px;
        height: 60vh;
        text-align: center;
        flex-direction: column;
        justify-content: flex-start; 
    }
    
    /* Hero Content */
    .hero-content {
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

  
    .carousel-nav-arrows {
        bottom: 20px;
        left: 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-arrow:first-child {
        margin-right: 2px;
    }

    .carousel-thumbnails {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 5px;
    }

    .thumbnail {
        width: 60px;
        height: 40px;
    }

    .read-more-btn {
        position: static; 
        margin-top: 20px;
        transform: translateX(0);
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 425px) {
    .hero-section {
        height: 70vh; 
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .carousel-nav-arrows {
        bottom: 10px;
        left: 10px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-thumbnails {
        bottom: 10px;
        gap: 2px;
    }

    .thumbnail {
        width: 50px;
        height: 35px;
    }
}
/* hero  */


/* Section and Row Styling (Updated) */
.alternating-section {
    background-color: #f0f8ff; /* Dull blue background */
}

.alternating-row {
    width: 100%;
    margin: 0; /* Rows के बीच का gap खत्म */
    display: flex;
    align-items: center;
    height: 50vh;
    overflow: hidden; 
}

/* Reverse the order for alternate rows */
.alternating-row.reverse {
    flex-direction: row-reverse;
}

.image-3{
    object-position: top;
}
/* Content Styling (Updated) */
.content-text {
    flex: 1;
    padding: 20px;
    max-width: 50%; /* Content को center में लाने के लिए max-width */
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.alternating-row.reverse .content-text {
    transform: translateX(100%);
}

.content-text h2 {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 10px;
    text-align: left;
}

.content-text hr {
    border: none;
    height: 2px;
    width: 100px;
    background-color: #FFA500;
    margin: 20px 0;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Button Styling */
.see-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFA500;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: transparent;
    color: #FFA500;
    border-color: #FFA500;
}

/* Image Styling (Updated) */
.content-image {
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: auto; /* Height को कम करने के लिए auto किया */
}

.content-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.alternating-row.reverse .content-image img {
    transform: translateX(100%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b2b2b;
    transform: translateX(0);
    transition: transform 0.8s ease;
}

/* Active state for animation */
.alternating-section.active .content-text {
    opacity: 1;
    transform: translateX(0);
}

.alternating-section.active .content-image img {
    transform: translateX(0);
}

.alternating-section.active .image-overlay {
    transform: translateX(100%);
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .alternating-row {
        flex-direction: column;
        gap: 0; /* Gap removed for mobile */
        text-align: center;
        height: 600px; /* Height auto for mobile */
    }

    .alternating-row.reverse {
        flex-direction: column;
    }

    .content-text {
        text-align: center;
        max-width: 100%;
        padding: 20px;
    }
    
    .content-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .content-text hr {
        margin: 15px auto;
    }
}
/* gsap image text  */


/* services */

/* --- Our Services Section --- */
.our-services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff; /* हल्का नीला (blueish white) बैकग्राउंड */
}

.our-services-section h2 {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 250px;
    max-width: 280px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-title {
    font-size: 1.5rem;
    color: #1e1e1e;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.outsourcing-text {
    font-size: 1rem;
    font-weight: 500;
    color: #FFA500;
    display: block;
    margin-top: 5px;
}

.service-card hr {
    border: none;
    height: 2px;
    background-color: #FFA500;
    margin: 15px auto;
    width: 50px;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.read-more-link {
    display: inline-block;
    color: #FFA500;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.read-more-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #FFA500;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.read-more-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
        max-width: none;
    }
}



.career-hero-section {
  width: 100%;
  min-height: 40vh;
  background-color: #f0f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.career-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
  gap: 40px;
}

.career-hero-left {
  flex: 1 1 500px;
}

.career-hero-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FFA500;
}

.career-hero-left p {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.apply-now-btn {
  padding: 12px 24px;
  background-color: orange;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.apply-now-btn:hover {
  background-color: rgb(240, 180, 69);
}

.career-hero-right {
  flex: 1 1 400px;
  text-align: right;
}

.career-hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Footer styles */
.footer {
    background-color: #000000;
    color: #ecf0f1;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

/* Google Map styles */
.footer-map {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    height: 250px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Useful & Quick Links styles */
.footer-links {
    display: flex;
    flex: 1;
    min-width: 300px;
    justify-content: space-around;
    margin: 10px;
}

.footer-column {
    margin: 0 20px;
    flex: 1 1 150px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFA500;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFA500;
}

/* Bottom Info styles */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.footer-box {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 250px;
}

.footer-box i {
    font-size: 2em;
    color: #FFA500;
    margin-right: 15px;
}

.footer-box h4 {
    margin: 0 0 5px;
    color: #fff;
}

.footer-box p {
    margin: 0;
    font-size: 0.9em;
}

.footer-box a {
    color: #FFA500;
    text-decoration: none;
}

/* Bottom Copy styles */
.footer-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-copy p {
    margin: 0;
    font-size: 0.9em;
}

.footer-copy a {
    color: #FFA500;
    text-decoration: none;
}

.footer-socials {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #ecf0f1;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #FFA500;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-map {
        order: -1;
        width: 90%; /* Reduced width to prevent overflow */
        max-width: 400px; /* New: A maximum width for better appearance */
        min-width: auto;
        margin: 20px auto; /* Centers the map */
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: flex-start; /* Changed to flex-start for left alignment */
        padding: 0 20px;
        box-sizing: border-box; /* Ensures padding is included in width */
    }

    .footer-column {
        margin: 20px 0;
        text-align: left;
        flex: 1 1 100%;
    }
    
    .footer-column h3 {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center; /* Centers the boxes in the middle */
        gap: 15px;
        width: 100%;
    }

    .footer-box {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 6px;
  background-color: #1a1a1a;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin: 12px auto;
  height: auto !important;           /* 💥 Forces height to shrink */
  min-height: auto !important;       /* 💥 Cancels any fixed height */
  flex: 0 0 auto !important;         /* 💥 Prevents expansion */
  box-sizing: border-box;
}


    .footer-copy {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-socials {
        margin-top: 0;
    }
    
}   




/* news slider  */

.news-updates {
  padding: 30px 20px;
  color: white;
  overflow: hidden;
  background-color: white;
}

.news-heading h2 {
  font-size: 3.8rem;
  margin-bottom: 50px;
  color: #FFA500;
  text-align: center;
}

.news-slider {
  overflow: hidden;
  position: relative;
  height: 190px;   /* 👈 increased height */
}

.news-track {
  display: flex;
  gap: 60px;
  align-items: center;
  /* animation: scrollNews 5s linear infinite; */
}

.news-item {
  flex: 0 0 auto;
  background: transparent;  /* 👈 transparent bg */
  border-radius: 0;         /* no border */
  padding: 10px 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 2vw;
  width: 40%;
}

.news-item a {
  color: black;
  text-decoration: none;
}

.news-item:hover {
  color: #00e676;
}

@keyframes scrollNews {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* pause on hover */
.news-slider:hover .news-track {
  animation-play-state: paused;
}

/* responsive tweaks */
@media(max-width: 768px) {
  .news-heading h2 {
    font-size: 1.4rem;
  }
  .news-slider {
    height: 60px;
  }
  .news-item {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width:375px) {
  .news-slider{
    height: 150px;
  }
}
@media (max-width:414px) {
  .news-slider{
    height: 150px;
  }
}
@media (max-width:768px) {
  .news-slider{
    height: 150px;
  }
}
@media (max-width:1024px) {
  .news-slider{
    height: 150px;
  }
}

/* news slider  */


.consulting-highlight {
  color: #fff;
  padding: 60px 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

.consulting-container {
  display: flex;
  align-items: center;
  max-width: 95%;
  margin: auto;
  flex-wrap: wrap;
}

.consulting-image {
  flex: 1;
  min-width: 320px;
}

.consulting-image img {
  width: 100%;
  border-radius: 12px;
}

.consulting-content {
  flex: 1;
  padding: 20px 40px;
}

.consulting-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: black;
}

.consulting-content h2 span {
  color: #FFA500;
}

.consulting-content p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}

.consulting-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.point {
  background: #000000;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.point i {
  font-size: 28px;
  color: #FFA500;
  margin-bottom: 10px;
}

.point h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.point p {
  font-size: 13px;
  color: #aaa;
}

.point:hover {
  background: #2a2a2a;
  transform: translateY(-4px);
}

/* ------------------ Responsive ------------------ */
@media (max-width: 992px) {
  .consulting-container {
    flex-direction: column;
  }

  .consulting-content {
    padding: 20px;
  }

  .consulting-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .consulting-content h2 {
    font-size: 26px;
  }

  .consulting-points {
    grid-template-columns: 1fr;
  }

  .point {
    padding: 15px;
  }
}

@media (max-width: 375px) {
  .consulting-content h2 {
    font-size: 22px;
  }

  .consulting-content p {
    font-size: 14px;
  }

  .point h4 {
    font-size: 15px;
  }
}


