* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  overflow-y: scroll; /* Always reserve space for scrollbar */
}

body {
      font-family: "Poppins", sans-serif!important;
}
/* fonts */

/* fonts */

p {
    font-size: 16px;
    text-align: justify!important;
}

@media(max-width:767px) {
    p {
        font-size: 14px !important;
    }

    .journey {
        font-size: 22px;
    }
}
/* banner css */

  /* HERO BASE */
  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
  }

  /* DESKTOP IMAGE */
  .desk-img {
    display: block;
    width: 100%;
  }

  /* MOBILE IMAGE */
  .mob-img{
    display: none;
    width: 100%;
  }

  /* DESKTOP OVERLAY */
  .hero-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0));
    z-index: 2;
    pointer-events: none;
  }

  /* ========================================== */
  /*                DESKTOP TEXT                */
  /* ========================================== */

  .banner-text {
    position: absolute;
    top: 30%;
    /* vertical center */
    left: 6%;
    /* left aligned */
    transform: translateY(-50%);
    color: #fff;
    z-index: 5;
    width: 35%;
    text-align: left;
  }

  .banner-text p {
    font-size: 1.9vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
    /* text-align: left; */
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  }


  /* ========================================== */
  /*                MOBILE VIEW                 */
  /* ========================================== */

  @media (max-width: 767px) {

    /* swap images */
    .desk-img {
      display: none;
    }

    .mob-img {
      display: block;
    }

    /* MOBILE OVERLAY */
    .hero-content::after {
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.75),
          rgba(0, 0, 0, 0.35));
    }

    /* MOBILE TEXT — FULLY CENTERED */
    .banner-text {
      top: 10%;
      /* left: 13%; */
      transform: translateX(10%);
      width: 80%;
      text-align: center !important;
    }

    .banner-text p {
      font-size: 4.5vw !important;
      line-height: 1.5;
      font-weight: 900;
    }
  }
/* banner css */
/* hero section */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Keeps the header on top of other content */
    background-color: #fff;
    /* Ensure it's visible */
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: shadow for better visibility */
    transition: top 0.3s;
    /* Smooth transition for sticky effect */
}


.navbar-custom {
    background-color: #fff6f1;
    position: relative;
}

.navbar-brand img {
    width: 140px;
    /* position: absolute;
    top: 0; */
    z-index: 9999999;

}

.btn-cont{
  padding: 8px 18px;
  /*border-radius: 30px;*/
  font-weight: 600;
  /*font-size:12px!important;*/
  color: #fff!important;
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%)!important;
  transition: all 0.3s ease;
}




.divided-hamburger {
    background-color: transparent;
    width: calc(30px * 1.1);
    height: 25px;
    position: relative;
    border: none !important;
}

.divided-hamburger>.trigger:checked~span:nth-of-type(1) {
    left: calc(25px/ 8);
    top: calc(29px/ 6);
}

.divided-hamburger>.trigger:hover~span {
    background-color: #eb6223;
}

.divided-hamburger>.trigger:checked~span:nth-of-type(2) {
    left: calc(50% - (20px/ 8));
    top: calc(30px/ 6);
}

.divided-hamburger>.trigger:checked~span:nth-of-type(3) {
    left: -50%;
    opacity: 0;
}

.divided-hamburger>.trigger:checked~span:nth-of-type(4) {
    left: 100%;
    opacity: 0;
}

.divided-hamburger>.trigger:checked~span:nth-of-type(5) {
    left: calc(30px / 8);
    top: calc(30px/ 2);
}

.divided-hamburger span:nth-of-type(even) {
    left: 45%;
    border-radius: 0 4px 4px 0;
}

.divided-hamburger>.trigger:checked~span:nth-of-type(6) {
    left: calc(50% - (30px/ 8));
    top: calc(30px/ 2);
}

.divided-hamburger span:nth-of-type(odd) {
    left: 0px;
    border-radius: 4px 0 0 4px;
}

.divided-hamburger>span:nth-of-type(1),
.divided-hamburger>span:nth-of-type(2) {
    top: 3px;
}

.divided-hamburger>.trigger:checked~span:nth-of-type(2),
.divided-hamburger>.trigger:checked~span:nth-of-type(5) {
    transform: rotate(-45deg);
}

.divided-hamburger>span:nth-of-type(5),
.divided-hamburger>span:nth-of-type(6) {
    top: calc((30px/ 3) * 2);
}

.divided-hamburger>span:nth-of-type(3),
.divided-hamburger>span:nth-of-type(4) {
    top: calc(35px/ 3);
}

.divided-hamburger>.trigger:checked~span:nth-of-type(1),
.divided-hamburger>.trigger:checked~span:nth-of-type(6) {
    transform: rotate(45deg);
}

.divided-hamburger>span {
    background-color: #eb6223;
    display: block;
    position: absolute;
    height: 2px;
    width: 45%;
    border-radius: 4px;
    transition: .25s ease-in-out;
}

.divided-hamburger>.trigger {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* button:focus:not(:focus-visible) {
    border: none!important;
} */
.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-link {

    position: relative;
    color: white;
    display: inline-block;
    /* ensures width matches content */
    transition: all 0.3s ease;
    /* padding-bottom: 2px!important; */
}

/* header links hover */
.link3 {
    font-size: 18px;
    color: #e1e1e1;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;

    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    display: inline-block !important;
    width: fit-content;
}

.link3:focus,
.link3:hover {
    color: #fff;
}

.link3:focus:after,
.link3:hover:after {
    width: 100%;
    left: 0%;
}

.link3:after {
    content: "";
    pointer-events: none;
    bottom: 3px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #eb6223;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
    border-radius: 7px;
}

.navbar-nav {
    align-items: center;

}

.navbar-nav .nav-link {
    font-weight: 400;
    color: #000;
    margin-right: 10px;
    font-size: 11px;
}

.btn-contact {
    background: #fff !important;
    color: black !important;
    border-radius: 20px !important;
    padding: 5px 20px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

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

.text-banner {
    position: absolute;
    right: 150px;
    top: 50%;
    transform: translateY(-50%);
    background: #f47c20;
    color: white;
    font-size: 36px;
    font-weight: 900;
    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .text-banner {
        right: 20px;
        font-size: 24px;
    }

    .btn {
        font-size: .9rem !important;
    }

    .navbar-brand img {
        width: 120px;
    }

}

/* hero section */
/* animate  navbar */

/* ✅ Robust scroll-lock (iOS/Android friendly) */
/* html.menu-open,
body.menu-open {
    overflow: hidden!important;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--scroll-lock-top, 0);
    overscroll-behavior: none;
    touch-action: none;
} */
/* ✅ Shared overlay box model (no scroll, no side gap) */
.navbar-custom .navbar-collapse.collapsing,
.navbar-custom .navbar-collapse.show {
    /*position: fixed;*/
    inset: 0;
    width: 100%;
    /* avoid 100vw horizontal scroll on mobile */
    /* height: 100vh; */
    margin: 0;
    background: #fff6f1;
    z-index: 1040;
    display: grid !important;
    place-items: center;
    visibility: visible;
    overflow: hidden;
    /* ✅ no inner scroll */
    box-sizing: border-box;
}

/* Keep toggler above overlay (as you had) */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-toggler {
        position: relative;
        z-index: 1051;
    }
}

/* Mobile/tablet overlay */
@media (max-width: 991.98px) {
    .navbar-custom {
        --overlay-bg: #f26522;
        --link-size: clamp(20px, 4.5vw, 32px);
    }

    .navbar-custom .navbar-collapse {
        transition: none;
    }


    /* Enter/exit animation states */
    .navbar-custom .navbar-collapse.collapsing {
        opacity: 0;
        transform: translateY(-4%);
        pointer-events: none;
        transition: none;
    }

    .navbar-custom .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        transition: transform .55s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
    }

    /* Centered stacked links */
    .navbar-custom .navbar-nav {
        flex-direction: column;
        gap: .75rem;
        align-items: center;
    }

    .navbar-custom .navbar-nav .nav-link {
        font-size: var(--link-size);
        /*color: #000 !important;*/
        opacity: 0;
        transform: translateY(10px);
        transition: transform .5s ease, opacity .5s ease;
        text-align: center;
        will-change: transform, opacity;
        padding: 10px;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger */
    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) .nav-link {
        transition-delay: .08s;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) .nav-link {
        transition-delay: .14s;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) .nav-link {
        transition-delay: .20s;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) .nav-link {
        transition-delay: .26s;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) .nav-link {
        transition-delay: .32s;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) .nav-link {
        transition-delay: .38s;
    }

    .navbar-custom .navbar-collapse.show .navbar-nav .nav-item:nth-child(7) .nav-link {
        transition-delay: .44s;
    }

    .navbar-custom .lang-switch {
        margin-top: 1rem;
    }
}

/* animate navbar */
/* language button */
.lang-switch {
    position: relative;
    width: 75px;
    height: 30px;
    margin: auto;
}

.lang-switch input {
    display: none;
}

.lang-switch label {
   display: block;
    width: 96px;
    height: 30px;
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%)!important;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
}

.lang-switch label::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 45px;
    height: 24px;
    background: #fff6f1;
    border-radius: 50px;
    transition: 0.3s;
}

.lang-switch input:checked+label::after {
    transform: translateX(45px);
}

.lang-switch .lang {
    position: absolute;
    top: 6px;
    width: 50%;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
    color: #000;
    /* default black text */
}

.lang-switch .on {
    left: 6px;
}

.lang-switch .off {
    right: -13px;
    color: #fff;
}

.lang-switch input:checked~.on {
    color: #fff6f1;
    /* active = white text on orange */
}

.lang-switch input:checked~.off {
    color: #000;
    /* inactive = black */
}

/* language button */

/* about section */

.about-section {
    background-color: #fff6f0;
    padding: 80px 0;
}

@media(max-width:1023px) {
    .about-section {
        padding: 40px 0;
    }
}

.about-image {
    max-width: 100%;
    height: auto;
}

@media(min-width:768px) {
    .mob-hero {
        display: none;
    }

    .hero-img {
        display: block;
    }
}

@media(max-width:767px) {
    .mob-hero {
        display: block;
    }

    .hero-img {
        display: none;
    }
}

.custom-divider {
    display: flex;
    align-items: center;
}

.custom-divider .line {
    height: 2px;
    width: 50px;
    background-color: #f47c20;
}

.custom-divider .circle {
    width: 24px;
    height: 24px;
    background-color: #f47c20;
    border: 2px solid #fff6f1;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin: 0 10px;
}

.custom-divider .circle::before,
.custom-divider .circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #f47c20;
    border-radius: 50%;
    top: 0;
    z-index: -1;
}

.hidden-para {
    overflow: hidden;
    height: 0;
    transition: height 0.6s ease;
    will-change: height;
    margin: 0;
}

.hidden-para+.hidden-para {
    margin-top: 0.75rem;
}

.custom-divider .circle::before {
    left: -8px;
}

.custom-divider .circle::after {
    right: -8px;
}

.about-text h6 {
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin: 0;
    font-size: 32px;
    text-decoration: underline;
  text-decoration-color: #ff6f00;  
  text-decoration-thickness: 2px;  
  text-underline-offset: 8px;      
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
}

@media(max-width:400px) {
    .about-text h2 {
        font-size: 21px;
        line-height: 1.4;
    }
     .about-text h6{
         font-size: 25px;
    }
}

@media(min-width:401px)and (max-width:767px) {
    .about-text h2 {
        font-size: 25px;
    }
   
}

.about-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    text-align: justify;
}

.btn-readmore {
        background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%) !important;
    color: white;
    font-weight: 600;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 10px 20px;
    border: none;
}

@media (min-width:500px) and (max-width:991px) {
    .about-section .lay {
        display: block;
    }
.btn-readmore {
  font-size: 14px;
}
    .about-image {
        max-width: 60%;
        height: auto;
        margin: auto;
        display: flex;
    }

.arrows button {
    width: 35px!important;
    height: 35px!important;
  
}
}
@media (max-width:499px) {
      .about-image {
        max-width: 80%;
        height: auto;
        margin: auto;
        display: flex;
    }
}
/* about section */

/* journey */
#journeySlider {
    display: flex;
    flex-wrap: wrap;
}

#journeySlider>div {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
}

.slider-content {
    /* min-height: 350px; */
    /* approx average */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #f5f5f5;
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
    overflow: hidden;
    position: relative;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.slider-img img.fade-out {
    opacity: 0;
}

.slider-content {
    background: #f5f5f5;
    padding: 30px;
}

.slider-content small {
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 18px;
}

.slider-content h4 {
    font-size: 20px;
    margin: 10px 0;
}

.slider-content p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify!important;
}

.arrows {
    /* position: absolute; */
    /* right: 20px; */
    display: flex;
    gap: 10px;
}

.arrows button {
 
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ff8304 0%, #ff4923 100%) border-box;
  border: 2px solid transparent !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.arrows button:hover {
    background: #f26522;
    color: #fff;
    border-color: #f26522;
}

.arrows button.active {
   
    color: #eb6223;
   background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff8304 0%, #ff4923 100%) border-box;
    border: 2px solid transparent !important;
    transform: scale(1.1);
    transition: .2s ease-in;
}

.years-bar {
    margin-top: 20px;
    display: flex;
    /* justify-content: center; */
    flex-wrap: nowrap;
    /* important: no wrap */
    gap: 100px;
    overflow-x: hidden;
    /* enable scroll */
    scroll-behavior: smooth;
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%)!important;
    padding: 15px;
    border-radius: 50px;
}

#yearTabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding: 10px 60px;
}

@media(max-width:500px) {
    #yearTabs {
        display: none;
        padding: 10px 16px !important;
    }
}


@media(max-width:991px) {
    #yearTabs {
        padding: 10px 25px !important;
    }
}

.year-btn {
    flex: 0 0 auto;
    margin-right: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #fff;
}

.year-btn.active {
    background-color: #333;
    color: #fff;
}


#yearTabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for a cleaner look */
}


.year-btn.active {
    background: #fff;
    color: #f26522;
}

@media (max-width: 767px) {
    .slider {
        flex-direction: column;
        border-radius: 0;
    }

    .slider-content {
        padding: 20px;
    }

    /* .arrows {
        position: unset;
        justify-content: flex-end;
    } */

    .years-bar {
        display: none;
    }
}

@media(max-width:991px) {
    .years-bar {
        gap: 60px;
    }
}

@media (max-width:768px) {
    #journeySlider {
        display: block;
    }
}

/* journey */

/* political profile */

.profile-section {
    padding: 80px 0;
    background: url(images/profile-bg.webp);
    background-size: 100% 100%;
    background-position: center;
}

@media(max-width:767px) {
    .profile-section {
        padding: 35px 0;

    }

    .profile-text h2 {
        font-size: 35px !important;
    }

}

.profile-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.profile-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.profile-image {
    text-align: right;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

@media (max-width: 992px) {
    .profile-text {
        text-align: center;
    }

    .profile-image {
        text-align: center;
        margin-top: 40px;
    }
}

/* political profile */

/* image gallery */
.gallery-section {
    padding: 60px 0;
    background-color: #fff6f0;
}
.mfp-figure:after{
        box-shadow: unset!important;
    background:unset!important;
}

@media (max-width:767px) {
    .gallery-section {
        padding: 30px 20px 20px;
    }

    .section-header .line-icon::before,
    .section-header .line-icon::after {
        width: 30px;
    }

    .section-header h2 {
        font-size: 21px !important;
    }

    .view-all-btn {
font-size: 14px;
        padding: 5px 15px !important;

    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
        background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-header .line-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section-header .line-icon::before,
.section-header .line-icon::after {
    content: '';
    width: 50px;
    height: 2px;
   background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%) !important;
}

.section-header .icon-dot {
    width: 16px;
    height: 16px;
    background: #f26522;
    border: 4px solid #fff6f1;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #f26522;
}

.view-all-btn {
    background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%) !important;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
}

.gallery-grid {
    position: relative;
}

.gallery-grid img {
    cursor: pointer;
    transition: transform 0.2s linear;
    display: block;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}


.stacked-imgs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.center-img {
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stacked-imgs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* .center-img {
        height: auto;
    } */
}

/* image gallery */

/* gallery banner */

.banner-container {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background-color: #fff6f0;
}

@media(max-width:767px) {
    .banner-container {
        padding: 30px;
    }
}

.banner-image {
    border-radius: 20px;
    overflow: hidden;
    max-width: 1280px;
    width: 100%;
}

.banner-image img {
    width: 100%;
    /* border-radius: 20px; */
    display: block;
}

/* gallery banner */

/* footer */



.footer-inner {
 background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%);

  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-text {
  color: #fff;
  font-size: 16px;
  text-align: center;
  /*flex: 1;*/
}

.footer-text a {
  color: #000;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 14px;
      margin-right: 20px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
  }

  .footer-social {
    justify-content: center;
       margin-right: 0;
  }
}

/* footer */

/* universal links hover */

.link2 {
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;

    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    display: inline-block !important;
    width: fit-content;
    text-decoration: none;
    font-weight: 500;

}

.link2:focus,
.link2:hover {
    color: #fff;
}

.link2:focus:after,
.link2:hover:after {
    width: 100%;
    left: 0%;
}

.link2:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #eb6223;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
    border-radius: 7px;
}

/* universal links hover */

/* governance section */

.readmore-wrapper {
  position: relative;
}

.readmore-content {
  max-height: 155px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.readmore-btn {
  display: block;
  text-align: right;
  font-weight: 500;
      background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  cursor: pointer;
  font-size: 12px;
  margin-top: 6px;
}


.psv {
    position: relative;
}

/* Custom arrows */
.contol_custom {
    z-index: 5;
    display: flex;
    gap: .8rem;
}

.custom-control {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10%;
    background: #ff6f00;
    cursor: pointer;
    transition: transform .15s ease;
}

@media(max-width:767px){
.custom-control {
    width: 25px;
    height: 25px;
}

}
.custom-control img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

/* Make slick treat columns nicely */
.wheels2 .col-md-4 {
    padding: 0 .6rem;
    display: flex;
    /* ✅ Equal height fix */
}

.wheels2 {
    margin: 0 -0.6rem;
}

/* Card look */
.gallery-card.card {
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    height: auto;
}

.gallery-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 20%);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    /* ✅ Equal height fix */
    flex-direction: column;
    /* ✅ Equal height fix */
    height: 100%;
}

.gallery-card .dlfbimg {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #eaeaea;
    flex: 0 0 auto;
    /* ✅ Image fixed, content stretches */
}

.gallery-card .dlfbimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}

.gallery-card:hover .dlfbimg img {
    transform: scale(1.04);
}

.gallery-card .card-body {
    flex: 1 1 auto;
    /* ✅ Content stretches to fill height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px 16px 18px;
}

@media (max-width: 400px) {
    .gallery-card .card-body {
        flex: 1 1 auto;
        /* ✅ No fixed height on mobile */
    }
}

.gallery-card h5 {
    font-size: 1rem;
    text-align: center;
    margin: 0;
    font-weight: 700;
    letter-spacing: .2px;
  background: linear-gradient(90deg, #ff8304 0%, #ff4923 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gallery-card p {
    text-align: justify;
    margin-top: 15px;
    font-size: 15px;
}

/* Slick dots off, but keep spacing correct */
.slick-slide {
    outline: none;
}

/* Slick slide gap */
.wheels2 .slick-slide {
    padding: 10px;
    box-sizing: border-box;
}

.wheels2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -12px;
    margin-right: -12px;
}

.wheels2>[class^="col-"],
.wheels2>[class*=" col-"] {
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
}

/* Card full stretch */
.gallery-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Image area fixed ratio (so tops align) */
.dlfbimg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* change ratio if needed */
    overflow: hidden;
}

.dlfbimg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card body grows naturally with full content */
.gallery-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}


/* governance section */

/* social embedded */


    .feed-box {
      /* background: #eb6223; */
      border-radius: 6px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .feed-box iframe {
      border: none;
      width: 100%;
      height: 500px;
      border-radius: 10px;
      display: block;
    }

    /* Facebook responsive fix */
    .fb-page,
    .fb_iframe_widget,
    .fb_iframe_widget span,
    .fb_iframe_widget iframe {
      width: 100% !important;
      max-width: 100% !important;
      display: block !important;
    }

/*whatsapp integration*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  /* Smooth animation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 70px;

  /* Smooth fade/scale for image too */
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float:hover img {
  transform: scale(1.05);
}

/*scroll to top*/
.scroll-top-universal {
  position: fixed !important;
  right: 0px;
  bottom: 0px;
  width: 45px;
  height: 45px;
  background:linear-gradient(
130deg, #ff8304 0%, #ff4923 100%) !important;
  color: #fff !important;
  border: none !important;

  cursor: pointer;
  font-size: 20px;
  font-weight: bold;

  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 99999999 !important; /* TOP OF EVERYTHING */
}
.scroll-top-universal span{
    font-size:16px;
    font-weight: 800px;
}
.scroll-top-universal.show {
  opacity: 1 !important;
  visibility: visible !important;
}

  