
body {
    font-family: 'Poppins', sans-serif;
    font-size: 92%;
}
h1, h2, h3, p, span {
    font-family: 'Poppins', sans-serif;
}

.navbar-custom {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-custom.shrink {
    padding: 6px 0 !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: 0.25s ease-in-out;
}

.nav-link {
    font-weight: 600;
    color: #333333 !important;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: #58BA55 !important;
}

/* Buttons */
.btn-login {
    background: #00BF41 !important;
    border-radius: 10px !important;
    padding: 6px 10px !important;
    font-weight: 600 !important;
    color: #fff !important;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1) !important;
}

.btn-login:hover {
    background: #00BF41 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 0 5px rgba(88, 186, 85, 0.319), 0 4px 10px rgba(0, 0, 0, 0.18) !important;
}
.btn-login-outline {
    border: 1px solid #00BF41 !important;
    background-color: #fff;
    border-radius: 10px !important;
    padding: 6px 10px !important;
    font-weight: 600 !important;
    color: #00BF41 !important;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1) !important;
}

.btn-login-outline:hover {
    border: 1px solid #00BF41 !important;
    background: #fff !important;
    transform: scale(1.02) !important;
    box-shadow: 0 0 5px rgba(88, 186, 85, 0.319), 0 4px 10px rgba(0, 0, 0, 0.18) !important;
}

.btn-register {
    background: #FFCB05 !important;
    border-radius: 10px !important;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    color: #000 !important;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1) !important;
}

.btn-register:hover {
    background: #FFCB05 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 0 5px #ffcd055d, 0 4px 10px rgba(0, 0, 0, 0.18) !important;
}
.btn-register, .btn-login:focus {
   outline: none !important;
   border: none !important;
}
.btn-submit {
    background: #FFCB05 !important;
    padding: 11px !important;
    border-radius: 10px !important;
    width: 100% !important;
    font-weight: 700 !important;
    color: #000 !important;
    border: none !important;
    font-size: 15px !important;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1) !important;
}

.btn-submit:hover {
    background: #FFCB05 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 0 10px #ffcd0559, 0 4px 10px rgba(0, 0, 0, 0.18) !important;
}

.hero-section {
    background: url("../images/Hero-bg.png") center/cover no-repeat;
    position: relative;
    padding: 130px 0;
   
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-heading {
    color: #FFFFFF;
    font-size: 35px;
    line-height:1.5;
    font-weight: 700;
}

.hero-text {
    margin-top: 12px;
    color: #E7E2DF;
    font-size: 20px;
    line-height: 25px;
}

/* Form Card */
.register-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    border: 1px solid #e9e9e9;
    margin-top: -30px;
}

.register-title {
    background: #00BF41;
    color: #ffffff;

    padding: 9px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    height: 85px;

}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 10px 12px;
    border: 2px solid #dcdcdc;
    transition: 0.25s ease;
    font-size: 14px;
}

.form-control:hover,
.form-select:hover {
    border-color: #58BA55;
}

.form-control:focus,
.form-select:focus {
    border-color: #58BA55 !important;
    box-shadow: 0 0 0 3px rgba(88, 186, 85, 0.25) !important;
}

.form-note {
    font-size: 13px;
    color: #6f6f6f;
    margin-top: 8px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBtn {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes tapBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.92);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Effects */
@media (max-width: 768px) {

    /* .btn-login,
    .btn-register,
    .btn-submit {
        animation: floatBtn 3s ease-in-out infinite;
    }

    .btn-login:active,
    .btn-register:active,
    .btn-submit:active {
        animation: tapBounce 0.25s ease-out;
    } */

    .hero-heading {
        font-size: 22px;
    }

    .register-card {
        margin-top: -30px;
    }
}

.navbar-toggler:focus {
    border: 1px solid #3E9C3C !important;
    box-shadow: none !important
}

.text-gradient{
    background: linear-gradient(to right, rgb(236, 41, 59), rgb(255, 203, 5), rgb(88, 186, 85)) text;
    -webkit-text-fill-color: transparent;
}

/* Default: image on right */
.hero-section-1 {
    position: relative;
}

/* Mobile view: move image into background */
@media (max-width: 768px) {
    .hero-section-1 .hero-img-col {
        display: none; /* hide the inline image */
    }

    .hero-section-1 {
        background: url("assets/images/Kamaraj.png") no-repeat center top;
        background-size: contain; /* Adjust so it fits nicely */
        background-position: center top;
    }
}




.rating-readonly {
    /* display: inline-flex; */
    align-items: center;
    gap: .6rem;
    position: relative;
  }
  
  .stars-outer {
    color: #ccc;
    font-size: 3rem;
    line-height: 1;
    position: relative;
    z-index: 1;
  }
  
  .stars-inner {
    color: #FFCC00;
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 2;
  }
  
  .stars-outer span,
  .stars-inner span {
    display: inline-block;
  }
  
  /* rating number */
  .rating-value {
    font-size: 0.95rem;
    color: #222;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .stars-outer, .stars-inner {
      font-size: 1.2rem;
    }
    .rating-value {
      font-size: 0.85rem;
    }
  }

  /* Card container */
.login-card {
    width: 350px;
    background: transparent;
    border-radius: 0px;
    overflow: hidden;
}

/* Image */
.login-img-wrapper img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}
.login-img-wrapper{
    margin-bottom: -45px;
}
.login-form{
    background: white;
    border-radius: 30px 30px 0px 0px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}
/* Orange curved header */
.login-header {
    background: #FFA048;
    font-size: 17px;
    font-weight: 600;
    padding: 15px 0 45px 0px;
    margin-top: -18px;
    border-top-left-radius: 30px;
    border-top-right-radius:30px;
    position: relative;
}
.login-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 39%);
}
/* Responsive */
@media (max-width: 480px) {
    .login-card {
        width: 100%;
        /* margin: 0 15px; */
    }
}
.login-btn {
    background: #00BF41 !important;
    padding: 11px !important;
    border-radius: 10px !important;
    width: 100% !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 15px !important;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1) !important;
}

.login-btn:hover {
    background: #00BF41 !important;
    transform: scale(1.02) !important;
    box-shadow: 0 0 10px #00bf4055, 0 4px 10px rgba(0, 0, 0, 0.18) !important;
}

/* Icon background colors */
.bg-lightred   { background: #fdecec; }
.bg-lightblue  { background: #eef3ff; }
.bg-lightgreen { background: #ecffef; }
.bg-lightpurple{ background: #eef0ff; }

/* Icon circle */
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
}

/* Hover effect */
.feature-card {
  transition: all 0.28s ease-in-out;
  background: #ffffff;
  height: 100%;
    text-align: left;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Responsive Text */
@media (max-width: 576px) {
  h2 {
    font-size: 24px !important;
  }
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.testimonial-card {
    transition: .3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.quote-icon {
    font-size: 32px;
    color: #00a451;
    font-weight: bold;
    line-height: 0;
}
@media (max-width: 576px) {
    .testimonials-section h2 {
        font-size: 28px !important;
    }
    .testimonials-section p {
        font-size: 15px !important;
    }
}
.testimonials-section{
    background-color: #f2f2f2;
}


.faq-section {
    background: #58ba5585; /* Green background */
}

/* .faq-wrapper {
    max-width: 900px;
} */

.faq-icon i {
    font-size: 28px;
    color: #22a537;
}

/* Give each accordion item its own border */
.accordion-item {
    border: 1px solid #ddd !important;
    border-radius: 0px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

/* Button styling */
.accordion-button {
    border: 1px solid #ddd !important;
    background: #fff;
    padding: 14px 18px;

    font-weight: 600;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.accordion-button:focus{
    box-shadow: none !important;
}
/* Remove default Bootstrap border when opened */
.accordion-button:not(.collapsed) {
    background: #8d8d8d29 !important;
    color: #333 !important;
    
    box-shadow: none !important;
}


/* Create a pseudo-element for our plus/minus aligned to the right */
.accordion-button::before {
    content: "+";
    position: absolute;
    right: 18px;                 /* horizontal position (match native look) */
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: #333;
    transition: transform .18s ease, opacity .18s ease;
    line-height: 1;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* When expanded, show minus instead of plus */
  .accordion-button:not(.collapsed)::before {
    content: "−"; /* Unicode minus */
    font-size: 22px;
    color: #111;
  }
  
  /* Optional: slight async movement when toggling */
  .accordion-button:not(.collapsed)::before {
    transform: translateY(-50%) scale(1);
  }
  .accordion-button.collapsed::before {
    transform: translateY(-50%) scale(1);
  }
  
  /* Style of opened button */
  .accordion-button:not(.collapsed) {
    background: #e9f7ef;
    color: #1b6f3a;
        /* border: 1px solid #22a537 !important; */
  }
  
  /* Accordion body styling */
  .accordion-body {
    border-top: 1px solid #f1f1f1;
    padding: 14px 20px;
  }
  
  /* Keep things tidy on small screens */
  @media (max-width: 576px) {
    .accordion-button {
      padding-right: 48px;
    }
    .accordion-button::before {
      right: 14px;
      font-size: 18px;
    }
    .footer-section{
        text-align: center !important;
    }
    .hero-content-reponsive{
        height: 110px !important;
    }
  }

  @media (max-width: 768px) {
    .mob-responsive{
        justify-content: center !important;
        background-color: #ffffff87;
        border-radius: 10px !important;
        width: 60%;
        margin: auto;
    }
  }

/* Body section border-top */
.accordion-body {
    border-top: 1px solid #eee;
    padding: 14px 20px;
}
.accordion-button::after{
    display: none !important;
}

.footer-section {
    background: #111926;
    color: #cfcfcf;
  }
  .footer-links li a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
  }
  .footer-links li a:hover {
    text-decoration: underline;
  }
  .footer-divider {
    border-color: rgb(255 255 255 / 43%);
  }
  .social-icon {
    font-size: 20px;
    color: #cfcfcf;
    margin-left: 12px;
    text-decoration: none;
  }
  .social-icon:hover {
    color: #ffffff;
  }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Scroll container */

/* Each section */
.section {
    /* height: 100vh; */
    scroll-snap-align: start;
    display: flex;
    align-items: center;
}

/* Mobile: disable snap & auto adjust height */
@media (max-width: 768px) {
    .snap-container {
        scroll-snap-type: none;
        height: auto;
    }

    .section {
        height: auto !important;
        scroll-snap-align: none;
        padding: 100px 0;
    }
}


/* Remove border */
.navbar-toggler {
    border: none !important;
    padding: 6px;
}

/* Disable Bootstrap outline */
.navbar-toggler:focus {
    box-shadow: none !important;
    border: none !important;
}

/* Hamburger lines */
.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #333;
    display: block;
    border-radius: 3px;
    margin: 6px 0;
    transition: 
        transform .35s ease-in-out,
        opacity .25s ease-in-out,
        background-color .35s ease-in-out;
}

/* When opened */
.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background-color: #3E9C3C; /* color when active */
}

/* Top line → rotates */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

/* Middle line → hides */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

/* Bottom line → rotates */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
