* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 15px;
}

/* TOPBAR */
.topbar {
    background: #253b6e;
    color: #fff;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.topbar-left span {
    margin-right: 20px;
}

.topbar-left i {
    color: #788FC8;
}

.topbar-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 18px;
}

.topbar-right .emergency {
    background: #1d2f58;
    padding: 10px 14px;
}

/* HEADER */
.header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.logo img {
    height: 48px;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu {
    list-style: none;
    display: flex;
}

.menu-toggle {
    display: none;
}

.menu li {
    margin: 0 14px;
}

.menu li a {
    color: #253b6e;
    text-decoration: none;
    font-weight: 600;
    padding: 30px 0;
    position: relative;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1fb6c9;
    transition: 0.3s;
}

.menu li a:hover,
.menu li.active a {
    color: #1fb6c9;
}

.menu li a:hover::after,
.menu li.active a::after {
    width: 100%;
}

.btn-appointment {
    margin-left: 20px;
    background: #1fb6c9;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px 6px 0 6px;
    text-decoration: none;
}

.search {
    margin-left: 15px;
    font-size: 18px;
    color: #253b6e;
}

/* HERO */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    min-height: 85vh;
    display: none;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    display: flex;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    color: #fff;
    text-align: center;
    max-width: 865px;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px 8px 0px 8px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: #18c3d9;
    color: #fff;
}

.outline {
    background: #fff;
    color: #0a2540;
}

/* SLIDER NAV */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ACTIVE DOT (RING STYLE) */
.dot.active {
    background: transparent;
    opacity: 1;
}

/* OUTER RING */
.dot.active::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* INNER DOT */
.dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ================= LICENSING SECTION ================= */

.licensing-section {
    background: #fff;
    padding: 90px 0 215px 0;
    position: relative;
    overflow: hidden;
}

.licensing-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.licensing-left h1 {
    font-size: 42px;
    line-height: 1.25;
    color: #0a1f44;
    margin-bottom: 24px;
}

.licensing-left p {
    color: #3d4c63;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 560px;
}

.licensing-points {
    list-style: none;
    padding: 0;
    margin: 22px 0 35px;
}

.licensing-points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0a1f44;
}

.licensing-points li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #0fb9d8;
    font-weight: bold;
}

.licensing-btn {
    display: inline-block;
    background: #14c3d9;
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 6px 6px 0px 6px;
    font-weight: 700;
    font-size: 14px;
}

/* RIGHT */
.licensing-right {
    position: relative;
    text-align: center;
}

.licensing-illustration {

    width: 100%;
}

/* VIDEO BUTTON */
.licensing-video-btn {
    position: absolute;
    bottom: -40px;
    right: 65%;
    background: #3f559b;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 14px 14px 0 14px;
    text-decoration: none;
}

.play-icon {
    background: #fff;
    color: #3f559b;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ================= SUPPORT SECTION ================= */

.support-section {
    position: relative;
    background: url("../images/255bg.png") center/cover no-repeat;
    padding: 110px 0 70px;
    color: #fff;

}

/* .support-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 77, 150, 0.85);
} */

.support-section .container {
    position: relative;
    z-index: 2;
}


/* TOP FLOATING WHITE BOX */
.support-illustration {
    position: absolute;
    top: -200px;
    left: 27%;
    transform: translateX(-50%);
    background: #f2f5ff;
    padding: 10px;
    border-radius: 20px 20px 0 20px;
    max-width: 397px;
    width: 100%;
    z-index: 5;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.support-illustration img {
    width: 100%;
    display: block;
}

/* TOP CONTENT */
.support-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.support-left h2 {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
}

.support-right p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.support-buttons {
    margin-top: 30px;
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #14c3d9;
    color: #fff;
    padding: 14px 26px;
    border-radius: 6px 6px 0 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
}

.btn-outline {
    background: #fff;
    color: #0a1f44;
    padding: 14px 26px;
    border-radius: 6px 6px 6px 0;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
}

.support-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

/* BASE CARD */
.service-card {
    position: relative;
    padding: 38px 20px;
    border-radius: 14px 0 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    transition: all 0.35s ease;
    cursor: pointer;
}

/* ICON */
.service-card .icon {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 22px;
    display: block;
}

/* TITLE */
.service-card h4 {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

/* SUBTEXT */
.service-card p {
    font-size: 13px;
    color: #6b7c93;
    margin-top: 10px;
}

/* ARROW */
.service-card .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 18px;
    font-size: 14px;
}

/* ACTIVE (CENTER CARD) */
.service-card.active {
    background: #ffffff;
    color: #0a1f44;
    transform: translateY(-16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.service-card.active .icon {
    color: #12bfd7;
}

.service-card.active .arrow {
    border-color: #12bfd7;
    color: #12bfd7;
}

/* HOVER FLOAT EFFECT */
.service-card:hover {
    background: #ffffff;
    color: #0a1f44;
    transform: translateY(-16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.service-card:hover .icon {
    color: #12bfd7;
}

.service-card:hover .arrow {
    border-color: #12bfd7;
    color: #12bfd7;
}

/* FOOTER TEXT */
.support-footer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.support-footer a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.profession-section {
    padding: 90px 0;
    background: #f9fbff;
    position: relative;
}

/* HEADER */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    position: relative;
}

.section-tag {
    display: block;
    font-size: 13px;
    color: #4f6bdc;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #12245a;
    line-height: 1.3;
}

.btn-view-top {
    position: absolute;
    right: -245px;
    top: 46px;
    background: #13bfd7;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px 0 6px 6px;
    font-size: 13px;
}

/* GRID */
.profession-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.profession-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 16px 0 16px 16px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

.profession-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.12);
}

/* ICON */
.icon-circle {
    width: 80px;
    height: 80px;
    background: #e8f9fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle img {
    width: 36px;
}

/* TEXT */
.profession-card h4 {
    font-size: 18px;
    color: #1b2a5b;
    margin-bottom: 12px;
}

.profession-card p {
    font-size: 14px;
    color: #6b7a99;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTONS */
.btn-read {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #dbe1f2;
    border-radius: 6px 6px 0 6px;
    color: #1b2a5b;
    font-size: 13px;
}

.btn-read:hover {
    background: #13bfd7;
    color: #fff;
    border-color: #13bfd7;
}

.btn-read.primary {
    background: #13bfd7;
    color: #fff;
    border-color: #13bfd7;
}

/* FOOTER */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view {
    background: #13bfd7;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px 6px 0px 6px;
    font-size: 13px;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-map-wrapper {
    flex: 1;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a1d4d;
}

.faq-map-image {
    width: 80%;
    height: auto;
}

.faq-content-wrapper {
    flex: 1;
}

.faq-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-accordion {
    border-top: 2px solid #1ccad8;
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    gap: 10px;
    color: #0a1d4d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #1ccad8;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px 6px 0 6px;
}


/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: url("../images/5695bg.png") center/cover;
    color: #fff;
    height:745px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-container {
    max-width: 1280px;
    margin: auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
}

.testimonial-label {
    color: #1ccad8;
    font-weight: 600;
}

.testimonial-left {
    width: 28%;
}
.testimonial-right {
    width: 72%;
}

.testimonial-left h2 {
    font-size: 38px;
    margin: 15px 0 40px;
}

.testimonial-users {
    display: flex;
    gap: 20px;
}

.testimonial-user {
    text-align: center;
    opacity: 0.5;
    cursor: pointer;
}

.testimonial-user.active {
    opacity: 1;
}
.testimonial-user h4 {
    font-size: 16px;
}
.testimonial-user p {
    font-size: 12px;
}
.testimonial-user img {
    border-radius: 10px;
}

.testimonial-right p {
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-rating {
    margin: 30px 0;
}

.testimonial-rating h3 {
    font-size: 36px;
    margin: 0;
}

.testimonial-nav button {
    background: none;
    border: none;
    color: #1ccad8;
    font-weight: 600;
    cursor: pointer;
    margin-right: 20px;
}

/* ===== APPOINTMENT ===== */
.appointment-section {
    margin-top: -50px;
}

.appointment-container {
    max-width: 1280px;
    margin: auto;
    background: #fff;
    padding: 60px;
    display: flex;
    gap: 40px;
    border-radius: 12px;
}

.appointment-form {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.appointment-form h2,
.appointment-form p {
    grid-column: span 2;
}

.appointment-form input,
.appointment-form select {
    padding: 14px;
    border-radius: 0px 6px 6px 6px;
    border: none;
    background: #eefbff;
}

.appointment-form button {
    grid-column: span 2;
    padding: 16px;
    background: #253b6e;
    color: #fff;
    border: none;
        border-radius: 0px 6px 6px 6px;
    font-weight: 600;
}



.form-message {
    grid-column: span 2;
    color: red;
}

.appointment-image img {
    max-width: 100%;
}
.blog-section {
  padding: 80px 0;
  background: #f9fbff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
  height: 100%;
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  display: block;
}

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #0a2c5a;
  text-align: center;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 16px;
}

.blog-date small {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  font-size: 13px;
  color: #1aa3ff;
  display: block;
  margin-bottom: 8px;
}

.blog-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2c5a;
}

.blog-content p {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #0a2c5a;
  color: #0a2c5a;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  background: #0a2c5a;
  color: #fff;
}

/* Pagination */
.blog-pagination {
  margin-top: 30px;
  text-align: center;
}


.site-footer {
  position: relative;
  background: url("../images/jfjhfh.png") center/cover no-repeat;
  color: #cbd5e1;
  font-family: "Inter", sans-serif;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.95), rgba(15,23,42,0.85));
}

.footer-container {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-phone {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 15px;
  text-decoration: none;
}

.footer-address {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-link {
  color: #38bdf8;
  font-size: 14px;
  text-decoration: none;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
}

.footer-list a:hover {
  color: #38bdf8;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form button {
  background: #38bdf8;
  border: none;
  padding: 0 16px;
  color: #0f172a;
  font-size: 18px;
  cursor: pointer;
}

.privacy-check {
  font-size: 12px;
  display: flex;
  gap: 8px;
}

/* Bottom */
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: auto;
}

.footer-bottom span {
  color: #38bdf8;
}

.footer-social a {
  margin-left: 10px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}