@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-navy);
  overflow-x: hidden;
}
.container {
  max-width: 1240px;
}

:root {
  --primary-green: #529f2c;
  --dark-navy: #102a3d;
  --text-grey: #667085;
  --soft-green: #f0fdf4;
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* main page css start  */

/* --- Header Styles --- */
.navbar {
  padding: 1.5rem 0;
  background: #529f2c2b;
  backdrop-filter: blur(60px);
}

.navbar-brand .brand-logo {
  width: 40px;
  color: var(--primary-green);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-navy) !important;
  margin: 0 15px;
}

.btn-quote {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 25px;
  transition: 0.3s;
}

.btn-quote:hover {
  background: var(--primary-green);
  color: white;
}

/* --- Hero Section --- */
.hero-section {
  padding: 80px 0 80px;
  background: radial-gradient(circle at 90% 10%, #f0fdf4 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #103040;
}

.hero-subtitle {
  color: #5eb432;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text {
  color: #454545;
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 35px;
  font-weight: 400;
}

.btn-apply {
  background: var(--primary-green);
  color: white !important;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 500;
  border: none;
}

.btn-phone {
  background: #103040;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* --- Floating Visuals --- */
.visual-container {
  position: relative;
  z-index: 1;
}

.main-bounce-house {
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
  animation: float 5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  bottom: 10%;
  left: -5%;
  z-index: 10;
  max-width: 280px;
  animation: floatCard 4s ease-in-out infinite;
}

.shield-badge {
  position: absolute;
  top: 5%;
  right: 15%;
  background: white;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: var(--dark-navy);
  font-size: 1.8rem;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--dark-navy);
  color: white;
  padding: 40px 0;
}

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

.stars {
  color: #40b679;
}

/* --- Animations --- */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avatar-group .mainbadges,
.mainbadges {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.MainClicker {
  padding: 5px;
  border: 1px solid #529f2c !important;
}
.MainClicker i {
  color: #529f2c;
  font-size: 22px;
}
.btn-banner {
  gap: 10px;
}
.btn-apply:hover {
  background: black;
  color: white !important;
}

.btn-phone:hover {
  background: var(--primary-green);
  color: white;
}
.btn-apply:hover {
  background: black;
  color: white !important;
}

.btn-phone:hover {
  background: var(--primary-green);
  color: white;
}

.trust-bar p {
  color: white;
}

/* Section Typography */
.risk-header-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #103040;
  line-height: 1.1;
}

/* Image Wrapper */
.risk-img-container {
  height: 380px;
  border-radius: 4px; /* Sharp corners as per design */
  overflow: hidden;
}
.risk-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The Overlapping Card */
.risk-overlap-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  width: 88%;
  margin: -100px auto 0; /* Pulls the card onto the image */
  position: relative;
  z-index: 10;
  min-height: 280px;
}

.risk-overlap-card:hover {
    background: #439679;
}

.risk-overlap-card:hover .risk-icon {
    background: white;
}

.risk-overlap-card:hover .risk-icon i {
    color: #439679;
}

.risk-overlap-card:hover .green-stat,
.risk-overlap-card:hover .card-subtitle,
.risk-overlap-card:hover .card-text{
    color: white;
}


/* Colors and Icons */
.bg-accent-green {
}
.green-stat {
  color: #67b141;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 8px;
}
.card-subtitle {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.card-text {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.risk-icon {
  width: 44px;
  height: 44px;
  background: #439679;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom Slick Dots (Capsule Shape) */
.risk-slider .slick-dots {
  bottom: -50px;
  opacity: 0;
}
.risk-slider .slick-dots li {
  width: 12px;
  margin: 0 4px;
  transition: width 0.3s ease;
}
.risk-slider .slick-dots li button:before {
  content: "";
  background: #e0e0e0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
}
/*.risk-slider .slick-dots li.slick-active {*/
/*  width: 40px;*/
/*}*/
/*.risk-slider .slick-dots li.slick-active button:before {*/
/*  width: 40px;*/
/*  background: #102a3d;*/
/*  border-radius: 20px;*/
/*}*/

/*.risk-slide {*/
/*  margin: 16px;*/
/*}*/

/*.risk-slide.slick-active.slick-current .risk-overlap-card {*/
/*  background-color: #439679 !important;*/
/*}*/
/*.risk-slide.risk-slide.slick-active.slick-current .risk-icon {*/
/*  background: white;*/
/*}*/
/*.risk-slide.risk-slide.slick-active.slick-current .risk-icon i {*/
/*  color: var(--primary-green);*/
/*}*/
/*.risk-slide.slick-active.slick-current .risk-overlap-card h3,*/
/*.risk-slide.slick-active.slick-current .risk-overlap-card h4,*/
/*.risk-slide.slick-active.slick-current .risk-overlap-card p {*/
/*  color: var(--white);*/
/*}*/
.risks-section {
  padding: 100px 0;
}

/* --- Section 1: How It Works --- */
.how-it-works {
  padding: 100px 0;
  background: #fff;
}
.section-h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Mobile App Mockup styling */
.mockup-container {
  background: #000;
  border: 14px solid #1a1a1a;
  border-radius: 45px;
  padding: 15px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  margin: 0 auto;
}
.mockup-inner {
  background: #fff;
  border-radius: 30px;
  padding: 25px 20px;
  text-align: center;
}
.app-btn-green {
  background: #8bc34a;
  color: white;
  border: none;
  width: 100%;
  border-radius: 6px;
  padding: 8px;
  font-size: 14px;
  margin-bottom: 25px;
}
.app-item {
  display: flex;
  align-items: center;
  border: 1px solid #f0f0f0;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  text-align: left;
}
.app-item i {
  color: var(--primary-green);
  margin-right: 15px;
}

/* Vertical Stepper */
.step-row {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  position: relative;
}
.step-circle {
  width: 22px;
  height: 22px;
  background: var(--primary-green);
  border-radius: 50%;
  z-index: 2;
  flex-shrink: 0;
}
.step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: -35px;
  width: 2px;
  height: 93%;
  background: #eef0f2;
}

/* --- Section 2: Industries We Cover (Bootstrap Tabs) --- */
.industries-section {
  padding: 80px 0 ;
}
.industry-h2 {
  font-size: 3.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-navy);
}

/* Custom Tab Nav Styling */
.nav-pills-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 70px;
  border: none;
}
.nav-pills-custom .nav-link {
  padding: 12px 28px;
  border-radius: 50px;
  background: #fff;
  color: var(--dark-navy);
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: none;
}
.nav-pills-custom .nav-link.active {
  background-color: var(--primary-green) !important;
  color: white !important;
}

.industry-card-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.industry-detail h3 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}
.industry-detail p {
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 35px;
}

.btn-main {
  background: var(--primary-green);
  color: white;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
}

.coverage-section {
  padding: 100px 0;
  background-color: #ffffff;
}

/* --- Left Side Content --- */
.avatar-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
.avatar-group img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-right: -15px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.avatar-plus {
  width: 45px;
  height: 45px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  border: 3px solid #fff;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #444343;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-main-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  color: #000;
}

/* --- Right Side Cards --- */
.coverage-card {
  position: relative;
  height: 550px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  margin-bottom: 30px;
}

.coverage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  transition: 0.3s;
}

.coverage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-content {
  position: relative;
  z-index: 2;
  color: white;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}

.card-content p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 0;
  color: white;
  text-align: center;
  font-weight: 300;
}

/* Diagonal Arrow Button */
.arrow-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  z-index: 3;
}
.arrow-btn i {
  transform: rotate(-45deg);
  transition: 0.3s;
}
.coverage-card:hover .arrow-btn i {
  transform: rotate(0deg);
}
.arrow-btn:hover {
  color: white;
}

/* --- CTA Banner Section --- */
.cta-banner {
  background-color: #529f2c;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  color: white;
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  color: white;
  font-weight: 300;
}

.btn-cta-white {
  background-color: var(--white);
  color: var(--primary-green);
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-cta-white:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* --- Shield & Inflatable Visual --- */
.visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-glow {
  position: absolute;
  width: 110%;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
  animation: pulse-glow 3s infinite ease-in-out;
}

.inflatable-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  /* Floating animation */
  animation: float-soft 4s infinite ease-in-out;
}

/* --- Animations --- */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.OperateSection {
  padding: 150px 0 100px;
}
.parent_para {
  font-size: 36px;
  font-weight: 500;
  color: #103040;
}

/* The Main Green Container */
.main-wrapper {
  /* background: linear-gradient(105deg, #8bd35f 0%, #4ea52e 100%); */
  /* background: url(../images/advisor-bg.png) no-repeat; */
  /* border-radius: 40px; */
  padding: 40px 60px;
  position: relative;
  background-size: cover;
  overflow: visible; /* Allows the arrow to hang off the edge if needed */
}

/* Subtle background pattern effect */
.main-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
  pointer-events: none;
}

.section-title {
  color: #0d2c3d;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Slider Logic - Forcing Horizontal */
.risk-slider {
  display: block;
  width: 100%;
}

.slide-item {
  padding: 0 15px; /* Spacing between cards */
  outline: none;
}

/* Card Design */
.info-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 35px;
  min-height: 360px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  border: none;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card img{
  margin: auto;
}
.icon-img {
  width: 55px;
  margin-bottom: 25px;
}

.card-heading {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.card-body-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
}

/* Custom Slick Arrow (The White Circle) */
.custom-next {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

.custom-next:hover {
  background: #f8f8f8;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.custom-next svg {
  width: 24px;
  fill: #0d2c3d;
}

/* Hide default slick arrows */
.slick-prev,
.slick-next {
  display: none !important;
}

.trustrisk-section {
    padding: 70px 0 60px;
    background: linear-gradient(105deg, #8bd35f 0%, #4ea52e 100%);
}

 /* CONTACT SECTION */
        .contact-wrapper {
            padding-top: 80px;
            position: relative;
            z-index: 10;
        }

        .contact-card {
            background: #fff;
            border-radius: 40px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: -150px; /* Overlap effect */
        }

        .form-container {
            padding: 60px;
        }

        .contact-card h2 {
            font-weight: 700;
            color: #000;
            margin-bottom: 5px;
            font-size: 32px;
        }

        .contact-card p.subtitle {
            font-size: 0.85rem;
            color: #000;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .label-custom {
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

      .COntactSection  .form-control, .form-select {
            background-color: var(--primary-green) !important;
            border: none;
            color: #fff !important;
            padding: 12px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            height: 50px;
        }

  .COntactSection .form-control::placeholder {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        .btn-send {
            background-color: var(--primary-green);
            color: white;
            padding: 10px 40px;
            border-radius: 25px;
            font-weight: 500;
            border: none;
            transition: 0.3s;
        }

        .btn-send:hover {
            background-color: black;
            transform: scale(1.05);
        }

        /* Image Side */
        .img-side {
            /* background: radial-gradient(circle, #56ab2f 0%, #a8e063 100%); */
            display: flex;
            align-items: flex-end;
            justify-content: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .img-side img {
            width: 90%;
            z-index: 2;
        }

        /* FOOTER SECTION */
        footer {
            background-color: #103040;
            color: #fff;
            padding: 220px 0 30px 0; /* Extra top padding for the overlap */
        }

        .contact-info-row {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 50px;
        }

        .info-item {
            display: flex;
            align-items: center;
        }

        .info-icon {
            width: 55px;
            height: 55px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .info-text h6 {
            margin: 0;
            font-weight: 600;
            color: #fff;
        }

        .info-text p {
            margin: 0;
            color: #ccc;
            font-size: 0.9rem;
        }

        .footer-logo {
            width: 220px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 16px;
            color: #bbb;
            line-height: normal;
            font-weight: 300;
        }

        .footer-links-title {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: white;
        }

        .footer-list {
            list-style: none;
            padding: 0;
        }

        .footer-list li {
            margin-bottom: 10px;
        }

        .footer-list a {
            color: #bbb;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .footer-list a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }

        .bottom-bar {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            margin-top: 50px;
            font-size: 0.85rem;
            color: #888;
        }

        .bottom-bar p {
    color: white;
}
.COntactSection textarea.form-control{
    height: auto;
}
.footer-about h4{
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}
.trust-item img {
    width: 40px;
    filter: invert(1);
}
.industries_cards {
    padding: 10px;
    height: 220px;
}
.industries_cards::before{
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 42%) 100%);
}

.industries_cards h3 {
    font-size: 15px;
}


/* Modern Trigger Button */
.btn-premium {
    background: var(--primary-green);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(78, 165, 46, 0.2);
}

.btn-premium:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 25px rgba(78, 165, 46, 0.3);
    color: black;
}

/* Modal Content Styling */
.modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-split-layout {
    display: flex;
    min-height: 500px;
}

/* Left Branding Side */
.modal-info-side {
    background: linear-gradient(135deg, var(--primary-green), #3d8224);
    color: white;
    padding: 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Form Side */
.modal-form-side {
    padding: 40px;
    width: 60%;
    background: white;
    position: relative;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
    background: #f9fff6;
}

.close-custom {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #f0f0f0;
    border-radius: 50%;
    padding: 5px;
    transition: 0.3s;
}
.modal-info-side h2 ,.modal-info-side p {
    color: white;
}

.modal-info-side {}

.modal-form-side input, .modal-form-side textarea{
    border:1px solid #8f8d8d;
}
.btn-main:hover {
    color: black;
}
/* Dropdown Menu Container */
.custom-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 280px;
    background: #ffffff;
    margin-top: 15px !important; /* Thoda gap top se */
}

/* Dropdown Items */
.custom-dropdown .dropdown-item {
    padding: 12px 20px;
    font-size: 14.5px;
    font-weight: 500;
    color: #444;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2px;
}

/* Hover Effect */
.custom-dropdown .dropdown-item:hover {
    background-color: #f8f9fa; /* Light grey background */
    color: #529f2c; /* Aapka primary color */
    padding-left: 28px; /* Smooth slide effect */
}

/* Left side indicator line on hover */
.custom-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 4px;
    background-color: #529f2c;
    transition: height 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.custom-dropdown .dropdown-item:hover::before {
    height: 70%;
}

/* Dropdown Animation (Optional) */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .modal-split-layout { flex-direction: column; }
    .modal-info-side, .modal-form-side { width: 100%; padding: 25px; }
}
/* main page css end  */
