@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'sans-serif';
    overflow-x: hidden;
}
input[type="text"],  input[type="email"],  input[type="tel"],  input[type="date"],  textarea,  select {
    margin: 0 0 15px !important;
    padding: 14px 22px;
    width: 100%;
    outline: 0;
    font-family: 'Inter', 'sans-serif' !important;
    border-radius: 12px;
    font-size: 15px !important;
    color: #666;
    border: none;
    box-shadow: 0px 0px 10px #0000001a;
}
input[type="submit"] {
    text-transform: uppercase;
    border: 0;
    letter-spacing: 1.5px;
    outline: none;
    font-family: 'Inter', 'sans-serif';
    font-size: 15px;
    color: #fff;
    background-color: #006efe;
    padding: 13px 30px;
    font-weight: 500;
    width: max-content;
    display: block;
    border-radius: 12px;
    line-height: normal;
}

textarea {
    height: 120px;
    margin-bottom: 5px
}
h1,  h2,  h3,  h4,  h5,  h6 {
    margin: 0 0 15px 0;
    color: #000;
    font-weight: 600;
    text-transform: inherit;
    line-height: inherit;
    letter-spacing: 0px;
    font-family: 'Inter', 'sans-serif';
}
h1 {
    font-size: 35px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
    font-weight: 700;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    margin: 0 0 10px 0;
    font-family: 'Inter', 'sans-serif';
    font-size: 15px;
    color: #333;
    line-height: 24px;
    letter-spacing: 0px;
}
ul {
    margin: 0;
    padding: 0 !important;
    list-style-type: none;
}
li{
    display: inline-block;
}
ul,  li,  a {
    list-style-type: none;
    font-family: 'Inter', 'sans-serif';
    color: #303030;
    font-size: 14px;
    text-decoration: none !important;
    letter-spacing: 0px;
    margin: 0 !important;
}
span {
    font-family: 'Inter', 'sans-serif' !important;
}
a:hover {
    transition: 0.8s;
    text-decoration: none !important;
}
figure {
    margin: 0 !important;
}

.banner figure.banner-logo img, footer figure.footer-logo img {
    max-width: 100%;
    margin-bottom: 10px;
    width: 150px;
}

.heading {
  margin-bottom: 40px !important;
}

.heading h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.heading p {
  color: #666;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

header img, 
footer figure.footer-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}



.btm {
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btm.btn-primary  {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    border: 1px solid #84cc16 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 4px 20px rgba(108, 193, 0, 0.5);
}

.btm.btn-primary::before {
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btm.btn-primary:hover, .contact-section button:hover {
  background-color: #5ab000 !important;
}

.btm.btn-primary:hover::before {
    left: 100%;
}

button.btn.btn-primary {
    background: #000;
    float: right;
}

.banner form button, .contact-form button {
  display: block;
  width: 100%;
  background: #7fc241;
  color: #fff;
  border: none;
  padding: 12px;
  position: relative;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s;
}
 
.banner form button::before, 
.contact-section button::before, 
 {
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.banner form button:hover::before,
.contact-section button:hover::before {
    left: 100%;
}

.banner form button:hover, 
.contact-form button:hover {
  background: #5dbb2a;
}


/* SLICK SLIDER */

button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
    position: absolute;
    z-index: 11;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 50px;
    height: 50px;
    text-indent: 750px;
    overflow: hidden;
    border-radius: 50px;
    color: #15154c;
    background: none;
    border: 1px solid #15154C;
}
button.slick-prev.slick-arrow:hover{
    background: #15154C;
    transition: 0.9s;
    color: #fff;
}
button.slick-next.slick-arrow:hover{
    background: #15154C;
    transition: 0.9s;
    color: #fff;
}
button.slick-prev.slick-arrow:after {
    content: "\f053";
}
button.slick-next.slick-arrow:after {
    content: "\f054";
}
button.slick-prev.slick-arrow:after, button.slick-next.slick-arrow:after {
    position: absolute;
    top: 4px;
    left: 7px;
    height: 40px;
    width: 40px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-indent: 0;
    font-size: 16px;
}
button.slick-prev.slick-arrow {
    left: -52%;
    top: 89%;
}
button.slick-next.slick-arrow {
    left: -45%;
    top: 89%;
}

/* Hide the normal cursor */
.cursor {
  cursor: none;
  background: none !important;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dot (main cursor) */
.cursor-dot {
  position: fixed;
  top: 12px;
  left: 11px;
  width: 8px;
  height: 8px;
  background: #6dae10;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Outline (lag circle) */
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #6dae10;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}



/*HEADER SECTION*/

header {
    background-color: #e5e7eb;
    box-shadow: 0px -30px 36px #000000;
    margin-bottom: 3px;
    position: fixed;
    width: 100%;
    padding: 4px 0;
    z-index: 99;
}

ul.nav {
    display: flex !important;
    justify-content: flex-end;
}

ul.nav li {
    padding: 8px 12px;
}

ul.nav li a.nav-link {
    position: relative;
    padding: 0;
    color: #000;
    font-weight: 300;
    font-size: 18px;
}

ul.nav li a.nav-link::before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #84cc16, #365314d0);
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

ul.nav li a.nav-link:hover {
    color: #bac726;
    transform: translateY(-1px);
}

ul.nav li a.nav-link:hover::before {
   width: 100%;
}

header .modal {
  display: none; /* initially hidden */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal Content */
header .modal-content {
  background-color: #d8d3d3;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  position: relative;
}

header .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}

header .login-box {
  text-align: center;
}

header figure.logo-img  {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px !important;
}

header .logo {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
}

header .input-group {
  margin: 10px 0;
}
header .input-group input {
  width: 90%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

header .login-btn {
  width: 90%;
  padding: 10px;
  background: #79c000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  float: left;
}
header .login-btn:hover {
  background: #79c000;
}

header p.mt-3 {
    text-align: left;
    padding-top: 50px !important;
}

header p.mt-3 a {
  transition: all.5s;
}

header p.mt-3 a:hover {
  color: #79c000;
}

.offcanvas-top {
    height: 80vh;
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
}

.offcanvas-header figure.logo {
    height: 130px;
}

.btn-close {
    width: 12em;
}

.offcanvas-body ul.nav {
    flex-direction: column;
}


/* BANNER SECTION */

.banner {
  background: linear-gradient(135deg, #1e2a47, #79c000);
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 0;
  height: 100vh;
}

.banner::before {
    z-index: 99999999 !important;
    position: absolute;
    content: '';
    /* top: 31px; */
    /* left: 0; */
    right: 60px;
    top: 23%;
    background: url(assets/images/download.svg) no-repeat;
    pointer-events: none;
    width: 189px;
    height: 246px;
}

.banner figure.banner-logo {
    height: 150px;
}

.banner-cnt {
    text-align: center;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 0px;
  color: #fff;
}

.banner .highlight {
  font-weight: bold;
  color: #e5e7eb;
}

.banner .sub {
  font-weight: 700;
  color: #d0ff9b;
}

.banner p {
  font-size: 1.3rem;
  max-width: 800px;
  color: #e5e7eb;
  margin: 0 auto;
}

.banner .buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner .modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* Modal Content */
.banner .modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.banner .close-btn {
  text-align: right;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.banner .modal-content h2 {
    font-size: 23px;
    line-height: 1;
    margin-bottom: 10px;
}

.banner .modal-content p {
    color: #000;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 300;
}

.banner form {
  display: flex;
  flex-direction: column;
}

.banner form label {
  margin-top: 10px;
  color: #333;
  text-align: left;
}

.banner form input, .banner form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.banner form textarea {
  resize: vertical;
  min-height: 80px;
}


/* SERVICES SECTION */

.services-section {
  background: #e5e7eb;
  text-align: center;
  padding: 100px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon-box {
  background-color: #6cc100;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.service-card h3 span {
    font-size: 14px;
    display: block;
    font-weight: 400;
}

.service-card p {
  font-size: 0.9rem;
  color: #777;
}

/* ABOUT SECTION */

.about-section {
  background-color: #e5e7eb;
  padding: 100px 0px;
  text-align: center;
  color: #2c3e50;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-choose {
  flex: 1 1 300px;
  text-align: left;
}

.why-choose h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-choose ul {
  list-style: none;
  padding-left: 0;
}

.why-choose li {
  font-size: 16px;
  display: block;
  margin-bottom: 15px !important;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}

.why-choose .icon {
  color: #6cc100;;
  font-weight: bold;
  margin-right: 8px;
}


.why-choose small {
  display: block;
  color: #777;
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 22px;
}

.feature-card .icon-box img {
    width: 100%;
    height: 380px;
    object-fit: fill;
}

.feature-card {
    margin-bottom: 40px !important;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

.trust-stats {
  background-color: #fff;
  padding: 40px 160px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trust-stats h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.trust-stats p {
  color: #555;
  font-size: 1rem;
  margin: 0 auto 30px;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.stat h4 {
  font-size: 2rem;
  color: #6cc100;
  margin-bottom: 5px;
}

.stat p {
  font-size: 0.95rem;
  color: #333;
}

/* PREMIUM Section */

.premium-section {
  text-align: center;
  padding: 100px 0px 0;
  margin-bottom: 100px;
}

.premium-section .col-md-3 {
  margin-bottom: 10px;
}

.premium-section .card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.premium-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.premium-section .card .icon {
  background: linear-gradient(135deg, #7fc241, #5dbb2a);
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-section .card .icon i {
    color: #fff;
    font-size: 24px;
}

.premium-section .card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.premium-section .card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* CONTACT SECTION */

.contact-section {
    background: #e5e7eb;
  padding: 100px 0px;
  text-align: center;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-section .heading p {
    font-size: 17px;
}

.image-wrapper img {
  mix-blend-mode: multiply; /* or screen depending on bg */
  background-color: transparent;
}

.contact-details figure.img img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-details h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-details h6 small {
    font-weight: 300;
    font-size: 16px;
    display: block;
}

.contact-details ul {
  list-style: none;
}

.contact-details li {
  display: -webkit-box;
  align-items: center;
  margin-bottom: 15px !important;
  color: #444;
  font-size: 0.95rem;
}

.contact-details .icon {
  background: #ecfccb;
  color: #65a30d;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 18px;
}

.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  height: 88%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.contact-form .note {
  background: #fff8e5;
  border-left: 4px solid #ffcd00;
  color: #666;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin: 15px 0 5px;
  font-size: 0.9rem;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7fc241;
  outline: none;
}


/* FAQ SECTION */

.faq-section {
    padding: 50px 0;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    box-shadow: none !important;
}

.faq-section .accordion-item {
    background: #6dad0f2b;
}

.faq-section .accordion-button:focus {
  box-shadow: none !important;
}

.faq-section .accordion-item p {
    margin-bottom: 15px;
    text-align: left;
}

.faq-section .accordion-body p span {
    background: #6fb110 !important;
    padding: 7px;
    border-radius: 50px;
}

/* FOOTER SECTION */

footer {
    padding: 100px 0px 0px;
    background: #e5e7eb;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 0 auto;
}

footer figure.footer-logo {
    width: 400px;
}
 
footer figure.footer-logo img {
    width: 344px;
}

.footer-brand p {
  color: #aaa;
  font-size: 1rem;
  margin: 0px 0 28px;
}

.social-icons a {
  display: inline-block;
  background: #1f2937;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 6px;
  margin-right: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.footer-brand, .footer-column {
    text-align: left;
}

.social-icons a:hover {
  background: #bac726; 
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #000;
}


.footer-column ul li {
  display: block;
  padding-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.footer-column ul li a:before {
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  background: #bac726;
  left: 0;
  bottom: 0;
  transition: all.5s;
}

.footer-column ul li a:hover:before {
  width: 100%;
}

.footer-column ul li a:hover {
  color: #bac726;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 0;
  padding: 20px 0;
}




@media (min-width: 1400px) {
    .container, .container-lg, .container-md, 
    .container-sm, .container-xl, .container-xxl {
        max-width: 1480px;
    }
}

@media only screen and (max-width: 1400px) {

  .premium-section .card p {
        font-size: 13px;
    }

    .premium-section .card {
        padding: 30px 16px;
    } 

    footer figure.footer-logo img {
        width: 263px;
    }
}

@media only screen and (max-width: 1200px) {

    header figure.logo-img {
        width: 216px;
    }
    .premium-section .card {
        padding: 30px 10px;
    }
  .premium-section .card p {
      font-size: 14px;
  }
  .premium-section .card h3 {
      font-size: 1rem;
  }

  footer figure.footer-logo img {
        width: 222px;
    }
}

@media only screen and (max-width: 991px) {
     
     figure.logo {
        height: auto !important;
     }

    .banner-cnt {
      width: 100%;
    }

  .premium-section .col-md-3 {
      width: 50%;
  }
  .premium-section .card {
        padding: 30px;
    }
    footer figure.footer-logo img {
        width: 160px;
    }
}

@media only screen and (max-width: 768px) {
   header .col-md-3, .col-md-9 {
    width: 50%;
  }

  .ffcanvas-header figure.logo {
     height: auto; 
    }

  .banner h1 {
    font-size: 2.5rem;;
  }

  .trust-stats {
    padding: 40px 90px; 
  }

    .contact-section h6 {
    font-size: 16px;
    margin-right: 60px;
    }   

    .premium-section .col-md-3 {
        width: 100%;
    }

    footer figure.footer-logo img {
        width: 246px;
    }
}

@media only screen and (max-width: 576px) {
    footer figure.footer-logo img {
        width: 213px;
    }
}

@media only screen and (max-width: 424px) {
  .banner h1, .heading h2 {
    font-size: 2rem;;
  }
  .heading h2 {
    line-height: 1;
  }
  .banner figure.banner-logo img, footer figure.footer-logo img {
    margin-bottom: 0 !important;
  }
  footer figure.footer-logo img {
    width: 182px;
}
}

@media only screen and (max-width: 320px) {
  .banner p {
    margin-bottom: 26px;
  }
  .banner h1, .heading h2 {
      font-size: 26px;
  }

    .trust-stats {
        padding: 30px 15px;
    }

    .stats {
      flex-direction: column;
      gap: 20px;
  }
}