* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins, sans-serif;
  font-size: 16px;
  color: #515d63;
}

.header {
  background: #582b86;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cont {
  max-width: 100%;
  margin: auto;
  padding: 18px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 0px;
  
  align-items: center;
  justify-content: space-between;
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  background: #1b8d7e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: #777;
}

/* Nav */
.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  
}

/* CTA */
.cta-btn {
  background: #e6316c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.cta-btn:hover {
  background: #1b8d7e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: #582b86;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }

  .nav.active {
    display: flex;
  }

  .cta-btn {
   
  }

  .hamburger {
    display: flex;
  }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.heading {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    
}

.brtop {
    border-top: #c40565 solid 3px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    width: 220px;
    
}

  .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #ff9a2f, #ff7a00);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.35);
    transition: all 0.25s ease;
  }

  .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 122, 0, 0.45);
  }

  .book-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(255, 122, 0, 0.35);
  }

  .icon {
    width: 18px;
    height: 18px;
    display: inline-block;
  }

  .icon svg {
    width: 100%;
    height: 100%;
    fill: white;
  }

  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #ff9a2f, #ff7a00);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.35);
    transition: all 0.25s ease;
  }

  .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 122, 0, 0.45);
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .icon svg {
    width: 100%;
    height: 100%;
    fill: white;
  }


 .mainspace{
  padding-top: 35px;
  padding-bottom: 35px;
 }


 .homebg {
    width: 100%;
    height: auto;
    
    background: #212121 url(../images/bg.jpg) no-repeat center center fixed;
    background-size: cover;
}

.hero {
  position: relative;
  min-height: 100vh;
  
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  
}


.hero-content {
  flex: 1;
}

.badge {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #f59e0b;
}

.qualifications,
.specialty {
  margin-bottom: 15px;
  font-size: 20px;
  color: #d1d5db;
  line-height: 30px;
}

.description {
  margin: 20px 0;
  font-size: 15px;
  color: #e5e7eb;
  max-width: 500px;
  line-height: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.btn {
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.primary {
  background: #f59e0b;
  color: #000;
}

.primary:hover {
  background: #fbbf24;
}

.secondary {
  border: 1px solid #94a3b8;
  color: #fff;
  pointer-events: ;
}

.secondary:hover {
  background: #1e293b;
}

.info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #fff;
}

/* IMAGE CARD */
.hero-image {
  flex: 0.9;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  background: #fff;
  padding: 20px;
}

.stats {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #fff;
  color: #000;
  padding: 12px 18px;
 
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats strong {
  font-size: 18px;
  color: #0f766e;
}

.stats span {
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
   

   
  }

  .cta-buttons {
    justify-content: center;
  }

  .info {
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}


.well {
    min-height: 20px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
   border-radius: 5px;
   }

.well2box {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #fff;
   border: 1px solid #fff;
   border-radius: 20px;
   }

.well3 {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f1eeee;
   border: 1px solid #e1e1e1;
   border-radius: 20px;
   }

   .box-orange {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #ffd39f;
   border: 2px solid #f7b260;
   border-radius: 10px;

   }
    
.icon {
  width: 52px;
  height: 52px;
  background: #a2d1c9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}
.splfont {
  font-family: Playfair Display, Georgia, serif;
  font-size: 3em;
}

.gap-3 {
    gap: .75rem;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}

.box2 {
  border: 3px solid orange;
  border-radius: 15px;
  background-color: #e4f0ec;
}
.img-style {
  border-radius: 20px;
}
.img-style2 {
  border-top-right-radius: 20px;
   border-top-left-radius: 20px;
}

.aclass {
  text-decoration: none;
  color: #026863;
}
.aclass:hover {
  text-decoration: none;
}

.icon2 {
  width: 56px;
  height: 56px;
  background-color: #e6f3f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.card {
  background-color: #d9f5f4;
  border-radius: 16px;
  padding: 25px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.testimonial-container {
  position: relative;
  width: 100%;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.testimonial {
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 20px;
  color: #555;
}

.testimonial h4 {
  margin-top: 1rem;
  font-weight: bold;
  color: #333;
}

.controls {
  margin-top: 4rem;
}

.controls button {
  background: #007BFF;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}
#backToTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    color: #fff;
   
    border: none;
}

.enquiry-card {
      max-width: 100%;
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 0 10px rgb(64 59 59 / 34%);
      margin: auto;
    }

    .tabs {
      display: flex;
      border-bottom: 2px solid #eee;
      margin-bottom: 15px;
    }

    .tab {
      padding: 10px 20px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      cursor: pointer;
      background: #f5f5f5;
      color: #333;
      font-weight: 500;
    }

    .tab.active {
      background: #f4b97f;
      color: #000;
    }

    h4 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    
.flink {
  color: #fff;
}
.flink:hover {
  color: #fff;
  text-decoration: none;
}

.contenttxth1 {
  font-size: 30px;
    font-weight: bold;
    color: #1b8d7e;
}
.contenttxth2 {
  font-size: 20px;
    font-weight: bold;
    color: #000;
}
.contenttxth3 {
  font-size: 20px;
    font-weight: bold;
    color: #000;
}
.contenttxth4 {
  font-size: 17px;
    font-weight: bold;
    color: #000;
}

ul {
  list-style: disc;
  padding-left: 30px;
}
.flink2 {
  color: #000;
}
.flink2:hover {
  color: #000;
  text-decoration: none;
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.float-btn img {
  width: 26px;
  height: 26px;
}

/* Colors */
.whatsapp {
  background-color: #25D366;
}

.call {
  background-color: #000;
  color: #fff;
}
/* Hide radio buttons */

/* Hide radio buttons */
/* hide radios */
input {
  display: none;
}

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

/* default button */
.tabs label {
  padding: 10px 20px;
  background: #e6316c;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* active button (correct way) */
#t1:checked ~ .tabs label[for="t1"],
#t2:checked ~ .tabs label[for="t2"],
#t3:checked ~ .tabs label[for="t3"],
#t4:checked ~ .tabs label[for="t4"] {
  background: #582b86;

}

/* content */
.content {
  display: none;
  padding: 15px;
  background: #f1f1f1;
  width: 100%;
  border-radius: 5px;
  text-align: left;
}

/* correct content mapping */
#t1:checked ~ .c1,
#t2:checked ~ .c2,
#t3:checked ~ .c3,
#t4:checked ~ .c4,
#t5:checked ~ .c5 {
  display: block;
}

.fa-solid {
  color: #fff;
}
/* icon */
.tabs i {
  width: 18px;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .wrapper {
    flex-direction: column;
  }

  .tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
  }

  .tabs label {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 10px;
  }

  .tabs i {
    display: none; /* optional: hide icons on small screens */
  }

  .content {
    width: 100%;
  }
}

/* container */
.sidebar {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* card */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* price box */
.price {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 14px;
  border: 1px solid #dbe3ff;
  border-radius: 8px;
}

/* button */
.btn-primary {
  margin-top: 12px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #5b3df5, #6a5cff);
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* contact card */
.contact {
  
  justify-content: space-between;
  align-items: center;
}

.contact h4 {
	text-align:center;
  margin: 0;
}

.contact p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #6b7280;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #ede9fe;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6d28d9;
  font-size: 20px;
}

/* outline button */
.btn-outline {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border: 2px solid #6d28d9;
  border-radius: 30px;
  background: white;
  color: #6d28d9;
  font-weight: bold;
  cursor: pointer;
}

/* promo card */
.promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo h4 {
  margin: 0;
}

.promo small {
  color: #6b7280;
}

.promo img {
  width: 70px;
  border-radius: 8px;
}

/* mobile responsive */
@media (max-width: 600px) {
  .sidebar {
    width: 100%;
  }
}
.enquiry-card {
      max-width: 100%;
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 0 10px rgb(64 59 59 / 34%);
      margin: auto;
    }

    .tabs {
      display: flex;
      border-bottom: 2px solid #eee;
      margin-bottom: 15px;
    }

    .tab {
      padding: 10px 20px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      cursor: pointer;
      background: #f5f5f5;
      color: #333;
      font-weight: 500;
    }

    .tab.active {
      background: #f4b97f;
      color: #000;
    }

    h4 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

  
/* background section (optional like your app) */

/* form box */
.form-box {
  max-width: 100%;
}

/* form group */
.form-group {
  margin-bottom: 18px;
}

/* INPUT + TEXTAREA FIX (IMPORTANT) */
.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  background: transparent;
  display: block;   /* 🔥 IMPORTANT FIX */
}

/* focus */
.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 2px solid #5b4dc0;
}

/* textarea */
textarea {
  resize: none;
}

/* button */
.btn-send {
  width: 100%;
  padding: 12px;
  background: #5b4dc0;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* circle icon */
.icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #c6c6c6;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* hover effect */
.icon:hover {
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

/* brand colors */
.facebook:hover { background: #1877f2; }
.instagram:hover { background: #e4405f; }
.twitter:hover { background: #000; }
.linkedin:hover { background: #582b86; }
.youtube:hover { background: #ff0000; }

a:focus,
a:active {
  outline: none;
  box-shadow: none;
}