@font-face {
    font-family: 'Poppins';
    src: url('../fonts/webfonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/webfonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'CoveredByYourGrace';
    src: url('../fonts/webfonts/CoveredByYourGrace-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
.content-margin-top{
    margin-top: 71px;
}
/* RG NAVBAR Start */
@media all and (max-width: 500px) {
    .rg-navbar-logo img{
        height: 35px !important;
    }
  }
/* --- Responsive Transparent Navbar & Mega Menu --- */
@media (max-width: 1920px) {
    .rg-navbar-container{
      max-width: 1900px !important;
    }
    .rg-mega-menu{
      transform: translateX(15%) !important;
    }
  }
  @media (max-width: 1600px) {
    .rg-mega-menu{
      transform: translateX(-8%) !important;
    }
  }
  @media (max-width: 1400px) {
    .rg-navbar-container{
      max-width: 1350px !important;
    }
    .rg-mega-menu{
      transform: translateX(-20%) !important;
    }
    .rg-hero-content h1{
      font-size: 30px;
    }
    .rg-hero-content p{
      font-size: 14px;
    }
    .rg-explore{
      font-size: 13px;
    }
    .subscribe-wrapper{
      padding: 50px 20px !important;
    }
  }
  .rg-navbar {
    width: 100%;
    /* background: rgba(255,255,255,0.10); */
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 30;
    box-shadow: none;
    /* backdrop-filter: blur(6px); */
  }
  .rg-navbar-container {
    max-width: 1516px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 70px;
    position: relative;
  }
  .rg-navbar-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
  }
  .rg-navbar-logo img{
    height: 60px;
    width: auto;
  }
  .rg-navbar-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
  }
  .rg-navbar-hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .rg-navbar-hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .rg-navbar-close {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .rg-navbar-toggle.menu-open .rg-navbar-hamburger {
    opacity: 0;
  }
  .rg-navbar-toggle.menu-open .rg-navbar-close {
    display: flex !important;
    opacity: 1;
  }
  
  .rg-navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .rg-navbar-menu li a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 8px;
    transition: all 0.3s ease;
    position: relative;
  }
  .rg-navbar-menu li a:hover {
    color: var(--secondary-color) !important;
  }
  .rg-dropdown-menu a:hover {
    color: var(--secondary-color) !important;
  }
  
  .rg-navbar-has-mega {
    position: relative;
  }
  .rg-mega-menu {
    display: none;
    width: auto;
    min-width: 0;
    max-width: calc(6 * 120px + 5 * 24px + 2 * 24px); /* 6 images, 5 gaps, 2*padding */
    left: 50%;
    transform: translateX(-8%);
    position: absolute;
    top: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-radius: 0 0 12px 12px;
    padding: 32px 24px 24px 24px;
    min-height: 140px;
    transition: 0.2s;
    overflow: hidden;
  }
  .rg-mega-menu.show {
    display: block;
  }
  .rg-navbar-has-mega:hover .rg-mega-menu,
  .rg-navbar-has-mega:focus-within .rg-mega-menu {
    visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
  }
  .rg-mega-menu-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0 24px;
    justify-items: center;
    align-items: center;
    padding: 0 12px;
  }
  .rg-mega-menu-content img {
    height: 90px;
    width: 100px;
    object-fit: contain;
    transition: transform 0.2s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  }
  .rg-mega-menu-content img:hover {
    transform: scale(1.08);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .rg-mega-menu {
      max-width: calc(4 * 120px + 3 * 24px + 2 * 24px);
    }
    .rg-mega-menu-content {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media (max-width: 900px) {
    .rg-mega-menu {
      max-width: calc(2 * 120px + 1 * 24px + 2 * 24px);
    }
    .rg-mega-menu-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .rg-mega-menu {
      max-width: 90vw;
      left: 50%;
      transform: translateX(-50%);
    }
    .rg-mega-menu-content {
      grid-template-columns: 2fr;
    }
  }
  @media (max-width: 992px) {
    .rg-navbar-toggle {
      display: flex;
    }
    .rg-navbar-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100vw;
      background: var(--text-color-white);
      padding: 24px 0 24px 0;
      z-index: 100;
      gap: 0;
    }
    .rg-navbar-menu.rg-navbar-menu-open { display: flex; }
    .rg-navbar-menu li { width: 100%; text-align: left; }
    .rg-navbar-menu li a { display: block; width: 100%; padding: 10px 24px; color: var(--text-color-dark); }
    .rg-mega-menu {
      position: static;
      transform: none;
      min-width: 100%;
      min-height: 0;
      border-radius: 0;
      box-shadow: none;
      padding: 18px 10px;
      background: rgba(255,255,255,0.98);
    }
    .rg-mega-menu-content {
      flex-wrap: wrap !important;
      gap: 10px !important;
      justify-content: flex-start !important;
    }
    .rg-mega-menu-content img { height: 60px; width: 130px; }
    .rg-dropdown-menu {
      position: static !important;
      width: 100% !important;
      left: 0 !important;
      transform: none !important;
      min-width: 0 !important;
      max-width: none !important;
      box-shadow: none !important;
      border-radius: 0 !important;
      background: #fff !important;
    }
    .rg-dropdown-menu a {
      color: var(--text-color-dark) !important;
      padding: 14px 24px;
      border-bottom: 1px solid #333;
    }
    .rg-dropdown-menu a:last-child {
      border-bottom: none;
    }
    .rg-mega-menu-content a{
      border-bottom: 1px solid black;
    }
  }
  /* Mega menu visibility for desktop/mobile */
  .desktop-mega-menu,
  .mobile-mega-menu {
  display: none;
  }
  .desktop-mega-menu.show,
  .mobile-mega-menu.show {
  display: block;
  }
  @media (max-width: 992px) {
  .desktop-mega-menu { display: none !important; }
  }
  @media (min-width: 993px) {
  .mobile-mega-menu { display: none !important; }
  }
  /* Dropdown Chevron Icon */
  .rg-navbar-chevron {
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
    transition: transform 0.3s;
    vertical-align: middle;
  }
  .rg-navbar-has-mega.open > a .rg-navbar-chevron {
    transform: rotate(180deg);
  }
  
  /* Dropdown menu for Home */
  .rg-navbar-has-dropdown {
    position: relative;
  }
  .rg-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    min-width: 200px;
    width: max-content;
    max-width: calc(100vw - 64px);
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    display: none;
    flex-direction: column;
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0 0 12px 12px;
    overflow-x: auto;
  }
  .rg-dropdown-menu a {
    padding: 8px 20px !important;
    color: var(--text-color-dark) !important;
    text-decoration: none;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    font-size: 14px !important;
  }
  .rg-dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
  }
  @media (min-width: 993px) {
    .rg-navbar-has-dropdown:hover .rg-dropdown-menu {
      display: flex !important;
    }
  }
  @media (max-width: 992px) {
    .rg-dropdown-menu {
      position: static;
      box-shadow: none;
      display: none;
      padding: 0;
      background: #fff;
      width: 100%;
      min-width: 0;
      max-width: none;
      border-radius: 0;
    }
    .rg-navbar-has-dropdown.open .rg-dropdown-menu {
      display: block;
    }
  }
  
  /* If it's the last menu item, right align */
  .rg-navbar-menu > li.rg-navbar-has-dropdown:last-child .rg-dropdown-menu {
    left: auto;
    right: 0;
  }
  
  /* All Page Navbar Start*/
  .all-page-navbar.rg-navbar{
    top:70px !important;
  }
  .all-page-navbar .rg-navbar-menu li a{
    color: var(--text-color-dark) !important;
  }
  .all-page-navbar .rg-navbar-menu li a:hover{
    color: var(--primary-color) !important;
  }
  .all-page-navbar .rg-navbar-container{
    max-width: 1368px !important;
  }
  .all-page-navbar .rg-navbar-logo img{
    height: 50px;
  }
  .all-page-navbar .rg-navbar-hamburger span{
    background: #000;
  }
  .all-page-navbar .rg-navbar-close{
    color: #000;
  }
  @media all and (max-width: 992px) {
    .all-page-navbar.rg-navbar {
      top: 65px !important;
    }
    .all-page-navbar .rg-mega-menu {
      transform: translateX(0%) !important;
    }
  }
  @media all and (max-width: 1400px) {
    .all-page-navbar .rg-navbar-container{
      max-width: 1190px !important;
    }
  }
  /* All Page Navbar End*/
  /* RG NAVBAR End */

/* Agriculture Header Styles Start*/
.agri-header {
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.agri-nav {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Styles */
.nav-logo {
    width: 120px;
}

.nav-logo img {
    width: 100%;
    height: auto;
}

/* Main Menu Styles */
.nav-menu {
    flex: 1;
    margin: 0 50px;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.menu-item {
    position: relative;
}

.menu-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.menu-item a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.menu-item:hover > a {
    color: #4CAF50;
}

.menu-item:hover > a i {
    transform: rotate(-180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.menu-item.show-dropdown > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-7px);
}

.menu-item.show-dropdown > a i {
    transform: rotate(-180deg);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    padding: 8px 20px;
    display: block;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #4CAF50;
    padding-left: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.search-btn:hover,
.cart-btn:hover {
    color: #4CAF50;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4CAF50;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-icon::before {
    top: -6px;
}

.hamburger-icon::after {
    bottom: -6px;
}

.mobile-menu-btn.active .hamburger-icon {
    background: transparent;
}

.mobile-menu-btn.active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
        order: 1;
    }

    .nav-logo {
        order: 2;
    }

    .header-actions {
        order: 3;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        margin: 0;
        padding: 20px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu-btn.active {
        position: fixed;
        top: 20px;
        left: 10px;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .main-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 50px;
    }

    .menu-item a {
        padding: 12px 0;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: #f8f9fa;
        box-shadow: none;
        padding: 0;
        margin: 5px 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .menu-item.show-dropdown > .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
    }

    .dropdown-menu li a:hover {
        padding-left: 25px;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        width: 100px;
    }

    .header-actions {
        gap: 15px;
    }

    .search-btn,
    .cart-btn {
        font-size: 16px;
    }
}
/* Agriculture Header Styles End*/

/* Hero Slider Styles Start*/
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: visible;
    margin-bottom: 200px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay with 50% opacity */
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content stays above the overlay */
    max-width: 600px;
    padding: 120px 0;
}

.welcome-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
    font-family: 'Covered By Your Grace', cursive;
    text-align: justify;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 40px;
    max-width: 500px;
    text-align: justify;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #4CAF50;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background: #3d8b40;
    color: #fff;
    transform: translateY(-2px);
}

.discover-btn img {
    width: 20px;
    height: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.nav-button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.nav-circle {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.nav-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-button:hover .nav-circle {
    border-color: #fff;
}

.nav-button.active .nav-circle {
    border-color: #fff;
}

.nav-button.active .nav-circle::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .slider-nav {
        right: 20px;
    }
    .slide-bg img{
        height: 100%;
    }
}
@media (max-width: 1920px) {
    .hero-content,
    .hero-slider .hero-content{
      padding: 270px 0;
  }
  }
  @media (max-width: 1600px) {
    .hero-content,
    .hero-slider .hero-content{
      padding: 170px 0;
  }
  }
  @media (max-width: 1400px) {
    .hero-content,
    .hero-slider .hero-content{
      padding: 120px 0;
  }
  }
@media (max-width: 576px) {
    .slider-nav {
        right: 15px;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
    }
}
/* Hero Slider Styles End*/

/* Feature Boxes */
.feature-boxes {
    position: absolute;
    bottom: -182px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 0 15px;
}

.feature-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    height: 100%;
    min-height: 240px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-number {
    display: block;
    color: #FFA500;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Covered By Your Grace', cursive;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.feature-image {
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: 20px;
    background: #fff;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.hero-content h1 {
    position: relative;
}
.hero-content h1::after {
    content: '';
    position: absolute;
    top: 90px;
    left: 220px;
    width: 50%;
    height: 30%;
    /* background-image: url(../images/joypur-agro/g-leaf.png); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
/* Responsive Styles */
@media (max-width: 991px) {
    .hero-slider {
        height: auto;
        min-height: 600px;
        margin-bottom: 0;
        overflow: hidden;
    }

    .hero-swiper {
        overflow: hidden;
    }

    .hero-content {
        padding: 60px 15px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .feature-boxes {
        position: relative;
        bottom: auto;
        margin-top: 30px;
    }

    .feature-box {
        margin-bottom: 20px;
    }

    .feature-image {
        height: 150px;
    }
    .hero-content h1::after{
        display: none;
    }
    .margin-bottom-40{
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        margin-bottom: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 40px 15px;
    }

    .feature-image {
        height: 120px;
    }

    .feature-boxes {
        margin-top: 33px;
    }
}

/* Introduction Section Styles Start*/
.intro-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.intro-section h6{
    font-size: 20px;
    font-weight: 600;
    color: #4BAF47;
    margin-bottom: 20px;
    line-height: 1.4;
}
.intro-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.intro-main-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.intro-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-small-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    padding-left: 50px;
}

.intro-subtitle {
    color: #FFA500;
    font-size: 18px;
    font-family: 'Covered By Your Grace', cursive;
    margin-bottom: 15px;
    display: block;
}

.intro-title {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.intro-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.intro-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

.intro-feature-icon img {
    width: 100%;
    height: auto;
}

.intro-feature-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.intro-list {
    margin-bottom: 30px;
}

.intro-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.intro-list-item i {
    color: #C5CE38;
    font-size: 16px;
}

.discover-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #4CAF50;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discover-more-btn:hover {
    background: #3d8b40;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .intro-section {
        padding: 60px 0;
    }

    .intro-main-image {
        width: 400px;
        height: 400px;
        margin: 0 auto 30px;
    }

    .intro-small-image {
        width: 150px;
        height: 150px;
        left: 117px;
    }

    .intro-content {
        padding-left: 0;
        text-align: center;
    }

    .intro-title {
        font-size: 36px;
    }

    .intro-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    .intro-list-item{
        justify-content: center;
    }
}

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

    .intro-main-image {
        width: 300px;
        height: 300px;
    }

    .intro-small-image {
        width: 120px;
        height: 120px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-features {
        flex-direction: column;
        align-items: center;
    }

    .intro-feature-item {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 500px) {
    .intro-small-image {
        left: 26px;
      }
    .intro-list-item:nth-child(2) i{
        margin-top: 10px;
    }
    .intro-list-item i{
        display: none;
    }
}
/* Introduction Section Styles End*/

/* Explore Projects Section Styles Start */
.explore-projects {
    padding: 100px 0;
    background-color: #FBF9F4;
    position: relative;
}
.explore-projects .section-subtitle{
    font-family: 'Covered By Your Grace', cursive;
    color: #FFA500;
}
.explore-projects .section-title{
    font-weight: 700 ;
}
.project-cards-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -200px;
    z-index: 10;
    top: 194px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

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

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: #C5CE38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 15px;
}

.project-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 25px;
    background: #4BAF47;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #3d8b40;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .project-cards-wrapper {
        position: relative;
        bottom: -50px;
        top: 5px;
    }
    
    .why-choose-section {
        margin-top: -16px !important;
    }
    .margin-bottom-40{
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .project-cards-wrapper {
        bottom: -30px;
    }
    
    .why-choose-section {
        margin-top: 50px;
    }
}
/* Explore Projects Section Styles End */

/* Why Choose Section Styles Start */
.why-choose-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 280px;
}

.why-choose-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.why-choose-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
}

.leader-badge {
    position: absolute;
    top: 29%;
    left: 72%;
    transform: translate(-50%, -50%);
    background: #FFA500;
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    z-index: 2;
}

.leader-badge::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -6px;
    width: 46px;
    height: 32px;
    background:
    linear-gradient(135deg, #FFA500 0%, #FFA500 50%, transparent 50%, transparent 100%);
    transform: rotate(92deg);
}

.leader-badge h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    font-family: 'Covered By Your Grace', cursive;
}

.why-choose-content {
    padding-left: 50px;
}

.why-choose-subtitle {
    font-size: 18px;
    color: #FFA500;
    font-family: 'Covered By Your Grace', cursive;
    margin-bottom: 15px;
    display: block;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.benefits-list {
    margin-bottom: 40px;
}

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

.benefit-icon {
    width: 39px;
  height: 35px;
    min-width: 24px;
    background: #C5CE38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-item:nth-child(1) .benefit-icon{
    background: #4BAF47;
}
.benefit-item:nth-child(2) .benefit-icon{
    background: #C5CE38;
}
.benefit-item:nth-child(3) .benefit-icon{
    background: #EEC044;
}

.benefit-icon i {
    color: #fff;
    font-size: 12px;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.discover-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #4BAF47;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discover-more-btn:hover {
    background: #3d8b40;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .why-choose-image img {
        height: 450px;
    }

    .leader-badge {
        padding: 20px 25px;
        width: 220px;
    }

    .leader-badge h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-image img {
        height: 350px;
    }

    .leader-badge {
        padding: 15px 20px;
        width: 200px;
    }

    .leader-badge h4 {
        font-size: 18px;
    }

    .benefit-item {
        margin-bottom: 20px;
    }

    .benefit-content h4 {
        font-size: 18px;
    }
    .benefit-icon{
        height: 27px;
    }
}
/* Why Choose Section Styles End */

/*
------------------------------------
We are certified By CSS Start
-------------------------------------
*/
.sister-concern {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

.sister-concern h3 {
    font-size: 28px;
    color: rgb(201, 155, 32);
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}

.sister-concern .logos-wrapper {
    width: 100%;
    position: relative;
}

.sister-concern .logos-slider {
    padding: 10px 0;
    display: flex;
    width: max-content;
    animation: slide 30s linear infinite;
}

.sister-concern .logos-slider:hover {
    animation-play-state: paused;
}

.sister-concern .d-flex {
    gap: 30px;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.sister-concern .logo-item {
    flex: 0 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
}

.sister-concern .sister-logo {
    height: 60px;
        width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sister-concern .logo-item:hover {
    /* transform: scale(1.1); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes slide {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/*
------------------------------------
We are certified By CSS End
-------------------------------------
*/
