/* ================= GLOBAL ================= */
body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar-brand img {
    width: 100px;
    /* height: 40px;
    object-fit: contain; */
}

.navbar-brand strong {
    font-size: 1.5rem;
    color: #0d4a61;
}

.navbar-brand small {
    font-size: 1rem;
    color: #11D7FF;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 8px 16px;
}

.navbar .nav-link.active {
    color: #0ba2c0;
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 15px;
    }

    .navbar .btn {
        margin-top: 10px;
        width: 100%;
    }
}

.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}



/* ================= HERO SECTION ================= */
.hero-section {
    background: linear-gradient(135deg, #0d4a61, #0ba2c0);
    padding: 90px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-top: 20px;
}

.hero-text {
    opacity: 0.9;
    margin-top: 10px;
    max-width: 520px;
}

/* ================= CARD ================= */
.protection-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.protection-card h4 {
    font-weight: 600;
}

.protection-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
}

.protection-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1dd3f8;
    font-weight: bold;
}

/* ================= BUTTONS ================= */
.btn-primary {
    background-color: #0d4a61;
    padding: 15px 0px;
    border: none;
    border-radius: 15px !important;
}
.btn-primary:hover {
    background-color: #00D4FF;
}

.btn-success {
    background-color: #1ec98b;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .protection-card {
        padding: 30px;
    }
}

/* ================= SECTION ================= */
.estate-section {
    padding: 90px 0;
    background-color: #F9FAFB;
}

/* ================= HEADER ================= */
.estate-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d4a61;
}

.estate-subtitle {
    font-size: 1.1rem;
    color: #4b6475;
    margin-top: 10px;
}

/* ================= CARD ================= */
.estate-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.estate-card:hover {
    transform: translateY(-6px);
}

.estate-card h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #0d4a61;
}

.estate-card p {
    color: #5c7383;
    line-height: 1.6;
}

/* ================= ICONS ================= */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blue */
.icon-blue {
    background-color: #e6f8fd;
    color: #00b4d8;
}

/* Green */
.icon-green {
    background-color: #e7faf2;
    color: #1ec98b;
}

/* Purple */
.icon-purple {
    background-color: #f3ecff;
    color: #b47cff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .estate-title {
        font-size: 2rem;
    }

    .estate-card {
        padding: 30px 25px;
    }
}

/* ================= SECTION ================= */
.help-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* ================= HEADER ================= */
.help-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0d4a61;
}

.help-subtitle {
    font-size: 1.1rem;
    color: #4b6475;
    margin-top: 10px;
}

/* ================= CARD ================= */
.help-card {
    border-radius: 20px;
    padding: 40px 30px;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.help-card p {
    opacity: 0.95;
    line-height: 1.6;
}

.help-link {
    display: inline-block;
    margin-top: 25px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

/* ================= HOVER ================= */
.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ================= GRADIENTS ================= */
.gradient-blue {
    background: linear-gradient(135deg, #0b5f77, #00b4d8);
}

.gradient-green {
    background: linear-gradient(135deg, #00bfa6, #00d4ff);
}

.gradient-purple {
    background: linear-gradient(135deg, #9b8cff, #5cc8ff);
}

.gradient-indigo {
    background: linear-gradient(135deg, #1f4d6b, #b07cff);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .help-title {
        font-size: 2rem;
    }

    .help-card {
        padding: 30px 25px;
    }
}

/* Section Styling */
.books-section {
    padding: 100px 0;
  background: #F9FAFB;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b3b4f;
}

.section-subtitle {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Book Card */
.book-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Gradients */
.gradient-blue {
  background: linear-gradient(180deg, #0a5c75, #00a3c7);
}

.gradient-green {
  background: linear-gradient(180deg, #0ccf9c, #9b8cff);
}

/* Image */
.book-image {
  padding: 30px;
  text-align: center;
}

.book-image img {
  max-width: 300px;
  border-radius: 6px;
  background: #ffffff;
}

/* Header */
.book-header {
  padding: 0 25px 20px;
  color: #ffffff;
}

.book-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

.small-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Body */
.book-body {
  background: #ffffff;
  padding: 25px;
  flex-grow: 1;
}

.book-body p {
  font-size: 0.95rem;
  color: #555;
}

/* Footer */
.book-footer {
  padding: 0 25px 25px;
  background: #ffffff;
}

.book-footer .btn {
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
}

/* Main Section */
.cta-footer-section {
  background-color: #0b4c63;
  color: #ffffff;
  padding: 90px 0;
}

/* CTA */
.cta-content {
  max-width: 800px;
  margin-bottom: 80px;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* CTA Button */
.cta-btn {
  background-color: #ffffff;
  color: #0b4c63;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #e6f3f7;
  color: #0b4c63;
  transform: translateY(-2px);
}

/* Footer Content */
.footer-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-content p,
.footer-content li {
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content ul li {
  margin-bottom: 8px;
}

.footer-content ul li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-content ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Icons */
.footer-content i {
  margin-right: 8px;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 8px;
  color: #ffffff;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Divider */
hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 40px 0 25px;
}

/* Bottom Footer */
.footer-bottom p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-bottom small {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.7rem;
  }

  .cta-footer-section {
    padding-top: 60px;
  }
}


/* About Hero Section */
.about-hero {
  min-height: 320px;
  background: linear-gradient(
    90deg,
    #0b4c63 0%,
    #0a6f8f 45%,
    #0cc0ea 100%
  );
  color: #ffffff;
  padding: 80px 15px;
}

/* Title */
.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Subtitle */
.about-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
  .about-title {
    font-size: 2.4rem;
  }

  .about-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 260px;
    padding: 60px 15px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }
}

.my-story-section {
    background-color: #ffffff;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0c5c7c;
}

/* Images */

.story-image {
    width: 100%;
    height: 100%;
    max-height: 360px; 
    object-fit: cover; 
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Story Card */
.story-card {
    background-color: #e9f8fd;
    border-left: 5px solid #19b5e0;
    padding: 30px;
    border-radius: 8px;
}

/* Intro Text */
.intro-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0c5c7c;
    margin-bottom: 10px;
}

/* Paragraphs */
.story-card p {
    color: #333333;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .story-card {
        padding: 20px;
    }
}


.story-narrative-section {
    background-color: #ffffff;
}

.story-narrative {
    font-size: 1rem;
    line-height: 1.8;
    color: #1f2d3d;
}

/* Paragraph spacing */
.story-narrative p {
    margin-bottom: 1.4rem;
}

/* Emphasis text */
.story-narrative .fw-bold {
    color: #0c5c7c;
}

/* Responsive typography */
@media (max-width: 768px) {
    .story-narrative {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.mission-values-section {
    background-color: #ffffff;
}


/* Headings */
.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0c5c7c;
}

/* Mission text */
.mission-text {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.7;
    color: #2b2b2b;
}

/* Stats */
.mission-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Stat colors */
.stat-blue {
    color: #00b7ff;
}

.stat-green {
    color: #00c389;
}

.stat-purple {
    color: #b77bff;
}

/* Core Values */
.core-value h5 {
    margin-top: 20px;
    font-weight: 600;
    color: #0c5c7c;
}

.core-value p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    max-width: 280px;
    margin: 0 auto;
}

/* Icon circles */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.6rem;
}

.icon-blue {
    background-color: #e6f8ff;
    color: #00b7ff;
}

.icon-green {
    background-color: #e9fff6;
    color: #00c389;
}

.icon-purple {
    background-color: #f3eaff;
    color: #b77bff;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

.services-section {
    background-color: #ffffff;
}

/* Cards */
.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card h5 {
    font-weight: 700;
    color: #0c5c7c;
    margin-bottom: 10px;
}

.service-intro {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

/* Icons */
.service-icon {
    font-size: 1.8rem;
    color: #0c5c7c;
    margin-bottom: 10px;
}

/* Lists */
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #333;
}

.service-list i {
    color: #00c389;
    margin-right: 8px;
}

/* Price */
.service-price {
    font-weight: 700;
    color: #0c5c7c;
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary {
    background-color: #0c4b63;
    border: none;
}

.btn-primary:hover {
    background-color: #09394d;
}

/* Featured Card */
.featured {
    background: linear-gradient(180deg, #0b7fa1, #08b4da);
    color: #ffffff;
}

.featured h5,
.featured .service-intro,
.featured .service-price {
    color: #ffffff;
}

.featured .service-list li,
.featured .service-list i {
    color: #ffffff;
}

.badge-popular {
    display: inline-block;
    background: #ffffff;
    color: #0b7fa1;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
}

.who-we-help-section {
    background-color: #ffffff;
}

/* Section titles */
.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0c5c7c;
}

/* Help cards */
.help-card2 {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.help-card2 h5 {
    font-weight: 700;
    color: #0c5c7c;
    margin-bottom: 10px;
}

.help-card2 p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Process steps */
.process-step h6 {
    font-weight: 600;
    margin-top: 15px;
    color: #0c5c7c;
}

.process-step p {
    font-size: 0.85rem;
    color: #555;
    max-width: 220px;
    margin: 0 auto;
}

/* Step circles */
.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Step colors */
.step-blue {
    background-color: #00b7ff;
}

.step-green {
    background-color: #00c389;
}

.step-purple {
    background-color: #b77bff;
}

.step-dark {
    background-color: #0c4b63;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .help-card2 {
        padding: 20px;
    }
}


/* Blog Section */

.blog-section {
  background: #f8fbfd;
}

/* Topic Navigation */
.topic-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.topic-btn {
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  background: #ffffff;
  color: #0b4a5a;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.topic-btn.active,
.topic-btn:hover {
  background: #0b4a5a;
  color: #ffffff;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Image Area */
.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #0b4a5a, #05c3dd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image i {
  font-size: 64px;
  color: #ffffff;
}

/* Content */
.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tag {
  color: #05c3dd;
  font-weight: 600;
  font-size: 14px;
}

.read-time {
  font-size: 14px;
  color: #6c757d;
}

.blog-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #0b4a5a;
  text-decoration: none;
  margin-bottom: 10px;
}

.blog-title:hover {
  text-decoration: underline;
}

.blog-content p {
  font-size: 15px;
  color: #555;
}

/* Button */
.blog-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  background: #00c389;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.blog-btn:hover {
  background: #00a874;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #0f4a63;
  padding: 80px 20px;
  color: #ffffff;
}

.newsletter-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 15px;
}

.newsletter-form input {
  flex: 1;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
}

.subscribe-btn {
  background-color: #00c896;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #00b386;
}

.privacy-text {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Action Section */
.action-section {
  background-color: #ffffff;
  padding: 90px 20px;
}

.action-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f4a63;
  margin-bottom: 15px;
}

.action-section p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
}

.audit-btn {
  background-color: #0f4a63;
  color: #ffffff;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 74, 99, 0.2);
  transition: all 0.3s ease;
}

.audit-btn:hover {
  background-color: #0c3c50;
  color: #ffffff;
  transform: translateY(-2px);
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

/* HERO */
.blog-hero {
  background: linear-gradient(135deg, #0f4a63, #0ab3d6);
  padding: 90px 20px;
  color: #fff;
}

.blog-tag {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.blog-hero h1 {
  margin-top: 15px;
  font-weight: 700;
  max-width: 700px;
}

.blog-meta {
  margin-top: 10px;
  opacity: 0.9;
}

/* IMAGE */
.blog-image-wrapper img {
  width: 100%;
  min-height: 500px;
  border-radius: 18px;
  margin-top: -40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* CONTENT */
.blog-content-section {
  padding: 80px 20px;
}

.blog-content-section h2 {
  margin-top: 40px;
  color: #0f4a63;
}

.blog-content-section p,
.blog-content-section li {
  line-height: 1.8;
  margin-top: 15px;
}

blockquote {
  border-left: 4px solid #00c896;
  padding-left: 20px;
  font-style: italic;
  margin: 40px 0;
}

/* CTA */
.inline-cta {
  background: #f4fbfd;
  padding: 40px;
  border-radius: 20px;
  margin: 50px 0;
}

.cta-btn {
  background: #00c896;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
}

/* RELATED */
.related-blogs {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #0f4a63;
}

.clarity-call-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* LEFT SIDE */
.section-title {
  color: #0f4a63;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 520px;
  margin-bottom: 40px;
}

.expect-list {
  list-style: none;
  padding: 0;
}

.expect-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.expect-list h5 {
  margin-bottom: 5px;
  color: #0f4a63;
  font-weight: 600;
}

.expect-list p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.icon-circle.teal {
  background: #e6f8f3;
  color: #00c896;
}

.icon-circle.purple {
  background: #f1eaff;
  color: #7b4ce2;
}

.icon-circle.gray {
  background: #eef3f6;
  color: #6c8a99;
}

/* TESTIMONIAL */
.testimonial-box {
  margin-top: 40px;
  background: #f4fbfd;
  border-left: 4px solid #00c896;
  padding: 25px;
  border-radius: 12px;
}

.testimonial-box .quote {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-box .author {
  font-size: 0.85rem;
  color: #555;
}

/* FORM CARD */
.form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-card h4 {
  margin-bottom: 25px;
  color: #0f4a63;
  font-weight: 600;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 10px 14px;
}

.submit-btn {
  background: #0f4a63;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}

.submit-btn:hover {
  background: #0ba2c0;
  color: #fff;
}

.privacy-text {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: #777;
  text-align: center;
}

/* CONTACT INFO */
.contact-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #0f4a63;
}

.contact-info i {
  margin-right: 8px;
  color: #00c896;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .clarity-call-section {
    padding: 70px 15px;
  }
}

.clarity-faq-section {
  padding: 100px 20px;
  background: #fafcfd;
}

.faq-title {
  color: #0f4a63;
  font-weight: 700;
  margin-bottom: 60px;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f4a63;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 1.5rem;
  color: #00c896;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.faq-answer p {
  color: #555;
  font-size: 0.95rem;
  padding-bottom: 22px;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clarity-faq-section {
    padding: 70px 15px;
  }

  .faq-question {
    font-size: 1rem;
  }
}

.footer-content .contact-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content .contact-links a:hover {
  color: #0ba2c0;
  text-decoration: none;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0ba2c0;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

#backToTop:hover {
  background-color: #0890aa;
  transform: translateY(-3px);
}

/* Show button */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile tweak */
@media (max-width: 576px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}







