:root {
  --max-content-width: 1800px;
  --header-height: 5rem;
  --fluid-h1: clamp(1.8rem, 5vw, 3.5rem);
  --fluid-h2: clamp(1.5rem, 4vw, 2.8rem);
  --fluid-p: clamp(0.9rem, 1.2vw, 1.1rem);
}

html, body {
  font-family: 'Inter', 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Optimization for Ultrawide and Large Screens */
@media (min-width: 1921px) {
  html {
    font-size: 18px; /* Slightly scale up everything */
  }
}

@media (min-width: 2561px) {
  html {
    font-size: 20px; /* Scale up further for 4K/8K and large LED screens */
  }
}

.container-fluid {
  max-width: var(--max-content-width);
  margin-left: auto;
  margin-right: auto;
}

/* Base Header Styles */
.header {
  background-color: transparent;
  transition: all 0.5s ease;
  width: 100%;
  position: sticky;
  top: 0;
  /* z-index: 1030;  */
  z-index: 997;
  
}

/* Topbar Section */
.header .topbar {
  background-color: rgba(23, 43, 34, 1);
  color: rgba(255, 255, 255, 1);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  transition: all 0.5s ease;
  width: 100%;
  position: relative;
  z-index: 998;
}

.header .topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Section */
.header .logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.header .logo img {
  height: 3.4375rem;
  width: auto;
  margin-right: 0.5rem;
}

.header .logo-title h1 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
}

/* Contact Information */
.header .social-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

    .header .social-links a {
        display: flex;
        font-size: 1.3rem;
        align-items: center;
        gap: 0.3125rem;
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
        transition: color 0.3s ease;
        transition: color 0.3s ease, transform 0.2s ease;
    }



    .social-links .social-icon:hover {
        color: yellow; 
        transform: scale(1.2);
    }

.header .social-links svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.header .social-links span {
  font-size: 0.75rem;
  font-weight: 400;
}
/* Branding Wrapper Container */
.branding-wrapper-outer {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: transparent;
}
/* Branding/Navigation Wrapper */
.header .branding-wrapper {
  background-color: #FFFFFF;
  position: relative;
  width: 85%;
  max-width: 1400px; /* Cap navigation width on ultrawide */
  margin: 0 auto; 
  display: flex;
  justify-content: center;
  border-bottom-left-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}


/* Main Navigation */

#main-navigation .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}


#main-navigation .nav-link {
  color: #172B22;
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.34rem 1rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
#main-navigation .navbar-nav .nav-link .bi-chevron-down::before{
  font-size: 1rem ;
}


#main-navigation .nav-link:hover,
#main-navigation .nav-link.active {
  color: #225a41;
}
#main-navigation .navbar-collapse .dropdown-toggle::after{
  display: none;
}
/* Dropdown Menu */
#main-navigation .dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
}

#main-navigation .dropdown-item {
  color: #003D1D;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

#main-navigation .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #225a41;
}

/* Search Form */
#main-navigation .search-container {
  position: relative;
  margin-left: 1rem;
}


#main-navigation .navbar-collapse .btn-outline-secondary {
  right: -2.5rem;
 
  border: none;
   color: #003D1D;
    
}

    /* Header & Navigation Responsiveness */
    @media (max-width: 991.98px) {
        .header .branding-wrapper {
            width: 95%;
            border-radius: 1rem;
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            color: #172B22;
            font-size: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            outline: none !important;
            box-shadow: none !important;
        }

        #main-navigation .navbar-collapse {
            background: #fff;
            margin-top: 0.5rem;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            max-height: 80vh;
            overflow-y: auto;
        }

        #main-navigation .navbar-nav {
            align-items: flex-start;
            gap: 0.5rem;
        }

        #main-navigation .nav-link {
            width: 100%;
            padding: 0.75rem 1rem !important;
            border-radius: 0.25rem;
            font-size: 1rem;
        }

        #main-navigation .nav-link:hover {
            background-color: #f8f9fa;
        }

        #main-navigation .dropdown-menu {
            border: none;
            padding-left: 1rem;
            background: transparent;
            box-shadow: none;
        }
    }

    @media (max-width: 767.98px) {
        .header .topbar .container-fluid {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        .header .branding-wrapper {
            width: 100%;
            border-radius: 0;
        }

        .header .logo img {
            height: 2.5rem;
        }

        .header .logo-title h1 {
            font-size: 0.7rem;
        }

        .header .social-links {
            display: none !important; /* Hide secondary links on very small screens if needed, or stack them */
        }
    }

    @media (max-width: 425px) {
        .header .topbar .container-fluid {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

        .header .logo-title h1 {
            font-size: 0.65rem;
            margin-left: 0 !important;
        }
        
        .navbar-toggler {
            font-size: 1.5rem;
        }
    }

    /* Global Grid & Stacking Fixes */
    .section {
        padding: 4rem 0;
        overflow-x: hidden;
    }

    @media (max-width: 768px) {
        .section {
            padding: 2.5rem 0;
        }
        
        .container-fluid {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
        }

        .row {
            margin-left: 0;
            margin-right: 0;
        }
        
        [class*="col-"] {
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }
    }

    @media (max-width: 375px) {
        .header .topbar .social-links {
            justify-content: flex-end;
            /* padding-right: 0.2rem; */
            gap: 0.7rem;
            flex-direction: row;
            flex-wrap: wrap;
        }
    }

    @media (max-width: 320px) {
        .header .topbar .container-fluid {
            padding-left: 1.25rem !important;
            padding-right: 1.25rem !important;
        }

        .header .topbar .social-links {
            justify-content: flex-end !important;
            padding-right: 1.1rem;
            gap: 1rem;
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: wrap !important;
            padding-right: 0.2rem;
            gap: 0.5rem;
        }
    }

    /* header section styling end */
    /* --------------------------- */

    /* search overlay css start */
    .search-overlay {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #172B22;
        z-index: 996; /* Just below the sticky header */
        border-radius: 0 0 1.25rem 1.25rem;
        padding: 2rem 1rem;
    }

    .search-box {
        display: flex;
        max-width: 600px;
        width: 100%;
        background: white;
        border-radius: 5px;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .search-input {
        flex: 1;
        border: none;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        outline: none;
    }

    .input-group > .form-control, .input-group > .form-floating, .input-group > .form-select {
        position: relative;
        flex: 1 1 100%;
        width: 1%;
        min-width: 0;
    }

    .search-btn {
        background: none;
        border: none;
        color: #172B22;
        padding: 0 1rem;
        font-size: 1.25rem;
    }
    /* overlay on 768px and below */
    @media (max-width: 767px) {
        .search-overlay {
            display: none !important;
        }

        #searchInput {
            display: block !important;
            visibility: visible !important;
            position: static !important;
        }
    }

    /* search overlay css end */


/* --------------------------- */
/* Hero Section - Carousel */
/* --------------------------- */
/* --------------------------- */
/* Hero Section - Carousel */
/* --------------------------- */
.hero-carousel {
    width: 100%;
    height: 85dvh;
    max-height: 1000px;
    position: relative;
    margin-top: -4.9375rem;
    overflow: hidden;
}

.carousel-item {
    height: 85dvh;
    max-height: 1000px;
    background-position: center;
    background-size: cover;
    position: relative;
}

    .carousel-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(23, 43, 34, 0.55);
        z-index: 1;
    }

.carousel-caption {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 0;
    right: 0;
    padding: 0 5rem;
    text-align: left;
}

.hero-carousel h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

    .hero-carousel h1 span {
        color: #fff617;
        display: inline-block;
    }

.hero-carousel p {
    color: #f8f9fa;
    margin: 0 0 2rem;
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
    max-width: 50rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Animation for text */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Custom carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: #fff617;
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .hero-carousel { margin-top: -4.5rem; }
    .carousel-caption { padding: 0 3rem; }
}

@media (max-width: 991.98px) {
    .hero-carousel, .carousel-item { height: 70dvh; }
    .hero-carousel h1 { font-size: 2.5rem; }
}

@media (max-width: 767.98px) {
    .hero-carousel { margin-top: -3.5rem; height: 65dvh; }
    .carousel-item { height: 65dvh; }
    .carousel-caption { 
        padding: 0 1.5rem; 
        text-align: center; 
        width: 100%;
    }
    .hero-carousel h1 { font-size: 2.25rem; line-height: 1.2; }
    .hero-carousel p { font-size: 1rem; margin: 0 auto 1.5rem; }
    .carousel-control-prev, .carousel-control-next { display: none; }
}

@media (max-width: 575.98px) {
    .hero-carousel, .carousel-item { height: 60dvh; }
    .hero-carousel h1 { font-size: 1.85rem; }
    .hero-carousel p { font-size: 0.95rem; }
}

@media (max-width: 425px) {
    .hero-carousel, .carousel-item { height: 55dvh; min-height: 400px; }
    .carousel-caption { padding: 0 1rem; }
    .hero-carousel h1 { font-size: 1.65rem; }
    .hero-carousel p { font-size: 0.9rem; }
}

@media (max-width: 320px) {
    .hero-carousel, .carousel-item { height: 50dvh; min-height: 350px; }
    .hero-carousel h1 { font-size: 1.45rem; }
}
/* hero section styling end */
/* ----------------------- */

    /* --------------------------- */
    /* Ticker Section - Professional Version */
    /* --------------------------- */

    .news-ticker {
        width: 100%;
        background-color: rgba(23, 43, 34, 1);
    }

    .ticker-container {
        width: 100%;
        overflow: hidden;
        padding: 0.625rem 0;
        position: relative;
    }

    .ticker-list {
        display: flex;
        gap: 3.125rem;
        margin: 0;
        padding: 0;
        list-style: none;
        animation: ticker-animation 15s linear infinite;
    }

    .ticker-item {
        white-space: nowrap;
    }

    .ticker-content {
        font-family: 'Inter', 'Roboto', sans-serif;
        color: rgba(255, 246, 23, 1);
        font-weight: 600;
        font-size: 1rem;
        line-height: 1;
        letter-spacing: 0;
        text-transform: capitalize;
    }

    /* Animation */
    @keyframes ticker-animation {
        0% {
            transform: translateX(50%);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* --------------------------- */
    /* Responsive Adjustments */
    /* --------------------------- */

    /* Tablets */
    @media (max-width: 991.98px) {
        .ticker-list {
            gap: 2.5rem;
        }

        .ticker-content {
            font-size: 0.9375rem;
        }
    }

    /* Small tablets */
    @media (max-width: 767.98px) {
        .ticker-list {
            gap: 2rem;
            animation-duration: 12s;
        }

        .ticker-content {
            font-size: 0.875rem;
        }
    }

    /* Phones */
    @media (max-width: 575.98px) {
        .ticker-list {
            gap: 1.5rem;
            animation-duration: 10s;
        }

        .ticker-content {
            font-size: 0.8125rem;
            font-weight: 500;
        }
    }

    /* Small phones */
    @media (max-width: 375px) {
        .ticker-list {
            gap: 1rem;
        }

        .ticker-content {
            font-size: 0.75rem;
        }
    }


    /* --------------------------- */
    /* About Section  styling start*/
    /* --------------------------- */

    .about-info {
        padding: 3rem 0 1rem 0;
        background: url("../images/Frame\ 94.png");
    }

    .about-info .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 4.5rem);
        padding-right: clamp(1.25rem, 5vw, 4.5rem);
    }


    #about-info .about-heading {
        font-family: 'Inter', 'Roboto', sans-serif;
        font-weight: 700;
        font-size: var(--fluid-h2);
        line-height: 1.1;
        text-transform: capitalize;
        margin-bottom: 1.5rem;
        color: rgba(0, 0, 0, 1);
    }

    #about-info .about-description {
        margin-top: 0.6rem;
        font-family: 'Inter', 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.5;
        text-transform: capitalize;
        color: rgba(23, 43, 34, 1);
    }

    #about-info .info-tabs-wrapper {
        margin-top: 2.3rem;
    }

    #about-info .info-tab {
        display: block;
        align-items: center;
        background-color: rgba(23, 43, 34, 1);
        color: rgba(255, 246, 23, 1);
        padding: 0.75rem 1.5rem;
        border-radius: 0.625rem;
        margin-bottom: 1.25rem;
        font-family: 'Inter', 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1;
        text-transform: capitalize;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 13.76rem;
    }

        #about-info .info-tab:hover {
            transform: translateY(-0.1875rem);
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        }

        #about-info .info-tab svg {
            flex-shrink: 0;
            color: rgba(255, 246, 23, 1);
            height: 0.9375rem;
            width: 0.9375rem;
        }

        #about-info .info-tab span {
            margin-left: 0.8125rem;
        }

    .about-info .col-md-6:last-child {
        padding-left: 3.5rem;
    }

    #about-info .publications-card {
        background-color: rgba(3, 65, 25, 1);
        color: white;
        border-radius: 1.25rem;
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    #about-info .policies-card {
        background-color: rgba(67, 67, 67, 1);
        color: white;
        border-radius: 1.25rem;
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    /* ... */
    #about-info .publications-card,
    #about-info .policies-card {
        height: 15rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }

    #about-info .card-content-wrapper {
        flex: 1;
        display: flex;
        overflow: auto;
    }

    #about-info .card-grid {
        display: flex;
        width: 100%;
        height: 100%;
    }

    #about-info .card-image-column {
        flex: 0 0 45%;
        max-width: 45%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    #about-info .card-heading {
        font-family: 'Inter', 'Roboto', sans-serif;
        font-weight: 600;
        font-size: clamp(1.125rem, 1.5vw, 1.5625rem);
        line-height: 1;
        text-transform: capitalize;
        text-align: center;
        margin-bottom: 0.75rem;
        /* ... */
        flex-shrink: 0;
        /* padding: 1rem 1.25rem 0.5rem; */
    }

    #about-info .text-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 1.35rem;
        /*  overflow-y: auto;*/
        /*  overflow-x:hidden;*/
    }

        #about-info .text-content p {
            margin-bottom: 0 !important;
        }

    #about-info .card-text {
        font-family: 'Inter', 'Roboto', sans-serif;
        font-weight: 600;
        font-size: clamp(1rem, 1.5vw, 1.5rem);
        line-height: 1.5;
        text-transform: capitalize;
        /* margin-bottom: 1.25rem; */
        color: white !important;
    }

    #about-info .read-more-text a {
        font-size: 1rem !important;
        color: white !important;
        font-style: italic;
    }

        #about-info .read-more-text a:hover {
            color: yellow !important;
        }






    #about-info span {
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    #about-info .card-image-container {
        width: 100%;
        height: 100%;
        border-radius: 1.25rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

        #about-info .card-image-container img {
            /* max-width: 100%; */
            width: 100%;
            max-height: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 0.3125rem;
            transition: transform 0.3s ease;
        }


            #about-info .card-image-container img:hover {
                transform: scale(1.02);
            }

    /* --------------------------- */
    /* Responsive Adjustments */
    /* --------------------------- */

    /* Custom breakpoint on 1130 */
    @media (max-width: 1130px) {

        #about-info .about-heading {
            font-size: 2.3rem;
        }

        #about-info .about-description {
            margin-top: 1.2rem;
            font-size: 0.94rem;
        }

        #about-info .info-tabs-wrapper {
            margin-top: 2.3rem;
        }

        #about-info .info-tab {
            max-width: 14rem;
            padding: 0.625rem 1.25rem;
            margin-bottom: 1rem;
        }

        .about-info .col-md-6:last-child {
            padding-left: 2.5rem;
        }

        #about-info .publications-card,
        #about-info .policies-card {
            height: 13.5rem;
        }

        #about-info .text-content {
            font-size: 1.125rem;
        }
    }

    /* Tablets */
    @media (max-width: 992px) {

        #about-info .about-heading {
            font-size: 2.1rem;
        }

        #about-info .about-description {
            margin-top: 1.1rem;
            font-size: 0.94rem;
        }

        #about-info .info-tabs-wrapper {
            margin-top: 2.1rem;
        }

        #about-info .info-tab {
            max-width: 13.7rem;
            padding: 0.625rem 1.25rem;
            margin-bottom: 1rem;
        }

        .about-info .col-md-6:last-child {
            padding-left: 2.45rem;
        }

        #about-info .publications-card,
        #about-info .policies-card {
            height: 13.5rem;
        }

        #about-info .card-heading {
            font-size: 1.15rem;
        }

        #about-info .text-content {
            font-size: 0.9rem;
            padding-left: 0.7rem;
        }

        #about-info span {
            font-size: 0.9rem !important;
        }
    }
    /* Custom breakpoint */
    @media (max-width: 886px) {
        #about-info .about-heading {
            font-size: 2rem;
        }

        #about-info .about-description {
            margin-top: 0.8rem;
            font-size: 0.92rem;
        }

        #about-info .info-tabs-wrapper {
            margin-top: 1.7rem;
        }

        #about-info .info-tab {
            max-width: 12.8rem;
            padding: 0.625rem 1.05rem;
            margin-bottom: 1rem;
        }

        .about-info .col-md-6:last-child {
            padding-left: 1.7rem;
        }

        #about-info span {
            font-size: 0.88rem !important;
        }
    }
    /* Custom break point */
    @media (max-width: 850px) {
        #about-info .publications-card, #about-info .policies-card {
            height: 14rem;
            padding-right: 0.55rem;
        }

        #about-info .about-heading {
            font-size: 1.9rem;
            margin-bottom: 0.9rem;
        }

        #about-info .about-description {
            margin-top: 0.6rem;
            font-size: 0.92rem;
        }

        #about-info .info-tabs-wrapper {
            margin-top: 1.4rem;
        }

        #about-info .text-content {
            font-size: 0.84rem;
            padding-left: 0.7rem;
        }

        #about-info .card-text {
            font-size: 1rem;
        }

        #about-info .card-image-container {
            align-items: normal;
        }

        #about-info span {
            font-size: 0.88rem !important;
        }
    }

    @media (max-width: 768px) {
        #about-info .col-md-6:first-child {
            width: 100% !important;
            flex: 0 0 100%;
            max-width: 100%;
        }

        #about-info .col-md-6:last-child {
            width: 100% !important;
            flex: 0 0 100%;
            max-width: 100%;
            gap: 1rem;
            padding-left: 0 !important;
        }

        #about-info .text-content {
            flex: 1;
            font-size: 1.18rem;
            padding-left: 1.9rem;
            padding-right: 0.4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: visible;
        }

        #about-info .card-text {
            font-size: 1.18rem;
        }

        .info-tabs-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0.625rem;
        }
    }

    /* Small tablets */
    @media (max-width:767px) {
        #about-info .publications-card,
        #about-info .policies-card {
            height: 16rem;
            /* max-height: 16rem;  */
            overflow: visible;
        }

        #about-info .card-grid {
            display: flex;
            flex-direction: row;
            height: 100%;
        }

        #about-info .card-heading {
            font-size: 1.3rem;
            margin-bottom: 0;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .about-info .col-md-6:last-child {
            padding-left: 0.9rem;
        }


        #about-info .card-image-column {
            flex: 0 0 50%;
            max-width: 50%;
            align-self: center;
            margin-bottom: 0;
        }

        #about-info .card-image-container {
            height: 10.2rem;
            max-height: 100%;
            box-sizing: border-box;
            border-radius: 1rem;
            overflow: hidden;
            margin-bottom: 0;
        }

            #about-info .card-image-container img {
                max-height: 100%;
                height: auto;
                border-radius: 1rem;
            }

        #about-info .text-content {
            flex: 1;
            font-size: 1.18rem;
            padding-left: 1.29rem;
            padding-right: 0.4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: visible;
        }

        #about-info .card-text {
            font-size: 1.18rem;
        }

        .info-tabs-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0.625rem;
        }
    }

    /* Custom breakpoint */
    /* Phones */
    @media (max-width: 586px) {

        .about-info .col-md-6:last-child {
            padding-left: 0.8rem;
        }

        #about-info .publications-card,
        #about-info .policies-card {
            height: 14.5rem;
        }

        #about-info .card-image-container {
            height: 8.7rem;
            align-items: center;
        }

        #about-info .text-content {
            font-size: 1rem;
            padding-left: 0.3rem;
            padding-right: 0.3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: visible;
        }

        #about-info .card-text {
            text-align: center;
            font-size: 1rem;
        }

        .info-tabs-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
    }

    @media (max-width: 425px) {
        .about-info {
            padding: 2rem 0;
        }

            .about-info .container-fluid .row .col-md-6:first-child {
                margin-bottom: 1rem !important;
            }

            .about-info .container-fluid {
                padding-left: 2rem;
                padding-right: 2rem;
            }

        #about-info .about-heading {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }

        #about-info .about-description {
            margin-top: 0.6rem;
            font-size: 0.825rem;
        }

        #about-info .info-tab {
            margin-bottom: 0.8rem;
        }

        #about-info .card-heading {
            font-size: 1.25rem;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        #about-info span {
            font-size: 0.8rem !important;
        }
    }

    /* Small phones */
    @media (max-width: 375px) {
        #about-info .card-text {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 320px) {
        #about-info .card-heading {
            padding-top: 0.3rem;
            padding-bottom: 0.3rem;
        }

        #about-info .publications-card, #about-info .policies-card {
            padding: 0.5rem !important;
        }

        .about-info .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
    }
    /* about info section styling end */

    /* --------------------------- */
    /* About Us Section  */
    /* --------------------------- */

    .about-us {
        padding: clamp(1.7rem, 5vw, 1.8rem) 0;
        background-color: #fff;
    }

    #about-us .container-fluid {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }

    /* Main container with responsive height */
    #about-us .about-cards-container {
        position: relative;
        min-height: 36em;
        overflow: hidden;
    }



    #about-us .leadership-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        pointer-events: none;
    }



    /* ===== Desktop Styles (applied by default) ===== */
    #about-us .leadership-card {
        flex-direction: row;
    }

        #about-us .leadership-card.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
    /* Responsive Image Container */
    #about-us .leadership-image {
        width: 100%;
        max-width: 431px;
        aspect-ratio: 3 / 4; 
        overflow: hidden;
        border-radius: 20px;
        margin-right: auto;
        margin-left: auto;
    }

        /* Responsive Image Styling */
        #about-us .leadership-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s ease;
        }

        /* Optional hover zoom */
        #about-us .leadership-image:hover img {
            transform: scale(1.03);
        }


        #about-us .leadership-image:hover img {
            transform: scale(1.02);
        }


    /* Text content */
    #about-us .leadership-details {
        padding: clamp(1rem, 3vw, 1.5rem);
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
    }

    #about-us .leadership-card.active .leadership-details {
        transform: translateY(0);
        opacity: 1;
    }


    #about-us .leadership-details h2 {
        color: #000;
        font-weight: 600;
        font-size: clamp(1.5rem, 3vw, 2.875rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    #about-us .leadership-details h3 {
        color: #172b22;
        font-weight: 600;
        font-size: clamp(1.125rem, 1.8vw, 1.57rem);
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    #about-us .leadership-bio p {
        color: #172b22;
        font-weight: 500;
        font-size: clamp(0.875rem, 1.1vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.25rem;
        text-align: justify;
    }

    /* Read More Button */
    #about-us .btn-read-more {
        background: linear-gradient(40deg, #172B22 50%, transparent 50%);
        background-size: 240% 100%;
        background-position: left bottom;
        color: #FFF617;
        border: none;
        border-radius: 0.5rem;
        padding: 0.625rem 1.5rem;
        font-size: 0.856rem;
        font-weight: 700;
        transition: all 0.4s ease;
    }

        #about-us .btn-read-more:hover {
            background-position: right bottom;
            color: #172B22;
            background-color: #FFF617;
        }

    #about-us .leadership-details h2 {
        padding-top: 1rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 1199px) {
        #about-us .about-cards-container {
            min-height: 29.4rem;
        }

        #about-us .leadership-card .col-md-8 {
            align-items: normal !important;
        }

        #about-us .leadership-bio p {
            font-size: 0.97rem;
        }

        #about-us .leadership-details h2 {
            padding-top: 1rem;
        }
    }

    @media (max-width: 1098px) {
        #about-us .about-cards-container {
            min-height: 26rem;
        }

        #about-us .leadership-details h2 {
            padding-top: 0.65rem;
        }

        #about-us .leadership-details {
            padding-right: 0.5rem;
            padding-left: 0.8rem;
        }

        #about-us .leadership-image {
            aspect-ratio: 3/4.1;
            width: 100%;
        }

        #about-us .leadership-details h3 {
            line-height: 1.3;
            margin-bottom: 0.8rem;
        }

        #about-us .leadership-bio p {
            font-size: 0.97rem;
            margin-bottom: 0.8rem;
        }

            #about-us .leadership-bio p span {
                display: none;
            }
    }

    @media (max-width: 991px) {
        #about-us .about-cards-container {
            min-height: 25rem;
        }

        #about-us .leadership-details h2 {
            padding-top: 1rem;
        }
    }

    @media (max-width: 894px) {
        .about-us {
            padding-bottom: 2.5rem;
        }

        #about-us .leadership-details {
            padding-right: 0.8rem;
            padding-left: 0.8rem;
        }

        #about-us .about-cards-container {
            min-height: 22.6rem;
        }
        /* #about-us .leadership-details h2 {
      padding-top: 0.8rem;
  } */
        #about-us .leadership-image {
            aspect-ratio: 3/4.7;
        }
    }

    @media (max-width: 767px) {
        .about-us {
            padding-bottom: 2rem;
        }

        #about-us .about-cards-container {
            min-height: auto;
            height: auto;
            overflow: visible;
        }

        #about-us .leadership-card .col-md-4 {
            margin-bottom: 0 !important;
        }

        #about-us .leadership-card {
            position: relative;
            opacity: 0;
            height: 0;
            overflow: hidden;
            transition: opacity 0.6s ease, height 0.6s ease;
            margin-bottom: 0;
        }

            #about-us .leadership-card.active {
                height: auto;
                opacity: 1;
                margin-bottom: 2rem;
            }


        #about-us .leadership-image {
            aspect-ratio: 3/2.5;
            border-radius: 1.25rem;
            align-items: center;
        }

            #about-us .leadership-image img {
                object-position: 50% 11%;
            }

        #about-us .leadership-details h2 {
            padding-top: 0;
        }

        /* -------------------- */




        #about-us .leadership-card.active .leadership-image {
            transform: scale(1);
        }

        #about-us .leadership-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        #about-us .leadership-image:hover img {
            transform: scale(1.03);
        }

        /* Text content */
        #about-us .leadership-details {
            padding: clamp(1rem, 3vw, 1.5rem);
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
        }

        #about-us .leadership-card.active .leadership-details {
            transform: translateY(0);
            opacity: 1;
        }

        #about-us .leadership-details h2 {
            color: #000;
            font-weight: 700;
            font-size: var(--fluid-h2);
            line-height: 1.1;
            margin-bottom: 0.75rem;
        }

        #about-us .leadership-details h3 {
            color: #172b22;
            font-weight: 600;
            font-size: clamp(1.1rem, 2vw, 1.6rem);
            line-height: 1.3;
            margin-bottom: 1.25rem;
        }

        #about-us .leadership-bio p {
            color: #172b22;
            font-weight: 500;
            font-size: var(--fluid-p);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        /* Read More Button */
        #about-us .btn-read-more {
            background: linear-gradient(40deg, #172B22 50%, transparent 50%);
            background-size: 240% 100%;
            background-position: left bottom;
            color: #FFF617;
            border: none;
            border-radius: 0.5rem;
            padding: 0.625rem 1.5rem;
            font-size: 0.856rem;
            font-weight: 700;
            transition: all 0.4s ease;
        }

            #about-us .btn-read-more:hover {
                background-position: right bottom;
                color: #172B22;
                background-color: #FFF617;
            }
    }

    @media (max-width: 425px) {
        #about-us .container-fluid {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        #about-us .leadership-image {
            aspect-ratio: 3/4;
        }

        #about-us .btn-read-more {
            width: 100%;
        }
    }

    @media (max-width: 375px) {
        #about-us .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        #about-us .leadership-bio p:last-child {
            display: none;
        }
    }
    /* read more button fixed css */
    .leadership-details {
        display: flex;
        flex-direction: column;
        height: 95%; /* make leadership-details take full height of parent */
    }

    .leadership-bio {
        flex-grow: 1; /* this will take remaining height */
    }

    .btn-read-more {
        align-self: flex-start; /* optional: if you want left aligned */
        margin-top: auto; /* this pushes button to the bottom */
    }
    /*About use section end*/
    /* ==========================================================================
   Indicator Section
   ========================================================================== */

    /* indicator css start */
    .indicator {
        background-image: url('/MOITT/assets/images/indicator-Vector.png'), url('/MOITT/assets/images/indicator-logo.png');
        background-repeat: no-repeat, no-repeat;
        background-position: center -15%, center 80%;
        background-color: #172B22;
        color: white;
    }

    #indicator .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 4.5rem);
        padding-right: clamp(1.25rem, 5vw, 4.5rem);
    }

    .indicator .indicator-main h2 {
        color: white;
        font-weight: 700;
        font-size: var(--fluid-h2);
        line-height: 1.2;
        letter-spacing: 0%;
        text-transform: capitalize;
        text-align: center;
        margin-bottom: 1rem;
    }

    .indicator .indicator-main p {
        color: white;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: capitalize;
    }
    /* .indicator svg {
  width: 40px;
  height: 40px;
} */

    .indicator h3 {
        color: #FFF617;
        font-family: Inter;
        font-weight: 700;
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.1;
        letter-spacing: 0%;
        text-transform: capitalize;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .indicator p {
        font-family: Inter;
        font-weight: 500;
        font-size: 1rem;
        line-height: 20px;
        letter-spacing: 0%;
        margin-bottom: 0;
    }

    @media (max-width: 1200px) {
        .indicator .indicator-main h2 {
            font-size: 2.3rem;
        }

        .indicator .col-md-3 {
            margin-bottom: 2.5rem !important;
        }

        .indicator h3 {
            font-size: 2.1rem;
            margin-top: 0.5rem;
        }

        .indicator svg {
            width: 2.1rem;
            height: 2.13;
        }
    }

    @media (max-width: 992px) {
        .indicator .indicator-main h2 {
            font-size: 2.1rem;
        }

        .indicator .indicator-main p {
            font-size: 0.95rem;
        }

        .indicator .col-md-3 {
            margin-bottom: 2.2rem !important;
        }

        .indicator h3 {
            font-size: 1.8rem;
            margin-top: 0.4rem;
        }

        .indicator svg {
            width: 2rem;
            height: 2.1;
        }

        .indicator p {
            font-size: 0.95rem;
            line-height: 18px;
        }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .indicator .indicator-main h2 {
            font-size: 1.9rem;
        }

        .indicator .indicator-main p {
            font-size: 0.92rem;
        }

        .indicator .col-md-3 {
            margin-bottom: 2.1rem !important;
        }

        .indicator h3 {
            font-size: 1.7rem;
        }

        .indicator svg {
            width: 1.9rem;
            height: 1.96rem;
        }

        .indicator p {
            font-size: 0.9rem;
            line-height: 18px;
        }
    }

    @media (max-width: 576px) {
        .indicator .row > div {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .indicator .indicator-main h2 {
            font-size: 1.6rem;
        }

        .indicator h3 {
            font-size: 1.6rem;
        }

        .indicator p {
            font-size: 14px;
            line-height: 18px;
        }
    }

    @media (max-width: 425px) {
        #indicator .container-fluid {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .indicator .indicator-main h2 {
            font-size: 1.4rem;
        }

        .indicator h3 {
            font-size: 1.4rem;
        }

        .indicator p,
        .indicator .indicator-main p {
            font-size: 0.825rem;
        }

        .indicator svg {
            width: 1.75rem;
            height: 1.8rem;
        }
    }

    @media (max-width: 320px) {
        #indicator .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
    }

    /* indicator css end */




    /* News section styling */
    #news-info {
        padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
        background-color: #ffffff;
    }


        #news-info .news-header {
            margin-bottom: 1.5rem;
        }

        #news-info .news-title-main {
            font-size: var(--fluid-h2);
            font-weight: 700;
            color: #000000;
            margin-bottom: 0.75rem;
        }

        #news-info .news-subtitle {
            font-size: clamp(1rem, 1.25vw, 1.125rem);
            color: #373737;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        /* News cards */
        #news-info .news-card {
            height: 100%;
        }

        #news-info .news-img-main {
            width: 100%;
            height: 22rem;
            border-radius: 1.25rem;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        #news-info .news-img-secondary {
            width: 100%;
            height: 10rem;
            border-radius: 1.25rem;
            object-fit: cover;
            margin-bottom: 1rem;
            object-position: 50% 0%;
        }

        #news-info .news-date {
            display: flex;
            align-items: center;
            color: #034119;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

            #news-info .news-date svg {
                margin-right: 0.5rem;
                width: 1rem;
                height: 1rem;
            }

        #news-info .secondary-news-date {
            padding-top: 1rem;
        }

        #news-info .news-headline-main {
            font-size: clamp(1.25rem, 1.75vw, 1.75rem);
            font-weight: 700;
            color: #000000;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        #news-info .news-headline-secondary {
            font-size: clamp(1rem, 1.1vw, 1.125rem);
            font-weight: 500;
            color: rgba(55, 55, 55, 1);
            margin-bottom: 0.86rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        #news-info .btn-view-all {
            background: linear-gradient(40deg, #172B22 50%, transparent 50%);
            background-size: 240% 100%;
            background-position: left bottom;
            color: #FFF617;
            border: none;
            border-radius: 0.5rem;
            padding: 0.625rem 1.3rem;
            font-size: 0.856rem;
            font-weight: 700;
            transition: all 0.4s ease;
        }

            #news-info .btn-view-all:hover {
                background-position: right bottom;
                color: #172B22;
                background-color: #FFF617;
            }

        #news-info .btn-read-more {
            background: linear-gradient(40deg, #172B22 50%, transparent 50%);
            background-size: 240% 100%;
            background-position: left bottom;
            color: #FFF617;
            border: none;
            border-radius: 0.5rem;
            padding: 0.625rem 1.3rem;
            font-size: 0.856rem;
            font-weight: 700;
            transition: all 0.4s ease;
        }

            #news-info .btn-read-more:hover {
                background-position: right bottom;
                color: #172B22;
                background-color: #FFF617;
            }

        #news-info .btn-read-more-outline {
            color: #172b22;
            border: 2px solid #172b22;
            border-radius: 0.5rem;
            font-size: 0.856rem;
            padding: 0.4rem 1rem;
            font-weight: 700;
            background: transparent;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
        }

            #news-info .btn-read-more-outline:hover {
                background-color: #172b22;
                color: #ffffff;
            }

        #news-info .col {
            height: auto;
        }
@media (min-width: 1400px) {
    #news-info .news-img-main {
        width: 100%;
        height: 25rem;
    }

    #news-info .news-img-secondary {
        width: 100%;
        height: 12rem;
        object-position: 50% 50%;
    }
}
    /* Responsive adjustments */
    @media (max-width: 1200px) {
        #news-info .news-img-main {
            height: auto;
            aspect-ratio: 4/3;
        }

        #news-info .news-img-secondary {
            height: auto;
            aspect-ratio: 4/2.8;
        }

        #news-info .news-headline-secondary {
            margin-bottom: 0.7rem;
        }

        #news-info .secondary-news-date {
            padding-top: 0.9rem;
        }

        #news-info .btn-read-more-outline {
            padding: 0.4rem 1.25rem;
        }

        #news-info .news-title-main {
            font-size: 2.3rem;
        }

        #news-info .news-headline-main {
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }
    }

    /* Custom break point */
    @media (max-width: 1058px) {
        #news-info .news-img-secondary {
            height: auto;
            aspect-ratio: 4/3.07;
        }

        #news-info .secondary-news-date {
            padding-top: 0.8rem;
        }
    }

    @media (max-width: 992px) {
        #news-info .news-img-main {
            height: auto;
        }

        #news-info .news-img-secondary {
            /* height: 100%; */
            height: auto;
            aspect-ratio: 4/3;
        }

        #news-info .news-header {
            margin-bottom: 1.3rem;
        }

        #news-info .news-title-main {
            font-size: 2.1rem;
        }

        #news-info .btn-view-all {
            margin: 0 auto;
        }

        #news-info .news-img-main {
            margin-bottom: 0.8rem;
        }

        #news-info .news-date {
            font-size: 0.84rem;
            margin-bottom: 0.34rem;
        }

        #news-info .secondary-news-date {
            padding-top: 0.7rem;
        }

        #news-info .news-headline-main {
            margin-bottom: 0.6rem;
            line-height: 1.22;
        }

        #news-info .btn-read-more {
            font-size: 0.8rem;
            padding: 0.65rem 1.21rem;
        }

        #news-info .btn-read-more-outline {
            padding: 0.3rem 1rem;
            font-size: 0.84rem;
        }

        #news-info .news-headline-secondary {
            line-height: 1.15;
        }
    }
    /* Custom break point */
    @media (max-width: 860px) {
        #news-info .news-img-main {
            height: auto;
        }

        #news-info .image-wrapper {
            aspect-ratio: 4 / 3.3;
            width: 100%;
            overflow: hidden;
        }

            #news-info .image-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        #news-info .secondary-news-date {
            padding-top: 0.6rem;
        }

        #news-info .right-column .row {
            padding-bottom: 1rem;
        }

        #news-info .right-column .col-md-6:last-child {
            height: auto !important;
            min-height: unset !important;
            padding-left: 0;
            padding-right: 0;
        }

        #news-info .btn-read-more-outline {
            padding: 0.2rem 1rem;
            font-size: 0.82rem;
        }

        #news-info .news-headline-secondary {
            font-size: 0.85rem;
            line-height: 1.1;
        }
    }

    @media (max-width:780px) {
        #news-info .image-wrapper {
            aspect-ratio: 4 / 3.7;
            width: 100%;
            overflow: hidden;
        }
    }

    @media (max-width: 767px) {

        #news-info .news-img-main {
            width: 100%;
            aspect-ratio: 4 / 2.1;
            height: auto;
            object-fit: cover;
        }

        #news-info .image-wrapper {
            aspect-ratio: 4 / 2.5;
            width: 100%;
            overflow: hidden;
        }

            #news-info .image-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: 50% 6%;
            }

        #news-info .news-title-main {
            font-size: 1.9rem;
        }

        #news-info .news-header {
            margin-bottom: 2.5rem;
        }

        #news-info .news-subtitle {
            margin-bottom: 0;
        }

        #news-info .btn-view-all {
            margin: 0 auto;
        }

        #news-info .news-img-main {
            margin-bottom: 0.8rem;
        }

        #news-info .news-date {
            font-size: 0.84rem;
            margin-bottom: 0.34rem;
        }

        #news-info .news-headline-main {
            margin-bottom: 0.6rem;
            line-height: 1.22;
        }

        #news-info .btn-read-more {
            padding: 0.525rem 1.5rem;
            font-size: 0.85rem;
        }

        #news-info .btn-read-more-outline {
            padding: 0.3rem 1rem;
            font-size: 0.84rem;
        }

        #news-info .secondary-news-date {
            padding-top: 1.2rem;
        }

        #news-info .news-headline-secondary {
            line-height: 1.15;
            font-size: 1rem;
        }

        #news-info .news-headline-secondary {
            -webkit-line-clamp: 2;
        }

        #news-info .news-card {
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 576px) {
        #news-info .right-column .col-md-6 {
            width: 100% !important;
            display: block;
        }

            #news-info .right-column .col-md-6:last-child {
                padding-left: 1rem;
                padding-right: 1rem;
            }

        #news-info .news-headline-main {
            margin-bottom: 0.6rem;
            line-height: 1.22;
            font-size: 1.1rem;
        }

        #news-info .right-column .row {
            padding-bottom: 2.5rem;
        }
    }

    @media (max-width: 425px) {
        #news-info {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

            #news-info .news-title-main {
                font-size: 1.4rem;
            }

            #news-info .btn-view-all {
                width: 100%;
                padding: 0.53rem;
            }

            #news-info .news-header {
                margin-bottom: 2.5rem;
            }

            #news-info .btn-read-more {
                width: 100%;
                padding: 0.53rem;
            }

            #news-info .btn-read-more-outline {
                width: 100%;
                padding: 0.4rem;
            }
    }

    @media (max-width: 320px) {
        #news-info {
            padding-left: 0.6rem;
            padding-right: 0.6rem;
        }
    }





    /* ------------------ */
    /* Gallery section styling start */
    #gallery .section-title {
        font-size: var(--fluid-h2);
        font-weight: 700;
        text-align: left;
        color: #000;
        margin-bottom: 0.5rem;
    }

    #gallery .section-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        color: #444;
        margin-bottom: 0;
    }

    #gallery .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 5%);
        padding-right: clamp(1.25rem, 5vw, 5%);
    }

    /* Gallery Images */
    #gallery .gallery-img {
        width: 100%;
        border-radius: 1.25rem;
        object-fit: contain; /* ensures full visibility without cropping */
        background-color: #f8f9fa; /* light grey neutral background */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    #gallery .gallery-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Aspect Ratios for Desktop */
    @media (min-width: 768px) {
        /* Left smaller column imgs */
        .col-md-4 .gallery-img {
            aspect-ratio: 4 / 3;
        }
        /* Left larger column imgs */
        .col-md-8 .gallery-img {
            aspect-ratio: 16 / 9;
        }
        /* Right column imgs */
        .col-lg-3 .gallery-img {
            aspect-ratio: 3 / 4;
        }
    }

    #gallery .view-all-btn {
        background: #172B22;
        color: #FFF617;
        border: 2px solid #172B22;
        border-radius: 0.5rem;
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        font-weight: 700;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    #gallery .view-all-btn:hover {
        background: transparent;
        color: #172B22;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        #gallery .container-fluid {
            padding-left: 3%;
            padding-right: 3%;
        }
        
        .col-lg-3 .gallery-img {
            aspect-ratio: 16 / 9;
        }
    }

    @media (max-width: 767px) {
        #gallery .section {
            padding: 2.5rem 0;
        }
        
        #gallery .container-fluid {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        #gallery .gallery-img {
            aspect-ratio: 16 / 10 !important;
            border-radius: 1rem;
        }
        
        #gallery .section-title {
            font-size: 1.75rem;
        }
        
        .view-all-btn {
            width: 100%;
            margin-top: 1rem;
        }
    }

    @media (max-width: 576px) {
        #gallery .container-fluid {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        #gallery .gallery-img {
            aspect-ratio: 4 / 3 !important;
        }
    }

    /* -------------- */
    /* ............. Light box priview ................ */
    /* Lightbox Styles */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.95);
        align-items: center;
        justify-content: center;
    }

    .lightbox-content {
        width: 100%;
        height: 100%;
        object-fit: contain; /* maintains aspect ratio */
        border-radius: 0; /* remove rounding for full screen */
    }

    .close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #fff;
        font-size: 45px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        transition: 0.3s;
    }





    /* ------------------- */
    /* dev css start */

    #dev-card .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 4.5rem);
        padding-right: clamp(1.25rem, 5vw, 4.5rem);
    }


    #dev-card .news-heading {
        font-size: var(--fluid-h2);
        font-weight: 700;
        color: #172B22;
        margin-bottom: 0.5rem;
    }

    #dev-card .news-para {
        font-size: var(--fluid-p);
        color: #373737;
        margin-bottom: 1.5rem;
    }

    #dev-card .btn-view-all {
        background: linear-gradient(40deg, #172B22 50%, transparent 50%);
        background-size: 240% 100%;
        background-position: left bottom;
        color: #FFF617;
        border: none;
        border-radius: 0.5rem;
        padding: 0.625rem 1.3rem;
        font-size: 0.856rem;
        font-weight: 700;
        transition: all 0.4s ease;
    }

        #dev-card .btn-view-all:hover {
            background-position: right bottom;
            color: #172B22;
            background-color: #FFF617;
        }

    #dev-card .dev-card {
        background: #fff;
        text-align: center;
        margin: auto;
        border: 2px solid #034119;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        height: 350px;
        transition: all 0.5s ease;
    }

    #dev-card .img-card {
        transition: all 0.5s ease;
        position: relative;
    }

        #dev-card .img-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: all 0.5s ease;
        }

    #dev-card .date-badge {
        position: absolute;
        top: 30px;
        right: -13px;
        background-color: #FFF617;
        color: #000;
        font-weight: 700;
        font-size: 10px;
        line-height: 16px;
        padding: 5px 10px;
        text-align: center;
        box-shadow: -3.09px 9.27px 6.18px rgba(0, 0, 0, 0.25);
        z-index: 2;
        white-space: nowrap;
    }

        #dev-card .date-badge::after {
            content: '';
            position: absolute;
            top: 110%;
            left: 87%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 10px solid #FFF617;
        }

    #dev-card .dev-card-body {
        padding: 15px;
        position: relative;
        transition: transform 0.5s ease, padding-bottom 0.5s ease;
    }

    #dev-card .card-body h5 {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 18px;
        line-height: 135%;
        text-align: center;
        text-transform: capitalize;
        margin: 10px 0 5px;
        color: #172B22;
        transition: font-size 0.3s ease;
    }

    #dev-card .dev-card-body p {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 12px;
        line-height: 17px;
        text-align: center;
        text-transform: capitalize;
        color: #172B22;
        transition: font-size 0.3s ease;
    }

    #dev-card .btn-success.btn-read-more {
        background: linear-gradient(135deg, #1f2d1f 50%, yellow 50%);
        color: yellow;
        background-size: 200% 200%;
        background-position: top left;
        transition: all 0.5s ease;
        border: none;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        padding: 8px 20px;
        font-weight: 600;
    }

        #dev-card .btn-success.btn-read-more:hover {
            background-position: bottom right;
            color: #172B22;
        }

    /* Hover effects */
    #dev-card .dev-card:hover {
        cursor: pointer;
    }

        #dev-card .dev-card:hover .img-card img {
            height: 150px;
            padding-bottom: 20px;
        }

        #dev-card .dev-card:hover .dev-card-body {
            transform: translateY(-20px);
            padding-bottom: 60px;
        }

        #dev-card .dev-card:hover .btn-success.btn-read-more {
            opacity: 1;
            visibility: visible;
        }

    /* Responsive styles  min-width*/
    @media (min-width: 1400px) {
        #dev-card .dev-card {
            height: 380px;
        }

        #dev-card .img-card img {
            height: 200px;
        }

        #dev-card .dev-card:hover .img-card img {
            height: 160px;
        }

        #dev-card .card-body h5 {
            font-size: 20px;
        }

        #dev-card .dev-card-body p {
            font-size: 12px;
            line-height: 20px;
        }
    }

    @media (max-width: 1200px) {
        #dev-card .dev-card {
            height: 340px;
        }

        #dev-card .img-card img {
            height: 170px;
        }

        #dev-card .dev-card:hover .img-card img {
            height: 140px;
        }
    }

    @media (max-width: 992px) {
        #dev-card .dev-card {
            height: 330px;
        }

        #dev-card .img-card img {
            height: 160px;
        }

        #dev-card .dev-card:hover .img-card img {
            height: 130px;
        }

        #dev-card .card-body h5 {
            font-size: 16px;
        }
    }

    @media (max-width: 767px) {
        #dev-card .dev-card {
            height: 300px;
        }

        #dev-card {
            padding-top: 2.2rem !important;
        }


            #dev-card .img-card img {
                height: 150px;
            }

            #dev-card .news-heading {
                font-size: 1.9rem;
            }

            #dev-card .dev-card:hover .img-card img {
                height: 120px;
            }

            #dev-card .dev-card-body {
                padding: 12px;
            }

            #dev-card .dev-card:hover .dev-card-body {
                transform: translateY(-15px);
                padding-bottom: 50px;
            }

            #dev-card .btn-success.btn-read-more {
                padding: 6px 15px;
                font-size: 14px;
            }

            #dev-card .date-badge {
                top: 20px;
                right: -10px;
                font-size: 9px;
                padding: 4px 8px;
            }
    }

    @media (max-width: 576px) {
        #dev-card {
            padding-top: 2.5rem !important;
            padding-bottom: 2.5rem !important;
        }

        #dev-card .dev-card {
            min-height: 280px;
            height: auto;
            max-width: 320px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        #dev-card .img-card img {
            height: 160px;
        }

        #dev-card .card-body h5 {
            font-size: 16px;
            margin: 12px 0 8px;
            padding: 0 5px;
        }

        #dev-card .dev-card-body p {
            font-size: 11px;
            line-height: 1.5;
            margin-bottom: 45px;
            padding: 0 10px;
        }

        #dev-card .btn-success.btn-read-more {
            padding: 8px 18px;
            font-size: 13px;
            bottom: 15px;
            opacity: 1;
            visibility: visible;
        }

        #dev-card .news-heading {
            font-size: 22px;
            text-align: center;
        }

        #dev-card .news-para {
            font-size: 13px;
            text-align: center;
            padding-right: 0;
            margin-bottom: 1.5rem;
        }

        #dev-card .btn-view-all {
            padding: 10px 20px;
            font-size: 14px;
            display: block;
            margin: 0 auto;
            width: fit-content;
        }
    }

    @media (max-width: 425px) {
        #dev-card {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        #dev-card .container-fluid {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        #dev-card .news-heading {
            font-size: 20px;
            line-height: 1.3;
            margin-bottom: 0.75rem;
        }

        #dev-card .news-para {
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        #dev-card .btn-view-all {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 15px;
        }

        #dev-card .dev-card {
            max-width: 100%;
            min-height: 320px;
        }

        #dev-card .card-body h5 {
            font-size: 18px;
        }

        #dev-card .dev-card-body p {
            font-size: 14px;
        }

        #dev-card .date-badge {
            top: 15px;
            right: -5px;
            font-size: 10px;
            padding: 6px 12px;
        }
    }

    @media (max-width: 375px) {
        #dev-card .news-heading {
            font-size: 18px;
        }
        
        #dev-card .dev-card {
            min-height: 340px;
        }
    }

    @media (max-width: 320px) {
        #dev-card .container-fluid {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        #dev-card .dev-card {
            min-height: 360px;
        }
    }
    /* dev css end */

    /* ------------------------------ */
    /* project css start  */
    #project-card .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 4.5rem);
        padding-right: clamp(1.25rem, 5vw, 4.5rem);
    }

    .project-info {
        background-color: #EAEAEA;
    }

    #project-card .spotlight-title {
        font-size: var(--fluid-h2);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    #project-card .btn-view-all {
        background: linear-gradient(40deg, #172B22 50%, transparent 50%);
        background-size: 240% 100%;
        background-position: left bottom;
        color: #FFF617;
        border: none;
        border-radius: 0.5rem;
        padding: 0.625rem 1.3rem;
        font-size: 0.856rem;
        font-weight: 700;
        transition: all 0.4s ease;
    }

        #project-card .btn-view-all:hover {
            background-position: right bottom;
            color: #172B22;
            background-color: #FFF617;
        }

    #project-card .btn-view,
    #project-card .btn-all {
        color: #172B22;
        border: 0.125rem solid #172B22;
        min-width: 5.375rem;
        padding: 0.375rem 0.75rem;
        border-radius: 0.5625rem;
        font-family: Inter, sans-serif;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1;
        text-transform: capitalize;
        white-space: nowrap;
    }

        #project-card .btn-view:hover {
            background-color: #FFF617 !important;
            color: #1f2d1f;
        }

    #project-card .btn-all {
        color: #FFF617;
        background: #172B22;
    }

    #project-card .project-card-carousel {
        padding: 0.625rem;
    }

    #project-card .project-card {
        background: #fff;
        text-align: center;
        margin: auto;
        max-width: 100%;
        box-sizing: border-box;
        position: relative;
    }

        #project-card .project-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
        }

    #project-card .project-date-badge {
        position: absolute;
        top: 5%;
        right: -2%;
        background-color: #FFF617;
        color: #000;
        font-weight: 700;
        font-size: 0.625rem;
        line-height: 1;
        padding: 0.3125rem 0.625rem;
        text-align: center;
        box-shadow: -0.2rem 0.6rem 0.4rem rgba(0, 0, 0, 0.25);
        z-index: 2;
        white-space: nowrap;
    }

        #project-card .project-date-badge::after {
            content: '';
            position: absolute;
            top: 110%;
            left: 87%;
            transform: translateY(-50%);
            border-left: 0.3125rem solid transparent;
            border-right: 0.3125rem solid transparent;
            border-top: 0.625rem solid #FFF617;
        }

    #project-card .project-card-body {
        padding: 0.9375rem 0.625rem;
    }

        #project-card .project-card-body h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 1.125rem;
            line-height: 1.35;
            text-align: center;
            text-transform: uppercase;
            color: #172B22;
        }

        #project-card .project-card-body p {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.75rem;
            line-height: 1.0625rem;
            text-align: center;
            text-transform: capitalize;
            color: #172B22;
        }

    #project-card .clamp-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    @media (max-width: 992px) {
        #project-card .spotlight-title {
            font-size: 1.9rem;
            margin-bottom: 0.9rem;
        }
    }

    @media (max-width: 767px) {
        #project-card .spotlight-title {
            font-size: 1.9rem;
        }

        #project-card .btn-view,
        #project-card .btn-all {
            font-size: 0.875rem;
            padding: 0.3125rem 0.625rem;
        }
    }

    @media (max-width: 576px) {
        #project-card .spotlight-title {
            font-size: 1.625rem;
        }

        #project-card .btn-view,
        #project-card .btn-all {
            font-size: 0.8125rem;
            padding: 0.25rem 0.5rem;
        }
    }

    #project-card .active-btn {
        background-color: #172B22 !important;
        color: white !important;
        border-color: #172B22 !important;
    }

        #project-card .active-btn:hover {
            background-color: #172B22 !important;
            color: white !important;
        }

    @media(max-width: 425px) {
        #project-card .container-fluid {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        #project-card .spotlight-title {
            font-size: 1.4rem;
        }

        #project-card .btn-view-all {
            width: 100%;
            padding: 0.53rem;
        }
    }

    @media(max-width: 320px) {
        #project-card .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
    }
    /* project css end  */

    /* --------------------- */
    /* client logo css start  */

    .client-logo-title {
        font-family: Inter, sans-serif;
        font-weight: 600;
        text-transform: capitalize;
        text-align: center;
        color: #172B22;
        margin-bottom: 2rem;
    }

    /* Responsive Title Font Size */
    @media (min-width: 1200px) {
        .client-logo-title {
            font-size: 23px;
            font-weight: 600;
        }
    }

    @media (max-width: 1199.98px) {
        .client-logo-title {
            font-size: 28px;
        }
    }

    @media (max-width: 992px) {
        .client-logo-title {
            font-size: 24px;
        }
    }

    @media (max-width: 767px) {
        .client-logo-title {
            font-size: 22px;
        }
    }

    @media (max-width: 576px) {
        .client-logo-title {
            font-size: 20px;
        }
    }

    @media (max-width: 375px) {
        .client-logo-title {
            font-size: 18px;
        }
    }

    /* Logo Styles */
    .logo-slider img {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
        padding-right: 20px;
        transition: transform 0.3s ease;
    }

        /*    .logo-slider img:hover {
      filter: brightness(0) saturate(100%) invert(15%) sepia(55%) saturate(650%) hue-rotate(80deg) brightness(90%) contrast(85%);
     

      transform: scale(1.05);
    }*/
        .logo-slider img:hover {
            transform: scale(1.1);
        }

    @media (min-width: 1200px) {
        .logo-slider img {
            max-height: 100px;
        }
    }

    @media (max-width: 992px) {
        .logo-slider img {
            max-height: 70px;
            padding-right: 15px;
        }
    }

    @media (max-width: 576px) {
        .logo-slider img {
            max-height: 60px;
            padding-right: 10px;
        }
    }

    @media (max-width: 375px) {
        .logo-slider img {
            max-height: 50px;
            padding-right: 8px;
        }
    }
    /* client logo css end  */

    /* ---------------------------- */

    /* banner two Section start */
    #banner-two .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 4.5rem);
        padding-right: clamp(1.25rem, 5vw, 4.5rem);
    }

    #banner-two .banner {
        position: relative;
        background-image: url('../images/banner-twp.jpeg');
        background-size: cover;
        background-position: center;
        height: 438px;
        color: white;
        overflow: hidden;
    }

        #banner-two .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(60deg, #003920 0%, #005E45 60%, #0F1F1A 100%);
            opacity: 0.85;
            z-index: 1;
        }

    #banner-two .banner-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
    }

    #banner-two .banner h1 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: var(--fluid-h2);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    #banner-two .banner p {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }

    #banner-two .play-button {
        width: 140px;
        height: 140px;
        border: 4px solid #FFD700;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #banner-two .play-button i {
            font-size: 76px;
            color: white;
        }

    /* Desktop (max-width: 1200px) */
    @media (max-width: 1200px) {
        #banner-two .banner h1 {
            font-size: 42px;
        }

        #banner-two .play-button {
            width: 100px;
            height: 100px;
        }

            #banner-two .play-button i {
                font-size: 60px;
            }
    }

    /* Small Laptops (max-width: 1024px) */
    @media (max-width: 1024px) {
        #banner-two .banner h1 {
            font-size: 38px;
        }

        #banner-two .banner p {
            font-size: 17px;
        }
    }

    /* Tablets (max-width: 768px) */
    @media (max-width: 767px) {
        #banner-two .banner h1 {
            font-size: 32px;
            text-align: center;
        }

        #banner-two .banner p {
            text-align: center;
            font-size: 16px;
        }

        #banner-two .play-button {
            width: 70px;
            height: 70px;
        }

            #banner-two .play-button i {
                font-size: 30px;
            }

        #banner-two .banner-content .row {
            text-align: center;
        }
    }

    /* Phones (max-width: 576px) */
    @media (max-width: 576px) {
        #banner-two .banner {
            height: auto;
            padding: 40px 0;
        }

        #banner-two .banner-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        #banner-two .play-button {
            margin-top: 20px;
        }
    }

    /* Phones (max-width: 425px) */
    @media (max-width: 425px) {
        #banner-two .container-fluid {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        #banner-two .banner h1 {
            font-size: 26px;
        }

        #banner-two .play-button {
            width: 60px;
            height: 60px;
        }

            #banner-two .play-button i {
                font-size: 24px;
            }
    }

    /* Phones (max-width: 375px) */
    @media (max-width: 375px) {
        #banner-two .banner h1 {
            font-size: 22px;
        }

        #banner-two .banner p {
            font-size: 14px;
        }
    }

    /* Phones (max-width: 320px) */
    @media (max-width: 320px) {
        #banner-two .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        #banner-two .banner h1 {
            font-size: 20px;
        }

        #banner-two .banner p {
            font-size: 13px;
        }

        #banner-two .play-button {
            width: 50px;
            height: 50px;
        }

            #banner-two .play-button i {
                font-size: 20px;
            }
    }

    /* banner two Section end */

    /* ------------------------------ */
    /* Contact Us Section start */

    #contuct-us .container-fluid {
        padding-left: clamp(1.25rem, 5vw, 4.5rem);
        padding-right: clamp(1.25rem, 5vw, 4.5rem);
    }

    .contact-heading {
        font-size: var(--fluid-h2);
        font-weight: 700;
        color: #172B22;
        margin-bottom: 1.5rem;
    }

    #contuct-us .form-wrapper {
        background-color: #eee;
        padding: 30px;
        border-radius: 15px;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    #contuct-us .form-control::placeholder {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 0;
        text-transform: capitalize;
        color: #bbb; /* keep your existing placeholder color */
    }


    #contuct-us .form-control::placeholder {
        color: #bbb;
    }

    #contuct-us .btn-custom {
        background-color: #11261F;
        color: #FFF617;
        font-weight: bold;
        width: 100%;
    }

        #contuct-us .btn-custom:hover {
            background-color: #11261F;
            color: #FFF617;
        }

    #contuct-us .map-wrapper {
        border-radius: 15px;
        overflow: hidden;
        height: 478px;
        /* height: 460px; */
        width: 100%;
    }

    @media (min-width: 992px) {
        #contuct-us .contact-row {
            position: relative;
        }

        #contuct-us .form-column {
            width: 45%;
            z-index: 2;
        }

        #contuct-us .map-column {
            position: absolute;
            width: 65%;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }
    }

    /* Responsive headings & map height */
    @media (max-width: 1200px) {
        #contuct-us .contact-heading {
            font-size: 36px;
        }
    }

    @media (max-width: 1024px) {
        #contuct-us .contact-heading {
            font-size: 32px;
        }
    }

    @media (max-width: 767px) {
        #contuct-us .contact-heading {
            font-size: 1.9rem;
        }

        #contuct-us .map-wrapper {
            height: 400px;
            margin-top: 10px;
        }
    }

    @media (max-width: 576px) {
        #contuct-us .contact-heading {
            font-size: 24px;
        }

        #contuct-us .map-wrapper {
            height: 250px;
        }
    }

    @media (max-width: 425px) {
        #contuct-us .container-fluid {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        #contuct-us .contact-heading {
            font-size: 22px;
        }

        #contuct-us .map-wrapper {
            height: 320px;
        }
    }

    @media (max-width: 375px) {
        #contuct-us .contact-heading {
            font-size: 20px;
        }

        #contuct-us .map-wrapper {
            height: 280px;
        }
    }

    @media (max-width: 320px) {
        #contuct-us .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        #contuct-us .contact-heading {
            font-size: 18px;
        }

        #contuct-us .map-wrapper {
            height: 280px;
        }
    }
    /* Contact Us Section end */


    /* ------------------------- */


    footer {
        background-color: #172B22;
        padding-top: clamp(2rem, 5vw, 50px);
        padding-bottom: clamp(1.5rem, 3vw, 30px);
        position: relative;
        z-index: 1;
    }

        footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/images/footer-section/Vector.png') no-repeat bottom left, url('/images/footer-section/Vector two.png') no-repeat bottom center, url('/images/footer-section/Vector three.png') no-repeat bottom right;
            background-size: contain;
            opacity: 0.6;
            z-index: 0;
            pointer-events: none;
        }

    #footer .container-fluid .row .col-md-12 {
        margin-top: 0;
    }

    #footer {
        padding-bottom: 0.5rem;
    }

    .footer-logo {
        max-width: 124px;
        height: auto;
        object-fit: contain;
    }

    .footer-heading {
        font-family: Inter, sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.2;
        text-transform: uppercase;
        color: white;
    }

    .footer-subheading {
        font-family: Inter, sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: yellow;
    }

    .footer-title {
        font-family: Inter, sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-transform: capitalize;
        color: white;
    }

    .footer-link,
    .footer-contact {
        font-family: Inter, sans-serif;
        font-weight: 500;
        font-size: 12px;
        text-transform: capitalize;
        color: white;
        line-height: 1.6;
        display: flex;
        align-items: flex-start;
    }

        .footer-link span {
            color: rgba(255, 255, 255, 0.31);
            display: flex;
            align-items: flex-start;
        }

        .footer-link a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-link a:hover {
                text-decoration: underline;
            }

        .footer-contact i {
            color: yellow;
            /* margin-right: 8px; */
        }

    .footer-icons i {
        color: white;
        font-size: 16px;
        transition: color 0.3s ease;
    }

        .footer-icons i:hover {
            color: yellow;
        }

    .footer-copyright {
        font-family: Inter, sans-serif;
        font-weight: 300;
        font-size: 9px;
        text-transform: capitalize;
        color: white;
        margin-top: 30px;
    }

    #footer ul {
        padding-left: 0;
    }

    @media(max-width:768px) {
        #footer {
            padding-top: 0;
            padding-bottom: 0.5rem;
        }

            #footer .container-fluid .row .col-md-12 {
                margin-top: 0.8rem;
            }
    }

    /* Responsive Styles */
    @media (max-width: 576px) {
        .footer-heading {
            font-size: 14px;
        }

        .footer-subheading,
        .footer-title {
            font-size: 13px;
        }

        .footer-link,
        .footer-contact {
            font-size: 12px;
        }

        .footer-logo {
            max-width: 100px;
        }

        footer .row > div {
            text-align: left !important;
        }

        .footer-icons {
            gap: 10px;
        }

        .footer-copyright {
            font-size: 8px;
        }
    }

    @media(max-width:425px) {
        #contuct-us .btn-custom {
            width: 100%;
            padding: 0.53rem;
            font-size: 0.825rem;
            font-weight: 700;
        }
    }

    @media (min-width: 1200px) {
        .footer-heading {
            font-size: 1.125rem;
        }

        .footer-subheading,
        .footer-title,
        .footer-link,
        .footer-contact {
            font-size: 0.9375rem;
        }
    }

    @media (min-width: 1921px) {
        .footer-heading {
            font-size: 1.25rem;
        }

        .footer-subheading,
        .footer-title,
        .footer-link,
        .footer-contact {
            font-size: 1.05rem;
        }
    }

    @media (max-width: 320px) {
        #footer .container-fluid {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

            #footer .container-fluid .row {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
    }


    /* minister-state-section start */
    /*.minister-state-section {
    padding: clamp(1.7rem, 5vw, 1.8rem) 0;
    background-color: #fff;
}

.minister-cards-container {
    position: relative;
    min-height: 30rem;
    overflow: hidden;
}

.minister-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

    .minister-card.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.minister-image {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 3/3.3;
    transform: scale(0.95);
    transition: transform 0.6s ease 0.2s;
}

.minister-card.active .minister-image {
    transform: scale(1);
}

.minister-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.minister-image:hover img {
    transform: scale(1.03);
}

.minister-details {
    padding: clamp(1rem, 3vw, 1.5rem);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.minister-card.active .minister-details {
    transform: translateY(0);
    opacity: 1;
}

.minister-details h2 {
    color: #000;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.875rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
}

.minister-details h3 {
    color: #172b22;
    font-weight: 600;
    font-size: clamp(1.125rem, 1.8vw, 1.57rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.minister-bio p {
    color: #172b22;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: justify;
}

@media (max-width: 767px) {
    .minister-card {
        position: relative;
        height: auto;
        opacity: 0;
        overflow: hidden;
        transition: opacity 0.6s ease, height 0.6s ease;
    }

        .minister-card.active {
            height: auto;
            opacity: 1;
            margin-bottom: 2rem;
        }

    .minister-image {
        aspect-ratio: 3/2.5;
        border-radius: 1.25rem;
    }

    .minister-details h2 {
        padding-top: 0;
    }
}*/
    /* minister-state-section end */
    /* federal-secretary-section start */
    /*.federal-secretary-section {
    padding: clamp(1.7rem, 5vw, 1.8rem) 0;
    background-color: #fff;
}

.federal-secretary-cards-container {
    position: relative;
    min-height: 30rem;
    overflow: hidden;
}

.federal-secretary-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

    .federal-secretary-card.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.federal-secretary-image {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 3/3.3;
    transform: scale(0.95);
    transition: transform 0.6s ease 0.2s;
}

.federal-secretary-card.active .federal-secretary-image {
    transform: scale(1);
}

.federal-secretary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.federal-secretary-image:hover img {
    transform: scale(1.03);
}

.federal-secretary-details {
    padding: clamp(1rem, 3vw, 1.5rem);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.federal-secretary-card.active .federal-secretary-details {
    transform: translateY(0);
    opacity: 1;
}

.federal-secretary-details h2 {
    color: #000;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.875rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
}

.federal-secretary-details h3 {
    color: #172b22;
    font-weight: 600;
    font-size: clamp(1.125rem, 1.8vw, 1.57rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.federal-secretary-bio p {
    color: #172b22;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: justify;
}

@media (max-width: 767px) {
    .federal-secretary-card {
        position: relative;
        height: auto;
        opacity: 0;
        overflow: hidden;
        transition: opacity 0.6s ease, height 0.6s ease;
    }

        .federal-secretary-card.active {
            height: auto;
            opacity: 1;
            margin-bottom: 2rem;
        }

    .federal-secretary-image {
        aspect-ratio: 3/2.5;
        border-radius: 1.25rem;
    }

    .federal-secretary-details h2 {
        padding-top: 0;
    }
}*/
    /* federal-secretary-section end */

    /* minister-state-section start */
    .minister-state-section {
        padding: clamp(1.7rem, 5vw, 1.8rem) 0;
        background-color: #fff;
    }


    .minister-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 20px;
    }

    .minister-details {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

        .minister-details h2 {
            color: #000;
            font-weight: 700;
            font-size: var(--fluid-h2);
            line-height: 1.1;
            margin-bottom: 0.75rem;
            padding-top: 1rem;
        }

        .minister-details h3 {
            color: #172b22;
            font-weight: 600;
            font-size: clamp(1.1rem, 2vw, 1.6rem);
            line-height: 1.3;
            margin-bottom: 1.25rem;
        }

    .minister-bio p {
        color: #172b22;
        font-weight: 500;
        font-size: var(--fluid-p);
        line-height: 1.6;
        margin-bottom: 1.25rem;
        text-align: justify;
    }

    @media (max-width: 767px) {
        .minister-card {
            position: relative;
            height: auto;
            opacity: 0;
            overflow: hidden;
            transition: opacity 0.6s ease, height 0.6s ease;
        }

            .minister-card.active {
                height: auto;
                opacity: 1;
                margin-bottom: 2rem;
            }

        .minister-details h2 {
            padding-top: 0;
        }
    }
    /* minister-state-section end */
    /* federal-secretary-section start */
    .federal-secretary-section {
        padding: clamp(1.7rem, 5vw, 1.8rem) 0;
        background-color: #fff;
    }

    .federal-secretary-cards-container {
        position: relative;
        min-height: 30rem;
        overflow: hidden;
    }

    .federal-secretary-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        pointer-events: none;
    }

        .federal-secretary-card.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

    .federal-secretary-image {
        border-radius: 1.25rem;
        overflow: hidden;
        aspect-ratio: 3/3.3;
        transform: scale(0.95);
        transition: transform 0.6s ease 0.2s;
    }

    .federal-secretary-card.active .federal-secretary-image {
        transform: scale(1);
    }

    .federal-secretary-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .federal-secretary-image:hover img {
        transform: scale(1.03);
    }

    .federal-secretary-details {
        padding: clamp(1rem, 3vw, 1.5rem);
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
    }

    .federal-secretary-card.active .federal-secretary-details {
        transform: translateY(0);
        opacity: 1;
    }

    .federal-secretary-details h2 {
        color: #000;
        font-weight: 700;
        font-size: var(--fluid-h2);
        line-height: 1.1;
        margin-bottom: 0.75rem;
        padding-top: 1rem;
    }

    .federal-secretary-details h3 {
        color: #172b22;
        font-weight: 600;
        font-size: clamp(1.1rem, 2vw, 1.6rem);
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    .federal-secretary-bio p {
        color: #172b22;
        font-weight: 500;
        font-size: var(--fluid-p);
        line-height: 1.6;
        margin-bottom: 1.25rem;
        text-align: justify;
    }

    @media (max-width: 767px) {
        .federal-secretary-card {
            position: relative;
            height: auto;
            opacity: 0;
            overflow: hidden;
            transition: opacity 0.6s ease, height 0.6s ease;
        }

            .federal-secretary-card.active {
                height: auto;
                opacity: 1;
                margin-bottom: 2rem;
            }

        .federal-secretary-image {
            aspect-ratio: 3/2.5;
            border-radius: 1.25rem;
        }

        .federal-secretary-details h2 {
            padding-top: 0;
        }
    }
    /* federal-secretary-section end */


    /***********************************************************************************************************/

    /* Container */
    .vertical-carousel {
        position: relative;
        overflow: hidden;
        height: 100%; /* ensures only one card visible */
    }

        /* Each card */
        .vertical-carousel .leadership-card {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(100%);
            transition: transform 0.8s ease, opacity 0.8s ease;
        }

            /* Active card (visible) */
            .vertical-carousel .leadership-card.active {
                top: 0;
                opacity: 1;
                transform: translateY(0);
                position: relative;
            }
/*.................*/
@media (max-width: 1192px) {

    .Image-Div {
        width: 230px !important;
        height: 230px !important;
        border-right: 3px solid /* #1ABC9C */ #034119!important;
        border-left: 3px solid /* #1ABC9C */ #034119 !important;
    }
    .profile-details-div {
        
        width: 230px !important;
        border-radius: 10px;
        padding-bottom: 10px;
    }
}