* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

/* Logo */
.top-logo {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
}

.top-logo img {
    width: 200px;
    object-fit: cover;
}

@media(max-width:767px) {
    .top-logo img {
        width: 150px;
    }

    .top-logo {
        padding: 10px 0;
    }
}

/* Navbar */
.navbar {
    background: #ff7a0d;
    position: static;
    top: 0;
    z-index: 100;
}

.navbar-toggler {
    border: none;
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    /* color:#fff!important; */
    font-weight: 400;
    margin: 0 8px;
    font-size: 1.5rem;
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.2px;
}

/* Divider desktop */
@media(min-width:992px) {
    .navbar-nav .nav-item:not(:last-child)::after {
        content: "|";
        color: #fff;
        margin-left: 30px;
        margin-right: 30px;
        opacity: 0.8;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        font-size: 1.05rem;
    }
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 900;
}

/* Mobile dropdown panel */
#mainNavbar {
    position: fixed;
    top: 0;
    right: -70%;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

/* Close icon */
#closeIcon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    display: none;
    z-index: 1100;
}

/* ✅ Desktop view fix – never hidden */
@media(min-width:992px) {
    #mainNavbar {
        all: unset;
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

    #overlay,
    #closeIcon {
        display: none !important;
    }
}

/* Hero */
.hero-section {
    background: url('images/home-banner.png') no-repeat center/cover;
    height: 47vw;
}

@media(max-width:767px) {
    .hero-section {
        height: 55vw;
    }
}

/* about section */
#about,#scheme{
    background-color: #f7f7f7;
}

.schemes-section {
    position: relative;
    padding: 60px 0 ;
    overflow: hidden;
}

/* Orange Shapes */
.shape-left,
.shape-right {
    position: absolute;
    width: 50px;
    height: 70px;
    z-index: 2;
    overflow: visible;
}

/* --- LEFT SHAPE --- */
.shape-left {
    top: 50px;
    left: 20px;
}

.shape-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ababab;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
}

.shape-left::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -23px;
    width: 20px;
    height: 25px;
    background: #ababab;
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
}

/* --- RIGHT SHAPE --- */
.shape-right {
    bottom: 0;
    right: 20px;
    transform: scaleX(-1);
}

.shape-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ababab;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
}

.shape-right::after {
    content: "";
    position: absolute;
    top: -7px;
    left: -23px;
    width: 20px;
    height: 25px;
    background: #ababab;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
}


/* Text Section */
.schemes-content {
    position: relative;
    z-index: 2;
    max-width: 70vw;
    margin: auto;
    text-align: left;
}

.schemes-title {
    font-weight: 700;
    color: #00000091;
    text-transform: uppercase;
    /* font-size: 1.1rem; */
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.schemes-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .schemes-section {
        padding: 60px 0 60px 0;
    }

    .schemes-content {
        max-width: 80vw;

    }

    .shape-left {
        top: 50px;
        left: 20px;
        width: 40px;
        height: 60px;
    }

    .shape-right {
        bottom: 50px;
        right: 20px;
        width: 40px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .shape-right {
        position: relative;
        display: block;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        float: right;
        width: 30px;
        height: 40px;
    }

    .shape-left {
        position: relative;
        display: block;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 30px;
        height: 40px;
    }

    .schemes-section {
        padding: 40px 20px;
    }

    .schemes-content {
        text-align: center;
        /* max-width: 100%; */
    }

    .schemes-title {
        font-size: 1.3rem;
    }
.button{
    font-size: 11px!important;
    width: 8em!important;
}
    .schemes-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* about section */

/* scheme section */

        /* button view more */

        .button {
            display: inline-block;
            border: none;
            background: #ff7a0d;
            color: white;
            font-family: inherit;
            text-align: center;
            font-size: 13px;
            width: 9em;
            padding: .5em;
            transition: all 0.4s;
            cursor: pointer;
            font-weight: 400;
        }

        .button span {
            cursor: pointer;
            display: inline-block;
            position: relative;
            transition: 0.4s;
        }

        .button span:after {
            content: '→';
            position: absolute;
            opacity: 0;
            top: 0;
            right: 0px;
            transition: 0.7s;
        }

        .button:hover span {
            padding-right: 1.5em;
        }

        .button:hover span:after {
            opacity: 4;
            right: 0;
        }

        /* button view more */
        .text-p {
            font-size: .8em;
        }
        .grayscale {
            filter: grayscale();
        }

        .caption-orange {
            background-color: #ff7a0d;
        }

        .caption-black {
            width: 100%;
        }

        .bottom {
            bottom: 20px;
            width: 45vw;
            left: 3%;
        }

        /* ✅ Smooth hover scale effect */
        .position-relative img {
            transition: transform 0.6s ease-in-out;
            display: block;
            cursor: pointer;
        }

        .position-relative:hover img {
            transform: scale(1.05);
        }

        /* Responsive text scaling for mobile */
        @media (max-width: 767px) {

            .caption-orange h6,
            .caption-black h6 {
                font-size: 14px !important;
                line-height: 1.3;
            }

            .caption-orange p,
            .caption-black p {
                line-height: 1.4;
            }

            .caption-orange {
                width: 100% !important;
                left: 0% !important;
                bottom: 0px !important;
                padding: 10px !important;
            }
        }
    
/* scheme section */

/* gallery section */

  
    section.gallery-section {
      background: #fff;
      padding: 60px 0;
    }

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

  

    /* ✅ Hover strictly inside parent */
    .gallery-item {
      position: relative;
      overflow: hidden; /* prevents image overflow */
      border-radius: 4px;
      height: 100%;
        width: 100%;
    }

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

    .gallery-item:hover img {
      transform: scale(1.1);
    }

/* gallery section */

/* blogs section */
 
    /* Section Styling */
    section.blog-section {
      background: #fff;
      padding: 60px 0;
    }

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

    .blog-header h5 {
      font-weight: 700;
      text-transform: uppercase;
      color: #999;
      font-size: 15px;
      letter-spacing: 1px;
      margin: 0;
    }

    .view-more-btn {
      background: #ff7a0d;
      border: none;
      color: #fff;
      font-size: 13px;
      padding: 6px 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .view-more-btn:hover {
      background: #e36d00;
    }

    /* Blog Cards */
    .blog-card {
      border: 1px solid #ddd;
      background: #f8f8f8;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    /* ✅ Wrap image to control hover area */
    .image-container {
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }

    /* ✅ Zoom only inside the image container */
    .image-container:hover img {
      transform: scale(1.1);
    }

    .blog-content {
      padding: 15px 15px;
      color: #555;
      flex-grow: 1;
    }

    .blog-date {
      font-size: 11px;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    .blog-title {
      font-size: 15px;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
    }

    .blog-desc {
      font-size: 13px;
      color: #777;
      line-height: 1.5;
    }

/* blogs section */

/* footer section */

    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }

    ul > li {
      padding: 4px 0;
    }

    .footer-logo img {
      max-width: 150px;
    }

    .divider {
      border-top: 1.1px solid #00000091;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
     justify-content: space-evenly;
    }

    /* ---- LINK STYLE ---- */
    .footer-links a {
      position: relative;
      font-size: 16px;
      color: #6c757d; /* grey */
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-block;
      overflow: hidden;
      font-weight: 400;
    }

    .footer-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 1.5px;
      background-color: #6c757d;
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }

    .footer-links a:hover::after {
      transform: translateX(0);
    }

    .footer-links a:hover {
      color: #000;
    }

    .footer-bottom {
      font-size: 10px;
    }
    .footer-bottom p{
        font-size: 14px;
        color: #00000091;
    }
    @media (max-width:767px){
         .footer-links a {
      font-size: 14px;
  
    }
    }
 
/* footer section */

/* news section */

    .news-section {
      background-color: #f47c20;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      /* gap: 40px; */
      flex-wrap: wrap;
    }

    .news-title {
      color: white;
      font-weight: 700;
      letter-spacing: 1px;
      margin: auto;
      text-transform: uppercase;
    }

    .swiper {
      width: 70%;
      min-width: 300px;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .swiper-slide {
      background: transparent;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      border-radius: 2px;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .swiper-slide img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 992px) {
      .news-section {
        flex-direction: column;
        text-align: center;
      }

     

      .swiper {
        width: 90%;
      }

    }
  
/* news section */
/* social feed section */
.r-1q9bdsx {
    border-radius: unset;
}
/* social feed section */