* {
    font-family: sans-serif;
}

/* navbar section code start */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

.custom-navbar {
    /* background: linear-gradient(to bottom, #fff, #cad9e8); */
    /* Light gray gradient */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* Soft bottom shadow */
    background-color: #F8CB46;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    color: #343a40 !important;
    /* Dark text */
    font-size: 20px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #141619 !important;
    /* Bootstrap primary color on hover/active */
}

.logo {
    font-size: 29px !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.cta-section {
    background: linear-gradient(135deg, #f8cb46, #54b226);
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 1.2s ease-in-out;
}

.cta-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    padding: 14px 26px;
    background: #fff;
    color: #ff7e5f;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    color: #fff;
    background: #ff5e3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-45deg);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 200%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

.aboutcontent h3 {
    font-weight: 600;
    font-size: 2rem;
}

.aboutcontent h6 {
    font-size: 1.6rem;
}


.faq-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    /* margin-bottom: 30px; */
    color: #333;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #f8cb46, #54b226);
    color: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, #54b226, #f8cb46);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 24px;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.open {
    padding: 16px 24px;
    max-height: 500px;
}

.icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(45deg);
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
        padding: 14px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }
}

.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    padding: 30px;
    gap: 30px;
}

.faq-section {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    animation: slideInLeft 1s ease;
}

.faq-section h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item:hover {
    background-color: #fef9e7;
    border-left: 4px solid #f7c600;
    padding-left: 10px;
    transition: 0.3s ease;
}

.faq-item h6 {
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p {
    margin-bottom: 0;
    color: #555;
}

.form-section {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease;
}

.form-section h3 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c3e50;
}

.btn-apply {
    background-color: #f7c600;
    color: #fff;
    font-weight: bold;
}

.btn-apply:hover {
    background-color: #e6b800;
    color: #000;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.container-store {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
}

.heading {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: auto;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-box {
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 15px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Box Colors */
.color1 {
    background-color: #007bff;
}

.color2 {
    background-color: #28a745;
}

.color3 {
    background-color: #17a2b8;
}

.color4 {
    background-color: #ffc107;
    color: #333;
}

.color5 {
    background-color: #6f42c1;
}

.color6 {
    background-color: #fd7e14;
}

.color4:hover {
    color: #000;
}

/* Adjust color on hover for yellow bg */

@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }
}


/* About Us Section */
.about-us {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out;
}

.about-text {
    flex: 1 1 60%;
    padding: 40px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(0deg, #f8cb46, #54b226);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}


.about-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 40%;
    background: url('https://images.unsplash.com/photo-1581091012184-df4ae72b799b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    min-height: 250px;
}

/* Shared Block Styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-block {
    background: #fff;
    border-left: 6px solid;
    border-image: linear-gradient(to bottom, #f8cb46, #54b226) 1;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.9s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    font-size: 1.4rem;
    color: #54b226;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .about-text,
    .about-image {
        flex: 1 1 100%;
        padding: 20px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }
}

.footer-bar {
    background-color: #0c831f;
    padding: 15px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6600;
    /* Change this to any hover color you like */
    text-decoration: underline;
}

    .policy-title {
      font-size: 2rem;
      color: #54b226;
      text-align: center;
      margin-bottom: 30px;
    }

    .policy-section {
      margin-bottom: 30px;
    }

    .policy-heading {
      font-size: 1.4rem;
      color: #333;
      position: relative;
      padding-bottom: 8px;
      transition: color 0.3s ease;
    }

    .policy-heading::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, #f8cb46, #54b226);
      border-radius: 10px;
    }

    .policy-heading:hover {
      color: #54b226;
    }

    .policy-text {
      font-size: 1rem;
      color: #555;
      margin-top: 10px;
    }

    .policy-list {
      padding-left: 20px;
      margin-top: 10px;
    }

    .policy-list li {
      margin-bottom: 8px;
      color: #555;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media screen and (max-width: 768px) {
      .policy-title {
        font-size: 1.6rem;
      }

      .policy-heading {
        font-size: 1.2rem;
      }
    }

        .terms-title {
      font-size: 2rem;
      color: #54b226;
      text-align: center;
      margin-bottom: 30px;
    }

    .terms-section {
      margin-bottom: 30px;
    }

    .terms-heading {
      font-size: 1.4rem;
      color: #333;
      position: relative;
      padding-bottom: 8px;
      transition: color 0.3s ease;
    }

    .terms-heading::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, #f8cb46, #54b226);
      border-radius: 10px;
    }

    .terms-heading:hover {
      color: #54b226;
    }

    .terms-text {
      font-size: 1rem;
      color: #555;
      margin-top: 10px;
    }

    .terms-list {
      padding-left: 20px;
      margin-top: 10px;
    }

    .terms-list li {
      margin-bottom: 8px;
      color: #555;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media screen and (max-width: 768px) {
      .terms-title {
        font-size: 1.6rem;
      }

      .terms-heading {
        font-size: 1.2rem;
      }
    }

    
    .contact-container {
      max-width: 1100px;
      margin: 50px auto;
      padding: 40px 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    }

    .contact-title {
      text-align: center;
      font-size: 2rem;
      color: #54b226;
      margin-bottom: 40px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .contact-box {
      padding: 25px;
      border-left: 5px solid;
      border-image: linear-gradient(to bottom, #f8cb46, #54b226) 1;
      background: #fafafa;
      border-radius: 10px;
      transition: 0.3s ease;
    }

    .contact-box:hover {
      background: #f0fdf4;
      transform: translateY(-3px);
    }

    .contact-label {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #222;
    }

    .contact-text {
      font-size: 0.95rem;
      color: #555;
    }

    .contact-form {
      margin-top: 40px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 0.95rem;
      margin-bottom: 6px;
      color: #444;
    }

    .form-input, .form-textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 1rem;
      transition: border 0.3s;
    }

    .form-input:focus, .form-textarea:focus {
      border-color: #54b226;
      outline: none;
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-button {
      background: linear-gradient(to right, #f8cb46, #54b226);
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s;
    }

    .form-button:hover {
      opacity: 0.9;
    }

    @media screen and (max-width: 600px) {
      .contact-title {
        font-size: 1.6rem;
      }
    }

        .category-container {
      max-width: 1200px;
      margin: 0px auto;
      padding: 20px;
    }

    .category-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #54b226;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .category-box {
      background-color: #ffffff;
      padding: 20px 20px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
      transform: translateY(20px);
    }

    .category-box:hover {
      background-color: #f0fdf4;
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .category-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      display: block;
      transition: transform 0.3s ease;
    }

    .category-box:hover .category-icon {
      transform: scale(1.2) rotate(5deg);
    }

    .category-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      .category-title {
        font-size: 1.6rem;
      }
    }