* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0c0f17;
  color: white;
  overflow-x: hidden;
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');



/* Transparent ti */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 999;
}

/* Container */
.container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

/* Logo */
.logo {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}
/* ========================= */
/* LOGO IMAGE ONLY */
/* ========================= */

/* Header container */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo image ko right side bhejne ke liye */
.logo-img {
    margin-left: px;   /* pushes logo to right */
}

/* Logo image size control */
.logo-img img {
    width: 60px;
    height: auto;
    object-fit: contain;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;   /* Increased Font Size */
    font-weight: 500;
    transition: 0.3s ease;
    position: relative;
}

/* Hover underline animation */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #00e5ff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #00e5ff;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: #ffffff;
    width: 220px;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: none;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #333;
    font-size: 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Appointment Button */
.appointment-btn a {
    background: linear-gradient(45deg, #ff512f, #dd2476);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 16px;   /* Increased Font */
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.appointment-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(221,36,118,0.4);
}


/* HERO SECTION */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  gap: 40px;
}

/* LEFT SIDE */

.left {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 120px #0077ff;
  margin-top: 120px;
}

/* SLIDER */

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* ICONS */

.icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.icon {
  position: absolute;
  font-size: 42px;
  background: rgba(0,0,0,0.6);
  padding: px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px #00aaff;
  transition: 0.3s;
}

.icon:hover {
  transform: scale(1.2);
}

/* Proper Circular Alignment */

.i1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.i2 { top: 25%; right: -20px; }
.i3 { bottom: 25%; right: -20px; }
.i4 { bottom: 0%; left: 50%; transform: translate(-50%, 50%); }
.i5 { bottom: 25%; left: -20px; }
.i6 { top: 25%; left: -20px; }

/* RIGHT SIDE */

.right {
  width: 45%;
}

.right h1 {
  font-size: 48px;
  line-height: 1.3;
}

.right h1 span {
  color: #e48920;
}

.right p {
  margin: 20px 0;
  color: #ccc;
  line-height: 1.6;
}

.read-btn {
  background: #ffa04d;
  border: none;
  padding: 12px 12px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.read-btn:hover {
  background: #ff1a1a;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .left, .right {
    width: 100%;
  }

  .circle {
    width: 350px;
    height: 350px;
  }

  .icon {
    font-size: 28px;
    padding: 12px;
  }

  .right h1 {
    font-size: 32px;
  }
}
/* =========================
   FOUNDER SECTION
========================= */

.founder {
  text-align: center;
  padding: 100px 20px;
  background: #f8f8f8;
}

.quote-mark {
  font-size: 80px;
  color: #ddd;
}

.quote-text {
  font-size: 26px;
  font-style: italic;
  color: rgb(15, 123, 190);
  margin-bottom: 40px;
}

.founder-image img {
  width: 280px;
  border-radius: 50%;
  margin-bottom: 20px;
  
}

.founder-name {
  font-size: 35px;
  color: #f3860a;
  margin-bottom: 20px;
  font-family: italic;
}

.founder-desc {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}
.services-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #fdfbfb, #f3e7e9);
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.services-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #b23a48;
    margin-bottom: 20px;
}

.services-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 500px;
}

/* RIGHT SIDE CARDS */
.services-right {
    display: grid;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
    color: #2d3142;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BUTTON */
.service-card a {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.service-card a:hover {
    transform: scale(1.05);
}


.card {
    background: #fff;
    width: 320px;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #c62d42;
    
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #4b2158;
}

.card p {
    font-size: 15px;
    color: #033bf5;
    margin-bottom: 25px;
    margin-top: 10;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff512f, #dd2476);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.extra-services {
  background: #f6f2f2;
  padding: 80px 20px;
}

.extra-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.extra-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.extra-card:hover {
  transform: translateY(-10px);
}

.extra-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.extra-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #8a2be2;
}

.extra-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.extra-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #ff5a3c;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.extra-btn:hover {
  background: #e0482c;
}
.expert-section {
  position: relative;
  background: linear-gradient(135deg, #d49aba, #2380dc);
  padding: 120px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.expert-overlay {
  max-width: 900px;
  margin: auto;
}

.expert-section h2 {
  font-size: 45px;
  margin-bottom: 20px;
  font-weight: 600;
}

.expert-section h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.5;
}

.down-arrow {
  font-size: 30px;
  margin-bottom: 25px;
}

.expert-section p {
  font-size: 10px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.expert-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #ff6a3d;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.expert-btn:hover {
  background: #ff4d1f;
  transform: scale(1.05);
}
.power-section {
  padding: 100px 20px;
  background: #fddbdb;
  text-align: center;
}

.power-container {
  max-width: 1200px;
  margin: auto;
}

.power-title {
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(90deg, #2baab6, #f3ab45, #f97249);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.power-subtitle {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.8;
  color: #6b2d84;
}

.power-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.power-card {
  width: 300px;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.power-card:hover {
  transform: translateY(-10px);
}

.power-card .icon {
  font-size: 35px;
  margin-bottom: 20px;
}

.power-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #6b2d84;
}

.power-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Background Variations */
.light-blue {
  background: #dce9e6;
}

.light-pink {
  background: #ead7d2;
}

.light-gray {
  background: #e9e9e9;
}
.footer {
  background: #f4f4f4;
  padding: 80px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1f2b6c;
}

.footer-col p {
  margin: 8px 0;
  color: #777;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #777;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff5a3c;
}

.trusted-badge img {
  width: 120px;
  margin: 20px 0;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #ddd;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff5a3c;
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}

/* ABOUT HERO */

.about-hero {
    background: linear-gradient(90deg, #8e2de2, #ff416c);
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-hero p {
    opacity: 0.8;
}

/* ABOUT CONTENT */

.about-content {
    padding: 100px 20px;
    text-align: center;
    background: #f4f4f4;
}

.about-content h2 {
    max-width: 900px;
    margin: auto;
    font-size: 32px;
    color: #0f216c;
    line-height: 1.6;
}
.about-text {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}.vision-mission-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.vm-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.vm-box {
    flex: 1 1 500px;
    padding: 60px 45px;
    border-radius: 25px;
    text-align: center;
    background: #ffffff;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top: 6px solid #d4af37;
}

.vm-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.vm-icon {
    font-size: 42px;
    margin-bottom: 20px;
    color: #d4af37;
}

.vm-box h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 600;
}

.vm-box p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

.why-choose-section {
    padding: 80px 20px;
    background: #e9dbe4;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 36px;
    color: #6a1b9a;
    margin-bottom: 10px;
}

.why-header p {
    font-size: 18px;
    color: #555;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.why-card {
    flex: 1 1 320px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.why-number {
    font-size: 40px;
    font-weight: bold;
    color: #ff6f3c;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #6a1b9a;
}

.why-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}
.why-choose-section {
    padding: 90px 20px;
    background: #f4f8f7;
}

.why-header h2 {
    font-size: 38px;
    color: #0f3057;
}

.why-header p {
    color: #555;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border-top: 5px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-number {
    font-size: 45px;
    font-weight: bold;
    color: #d4af37;
}

.why-card h3 {
    color: #0f3057;
    margin: 15px 0;
}

.why-card p {
    color: #444;
}
/* PAGE BANNER */
.page-banner {
    background: linear-gradient(135deg, #8e2de2, #ff416c);
    padding: 120px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
}


.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #6a1b9a;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
}

/* Dropdown Hidden */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 200px;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* Dropdown Items */
.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #333;
    font-size: 15px;
}

/* Hover Effect */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover Item Effect */
.dropdown-menu li:hover {
    background: #f4f4f4;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo a {
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    color: #6a1b9a;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    padding: 8px 0;
    display: block;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #ffffff;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    font-size: 14px;
    color: #333;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hover effect */
.nav-menu a:hover {
    color: #6a1b9a;
}

/* Appointment button */
/*.appointment-btn a {
    background: #e63963;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.appointment-btn a:hover {
    background: #c2185b;
}
/* Import Modern Font */
.story-image {
    text-align: center;
    margin: 40px 0;
}

.story-image img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}