html,body{
    font-family: "Montserrat", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Montserrat", sans-serif;
}
p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}
a{
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
}
.section{
    padding: 64px 0px;
}
.main-heading{
    font-size: 30px;
    font-weight: 700;
    color: #000;
}
.text-para{
  font-size: 16px;
  color: #555;
}

.section-one{
    background-color: #FAFAF5;
    background-image: url('../images/homeo-slider-bg.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 0px 50px 0px;
}
.section-one-title{
  font-size: 43px;
  font-weight: 800;
  line-height: 54px;
  color: #2E2E2E;
}


:root{
    --accent:#fe5900;        /* orange accent */
    --stroke:#e9edf2;
    --brand:#fe5900;                 /* requested orange */
    --bg:#ffffff;                    /* page background */
    --panel:#e25527;                 /* left panel background */
    --panel-text:#ffffff;            /* left panel text */
    --card:#ffffff;                  /* right card background */
    --ink:#1a1a1a;                   /* text color */
    --muted:#6b7280;                 /* muted text */
    --input-bg:#fff7f2;              /* soft shade inside inputs */
    --ring:rgba(254,89,0,.25);       /* glow color */
    --radius:16px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}



/* Hero */
.hero{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* adjust as needed */
  z-index: 5;
  position: absolute;

  /* min-height:75vh; */
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center; 
  text-align:center; 
  padding:24px;
  overflow:hidden;
  background-image: url('../images/banner-bg.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .hero:after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(40rem 18rem at 50% 5%, rgba(255, 255, 255, .06), transparent 40%), linear-gradient(180deg, rgba(255, 176, 70, .35), #212529);
} */
.hero-inner{ position:relative; z-index:2; max-width:1100px }

/* Golden rounded rectangle for H2 */
.hero-eyebrow{
  display:inline-block; background:#ffb046; color:#111; font-weight:800;
  padding:14px 28px; border-radius:20px; font-size:clamp(1rem, 2.2vw, 1.35rem);
  box-shadow:0 10px 26px rgba(255,176,70,.35), inset 0 -2px 0 rgba(0,0,0,.15);
  margin-bottom:18px;
}

.hero .hero-title{
  font-size:clamp(2rem, 4.6vw, 3.2rem); 
  font-weight:800; 
  margin:8px 0 6px;
  text-shadow:0 10px 28px rgba(0,0,0,.5);
  color: #fff;
}
.hero p{
  color:#e8e8e8; 
  margin:12px auto 28px; 
  font-size: 16px;
}

.cta{ display:flex; gap:18px; flex-wrap:wrap; justify-content:center }
.btn-2{
  padding:18px 42px; border-radius:999px; font-weight:800; font-size:clamp(1rem, 2vw, 1.25rem);
  text-decoration:none; display:inline-block; transition:.2s; border:2px solid transparent;
}
.hero-btn-primary{ 
  background:linear-gradient(135deg, #ffb046, #ffb046); color:#111; box-shadow:0 16px 36px rgba(255,176,70,.35) 
}
.hero-btn-primary:hover{ transform:translateY(-3px); box-shadow:0 22px 46px rgba(255,176,70,.45) }
.btn-ghost{ border-color:#fff; color:#fff }
.btn-ghost:hover{ background:#fff; color:#111; transform:translateY(-3px) }




.banner-area{
    background-image: url('../images/banner-connect-story.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px;
    text-align: center;
    /* background: #142d4d; */
    color: #fff;
}
.banner-title{
    line-height: 80px;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}
.breadcrumb,
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item, a{
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}
.card-1{
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #ddd;
}


/* Navbar - Start */
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 50px;
}

.navbar{
    padding: 0px;
}
.navbar-brand img{
  width: 118px;
}
.nav-link{
  padding: 24px 20px !important;
  text-decoration: none;
  font-weight: 600;
  color: #0f0f0f;
  position: relative;
  padding-bottom: 5px;
  transition:color .25s ease;
  background-image:linear-gradient(#fe5900, #fe5900);
  background-position:0 100%;
  background-repeat:no-repeat;
  background-size:0% 2px;
}
.nav-link:hover{
  color: #fe5900;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border: 0px !important;
  background: #fe5900;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.dropdown-menu {
  padding: 8px !important;
  border-radius: 0px !important;
  background:var(--accent);
  border-radius:12px !important;
  box-shadow:0 12px 30px rgba(0,0,0,.16);
  transition:opacity .2s ease, transform .2s ease, visibility .2s step-end;
}
.dropdown-menu .dropdown-item {
  border-radius:10px;
  padding: 10px 20px !important;
  color:#fff; 
  text-decoration:none; 
  font-weight:500;
  transition: background .18s ease, transform .18s ease;
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: rgba(255,255,255,.14);;
  transform:translateX(2px); 
}
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
.cs-phone{
  --ring: color-mix(in srgb, var(--accent) 35%, transparent);
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--accent);
  border:2px solid var(--accent);
  padding:10px 14px; border-radius:14px; font-weight:700;
  letter-spacing:.3px;
  box-shadow:0 0 0 0 var(--ring);
  transition:box-shadow .25s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.cs-phone:hover,
.cs-phone:focus-visible{
  background:var(--accent); color:#fff; outline:none;
  transform:translateY(-1px);
  box-shadow:0 0 0 6px var(--ring), 0 10px 24px rgba(254,89,0,.28);
}
/* Navbar End */


/* Homeopath-treatment-bangalore - Start */
.complaint-box {
  background-color: #ca8cd1;
  border-radius: 5px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}
.complaint-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.complaint-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.complaint-box h5 {
  color: white;
  font-weight: bold;
}
/* Homeopath-treatment-bangalore - End */

/* Contact Us - Start */
.appointment-form {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  border-top: 20px solid #5e2a6d;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  max-width: 600px;
  margin: 0 auto;
}
.appointment-form h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  color: #5e2a6d;
}
.appointment-form .form-control {
  background-color: #f5f5f5;
  border-radius: 5px;
  border: 1px solid #5e2a6d;
  padding: 16px 15px;
}
.appointment-form .form-control:focus {
  box-shadow: none;
  border-color: #8d47a2;
}
.appointment-form .btn-submit {
  background-color: #5e2a6d;
  color: #fff;
  border-radius: 5px;
  padding: 10px 50px;
  transition: background-color 0.3s ease-in-out;
}
.appointment-form .btn-submit:hover {
  background-color: #8d47a2;
}
.contact-box-info {
  background-color: #5e2a6d;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: none;
  color: #fff;
}
.contact-box-info:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.contact-box-info .contact-icon {
  background-color: transparent;
  color: #fedc2a;
  font-size: 28px;
  margin-right: 15px;
  border: 2px solid #fedc2a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-box-info .contact-text h5 {
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.contact-box-info .contact-text p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}


.contact-box-map {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.contact-box-map .contact-heading {
  background-color: #d6a5dc;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  color: #2d2d2d;
  margin-bottom: 20px;
}
.contact-box-map .clinic-info p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}
.contact-box-map .clinic-info strong {
  font-weight: 700;
}
.contact-box-map .contact-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}
.contact-box-map .contact-phone {
  font-weight: 700;
  color: #000;
  margin-top: 15px;
}
.contact-box-map .map-frame img {
  width: 100%;
  border-radius: 10px;
}
/* Contact Us - End */

/* Service view page - start */
.respiratory-section {
  background: linear-gradient(to top, #fffaff, #ffffff);
}
.homeopathy-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 0 #5e2a6d !important;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: 0.4s ease-in-out;
}
.homeopathy-box:hover {
  box-shadow: 0 0 32px #5e2a6d47 !important;
}
.homeopathy-box .homeopathy-icon {
  font-size: 40px;
  color: #5e2a6d;
  margin-bottom: 15px;
}
.homeopathy-box .homeopathy-heading {
  color: #5e2a6d;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.homeopathy-box .homeopathy-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
/* Service view page - end */


/* CTA 2 - start */
.cta-two {
  background-color: #5e2a6d;
  color: #fff;
  padding: 45px 0px;
}
.cta-two .cta-heading {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.cta-two .cta-button {
  background-color: #fedc2a;
  color: #5e2a6d !important;
  font-size: 26px;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 20px;
  transition: 0.3s ease-in-out;
}
.cta-two .cta-button:hover {
  background-color: #ffe740;
  transform: scale(1.03);
}
.cta-two .cta-icon {
  margin-right: 12px;
}
/* CTA 2 - end */

.bg-parallax{
  background-image: url('../images/paralax-bg-index-page.webp');
  background-position: center center;
  background-size: cover;
  opacity: 0.17;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.homeopathy-treatment-section {
  background-color: #ffffff;
  padding: 60px 0;
}
.treatment-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.treatment-heading {
  color: #007bff;
  font-weight: 700;
}
.btn-kair {
  background-color: #5e2a6d;
  color: white;
  border-radius: 10px;
  padding: 10px 25px;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}
.btn-kair:hover {
  background-color: #8d47a2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}



/* wrapper card */
.connect-contact .sheet{display:grid;grid-template-columns:360px 1fr;gap:28px;background:linear-gradient(#fff,#fff) padding-box, linear-gradient(180deg, rgba(26,26,26,.06), rgba(26,26,26,.02)) border-box;border:1px solid rgba(26,26,26,.06);border-radius:24px;box-shadow:var(--shadow);}

/* left panel */
.connect-contact .panel{background:var(--panel);color:var(--panel-text);border-radius:24px 0 0 24px;padding:28px;display:flex;flex-direction:column;gap:18px}
.connect-contact .panel h3{margin:0 0 8px;font-weight:700;letter-spacing:.2px}
.connect-contact .panel p{margin:0;color:#fff;opacity:.9;line-height:1.5}

.connect-contact .contact-item{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.22);padding:14px 14px;border-radius:14px;display:flex;gap:12px;align-items:flex-start;box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)}
.connect-contact .contact-item svg{width:18px;min-width:18px;height:18px;display:block;fill:#fff}
.connect-contact .contact-item b{display:block;margin-bottom:4px;color:#fff}
.connect-contact .socials{display:flex;gap:10px;margin-top:6px}
.connect-contact .socials a{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);transition:.25s box-shadow,.25s transform}
.connect-contact .socials a:hover{box-shadow:0 0 0 4px rgba(255,255,255,.22);transform:translateY(-2px)}
.connect-contact .socials svg{width:16px;height:16px;fill:#fff}

/* right form area */
.connect-contact .form-wrap{padding:28px}
.connect-contact .eyebrow{font-size:14px;color:var(--muted);margin:0 0 6px}
.connect-contact h1{margin:0 0 18px;font-size:32px;line-height:1.2}
.connect-contact h1 span{color:var(--brand)}

.connect-contact .grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}

.connect-contact label{display:block;font-size:12px;color:var(--muted);margin-bottom:6px}

.connect-contact input,
.connect-contact select,
.connect-contact textarea{
  font-size: 14px;
  width:100%;
  padding:8px 14px 8px 16px;
  border-radius:12px;
  border:1px solid rgba(26,26,26,.08);
  background:var(--input-bg);
  outline:none;
  color:var(--ink);
  transition:border-color .2s, box-shadow .2s;
}


/* focus glow */
.connect-contact input:focus,
.connect-contact select:focus,
.connect-contact textarea:focus{border-color:var(--brand);box-shadow:0 0 0 4px var(--ring)}

/* button */
.connect-contact .actions{margin-top:10px}
.connect-contact .btn{appearance:none;border:0;background:var(--brand);color:#fff;padding:14px 20px;border-radius:999px;font-weight:600;cursor:pointer;box-shadow:0 10px 18px rgba(254,89,0,.28);transition:transform .18s ease, box-shadow .18s ease}
.connect-contact .btn:hover{transform:translateY(-2px);box-shadow:0 14px 22px rgba(254,89,0,.34)}

/* responsive */
@media (max-width:980px){
  .connect-contact .sheet{grid-template-columns:1fr}
  .connect-contact .panel{border-radius:24px 24px 0 0}
}


.footer-royal {
  --bg:#111111;
  --card:#161616;
  --ink:#e9e9e9;
  --muted:#bcbcbc;
  --gold:#fe5900;            /* golden yellow */
  --gold-10: rgba(255,176,70,.12);
  --gold-20: rgba(255,176,70,.20);

  background:radial-gradient(1200px 500px at 70% -20%, var(--gold-10), transparent 60%), linear-gradient(180deg, #25082d 0%, #3f164a 100%);

  color: var(--ink);


  font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.footer-royal a { color: var(--ink); text-decoration: none; }
.footer-royal a:hover { color: var(--gold); }

.footer-royal__contact{
  display:grid; gap:18px; grid-template-columns: repeat(3,minmax(0,1fr));
}
@media (max-width:900px){ .footer-royal__contact{grid-template-columns:1fr;} }

.footer-royal__card{
  display:flex; gap:16px; align-items:center;

  background:linear-gradient(180deg, #824294, #2e0f31);

  border:1px solid #5e2a6d;
  border-radius:16px; padding:18px 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 10px 24px rgba(0,0,0,.4),
    0 0 22px -6px var(--gold-20);              /* soft golden glow */
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.footer-royal__card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--gold-20) inset,
    0 14px 28px rgba(0,0,0,.55),
    0 0 36px -6px rgba(255,176,70,.45);       /* stronger glow on hover */
  border-color: var(--gold-20);
}

.footer-royal__icon{
  width:52px; height:52px; flex:0 0 52px;
  display:grid; place-items:center;
  border-radius:14px;
  background: radial-gradient(180px 120px at 30% 20%, rgba(255,176,70,.35), rgba(255,176,70,.12));
  outline:1px solid rgba(255,176,70,.35);
  box-shadow: 0 0 20px rgba(255,176,70,.25) inset, 0 6px 14px rgba(0,0,0,.45);
}
.footer-royal__icon svg{ width:26px;height:26px; fill:var(--gold); }

.footer-royal__card-body h3{
  margin:0 0 4px; font-size:16px; font-weight:600; letter-spacing:.2px;
}
.footer-royal__card-body a, .footer-royal__card-body address{
  color:var(--muted); font-style:normal; line-height:1.45;
}
.footer-royal__card-body a:hover{ color:var(--gold); }

.footer-royal__divider{
  margin:36px 0 24px; border:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.footer-royal__grid{
  display:grid; gap:28px; grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
}
@media (max-width:1000px){ .footer-royal__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .footer-royal__grid{ grid-template-columns:1fr; } }

.footer-royal__col h4{
  margin:0 0 12px; font-size:18px; font-weight:650;
  position:relative; display:inline-block; padding-bottom:6px;
}
.footer-royal__col h4:after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: linear-gradient(90deg, var(--gold), rgba(255,176,70,.15));
  border-radius:2px;
}

.footer-royal__col p{ margin:0; color:var(--muted); line-height:1.7; }

.footer-royal__list{ list-style:none; padding:0; margin:0; }
.footer-royal__list li{ padding:8px 0; border-bottom:1px dashed rgba(255,255,255,.06); color:var(--muted); }
.footer-royal__list li:last-child{ border-bottom:0; }

.footer-royal__links{ list-style:none; padding:0; margin:0; }
.footer-royal__links li{ margin:10px 0; }
.footer-royal__links a{
  position:relative; padding-bottom:3px;
}
.footer-royal__links a:after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background:var(--gold); transition:width .28s ease;
}
.footer-royal__links a:hover:after{ width:60%; }

.footer-royal__contactlines{ list-style:none; padding:0; margin:0 0 14px; color:var(--muted); }
.footer-royal__contactlines li{ margin:8px 0; }

.footer-royal__social{ display:flex; gap:12px; }
.footer-royal__social a{
  width:38px; height:38px; display:grid; place-items:center; border-radius:10px;
  background:#5f2a6d; border:1px solid rgba(255,255,255,.06);
  box-shadow: 0 6px 14px rgba(0,0,0,.4), 0 0 10px rgba(255,176,70,.08) inset;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.footer-royal__social a:hover{
  transform: translateY(-2px);
  border-color: rgba(255,176,70,.45);
  box-shadow: 0 10px 18px rgba(0,0,0,.55), 0 0 22px rgba(255,176,70,.35) inset;
}
.footer-royal__social svg{ width:18px; height:18px; fill:var(--ink); }
.footer-royal__social a:hover svg{ fill:var(--gold); }

.footer-royal__bottom{
  margin-top:28px; padding-top:18px;
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.08); color:var(--muted);
  font-size:14px;
}
.footer-royal__top{
  width:34px; height:34px; display:grid; place-items:center; border-radius:10px;
  background:#03182e; border:1px solid rgba(255,255,255,.06);
}
.footer-royal__top:hover{ border-color: var(--gold); color:var(--gold); }

.bg-f9f9f9{
  background-color: #f9f9f9;
}
.bg-f8f9fa{
  background-color: #f8f9fa;
}
.bg-blue{
  background-color: #3c4ed2;
}
.bg-doctor{
  background-color: #e3e3e3;
}
.doctor-heading{
  font-size: 45px;
  font-weight: 700;
  color: #000;
}
.doctor-sub-heading{
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.doctor-text{
  color: #000;
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
}


.feature-card {
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card .feature-icon {
  font-size: 2rem;
  color: #ff7a00; /* orange color */
}

.feature-card.active {
  border: 2px solid #ff7a00;
  background-color: #fff;
}

.feature-card:hover {
  border-color: #ff7a00;
  transform: translateY(-5px);
}

.feature-card h5 {
  color: #333;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

.owl-nav .owl-prev {
    font-size: 25px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    width: 45px;
    height: 45px;
    border-radius: 50px !important;
    line-height: 49px !important;
    background-color: #fe5900 !important;
    color: #fff !important;
    border: 1px solid #fe5900 !important;
}
.owl-nav .owl-next {
    font-size: 25px !important;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    width: 45px;
    height: 45px;
    line-height: 49px !important;
    border-radius: 50px !important;
    background-color: #fe5900 !important;
    color: #fff !important;
    border: 1px solid #fe5900 !important;
}
.owl-nav .owl-prev i, 
.owl-nav .owl-next i {
    position: relative;
    top: -8px;
    font-size: 20px;
}
.owl-nav{
  margin-top: 20px !important;
}


.read-more{
  display: inline-block;
  margin-top: 10px;
  color: #5e2a6d;
  font-weight: 600;
  text-decoration: underline;
}

.service-card {
  background: #fff;
  border-radius: 20px 20px 20px 20px;
  /* margin-bottom: 40px; */
  padding: 25px;
  transition: all 0.4s ease;
  border-bottom: 10px solid #5e2a6d;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
  background: #824294;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #5e2a6d82;
}
.service-card .service-title{
  font-size: 24px;
  font-weight: 600;
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .read-more {
  color: #fff;
}
.service-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}
.service-card p {
  margin-bottom: 0px;
}

.sector-card {
  border-radius: 20px;
  padding: 25px;
  /* margin-bottom: 30px; */
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sector-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.sector-card h3 {
  font-size: 20px;
  font-weight: 700;
  /* margin-bottom: 15px; */
}

.sector-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0px;
}

/* Background themes */
.real-estate { background-color: #ff6b6b; }
.health { background-color: #48c9b0; }
.lifestyle { background-color: #f39c12; }
.fintech { background-color: #5dade2; }
.retail { background-color: #af7ac5; }
.tech { background-color: #2ecc71; }
.education { background-color: #e67e22; }
.travel { background-color: #3498db; }

.underline{
 width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-section {
  border-bottom: 4px solid #5e2a6d;
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.about-section:hover {
  box-shadow: 0 0 12px #5e2a6d85, 0 10px 24px rgba(254, 89, 0, 0.25);
}
.about-img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 6px #ca8cd1, 0 10px 24px #ca8cd1;
}


.vision-mission-box {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 30px;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.vision-mission-box:hover {
  box-shadow: 0 8px 20px rgba(254, 89, 0, 0.5);
}
.vision-mission-box img {
    width: 100%;
    /* height: 80px; */
    /* object-fit: cover; */
    border-radius: 10px;
    margin-bottom: 20px;
}
.vision-mission-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.vision-mission-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}


.cta-section {
  background: linear-gradient(135deg, #e25527 0%, #ff7a4d 100%);
  color: #fff;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}
/* subtle icon pattern */
.cta-section::before {
  content: "\f0a1 \f0c0 \f27a \f0ac"; /* megaphone, users, bullhorn, globe */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 150px;
  color: rgba(255,255,255,0.07);
  position: absolute;
  top: 20%;
  left: 10%;
  white-space: nowrap;
  transform: rotate(-20deg);
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 15px;
}
.cta-para {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.cta-btn {
  background-color: #0f1c2c;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 14px;
  border: none;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background-color: #fff;
  color: #0f1c2c;
}


.card-content {
  position: relative;
  z-index: 2;
}

    .media-platforms-section {
      padding: 60px 0;
      background-color: #ffffff;
    }

    .media-platforms-section h2 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #0f1c2c;
    }

    .media-card {
      background: #fff;
      border-radius: 15px;
      padding: 20px;
      transition: 0.3s ease-in-out;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      height: 100%;
    }

    .media-card:hover {
      box-shadow: 0 0 20px #fe5900;
      transform: translateY(-5px);
    }

    .media-card img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .get-featured-btn {
      background-color: #fe5900;
      border: none;
      font-weight: bold;
      padding: 14px 48px;
      border-radius: 50px;
      font-size: 18px;
      box-shadow: 0 6px 20px rgba(254, 89, 0, 0.4);
      color: #fff;
      transition: 0.3s ease-in-out;
    }

    .get-featured-btn:hover {
      background-color: #e25500;
      color: #fff;
    }

    .media-heading {
      font-weight: 700;
      font-size: 36px;
      color: #4953A4;
    }
    .media-subtext {
      font-size: 18px;
      color: #333;
    }
    #mediaCarousel .carousel-item img {
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      width: 100%;
      height: auto;
    }
    #mediaCarousel .carousel-control-prev-icon,
    #mediaCarousel .carousel-control-next-icon {
      background-color: #000;
      border-radius: 50%;
      padding: 10px;
    }
    #mediaCarousel .carousel-inner {
      padding: 30px 0;
    }

.call-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #f77043;
  color: white;
  font-size: 20px;
  padding: 11px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 50px;
  height: 50px;
  text-align: center;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 50px;
  height: 50px;
  text-align: center;
}


@media only screen and (max-width: 680px) {
  .section {
    padding: 44px 0px;
  }
  .main-heading{
      font-size: 22px;
  }
  .banner-area{
      padding: 40px 0px;
  }
  .banner-title{
      font-size: 24px;
      line-height: normal;
  }
  .nav-link{
    padding: 10px 10px !important;
    border-bottom: 1px solid #ddd;
  }
  .service-card .service-title{
    font-size: 20px;
  }
  .hero{
      position: relative;
      top: unset;
      left: unset;
      transform: unset;
      width: 100%; /* adjust as needed */
      z-index: 5;
    }
    .hero:after{
      content:""; position:absolute; inset:0; pointer-events:none;
      background: radial-gradient(40rem 18rem at 50% 5%, rgba(255, 255, 255, .06), transparent 40%), linear-gradient(180deg, rgba(255, 176, 70, .35), #212529);
    }
}