   
     /* =========================
   Root Variables
========================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary-color: #ff494a;
  --secondary-color: #1e1e20;
  --bg-light: #f5f5f5;
  --text-color: #666;
  --heading-color: #141416;
}

/* =========================
   Reset & Global
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: #fff;
}

.containers {
  max-width: 1170px;
  margin: auto;
  padding: 0 20px;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   Top Bar
========================= */
.top-bar {
  background: #0B6A68;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

/* .top-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}

.top-bar a:hover {
  color: var(--primary-color);
} */

.top-bar i {
  color: #fff;
  margin-right: 5px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar a:hover {
  color: #ff494a;
}
.social-icoons {
  display: flex;
  align-items: center;
}

.social-icoons i {
  margin-left: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icoons i:hover {
  color: #b2cecd;
}

@media (max-width: 767px) {
  .social-icoons {
    margin-top: 5px;
  }

  .social-icoons i {
    margin: 0 8px;
  }
}

/* =========================
   Navigation
========================= */

.main-nav {
  background: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* =========================
   Logo
========================= */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}

/* =========================
   Navigation Links (Desktop)
========================= */

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 0;
}

.nav-links li {
  list-style: none;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0B6A68;
}

/* =========================
   Dropdown (Desktop)
========================= */

.custom-dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.custom-dropdown li {
  list-style: none;
}

.custom-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #1e1e20;
  transition: 0.3s;
}

.custom-dropdown a:hover {
  background: #0B6A68;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arrow {
  display: inline-block;
  transition: 0.3s;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* =========================
   Quote Button
========================= */

.btn-quote {
  background: #0B6A68;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: #e60000;
  color: #fff;
}

/* =========================
   Toggle Button
========================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .btn-quote {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    gap: 0;

    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    max-height: 600px;
    padding: 20px 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  /* Mobile Dropdown */
  .custom-dropdown {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 0;
  }

  .dropdown.active .custom-dropdown {
    display: block;
  }

  .dropdown:hover .custom-dropdown {
    display: none;
  }

}
/* HERO SECTION */
   .hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    transition: background-image 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    padding: 40px 15px;
    z-index: 1;
}

/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);  /* Darkness Control */
    z-index: -1;
}
    

    

    .hero-text {
      max-width: 850px;
      margin: auto;
    }

    .hero-text h1 {
        color: #ffffff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);

      font-size: clamp(32px, 5vw, 56px);
      font-weight: 700;
      margin-bottom: 15px;
    }

    .hero-text h1 span {
      color: #0B6A68;
    }

    .hero-text h4 {
      font-size: 20px;
      font-weight: 400;
      opacity: 0.9;
      margin-bottom: 10px;
    }

    .hero-text p {
      font-size: 16px;
      font-weight: 400;
      opacity: 0.85;
      margin-bottom: 30px;
    }

    .hero-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #0B6A68;
      color: #ffffff;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .hero-btn:hover {
      background-color: #e63a3b;
      color: #ffffff;
      /* #14b8a6; */
    }


    /* =========================
   RESPONSIVE DESIGN
========================= */

/* ===== Tablets & below ===== */
@media (max-width: 992px) {

  /* Top bar */
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Navbar */
  .main-nav .container {
    flex-direction: row;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .btn-quote {
    margin-top: 5px;
  }

  /* Hero */
  .hero-section {
    min-height: 70vh;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text h4 {
    font-size: 18px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

  /* Logo */
  .logo img {
    max-height: 60px;
  }

  /* Navigation links stack */
  .nav-links {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links a {
    font-size: 16px;
  }

  /* Dropdown fix for mobile */
  .custom-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown:hover .custom-dropdown {
    display: block;
  }

  /* Hero */
  .hero-section {
    padding: 60px 15px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text h4 {
    font-size: 16px;
  }

  .hero-text p {
    font-size: 15px;
  }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {

  .top-bar {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text h4 {
    font-size: 15px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
/* =====================================
   ABOUT SECTION
===================================== */

.about-section{
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* =============================
   LEFT CONTENT
============================= */

.about-main-title{
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.about-main-title span{
    color:#0B6A68;
}

.about-text{
    color:#6c757d;
    font-size:17px;
    margin:25px 0;
    line-height:1.7;
}

/* List */
.about-list{
    list-style:none;
    padding:0;
}

.about-list li{
    font-size:17px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
}

.about-list i{
    background:#0B6A68;
    color:#fff;
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    flex-shrink:0;
}


/* =============================
   IMAGE SECTION
============================= */

.image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Main Big Image */
.main-img{
    width:420px;
    height:520px;
    object-fit:cover;
    border-radius:220px;
}

/* Top Small Circle */
.small-img-top{
    position:absolute;
    top:10px;
    right:40px;
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid #f2f3f5;
}

/* Bottom Oval */
.small-img-bottom{
    position:absolute;
    bottom:0;
    right:10px;
    width:220px;
    height:260px;
    object-fit:cover;
    border-radius:140px;
    border:8px solid #f2f3f5;
}


/* =====================================
   LARGE SCREEN (1400px+)
===================================== */

@media (min-width:1400px){
    .main-img{
        width:460px;
        height:560px;
    }
}


/* =====================================
   TABLET (992px - 1199px)
===================================== */

@media (max-width:1199px){

    .about-main-title{
        font-size:40px;
    }

    .main-img{
        width:360px;
        height:460px;
    }

    .small-img-top{
        width:150px;
        height:150px;
        right:20px;
    }

    .small-img-bottom{
        width:190px;
        height:230px;
        right:0;
    }
}


/* =====================================
   SMALL TABLET (768px - 991px)
===================================== */

@media (max-width:991px){

    .about-section{
        padding:60px 0;
    }

    .about-main-title{
        font-size:34px;
    }

    .image-wrapper{
        margin-top:40px;
    }

    .main-img{
        width:320px;
        height:420px;
    }

    .small-img-top{
        width:130px;
        height:130px;
        top:0;
        right:30px;
    }

    .small-img-bottom{
        width:170px;
        height:210px;
        right:10px;
    }
}


/* =====================================
   MOBILE (max 768px)
===================================== */

@media (max-width:768px){

    .about-section{
        padding:40px 20px;
        text-align:center;
    }

    .about-main-title{
        font-size:28px;
    }

    .about-text{
        font-size:15px;
    }

    .about-list{
        text-align:left;
        display:inline-block;
        margin-top:10px;
    }

    .about-list li{
        font-size:15px;
    }

    /* Images Center & Simplify */
    .image-wrapper{
        margin-top:40px;
    }

    .main-img{
        width:100%;
        max-width:300px;
        height:auto;
        border-radius:180px;
    }

    /* Hide small images for clean mobile look */
    .small-img-top,
    .small-img-bottom{
        display:none;
    }
}


/* =====================================
   SMALL MOBILE (480px)
===================================== */

@media (max-width:480px){

    .about-main-title{
        font-size:24px;
    }

    .about-text{
        font-size:14px;
    }

    .about-list li{
        font-size:14px;
    }

    .main-img{
        max-width:260px;
    }
}

.wealth-section{
background:#f7f9f8;
padding:40px 20px;
text-align:center;
font-family:"Open Sans",sans-serif;
}

.wealth-heading{
font-size:36px;
font-weight:700;
color:#1f4d3f;
margin-bottom:60px;
}

.wealth-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.wealth-card{
background:#ffffff;
padding:40px 30px;
border-radius:14px;
box-shadow:0 12px 35px rgba(0,0,0,0.07);
transition:.3s;
}

.wealth-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.wealth-icon{
width:70px;
height:70px;
background: #0B6A68;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
margin:0 auto 20px;
}

.wealth-card h4{
font-size:22px;
margin-bottom:10px;
color:#000;
}

.wealth-card p{
font-size:16px;
color:#6b7280;
line-height:1.6;
}
@media(max-width:768px){

.wealth-grid{
grid-template-columns:1fr;
}

.wealth-heading{
font-size:26px;
}

}
/* =========================
   SECTION DIVIDER
========================= */
.section-divider {
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
    padding: 15px 0;   /* reduced from 30px */
}

/* =========================
   EACH STAT BOX
========================= */
.stat-box {
    padding: 15px 15px;   /* reduced vertical padding */
    text-align: center;
}

/* =========================
   NUMBER
========================= */
.stat-number {
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 8px;   /* tight spacing */
    line-height: 1;
}

.stat-number.red {
    color: #0B6A68;
}

.stat-number.dark {
    color: #222;
}

/* =========================
   DIVIDER UNDER NUMBER
========================= */
.number-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 auto 8px auto;   /* reduced */
}

/* =========================
   TITLE
========================= */
.stat-title {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;   /* tight */
}

/* =========================
   DESCRIPTION
========================= */
.stat-desc {
    font-family: "Open Sans", sans-serif;
    color: #6c757d;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

    .stats-section {
        padding: 12px 0;
    }

    .stat-box {
        padding: 12px 10px;
    }

    .stat-number {
        font-size: 60px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .stats-section {
        padding: 10px 0;
    }

    .stat-box {
        padding: 12px 10px;
        margin-bottom: 15px;   /* reduced from 25px */
    }

    .stat-number {
        font-size: 45px;
        margin-bottom: 6px;
    }

    .number-divider {
        margin-bottom: 6px;
    }

    .stat-title {
        font-size: 18px;
    }

    .stat-desc {
        font-size: 14px;
    }
}
/* service card section */
.services-section {
 
   background: #eef1f4;
}

/* Top Small Heading */
.top-heading {
    font-size: 14px;
    font-weight: 600;
    color: #0B6A68;;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.top-heading span {
    width: 40px;
    height: 2px;
    background: #0B6A68;
    display: inline-block;
}

/* Main Heading */
.main-heading {
        font-size: 34px;
    font-weight: 700;
    color: #111;
}

.main-heading span {
    color:#0B6A68;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon + Heading Flex */
.card-header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Icon Circle */
.icon-box {
    width: 70px;
    height: 70px;
    background: #0B6A68;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Heading inside card */
.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

/* Paragraph */
.service-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Read More */
.read-more {
    text-decoration: none;
    font-weight: 600;
    color: #0B6A68;
    transition: 0.3s;
}

.read-more:hover {
    letter-spacing: 1px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* Bottom CTA Section */
/* Bottom CTA 80% Center */
.services-bottom-cta {
    width: 80%;
    margin: 30px auto 0;   /* Top spacing + center */
}

/* Lines */
 .section-line {
            border: none;
            height: 1px;
            background:  #666;
            margin: 0;
        }

/* Heading */
.experience-heading {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

/* Button */
.more-services-btn {
    display: inline-block;
    background: #0B6A68;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.more-services-btn:hover {
    background: #e63939;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .services-bottom-cta {
        width: 95%;
    }

    .experience-heading {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Owl crousal*/


/* Section */
.associated-section{
  background: #EAF6EE;
    padding:40px 0;
    text-align:center;
}

.associated-section h2{
    font-size:30px;
    font-weight:700;
    color:#174c3c;
    margin-bottom:30px;
}

/* Logo Box */
.company-logo{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.company-logo img{
    max-height:60px;
    width:auto;
}

.company-logo:hover{
    transform:translateY(-5px);
}
.logo-slider {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: infiniteScroll 10s linear infinite;
}

.company-logo img {
  max-width: 150px;
}

/* Perfect Seamless Animation */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* ===================================
   SECTION TITLE
=================================== */
.section-title{
    font-family: "Open Sans", sans-serif;
       font-size: 37px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

/* ===================================
   PARAGRAPH
=================================== */
.finance-text{
    font-size:17px;
    line-height:1.8;
    color:#555;
}

/* ===================================
   CONTACT US TITLE
=================================== */
.contact-title{
    font-family: "Open Sans", sans-serif;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:nowrap;
    text-align:center;
    font-weight:700;
    font-size:32px;
    color:#1a1a1a;
    letter-spacing:1px;
    margin-bottom:25px;
}

/* Decorative Line */
.line{
    width:70px;
    height:3px;
    background:#174c3c;
    flex-shrink:0;
}

/* Dots */
.dots{
    display:flex;
    gap:6px;
    flex-shrink:0;
}

.dots span{
    width:6px;
    height:6px;
    background:#174c3c;
    border-radius:50%;
}

/* ===================================
   CONTACT BAR
=================================== */
.contact-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

/* Button */
.contact-btn{
    background:#174c3c;
    color:#fff;
    padding:12px 25px;
    font-size:17px;
    font-weight:500;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#c00000;
    transform:translateY(-3px);
}

/* Phone */
.phone-wrapper{
    display:flex;
    align-items:center;
    gap:12px;
}

.phone-ring{
    background:rgba(225,6,0,0.15);
    padding:8px;
    border-radius:50%;
}

.phone-circle{
    width:50px;
    height:50px;
    background:#174c3c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:0.3s;
}

.phone-circle:hover{
    transform:scale(1.1);
}

.phone-number{
    font-size:22px;
    font-weight:700;
    color:#174c3c;
    text-decoration:none;
}

/* ===================================
   QUOTE SECTION
=================================== */
.quote-section{
    background:#f2f2f2;
    padding:40px 30px;
    border-top:6px solid #174c3c;
    max-width:800px;
    margin:40px auto;
}

.quote-title{
    font-family: "Open Sans", sans-serif;
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:30px;
    text-align:center;
}

/* Form Controls */
.form-control,
.form-select{
    background:#e5e5e5;
    border:none;
    height:55px;
    font-size:16px;
    padding-left:20px;
    border-radius:4px;
}

textarea.form-control{
    height:140px;
    padding-top:20px;
    resize:none;
}

.input-group-text{
    background:#e5e5e5;
    border:none;
    color:#94a3b8;
    font-size:18px;
}

/* Submit */
.send-btn{
    font-weight:500;
    padding:12px;
    font-size:18px;
    color:#fff;
    background:#174c3c;
    border:none;
    width:100%;
    transition:0.3s;
}

.send-btn:hover{
    background:#c40000;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Large Screens */
@media (min-width:1200px){
    .section-title{font-size:34px;}
    .phone-number{font-size:24px;}
}

/* Tablet */
@media (max-width:991px){

    .contact-title{font-size:26px;}

    .contact-bar{
        gap:25px;
    }

    .phone-number{font-size:20px;}

    .phone-circle{
        width:45px;
        height:45px;
        font-size:18px;
    }
}

/* Mobile */
@media (max-width:768px){

    .contact-title{
        font-size:22px;
        gap:10px;
    }

    .line{width:45px;height:2px;}

    .dots span{width:5px;height:5px;}

    .contact-bar{
        flex-direction:column;
        text-align:center;
    }

    .contact-btn{
        width:100%;
        max-width:260px;
    }

    .phone-wrapper{
        justify-content:center;
    }

    .quote-section{
        padding:30px 20px;
        margin:30px 15px;
    }

    .quote-title{font-size:22px;}
}

/* Small Mobile */
@media (max-width:480px){

    .contact-title{font-size:30px;}

    .line{width:35px;}

    .phone-circle{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .phone-number{font-size:16px;}

    .contact-btn{
        font-size:15px;
        padding:10px 18px;
    }
}
/* image parallax cta Section */
/* ========================= */
/* HERO SECTION */
/* ========================= */

.finance-hero{
    position: relative;
    min-height: 60vh; /* better than fixed height */
    padding: 80px 20px;

    background: url('static/image/health-insurance.jpg') center center / cover no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Dark overlay */
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* Content */
.hero-content{
    position: relative;
    max-width: 1000px;
    width: 100%;
}

/* Heading */
.finance-hero h1{
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.finance-hero h1 span{
    color: #00bcd4;
    font-weight: 700;
}

/* Sub Text */
.sub-text{
    margin-top: 25px;
    font-size: 22px;
    color: #ddd;
}

/* Button */
.hero-btnn{
    display: inline-block;
    margin-top: 40px;
    padding: 16px 38px;
    background: #fff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.hero-btnn:hover{
    background: #174c3c;
    color: #fff;
}

/* ========================= */
/* LARGE SCREENS (1400px+) */
/* ========================= */
@media (min-width: 1400px){
    .finance-hero h1{
        font-size: 48px;
    }

    .sub-text{
        font-size: 24px;
    }
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px){

    .finance-hero{
        min-height: 55vh;
        background-attachment: scroll; /* fix mobile parallax issue */
        padding: 70px 20px;
    }

    .finance-hero h1{
        font-size: 34px;
    }

    .sub-text{
        font-size: 18px;
    }

    .hero-btnn{
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 576px){

    .finance-hero{
        min-height: 60vh;   /* 🔥 better mobile look */
        padding: 60px 15px;
    }

    .finance-hero h1{
        font-size: 24px;
        line-height: 1.3;
    }

    .sub-text{
        font-size: 16px;
        margin-top: 15px;
    }

    .hero-btnn{
        padding: 12px 22px;
        font-size: 13px;
        margin-top: 25px;
    }
}

/* ========================= */
/* EXTRA SMALL DEVICES (320px) */
/* ========================= */
@media (max-width: 400px){

    .finance-hero h1{
        font-size: 20px;
    }

    .sub-text{
        font-size: 14px;
    }

    .hero-btnn{
        padding: 10px 18px;
        font-size: 12px;
    }
}
.footer-section{
width:100%;
background:linear-gradient(rgba(6,19,38,0.9),rgba(10,31,56,0.95)),
url("static/image/health-insurance.jpg") no-repeat center;
background-size:cover;
padding-top:50px;
position:relative;
}

.footer-wrapper{
padding-bottom:20px;
}

/* Logo */

.footer-logo{
margin-left:60px;
width:100px;
border-radius:15px;
}

/* Description */

.footer-text{
color:#cbd5e1;
line-height:2;
font-size:17px;
}

/* Headings */

.footer-title{
font-size:26px;
font-weight:600;
position:relative;
margin-bottom:35px;
}

.footer-title .line{
position:absolute;
left:0;
bottom:-12px;
width:75px;
height:4px;
background:#174c3c;
overflow:hidden;
}

.footer-title .line::before{
content:"";
position:absolute;
top:0;
left:0;
width:18px;
height:100%;
background:#ffffff;
animation:slide 2s linear infinite;
}

@keyframes slide{
0%{left:0;}
50%{left:57px;}
100%{left:0;}
}

/* Footer Links */

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:18px;
font-size:18px;
color:#d1d5db;
display:flex;
align-items:center;
 gap:10px; 
cursor:pointer;
transition:.3s;
}

.footer-links li i{
font-size:14px;
}

.footer-links li:hover{
color:#ffffff;
}

/* Anchor links */

.footer-links a{
text-decoration:none;
color:#d1d5db;
display:flex;
align-items:center;
gap:10px;
}

.footer-links a:hover{
color:#ffffff;
}

.footers-links{
    margin-right: 30px;
}

/* Social Icons */

.social-iconss{
display:flex;
align-items:center;
gap:14px;
margin-top:20px;
}

.social-iconss a{
width:55px;
height:55px;
background:#2b3448;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
font-size:20px;
color:#fff;
text-decoration:none;
transition:.3s;
}

.social-iconss a:hover{
background:red;
}

/* Contact Section */

.footer-small{
color:#cbd5e1;
margin-bottom:25px;
font-size:17px;
}

.contact-row{
display:flex;
align-items:center;
margin-bottom:25px;
font-size:18px;
color:#d1d5db;
}

.contact-icon{
min-width:45px;
width:45px;
height:45px;
background:#174c3c;
display:flex;
align-items:center;
justify-content:center;
margin-right:18px;
border-radius:5px;
font-size:18px;
flex-shrink:0;
}

/* Bottom Bar */

.footer-bottom{
background:#1a2232;
padding:22px 0;
font-size:16px;
color:#cbd5e1;
margin-top:20px;
}

/* ================= TABLET ================= */

@media(max-width:991px){

.footer-title{
font-size:22px;
}

.footer-text{
font-size:15px;
line-height:1.8;
}

.footer-links li{
font-size:16px;
}

.contact-row{
font-size:16px;
}

.social-iconss a{
width:48px;
height:48px;
font-size:18px;
}


}

/* ================= MOBILE ================= */

@media(max-width:767px){

.footer-section{
text-align:center;
padding-top:60px;
}

.footer-logo{
margin-left:0;
}

.footer-wrapper .col-lg-3,
.footer-wrapper .col-md-6{
width:100%;
margin-bottom:40px;
}

/* Heading line center */

.footer-title{
display:inline-block;
}

.footer-title .line{
left:50%;
transform:translateX(-50%);
}

/* Footer Links */

.footer-links{
        display: inline-block;
        text-align: left;
        margin-left: 40px;
}

/* Social Icons */

.social-iconss{
justify-content:center;
flex-wrap:wrap;
}

/* Contact */

.contact-row{
justify-content:center;
text-align:left;
}

}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

.footer-title{
font-size:20px;
}

.footer-text{
font-size:14px;
}

.footer-links li{
font-size:15px;
}

.contact-row{
flex-direction:column;
align-items:center;
text-align:center;
}

.contact-icon{
margin-right:0;
margin-bottom:10px;
}

.footer-bottom{
font-size:14px;
text-align:center;
padding:18px 10px;
}

.footer-logo{
margin-left:0;
}

}





