@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}
:root {
  --primary-color: #1a2654;
  --secondary-color: #e60000;
  --heading-color: #17214b;
  --text-color: #505a7a;
  --white: #fff;
}
body {
  background: var(--white);
  color: var(--text-color);
  text-align: center;
}
/* slick */
.scnd-logo .slick-slide {
  margin: 0 15px; /* adjust this for more/less gap */
}
.slick-slider {
  position: initial;
}
.slick-arrow {
  background: #fff;
  border: none;
  background: var(--white);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  line-height: 34px !important;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
  top: 65%;
}
.slick-arrow:hover,
.slick-arrow:focus {
  background: var(--secondary-color);
  color: var(--white);
}
.slick-arrow::before {
  display: none;
}
.slick-prev {
  left: -16px;
  z-index: 9;
}

.slick-next {
  right: -16px;
  z-index: 9;
}

/*topbanner*/
.top-banner {
  background: #1a2654;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.top-inr img {
  width: 80%;
}
.top-inr {
  font-size: 13px;
  color: var(--white);
}
/* header */
header {
  padding: 10px 0;
}
#hamburger {
  display: none;
}
#navMenu ul {
  display: flex;
  gap: 50px;
  list-style: none;
}
#navMenu ul li a {
  color: var(--heading-color);
  position: relative;
}
#navMenu ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
}
.sitelogo img {
  width: 65%;
}
.headerbtn {
  background: var(--secondary-color);
  border-radius: 50px 0 0 50px;
  margin-right: -15px;
  padding: 12px 40px 12px 0;
  align-items: center;
}
.hdr-clldv p {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.hdr-clldv a {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}
/* hero section */

.hero-content {
  padding: 80px 20px;
  background-position: bottom center;
  background-size: cover;
  border-radius: 22px;
  min-height: calc(100vh - 140px);
}
.hero h1 {
  font-size: 55px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 65px;
  margin-bottom: 40px;
}
.hero h1 span {
  font-weight: 700;
  position: relative;
}
.hero-content span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 100%;
  height: 14px;
  background: url(../img/line.png) no-repeat;
  background-size: contain;
  right: 0;
}
.hero p {
  margin: 10px auto 25px;
  max-width: 700px;
  font-size: 17px;
}
/*schedulebox*/
.schedule-section {
  max-width: 700px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #233065;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Step Bar */
.step-bar {
  display: flex;
  width: 100%;
}

.step {
  flex: 1;
  text-align: center;
  background: #3d4b84;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
}

/* Active Step */
.step.active {
  background: var(--secondary-color);
  color: var(--white);
}
.step:nth-child(2) {
  border-right: 1px solid lightgray;
}
.step.active:after {
  position: absolute;
  content: "";
  background: #fff;
  height: 15px;
  width: 12px;
  right: -12px;
  clip-path: polygon(100% 48%, 0 0, 0 100%);
  z-index: 9;
  background: var(--secondary-color);
}
/* Inner Box */
.schedule-box {
  padding: 30px;
  text-align: center;
}

.schedule-box h2 {
  color: var(--white) !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Form Box */
.form-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.form-box input {
  width: 80%;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
  color: #333;
  height: 40px;
}

.book-btn {
  display: inline-block;
  margin-top: 30px;
  background: var(--secondary-color);
  border: none;
  color: var(--white);
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.book-btn i {
  margin-left: 10px;
}
.book-btn:hover {
  background: var(--secondary-color);
}

.schedule-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.schedule-box select,
.schedule-box button {
  padding: 10px;
  font-size: 15px;
}

.schedule-box button {
  background: var(--secondary-color);
  border: none;
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0px;
  width: 150px;
}

.schedule-box button:hover {
  background: var(--secondary-color);
}

ul.heroul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-top: 25px;
  justify-content: center;
}
ul.heroul li {
  font-size: 16px;
  color: var(--heading-color);
  position: relative;
  padding-left: 26px;
}
ul.heroul li:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background-image: url(../img/right.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 2px;
}
/* trusted section */
.trusted-section {
  text-align: center;
  padding: 70px 0 70px 0;
}

.trusted-section h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 34px;
  color: var(--heading-color);
}

.trusted .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.trusted .logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
/* Services */
.services {
  padding: 60px 0 100px 0;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 20px;
}

.services h2 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
}
.services h3 {
  margin-top: 26px;
  color: var(--heading-color);
}
.services p {
  color: #555;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.card img {
  height: auto;
  width: 18%;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 20px 25px 20px;
  flex: 0 calc(25% - 15px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #d7ddee;
  text-align: left;
}

.card h3 {
  color: var(--heading-color);
  margin-bottom: 10px;
  padding: 0px 30px 0 0;
  font-size: 20px;
  font-weight: 600;
}
/* Florida Section */
.florida {
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  margin: 0 20px;
  background: var(--heading-color);
  border-radius: 22px;
  background-size: cover;
}
.florida h3 {
  font-weight: 400;
  margin-bottom: 20px;
}
.florida h2 {
  font-size: 50px;
  margin-bottom: 40px;
  color: var(--white);
}
.inr-florida {
  display: flex;
  align-items: center;
  gap: 20px;
}
.img-bxsflorida {
  flex: 0 calc(50% - 10px);
}
.img-bxsflorida img {
  width: 100%;
  object-fit: contain;
}
.img-bxsflorida ul {
  text-align: left;
  margin-bottom: 30px;
  list-style: none;
}
.img-bxsflorida ul li {
  font-size: 16px;
  color: var(--white);
  position: relative;
  padding-left: 26px;
  margin-bottom: 24px;
}
.img-bxsflorida ul li:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background-image: url(../img/right.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 2px;
}
.btn-bxs {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.btn-bxs .book-btn {
  display: block;
  margin-top: 0px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  width: 220px;
  line-height: 32px;
  text-align: center;
  align-items: anchor-center;
}
a.call-btn {
  display: flex;
  margin-top: 0px;
  background: var(--white);
  color: #1a2654 !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  width: 220px;
  font-weight: 600;
  line-height: 32px;
  gap: 10px;
  justify-content: center;
  align-items: anchor-center;
  flex-direction: row;
}
/*work section*/
section.work-sct {
  padding: 90px 0;
  position: relative;
}
section.work-sct::before {
  position: absolute;
  content: "";
  width: 100%;
  background-image: url(../img/howitwork.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  height: 100px;
  top: 55%;
}
section.work-sct h2 {
  font-size: 50px;
  color: var(--heading-color);
}
section.work-sct p {
  font-weight: 600;
}
.work-img {
  height: 200px;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.inr-wrksct {
  display: flex;
  gap: 70px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.work-content h3 {
  font-size: 28px;
  color: var(--heading-color);
  font-weight: 600;
}
.sub-inrwrksct span {
  display: block;
  background: var(--heading-color);
  color: var(--white);
  padding: 17px 23px;
  border-radius: 50px;
  border: 2px solid var(--white);
  width: 60px;
  height: 60px;
  margin: 22px auto 18px;
}
.sub-inrwrksct {
  flex: 0 0 auto; /* Prevents flex items from shrinking */
  width: 358px; /* Fixed width so it doesn’t collapse */
  scroll-snap-align: start; /* Optional: aligns nicely on scroll */
  margin-top: 50px;
}

.sub-inrwrksct p {
  font-size: 15px;
  padding-top: 10px;
  font-weight: 400 !important;
}

/*glasssection*/
section.glass-drsct {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  margin: 0 20px;
  border-radius: 25px;
  padding: 60px;
}
.top-mnsect {
  display: flex;
  gap: 20px;
  padding: 50px 0;
  width: 88%;
  margin: 0 auto;
}
.int-glstltsct {
  width: 70%;
  text-align: left;
  padding-right: 60px;
}
.int-glstltsct p {
  padding-right: 35px;
  padding-top: 10px;
  line-height: 28px;
}
.int-glstltsct h2 {
  font-size: 38px;
  color: var(--heading-color);
}
.image-bxs {
  width: 53%;
}
.int-glsimgsct p {
  padding: 20px 0 3px 1rem;
  text-align: left;
  color: var(--white);
  font-weight: 500;
}
.int-glsimgsct {
  width: 30%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  background: var(--secondary-color);
  border-radius: 20px;
  align-items: anchor-center;
  justify-content: space-between;
}
.int-glsimgsct img {
  width: 100%;
}
.int-glsimgsct p img {
  width: 29%;
}
.icon-bxsct {
  display: flex;
  gap: 10px;
  width: 88%;
  margin: 0 auto;
}
.inrbxicnsct {
  width: 25%;
  text-align: left;
  padding: 10px 25px;
}
.inrbxicnsct img {
  width: 50px;
  padding-bottom: 10px;
}
.inrbxicnsct h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
}
.inrbxicnsct p {
  font-size: 14px;
  padding-top: 10px;
  line-height: 24px;
}
.inrbxicnsct.right-ln {
  position: relative;
}
.inrbxicnsct.right-ln::after {
  content: "";
  position: absolute;
  right: 0;
  top: 29%;
  height: 47%;
  width: 1.5px;
  background-color: #dadada75;
}
.inrbxicnsct.right-ln.pd-rgt h3 {
  padding-right: 83px;
}
/*benefits section*/
section.mn-bnftsct {
  display: flex;
  width: 90%;
  margin: 0 auto;
  gap: 20px;
  padding: 90px 0;
}
.benifitmain {
  gap: 50px;
}
.inr-bnftsct {
  width: 50%;
}
.inr-bnftsct .img-bxsflorida {
  width: 100%;
  text-align: left;
}
.inr-bnftsct .img-bxsflorida span {
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  color: var(--heading-color);
}
.inr-bnftsct .img-bxsflorida p {
  line-height: 24px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-top: 10px;
}
.benifitmain h2 {
  font-size: 50px;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.benifitmain ul {
  margin-bottom: 14px;
}
.benifitmain ul li {
  color: var(--text-color);
  font-weight: 600;
}
.benifitmain ul li:last-child {
  margin-bottom: 0;
}

.inr-bnftsct .img-bxsflorida ul li i.fa.fa-check {
  color: var(--secondary-color);
}
.inr-imgbx {
  background: #f3f4fa;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px;
  width: 80%;
  gap: 24px;
}
.inr-imgbxdv {
  width: 25%;
}
.inr-imgbxtlt p {
  padding: 0px !important;
}
.inr-bnftsct img {
  width: 100%;
}
.inr-bnftsct .btn-bxs a.call-btn {
  background: #1a2654 !important;
  color: var(--white) !important;
}
/*logo*/
.second-logo h3 {
  text-align: left;
}
.second-logo .logo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #d7ddee;
  padding: 20px !important;
  height: 150px;
  width: 100%;
}
.second-logo .logo-track .logo img {
  max-height: 75px;
}

.second-logo .logo p {
  margin-top: 10px;
}
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  border-radius: 8px;
}

.faq-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #1a2654;
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  background: #fafafa;
}

/* Question */
.faq-question {
  position: relative;
  font-weight: 600;
  color: #1a2654;
  padding-right: 25px;
}

/* + / - icons */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -6px;
  font-size: 20px;
  color: #1a2654;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  color: var(--secondary-color);
}

/* Answer container (animated height) */
.faq-answer {
  height: 0;
  overflow: hidden;
  color: #444;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-5px);
  transition: height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  will-change: height, opacity, transform;
}

/* Active answer styling */
.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}
/* Cta section */
.cta-main-sec {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  border-radius: 24px;
}
.cta-main-sec > div {
  flex: 0 50%;
}
.cta-sec-content {
  text-align: left;
  color: #fff;
}
.cta-sec-content span {
  font-size: 22px;
}
.cta-sec-content h2 {
  font-size: 50px;
  margin: 20px 0 40px;
}
.inr-ctssct img {
  width: 100%;
}
/*reviews*/
/*reviews*/

.reviews-section {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  margin-left: 96px;
  padding: 60px 0px;
}

.review-stars {
  color: #ffb400;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.review-stars img {
  width: 20%;
}
.reviews-header {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: left;
  color: var(--heading-color);
}
.lft-sct {
  flex: 0 0 15%;
}
.lft-sct img {
  width: 161px;
  float: inline-start;
}

.lft-sct {
  width: 20%;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  padding-top: 30px;
}
/* viewport hides overflow, track is translated */
.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: var(--gap);
  transition: transform 400ms ease;
  will-change: transform;
}

/* each card */
.review-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 10px 15px;
}

.google-box {
  flex: 0 0 300px;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-stars {
  color: #ffb400;
  margin-bottom: 10px;
}
.review-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: left;
}
.reviewer {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #efefef;
  padding-top: 21px;
}
.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews-section .slick-arrow {
  display: none !important;
}
.cta-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  background-size: cover;
  border-radius: 24px;
  padding: 40px 0 40px 30px;
}
.cta-bottom > div {
  flex: 0 50%;
}
.ctabottom-img img {
  width: 100%;
}
.ctabottom-text {
  text-align: left;
  color: var(--white);
}
.ctabottom-text h2 {
  font-size: 45px;
  margin-bottom: 10px;
}
.ctabottom-text span {
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  font-size: 22px;
}
.ctabottom-text p {
  margin-bottom: 40px;
}
/* Footer */
.footer {
  background: #eef0f8;
  padding: 60px 5% 15px 5%;
  margin-top: 3%;
}
.footer-links {
  text-align: left;
}
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10%;
}
.footer-logo img {
  width: 100%;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #1e2a6d; /* navy blue */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}
.footer p.cprgt-p {
  margin-top: 3%;
  font-weight: 600;
  color: #233065 !important;
  border-top: 1px solid #dbd9d9;
  padding: 2% 0 0 0;
}
.cprgt-p a {
  color: #e4262c;
}

.social-icons a:hover {
  background-color: #0b1a4a; /* darker navy on hover */
  transform: translateY(-3px);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  font-weight: 800;
  color: #002366;
}

.footer-logo span {
  color: #e60000;
}

.footer-links h4 {
  margin-bottom: 10px;
  color: #002366;
}

.footer-links ul {
  list-style: none;
  padding: 0px !important;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  color: #e60000;
}
.footer-links h4 {
  margin-bottom: 10px;
  color: #002366;
  font-weight: 600;
}
