
/* Custom Styling for .slider-content */
.slider-content {
  position: absolute;
  top: 24%;
  z-index: 10;
  color: #fff;
  width: 100%;
  left: 10%;
  max-width: 81%;
  display: flex;
  justify-content: space-between;
}

.slider-content .banner-content {
  padding-right: 20px;
}

.slider-content .banner-content p.mini {
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #9acd32; /* Lime green */
  letter-spacing: 4px;
  font-weight: 600;
  padding: 6px 0;
}

.slider-content .banner-content h1.title {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.slider-content .banner-content p.m-view {
  font-size: 18px;
  color: #f1f8e9; /* Pale green */
  display: none; /* Matches original .m-view behavior */
}

.slider-content .banner-content h3.typo {
  color: #f1f8e9; /* Pale green */
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.slider-content .banner-content ul {
  padding: 0;
  list-style: none;
}

.slider-content .banner-content ul li {
  font-size: 18px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: flex-start;
}

.slider-content .banner-content ul li img {
  padding-right: 5px;
  transition: transform 0.3s ease;
}

.slider-content .banner-content ul li:hover img {
  transform: scale(1.1);
}

.slider-content .banner-content h2.price {
  background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%); /* Dark olive to lime green */
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
  padding: 10px 20px;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 29px;
  display: inline-block;
  font-size: 28px;
}

.slider-content .banner-content h2.price span {
  color: #fff;
}

.slider-content .banner-content h3.ivr-number {
  display: flex;
  margin-top: 15px;
}

.slider-content .banner-content h3.ivr-number a {
  background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%); /* Dark olive to lime green */
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
  padding: 10px 20px;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 29px;
  display: block;
  font-size: 22px;
  transition: all 0.3s ease;
}

.slider-content .banner-content h3.ivr-number a:hover {
  background: transparent;
  border: 1px solid #66bb6a; /* Light green */
  color: #66bb6a !important;
}

.slider-content .banner-content h3.ivr-number img {
  padding-right: 10px;
  width: 15%;
  filter: invert(1) brightness(2); /* Matches original invert */
}

.slider-content .sticky-patch {
  position: absolute;
  z-index: 9999;
  width: 14%;
  left: 40%;
  top: 60%;
}

/* Form Styling */
.slider-content .form-box.col-lg-5 {
  width: 400px;
  padding: 35px;
  background: linear-gradient(180deg, #dcedc8 0%, #f1f8e9 49%, #c5e1a5 100%); /* Green gradient */
  outline: 1px solid rgba(107, 142, 35, 0.3); /* Olive green outline */
  outline-offset: -10px;
  border-radius: 15px;
}

.slider-content .inner h2 {
  color: #388e3c; /* Forest green */
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}

.slider-content .form-row {
  margin-bottom: 26px;
}

.slider-content .form-box input {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 5px 0;
  height: auto;
  background-color: transparent;
  border-width: 0 0 1px;
  border-style: solid;
  border-bottom: 1px solid #388e3c; /* Forest green */
  width: 100%;
  line-height: 1.8em;
  font-size: 16px;
  font-weight: 400;
  color: var(--sub_text); /* Assumes #000 */
  outline: none;
  transition: border-bottom 0.3s ease;
}

.slider-content .form-box input:focus {
  border-bottom: 2px solid #6b8e23; /* Dark olive green */
}

.slider-content .form_btn {
  text-align: center;
}

.slider-content .submit_button {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%); /* Dark olive to lime green */
  color: #fff;
  padding: 8px 24px;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-content .submit_button:hover {
  background: transparent;
  border: 1px solid #66bb6a; /* Light green */
  color: #66bb6a;
}

.slider-content .checkbox-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.slider-content .checkbox-section input[type="checkbox"] {
  width: auto;
}

.slider　　　　-content .checkbox-section p {
  font-size: 10px;
  color: var(--sub_text); /* Assumes #000 */
  padding: 10px;
  margin: 0;
  line-height: unset;
  padding-bottom: 0;
}

/* Animation */
@keyframes Gradient {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* Responsive Adjustments */
@media only screen and (min-width: 1700px) {
  .slider-content .banner-content h1 {
    font-size: 47px;
  }
  .slider-content .banner-content p {
    max-width: 530px;
  }
}

@media only screen and (min-width: 1350px) and (max-width: 1699px) {
  .slider-content .banner-content h1 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content .banner-content h1 {
    font-size: 56px;
  }
}

@media only screen and (max-width: 1440px) {
  .slider-content {
    left: 5%;
    max-width: 1290px;
    top: 20%;
  }
  .slider-content .banner-content h1 {
    font-size: 48px;
  }
  .slider-content .banner-content ul li {
    padding-bottom: 6px;
  }
  .slider-content .banner-content h3.ivr-number a {
    font-size: 20px;
    padding: 7px 20px;
  }
  .slider-content .banner-content h2.price {
    font-size: 26px;
    padding: 7px 20px;
  }
  .slider-content .banner-content h3.ivr-number img {
    width: 41px;
  }
  .slider-content .banner-content h1 {
    margin-bottom: 15px;
  }
  .slider-content .inner h2 {
    margin-bottom: 12px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 1367px) {
  .slider-content {
    left: 6%;
    max-width: 1140px;
    padding: 0 12px;
  }
  .slider-content .banner-content h1 {
    font-size: 40px;
  }
  .slider-content .banner-content ul li {
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-size: 15px;
  }
  .slider-content .form-box.col-lg-5 {
    top: 0%;
    right: 1%;
  }
}

@media only screen and (max-width: 1281px) {
  .slider-content .banner-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .slider-content .banner-content ul li {
    margin-bottom: 0;
  }
  .slider-content .banner-content h2.price {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .slider-content .banner-content h3.ivr-number a {
    font-size: 20px;
  }
  .slider-content .banner-content h3.ivr-number img {
    width: 34px;
  }
  .slider-content .form-box.col-lg-5 {
    padding: 30px;
  }
  .slider-content .submit_button {
    font-size: 15px;
  }
  .slider-content {
    top: 24%;
  }
}

@media only screen and (max-width: 767px) {
  .slider-content {
    top: 14%;
    left: 0;
    max-width: 100%;
    padding-right: 20px;
    flex-direction: column;
    align-items: center;
  }
  .slider-content .banner-content {
    /* padding-top: 130px; */
    padding-bottom: 75px;
    margin: 0;
  }
  .slider-content .banner-content p.mini {
    font-size: 16px;
    padding: 5px 0;
  }
  .slider-content .banner-content h1 {
    font-size: 31px !important;
    margin-bottom: -1px;
  }
  .slider-content .banner-content p.m-view {
    display: block;
    margin-bottom: 20px;
  }
  .slider-content .banner-content h3.typo {
    font-size: 18px;
    letter-spacing: normal;
  }
  .slider-content .banner-content ul li {
    padding-bottom: 0;
    font-size: 15px;
  }
  .slider-content .banner-content h2.price {
    font-size: 16px;
    padding: 10px;
  }
  .slider-content .banner-content h3.ivr-number {
    margin: 0;
    padding-left: 0;
  }
  .slider-content .banner-content h3.ivr-number a {
    font-size: 16px;
    padding: 10px;
  }
  .slider-content .banner-content h3.ivr-number img {
    width: 30px;
  }
  .slider-content .sticky-patch {
    width: 22%;
    left: 68%;
    top: 81%;
  }
  .slider-content .form-box.col-lg-5 {
    width: 100%;
    right: 0;
  }
  .slider-content .submit_button {
    width: auto;
  }
  .slider-content .form-row {
    margin-bottom: 8px;
  }
}
/* Overview */

    
      /* General Styling */
      #overview {
        background: linear-gradient(120deg, #e8f1e9 0%, #f0f7f2 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      /* Container Styling */
      #overview .container {
        /* max-width: 1250px; */
        margin: 0 auto;
        /* padding: 0 20px; */
        position: relative;
        z-index: 1;
      }

      /* Row Styling */
      #overview .row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
      }

      /* Column Styling */
      #overview .col-lg-5,
      #overview .col-lg-7 {
        flex: 1;
        padding: 20px;
      }

      /* About Image Styling */
      #overview .about-img-2 {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: transform 0.4s ease;
      }

      #overview .about-img-2:hover {
        transform: translateY(-5px);
      }

      #overview .big-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
      }

      /* About Content Styling */
      #overview .about-content {
        padding: 30px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(5px);
        animation: fadeInUp 0.6s ease-out;
        margin: 1px;
      }

      /* Section Title Styling */
      #overview .section-title {
        margin-bottom: 30px;
      }

      #overview .section-title span {
        font-size: 14px;
        color: #6b8e23;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 500;
        display: block;
        margin-bottom: 12px;
        font-family: 'Roboto', sans-serif;
      }

      #overview .section-title h2 {
        font-size: 40px;
        color: #2f4f4f;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif;
        position: relative;
      }

      #overview .section-title h2::after {
        content: '';
        width: 60px;
        height: 3px;
        background: #6b8e23;
        position: absolute;
        bottom: -10px;
        left: 0;
        border-radius: 2px;
      }

      /* Paragraph Styling with Read More/Less */
      #overview .section-title .overview-text {
        font-size: 16px !important;
        color: #4a5e5e;
        line-height: 1.9;
        font-family: 'Roboto', sans-serif;
        max-height: 300px;
        /* Initial height to show limited content */
        overflow: hidden;
        transition: max-height 0.5s ease;
      }

      #overview .section-title .overview-text.expanded {
        max-height: 1000px;
        /* Large enough to show all content */
      }

      #overview .section-title .overview-text p {
        font-size: 16px !important;
      }

      #overview .read-more-btn {
        display: inline-block;
        margin-top: 10px;
        color: #6b8e23;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Roboto', sans-serif;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      #overview .read-more-btn:hover {
        color: #9acd32;
      }

      /* Button Styling */
      #overview .about-btn {
        margin-top: 25px;
      }

      #overview .main_button {
        display: inline-block;
        padding: 14px 35px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%) !important;
        color: #ffffff !important;
        text-decoration: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
      }

      #overview .main_button:hover {
        background: linear-gradient(90deg, #9acd32 0%, #6b8e23 100%);
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(107, 142, 35, 0.4);
      }

      /* Animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Design */
      @media (max-width: 991px) {

        #overview .col-lg-5,
        #overview .col-lg-7 {
          flex: 100%;
          max-width: 100%;
        }

        #overview .section-title h2 {
          font-size: 32px;
        }
      }

      @media (max-width: 767px) {
        #overview .section-title h2 {
          font-size: 26px;
        }

        #overview .main_button {
          padding: 12px 30px;
          font-size: 14px;
        }

        #overview .about-content {
          padding: 20px;
        }

        #overview .section-title .overview-text {
          max-height: 120px;
          /* Adjusted for smaller screens */
        }
      }
    

/* Heighlight */
    
      #highlight {
        background: linear-gradient(135deg, #fff9f5 0%, #f9e9e0 100%);
        padding: 55px 0;
        position: relative;
        overflow: hidden;
      }

      #highlight .container {
        max-width: 1550px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
      }

      #highlight .row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
        flex-direction: row-reverse;
      }

      #highlight .col-lg-5,
      #highlight .col-lg-7 {
        flex: 1;
        padding: 20px;
      }

      #highlight .innovation-img {
        position: relative;
        z-index: 1;
        margin: 45px 45px 75px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(195, 143, 96, 0.2);
        transition: transform 0.4s ease;
      }

      #highlight .innovation-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
      }

      #highlight .innovation-img:hover {
        transform: scale(1.03);
      }

      #highlight .innovation-shape .shape1,
      #highlight .innovation-shape .shape2 {
        position: absolute;
        z-index: -1;
        opacity: 0.4;
        animation: float 5s ease-in-out infinite;
      }

      #highlight .innovation-shape .shape1 {
        bottom: -45px;
        left: -45px;
        width: 100px;
      }

      #highlight .innovation-shape .shape2 {
        top: -45px;
        right: -45px;
        width: 100px;
        animation-delay: 2.5s;
      }

      #highlight .innovation-shape img {
        filter: drop-shadow(0 0 10px rgba(195, 143, 96, 0.2));
      }

      @keyframes float {
        0% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(-15px);
        }

        100% {
          transform: translateY(0);
        }
      }

      #highlight .highlight-content {
        margin-bottom: 30px;
        padding: 30px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        border-right: 4px solid var(--primary, #c38f60);
        transition: border-color 0.3s ease;
      }

      #highlight .highlight-content:hover {
        border-color: #ddb865;
      }

      #highlight .section-title span {
        font-size: 24px;
        font-weight: 700;
        color: var(--mini_title, #ddb865);
        text-transform: capitalize;
        padding-bottom: 5px;
        display: block;
        font-family: var(--nunito_font, 'Nunito', sans-serif);
      }

      #highlight .section-title h2 {
        font-size: 35px;
        font-weight: 600;
        margin-top: 10px;
        line-height: 1.4;
        color: var(--sub_text, #000);
        font-family: 'Playfair Display', serif;
        position: relative;
        max-width: 600px;
      }

      #highlight .section-title h2::after {
        content: '';
        width: 50px;
        height: 2px;
        background: var(--primary, #c38f60);
        position: absolute;
        bottom: -10px;
        left: 0;
      }

      #highlight .list-content {
        list-style: none;
        padding: 0;
        margin: 15px 0;
        max-width: 600px;
        overflow-y: auto;
        max-height: 280px;
        scrollbar-width: thin;
        scrollbar-color: #c38f60 #fff0e6;
      }

      #highlight .list-content li {
        display: flex;
        align-items: center;
        font-size: 18px;
        color: var(--sub_text, #000);
        padding: 10px 0;
        font-family: var(--nunito_font, 'Nunito', sans-serif);
        font-weight: 400;
        transition: color 0.3s ease, transform 0.3s ease;
      }

      #highlight .list-content li:hover {
        color: var(--primary, #c38f60);
        transform: translateX(5px);
      }

      #highlight .list-content li img {
        width: 24px;
        height: 24px;
        padding-right: 10px;
        flex-shrink: 0;
      }

      #highlight .list-content li p {
        margin: 0;
        flex: 1;
      }

      /* Divider Line */
      @media (min-width: 992px) {
        #highlight .row::before {
          content: "";
          position: absolute;
          left: 50%;
          top: 10%;
          height: 80%;
          width: 1px;
          background: linear-gradient(to bottom, #e5c8b1, transparent);
          z-index: 0;
        }
      }

      /* Responsive Design */
      @media only screen and (max-width: 767px) {
        #highlight .section-title span {
          font-size: 20px;
        }

        #highlight .section-title h2 {
          font-size: 26px;
          text-align: center;
        }

        #highlight .highlight-content {
          padding: 20px;
          margin-left: 0;
        }

        #highlight .list-content li {
          font-size: 15px;
        }

        #highlight .list-content li img {
          width: 20px;
          height: 20px;
        }

        #highlight .innovation-img {
          margin: 0 auto 30px;
        }

        #highlight .innovation-shape {
          display: none;
        }

        #highlight .row {
          flex-direction: column-reverse;
        }

        #highlight {
          padding: 30px 0;
        }
      }
    


/* price list */

      /* Custom Styling for #pricelist Section */
      #pricelist {
        background: var(--bg_color);
        /* Assumes #FFF9F5 from global :root */
        padding: 55px 0;
        /* Matches .ptb-70 */
        position: relative;
        overflow: hidden;
      }

      #pricelist .container {
        max-width: 1550px;
        margin: 0 auto;
        padding: 0 20px;
      }

      #pricelist .section-title.text-center {
        max-width: 760px;
        margin: 0 auto 40px;
        animation: fadeInUp 0.6s ease-out;
      }

      #pricelist .section-title span {
        color: #388e3c;
        /* Forest green for a bold, natural accent */
        font-size: 24px;
        font-weight: 700;
      }

      #pricelist .section-title h2 {
        font-size: 35px;
        font-weight: 600;
        color: var(--sub_text);
        /* Assumes #000 from global :root */
        position: relative;
      }

      #pricelist .section-title h2::after {
        content: '';
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      #pricelist .row {
        padding-top: 40px;
        justify-content: center;
        gap: 30px;
      }

      #pricelist .col-md-4 {
        margin-bottom: 30px;
      }

      /* Pricing Table Styling */
      #pricelist .pricingTable10 {
        text-align: center;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
      }

      #pricelist .pricingTable10:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(107, 142, 35, 0.2);
        /* Olive green-tinted shadow */
      }

      #pricelist .pricingTable-header {
        padding: 30px 0;
        background: linear-gradient(90deg, #2e7d32 0%, #4caf50 100%);
        /* Dark green to medium green */
        position: relative;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        transition: background 0.3s ease;
      }

      #pricelist .pricingTable10:hover .pricingTable-header {
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
      }

      /* #pricelist .pricingTable-header::before,
      #pricelist .pricingTable-header::after {
        content: '';
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid #fff;
        position: absolute;
        bottom: 12px;
        background: #fff;
        opacity: 0.8;
      } */
      .pricingTable10:hover .pricing-content ul:after,
      .pricingTable10:hover .pricing-content ul:before {
        background: linear-gradient(to bottom, #6b8e23 0%, #9acd32 100%);
      }

      #pricelist .pricingTable-header::before {
        left: 40px;
      }

      #pricelist .pricingTable-header::after {
        right: 40px;
      }

      #pricelist .heading {
        font-size: 20px;
        color: #fff;
        letter-spacing: 1px;
        margin: 0;
        font-weight: 600;
        font-family: var(--nunito_font);
        /* Assumes Nunito from global :root */
        transition: color 0.3s ease;
      }

      #pricelist .price-value {
        font-size: 44px;
        font-weight: 700;
        color: #fff;
        display: block;
        margin: 10px 0;
        transition: color 0.3s ease;
        font-family: var(--nunito_font);
      }

      #pricelist .Onwards {
        font-size: 14px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 400;
        display: block;
        transition: color 0.3s ease;
        font-family: var(--nunito_font);
      }

      #pricelist .pricingTable10:hover .heading,
      #pricelist .pricingTable10:hover .price-value,
      #pricelist .pricingTable10:hover .Onwards {
        color: #fff;
        /* Stays white for contrast on green gradient */
      }

      #pricelist .pricing-content {
        padding: 40px 20px;
        background: #fff;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        position: relative;
      }

      #pricelist .pricing-content ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
      }

      #pricelist .pricing-content ul li {
        font-size: 20px;
        font-weight: 600;
        color: var(--sub_text);
        /* #000 */
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
        font-family: var(--nunito_font);
      }

      #pricelist .pricing-content ul li:last-child {
        border-bottom: none;
      }

      #pricelist .main_button {
        font-size: 16px;
        font-weight: 600;
        padding: 12px 30px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        background-size: 400% 400%;
        animation: Gradient 3s ease infinite;
        color: #fff;
        /* White for contrast */
        border-radius: 29px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
      }

      #pricelist .main_button:hover {
        background: transparent;
        border: 2px solid #66bb6a;
        /* Light green for hover */
        color: #66bb6a;
        box-shadow: none;
      }

      /* Animation */
      @keyframes Gradient {
        0% {
          background-position: 0 50%;
        }

        50% {
          background-position: 100% 50%;
        }

        100% {
          background-position: 0 50%;
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Design */
      @media only screen and (min-width: 1700px) {
        #pricelist .container {
          max-width: 1550px !important;
        }
      }

      @media only screen and (max-width: 1440px) {
        #pricelist .section-title h2 {
          font-size: 32px;
        }

        #pricelist .price-value {
          font-size: 40px;
        }
      }

      @media only screen and (max-width: 1367px) {
        #pricelist .section-title h2 {
          font-size: 32px;
        }

        #pricelist .price-value {
          font-size: 38px;
        }

        #pricelist .pricing-content {
          padding: 35px 20px;
        }
      }

      @media only screen and (max-width: 1281px) {
        #pricelist .section-title h2 {
          font-size: 30px;
        }
      }

      @media only screen and (max-width: 767px) {
        #pricelist .section-title span {
          font-size: 20px;
        }

        #pricelist .section-title h2 {
          font-size: 26px;
          text-align: center;
        }

        #pricelist .price-value {
          font-size: 30px;
        }

        #pricelist .pricing-content ul li {
          font-size: 18px;
        }

        #pricelist .main_button {
          padding: 8px 25px;
          font-size: 14px;
        }

        #pricelist .pricing-content {
          padding: 30px 15px;
        }

        #pricelist {
          padding: 30px 0;
        }
      }
    

/* floorplan */

      /* Custom Styling for #floorplan Section */
      #floorplan {
        background-image: url(../img/section-bg01.png);
        /* Kept from original */
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 55px 0;
        /* Matches .ptb-70 */
        position: relative;
        z-index: 1;
        overflow: hidden;
      }

      #floorplan .container {
        max-width: 1550px;
        /* Matches large screen media query */
        margin: 0 auto;
        padding: 0 20px;
      }

      #floorplan .section-title.text-center {
        max-width: 760px;
        margin: 0 auto 60px;
        /* Matches original spacing */
        animation: fadeInUp 0.6s ease-out;
      }

      #floorplan .section-title span {
        color: #388e3c;
        /* Forest green for a natural accent */
        font-size: 24px;
        font-weight: 700;
      }

      #floorplan .section-title h2 {
        font-size: 35px;
        font-weight: 600;
        color: var(--sub_text);
        /* Assumes #000 from global :root */
        position: relative;
      }

      #floorplan .section-title h2::after {
        content: '';
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      #floorplan .row {
        justify-content: center;
        gap: 30px;
        /* Consistent spacing */
      }

      #floorplan .col-lg-4 {
        margin-bottom: 20px;
      }

      #floorplan .wrap {
        text-align: center;
      }

      #floorplan .image_section {
        position: relative;
        /* For absolute positioning of button */
        padding: 18px;
        margin-bottom: 10px;
        background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
        /* Medium to light green */
        box-shadow: 0 0 15px rgba(107, 142, 35, 0.2);
        /* Olive green shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      #floorplan .image_section:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(107, 142, 35, 0.3);
      }

      #floorplan .image_section img {
        filter: blur(3px);
        /* Kept from original */
        width: 100%;
        height: auto;
        display: block;
      }

      #floorplan .floor-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 16px;
        font-weight: 600;
        padding: 12px 30px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        background-size: 400% 400%;
        animation: Gradient 3s ease infinite;
        color: #fff;
        border-radius: 29px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
      }

      #floorplan .floor-btn:hover {
        background: transparent;
        border: 2px solid #66bb6a;
        /* Light green */
        color: #66bb6a;
        box-shadow: none;
      }

      #floorplan .wrap h3 {
        color: #fff;
        margin: 0;
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 600;
        background: linear-gradient(90deg, #388e3c 0%, #4caf50 100%);
        /* Forest to medium green */
        text-align: center;
        font-family: var(--nunito_font);
        /* Assumes Nunito from global :root */
      }

      /* Animation */
      @keyframes Gradient {
        0% {
          background-position: 0 50%;
        }

        50% {
          background-position: 100% 50%;
        }

        100% {
          background-position: 0 50%;
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Design */
      @media only screen and (min-width: 1700px) {
        #floorplan .container {
          max-width: 1550px !important;
        }
      }

      @media only screen and (max-width: 1440px) {
        #floorplan .section-title h2 {
          font-size: 32px;
        }
      }

      @media only screen and (max-width: 1367px) {
        #floorplan .section-title h2 {
          font-size: 32px;
        }
      }

      @media only screen and (max-width: 1281px) {
        #floorplan .floor-btn {
          font-size: 16px;
        }

        #floorplan .section-title h2 {
          font-size: 30px;
        }
      }

      @media only screen and (max-width: 767px) {
        #floorplan .section-title span {
          font-size: 20px;
        }

        #floorplan .section-title h2 {
          font-size: 26px;
          text-align: center;
        }

        #floorplan .col-lg-4 {
          margin-bottom: 40px;
        }

        #floorplan .floor-btn {
          padding: 8px 25px;
          font-size: 14px;
        }

        #floorplan {
          padding: 30px 0;
        }

        #floorplan .section-title.text-center {
          margin-bottom: 30px;
        }
      }
    


/* Amenities */

      /* Custom Styling for #amenities Section */
      #amenities {
        background: var(--bg_color);
        padding: 55px 0;
        position: relative;
        overflow: hidden;
      }

      #amenities .container {
        /* max-width: 1550px; */
        margin: 0 auto;
        padding: 0 20px;
      }

      #amenities .section-title.text-center {
        max-width: 760px;
        margin: 0 auto;
        padding-bottom: 50px;
        animation: fadeInUp 0.6s ease-out;
      }

      #amenities .section-title span {
        color: #388e3c;
        font-size: 24px;
        font-weight: 700;
      }

      #amenities .section-title h2 {
        font-size: 35px;
        font-weight: 600;
        color: var(--sub_text);
        position: relative;
      }

      #amenities .section-title h2::after {
        content: '';
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      /* Custom Grid System */
      #amenities .grid-container {
        padding-top: 45px;
        /* Replaces .row.pt-45 */
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns for large screens */
        gap: 15px;
        /* Consistent spacing */
        justify-content: center;
      }

      #amenities .grid-item {
        background: linear-gradient(135deg, #fef9eb 0%, #f1f8e9 100%);
        padding: 20px 30px 30px;
        margin-bottom: 30px;
        border-radius: 15px;
        text-align: center;
        transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
      }

      #amenities .grid-item:hover {
        background: #fff;
        box-shadow: 0 0 15px rgba(107, 142, 35, 0.2);
        transform: translateY(-5px);
      }

      #amenities .grid-item .amenities-img {
        padding: 15px 0;
        width: 50%;
        transition: transform 0.3s ease;
      }

      #amenities .grid-item:hover .amenities-img {
        transform: scale(1.1);
      }

      #amenities .grid-item h3 {
        margin-bottom: 10px;
        color: #388e3c;
        font-size: 24px;
        font-weight: 700;
        font-family: var(--nunito_font);
        transition: color 0.3s ease;
      }

      #amenities .grid-item:hover h3 {
        color: #6b8e23;
      }

      #amenities .grid-item p {
        margin-bottom: 10px;
        font-size: 18px;
      }

      /* Animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Grid Adjustments */
      @media only screen and (max-width: 1199px) {
        #amenities .grid-container {
          grid-template-columns: repeat(3, 1fr);
          /* 3 columns for medium screens */
        }
      }

      @media only screen and (max-width: 991px) {
        #amenities .grid-container {
          grid-template-columns: repeat(2, 1fr);
          /* 2 columns for smaller screens */
        }
      }

      @media only screen and (max-width: 767px) {
        #amenities .section-title span {
          font-size: 20px;
        }

        #amenities .section-title h2 {
          font-size: 26px;
          text-align: center;
        }

        #amenities .grid-container {
          grid-template-columns: repeat(2, 1fr);
          /* 2 columns for mobile */
        }

        #amenities .grid-item .amenities-img {
          width: 55%;
        }

        #amenities .grid-item {
          padding: 15px 30px 15px;
          margin-bottom: 15px;
        }

        #amenities .grid-item h3 {
          font-size: 14px;
        }

        #amenities {
          padding: 30px 0;
        }
      }

      @media only screen and (max-width: 479px) {
        #amenities .grid-container {
          grid-template-columns: 1fr;
          /* 1 column for very small screens */
        }
      }
    


/* Location adv */

      /* Custom Styling for #location Section */
      #location {
        background-image: url(../img/bg-map-footer.png);
        /* Kept from original */
        padding: 55px 0;
        /* Matches .ptb-70 */
        position: relative;
        overflow: hidden;
      }

      #location .container {
        max-width: 1550px;
        /* Matches large screen media query */
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Custom Grid System */
      #location .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 equal columns for large screens */
        gap: 30px;
        /* Spacing between content and image */
        align-items: center;
        /* Vertically center items */
      }

      #location .grid-item {
        width: 100%;
      }

      #location .highlight-content.section-title {
        animation: fadeInUp 0.6s ease-out;
      }

      #location .section-title span {
        color: #388e3c;
        /* Forest green */
        font-size: 24px;
        font-weight: 700;
      }

      #location .section-title h2 {
        font-size: 35px;
        font-weight: 600;
        color: var(--sub_text);
        /* Assumes #000 */
        position: relative;
        margin-top: 5px;
        margin-bottom: 0;
      }

      #location .section-title h2::after {
        content: '';
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        position: absolute;
        bottom: -15px;
        left: 0;
        /* Left-aligned for content section */
        border-radius: 2px;
      }

      #location .list-content {
        position: relative;
        z-index: 1;
        margin-top: 15px;
        margin-bottom: 15px;
        list-style: none;
        padding: 0;
        max-width: 600px;
      }

      #location .list-content li {
        font-size: 18px;
        color: var(--sub_text);
        /* Assumes #000 */
        position: relative;
        padding: 5px 0;
        display: flex;
        align-items: center;
      }

      #location .list-content li img {
        padding-right: 10px;
        transition: transform 0.3s ease;
      }

      #location .list-content li:hover img {
        transform: scale(1.1);
      }

      #location .list-content li p {
        margin-bottom: 0;
        font-size: 18px;
      }

      #location .list-content li b {
        padding-left: 5px;
        padding-right: 5px;
        color: #388e3c;
        /* Forest green for bold text */
      }

      #location .about-img {
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
      }

      #location .about-img img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease;
      }

      #location .about-img:hover img {
        transform: scale(1.02);
      }

      /* Animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Grid Adjustments */
      @media only screen and (min-width: 1700px) {
        #location .container {
          max-width: 1550px !important;
        }
      }

      @media only screen and (max-width: 1440px) {
        #location .section-title h2 {
          font-size: 32px;
        }
      }

      @media only screen and (max-width: 1367px) {
        #location .section-title h2 {
          font-size: 32px;
        }
      }

      @media only screen and (max-width: 1281px) {
        #location .section-title h2 {
          font-size: 30px;
        }
      }

      @media only screen and (max-width: 767px) {
        #location .grid-container {
          grid-template-columns: 1fr;
          /* 1 column for mobile */
          gap: 20px;
        }

        #location .section-title span {
          font-size: 20px;
        }

        #location .section-title h2 {
          font-size: 26px;
          text-align: center;
        }

        #location .section-title h2::after {
          left: 50%;
          transform: translateX(-50%);
          /* Center underline on mobile */
        }

        #location .list-content {
          margin-top: 0;
          margin-bottom: 25px;
        }

        #location .list-content li {
          font-size: 15px;
        }

        #location .list-content li b {
          font-size: 17px;
        }

        #location .about-img {
          margin-bottom: 0;
        }

        #location {
          padding: 30px 0;
        }
      }
    

/* contact us */


      /* Custom Styling for #contactus Section */
      #contactus {
        background-image: url(../img/bg-map-footer.png);
        /* Kept from original */
        padding: 55px 0;
        /* Matches .ptb-70 */
        position: relative;
        overflow: hidden;
      }

      #contactus .container {
        /* max-width: 1550px; Matches large screen media query */
        margin: 0 auto;
        padding: 0 20px;
      }

      #contactus .section-title.text-center {
        margin-bottom: 40px;
        /* Matches original */
        animation: fadeInUp 0.6s ease-out;
      }

      #contactus .section-title span {
        color: #388e3c;
        /* Forest green */
        font-size: 24px;
        font-weight: 700;
      }

      #contactus .section-title h2 {
        font-size: 35px;
        font-weight: 600;
        color: var(--sub_text);
        /* Assumes #000 */
        position: relative;
      }

      #contactus .section-title h2::after {
        content: '';
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      /* Left Column - About Developer */
      #contactus .about_developer {
        padding: 20px;
      }

      #contactus .about_developer .title h4 {
        font-size: 24px;
        font-weight: 600;
        color: #388e3c;
        /* Forest green */
        margin-bottom: 15px;
      }

      #contactus .about_developer p.about-developer {
        font-size: 18px;
        color: var(--sub_text);
        /* Assumes #000 */
        transition: color 0.3s ease;
      }

      #contactus .phone_element.no_borders {
        padding-top: 5px;
        border-top: none;
      }

      #contactus .phone_element h6 {
        font-size: 18px;
        font-weight: 600;
        color: #388e3c;
        /* Forest green */
        margin-bottom: 10px;
      }

      #contactus .phone_element a {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: var(--sub_text);
        /* Assumes #000 */
      }

      #contactus .phone_element a img {
        transition: transform 0.3s ease;
      }

      #contactus .phone_element a:hover img {
        transform: scale(1.1);
      }

      #contactus .phone_element a span {
        font-size: 22px;
        font-weight: 600;
        color: #66bb6a;
        /* Light green */
        padding-left: 12px;
      }

      #contactus .phone_element a span em {
        color: var(--sub_text);
        /* Assumes #000 */
        display: block;
        font-style: inherit;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 900;
      }

      /* Right Column - Contact Form */
      #contactus .contact-form {
        max-width: 800px;
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
      }

      #contactus .form-box.col-lg-5 {
        width: 400px;
        padding: 35px;
        background: linear-gradient(180deg, #dcedc8 0%, #f1f8e9 49%, #c5e1a5 100%);
        /* Green gradient */
        outline: 1px solid rgba(107, 142, 35, 0.3);
        /* Olive green outline */
        outline-offset: -10px;
        border-radius: 15px;
        margin-left: auto;
      }

      #contactus .inner h2 {
        color: #388e3c;
        /* Forest green */
        font-size: 26px;
        font-weight: 500;
        margin-bottom: 15px;
        text-align: center;
      }

      #contactus .form-row {
        margin-bottom: 26px;
      }

      #contactus .form-box input {
        max-width: 100%;
        margin-bottom: 10px;
        padding: 5px 0;
        height: auto;
        background-color: transparent;
        border-width: 0 0 1px;
        border-style: solid;
        border-bottom: 1px solid #388e3c;
        /* Forest green */
        width: 100%;
        line-height: 1.8em;
        font-size: 16px;
        font-weight: 400;
        color: var(--sub_text);
        /* Assumes #000 */
        outline: none;
      }

      #contactus .form-box input:focus {
        border-bottom: 2px solid #6b8e23;
        /* Dark olive green */
      }

      #contactus .form_btn {
        text-align: center;
      }

      #contactus .submit_button {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1.5px;
        background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
        /* Dark olive to lime green */
        color: #fff;
        padding: 8px 24px;
        font-size: 16px;
        border: none;
        border-radius: 100px;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      #contactus .submit_button:hover {
        background: transparent;
        border: 1px solid #66bb6a;
        /* Light green */
        color: #66bb6a;
      }

      #contactus .checkbox-section {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
      }

      #contactus .checkbox-section input[type="checkbox"] {
        width: auto;
      }

      #contactus .checkbox-section p {
        font-size: 10px;
        color: var(--sub_text);
        /* Assumes #000 */
        padding: 10px;
        margin: 0;
        line-height: unset;
        padding-bottom: 0;
      }

      /* Animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Adjustments */
      @media only screen and (min-width: 1700px) {
        #contactus .container {
          max-width: 1550px !important;
        }
      }

      @media only screen and (max-width: 1440px) {
        #contactus .inner h2 {
          margin-bottom: 12px;
          font-size: 22px;
        }

        #contactus .section-title h2 {
          font-size: 32px;
        }
      }

      @media only screen and (max-width: 1367px) {
        #contactus .section-title h2 {
          font-size: 32px;
        }

        #contactus .form-box.col-lg-5 {
          top: 0%;
          right: 1%;
        }
      }

      @media only screen and (max-width: 1281px) {
        #contactus .form-box.col-lg-5 {
          padding: 30px;
        }

        #contactus .submit_button {
          font-size: 15px;
        }

        #contactus .section-title h2 {
          font-size: 30px;
        }
      }

      @media only screen and (max-width: 767px) {
        #contactus .section-title span {
          font-size: 20px;
        }

        #contactus .section-title h2 {
          font-size: 26px;
          text-align: center;
        }

        #contactus .form-box.col-lg-5 {
          width: 100%;
          right: 0;
        }

        #contactus .submit_button {
          width: auto;
        }

        #contactus {
          padding: 30px 0;
        }

        #contactus .about_developer p.about-developer {
          font-size: 16px;
          text-align: justify;
        }

        #contactus .form-row {
          margin-bottom: 8px;
        }
      }
    


/* <!-- Modal --> */

  /* Custom Styling for #exampleModal */
  #exampleModal .modal-dialog {
    max-width: 800px;
  }

  #exampleModal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
  }

  #exampleModal .modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background-color: #fff;
  }

  /* Left Column */
  #exampleModal .left_col {
    max-width: 50%;
    flex: 0 0 50%;
    background-color: #fef9eb;
    /* Base color from original */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
  }

  #exampleModal .left_col .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/Banner/banner1.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  #exampleModal .left_col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(56, 142, 60, 0.7); */
    /* Forest green overlay with 70% opacity */
    z-index: 2;
  }

  #exampleModal .left_col .content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 99;
    color: #fff;
  }

  #exampleModal .left_col img {
    margin-bottom: 15px;
    max-width: 220px;
    transition: transform 0.3s ease;
  }

  #exampleModal .left_col:hover img {
    transform: scale(1.05);
  }

  #exampleModal .left_col .project_name {
    color: #9acd32;
    /* Lime green */
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
  }

  #exampleModal .left_col .typo {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f1f8e9;
    /* Pale green */
  }

  #exampleModal .left_col .price {
    font-size: 20px;
    /* background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%); Dark olive to lime green */
    padding: 7px 15px;
    width: 100%;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
  }

  /* Right Column (Form) */
  #exampleModal .right_col {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 30px;
    background-color: #fff;
  }

  #exampleModal .form-group {
    margin-bottom: 20px;
    position: relative;
  }

  #exampleModal .form-input {
    padding: 5px 10px;
    width: 100%;
    height: 40px;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #388e3c;
    /* Forest green */
    transition: border-bottom 0.3s ease;
    font-size: 18px;
    color: var(--sub_text);
    /* Assumes #000 */
  }

  #exampleModal .form-input:focus {
    border-bottom: 2px solid #6b8e23;
    /* Dark olive green */
  }

  #exampleModal .main_button {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #6b8e23 0%, #9acd32 100%);
    /* Dark olive to lime green */
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    padding: 12px 20px;
    color: #fff !important;
    letter-spacing: 1px;
    border-radius: 29px;
    transition: all 0.3s ease-in-out;
    width: auto;
  }

  #exampleModal .main_button:hover {
    background: transparent;
    border: 1px solid #66bb6a;
    /* Light green */
    color: #66bb6a !important;
  }

  #exampleModal .checkbox-section {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  #exampleModal .checkbox-section input[type="checkbox"] {
    width: auto;
  }

  #exampleModal .checkbox-section p {
    font-size: 10px;
    color: var(--sub_text);
    /* Assumes #000 */
    padding: 10px;
    margin: 0;
    line-height: unset;
    padding-bottom: 0;
  }

  /* Close Button */
  #exampleModal .btn-close {
    position: absolute;
    color: #fff;
    opacity: 1;
    text-shadow: none;
    font-size: 40px;
    top: 10px;
    right: 20px;
    z-index: 10;
    padding: 0;
    background-color: transparent;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  #exampleModal .btn-close:hover {
    transform: scale(1.2);
  }

  /* Animation */
  @keyframes Gradient {
    0% {
      background-position: 0 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0 50%;
    }
  }

  /* Responsive Adjustments */
  @media only screen and (max-width: 767px) {
    #exampleModal .modal-body {
      flex-direction: column;
    }

    #exampleModal .left_col,
    #exampleModal .right_col {
      max-width: 100%;
      padding: 15px;
    }

    #exampleModal .left_col img {
      max-width: 170px;
    }

    #exampleModal .left_col .project_name {
      font-size: 20px;
    }

    #exampleModal .left_col .typo {
      font-size: 16px;
    }

    #exampleModal .left_col .price {
      font-size: 16px;
    }

    #exampleModal .main_button {
      margin-top: 0;
      font-size: 17px;
      padding: 10px 30px;
    }

    #exampleModal .form-group {
      margin-bottom: 10px;
    }
  }

  @media (min-width: 576px) {
    #exampleModal .modal-dialog {
      min-height: calc(100% - 3.5rem);
    }
  }
