/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0f0f1a;
  color: white;
  padding-top: 70px;
}


/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(5px);
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.logo img {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh; /* 🔥 full viewport */
  background: url("../assets/images/Banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0; /* 🔥 mobile safety */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 15, 26, 0.7),
    rgba(15, 15, 26, 0.85)
  );
}


.hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.2;
  transition: transform 0.3s ease;
}

.hero h1 span {
  background: linear-gradient(90deg, #5f9cff, #a855f7);
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 20px auto;
  max-width: 650px;
  color: #d6d6d6;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero h1:hover {
  transform: scale(1.03);
  background: linear-gradient(90deg, #2600ff, #fa0000);
  background-clip: text;
  color: transparent;
}
.hero h1 span:hover {
  transform: scale(1.03);
  background: linear-gradient(90deg, #150797, #b60f62);
  background-clip: text;
  color: transparent;
}

.hero p:hover {
  color: #fff;
  transform: scale(1.02);
}

.primary-btn {
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #5f9cff, #a855f7);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.primary-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
}

/* HERO STATS */
.hero-stats {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.stat {
  transition: transform 0.35s ease;
}

.stat:hover {
  transform: scale(1.08);
}

.stat h2 {
  font-size: 36px;
}

.stat p {
  color: #cfcfcf;
}

/* ================= SERVICES ================= */
.services {
  padding: 90px 60px;
  background: #f9f9fb;
  color: #111;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* SERVICE CARD */
.service-card {
  position: relative;
  padding: 10px;
  border-radius: 22px;
  background: #f3f3f3;
  overflow: hidden;
  transition: all 0.55s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #007cf0, #00dfd8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* DEFAULT DESCRIPTION */
.service-desc-default {
  font-size: 15px;
  color: #555;
}

/* HOVER DESCRIPTION */
.service-desc-hover {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  transition: all 0.4s ease;
}

/* LEARN MORE (DEFAULT) */
.learn-btn {
  margin-top: 22px;
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #5f9cff, #a855f7);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ACTION BUTTONS (HOVER) */
.service-actions {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.outline-btn {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  cursor: pointer;
}

.solid-btn {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

/* ===== HOVER STATE ===== */
.service-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 35px 70px rgba(0, 124, 240, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover h3 {
  color: #fff;
}

/* Hide Learn More COMPLETELY */
.service-card:hover .learn-btn{
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}
.service-card:hover .service-desc-default{
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

/* Show hover description */
.service-card:hover .service-desc-hover {
  opacity: 1;
  max-height: 120px;
}

/* Show buttons */
.service-card:hover .service-actions {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .navbar nav {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }

  .primary-btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

/* CTA SECTION */
.cta-section {
  padding: 80px 25px;
  display: flex;
  justify-content: center;
  background: #f9f9fb;
}

.cta-box {
  width: 100%;
  max-width: 1100px;
  padding: 60px 40px;
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 17px;
  color: #e5e7eb;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-outline {
  padding: 14px 28px;
  border-radius: 999px;
  background: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cta-solid {
  padding: 14px 28px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cta-outline:hover,
.cta-solid:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box h2 {
    font-size: 28px;
  }
}



/* ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, #2b2e83, #5a2a82);
  padding: 80px 6%;
  color: #fff;
}

/* ===== TOP CENTER ===== */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
}

.about-title span {
  background: linear-gradient(90deg, #5b8cff, #b66dff, #ff6ec4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: 16px;
  opacity: 0.9;
}

/* ===== CONTENT ROW ===== */
.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* TAGS */
.about-tags {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.about-tags span {
  padding: 6px 16px;
  background: #fff;
  color: #2b2e83;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* BUTTON */
.about-btn {
  margin-top: 10px;
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff4ecd, #7a5cff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
  display: inline-block;
}

/* LEFT + BOTTOM BORDER (FIXED) */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  position: absolute;
  right: -9px;
  bottom: -6px;
  width: 100%;
  height: 100%;
  border-right: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
  border-radius: 16px;
  z-index: 1;



  width: calc(100% - 5px);
  height: calc(100% - 8px);
}

/* IMAGE */
.about-image-wrapper img {
  width: 626px;
  height: 443px;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}


@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
  }

  .about-image-wrapper img {
    width: 100%;
    height: auto;
  }
}
.excellence-section {
  position: relative;
  padding: 120px 6%;
  background: url("../assets/images/stats.jpg") center/cover no-repeat;
}

.excellence-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
}

.excellence-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.excellence-content h2 {
  font-size: 42px;
  font-weight: 800;
  background: black;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.excellence-content h2 span {
  background: linear-gradient(90deg,#4f7cff,#c44dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.excellence-content p {
  margin: 16px auto 60px;
  max-width: 700px;
  color: #555;
}

.excellence-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.stat-card {
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  transition: all 0.35s ease;
}

.stat-card h3 {
  font-size: 34px;
}

.stat-card span {
  font-size: 14px;
  opacity: 0.9;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
}

/* COLORS */
.blue   { background: linear-gradient(135deg,#2563eb,#1e40af); }
.purple { background: linear-gradient(135deg,#9333ea,#6b21a8); }
.pink   { background: linear-gradient(135deg,#db2777,#9d174d); }
.indigo { background: linear-gradient(135deg,#6366f1,#3730a3); }

@media (max-width: 900px) {
  .excellence-stats {
    grid-template-columns: repeat(2,1fr);
  }
}
.why-section {
  padding: 120px 6%;
  background: linear-gradient(135deg,#6b21a8,#4c1d95);
  color: #fff;
  text-align: center;
}

.why-section h2 {
  font-size: 44px;
  font-weight: 800;
}

.why-section h2 span {
  background: linear-gradient(90deg,#7c83ff,#ff6ad5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-subtitle {
  max-width: 650px;
  margin: 16px auto 70px;
  opacity: 0.9;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #eefcff;
  color: #111;
  padding: 32px;
  border-radius: 18px;
  text-align: left;
  transition: all 0.35s ease;
}

/* ICON HOLDER */
.why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  stroke: #7c3aed;
  fill: none;
  transition: all 0.35s ease;
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}

/* HOVER EFFECT (Tailwind idea applied) */
.why-card:hover {
  background: linear-gradient(135deg,#7c3aed,#1e40af);
  color: #fff;
  transform: translateY(-10px);
}

.why-card:hover p {
  color: #e5e7eb;
}

.why-card:hover .why-icon svg {
  stroke: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  padding: 100px 0;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 15px auto 70px;
  color: #64748b;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item p {
  color: #64748b;
  margin-top: 4px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.icon.blue {
  background: #2563eb;
}
.icon.purple {
  background: #7c3aed;
}
.icon.green {
  background: #16a34a;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: oklch(37.3% 0.034 259.733);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: oklch(37.3% 0.034 259.733);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background: linear-gradient(90deg, #2563eb, #9333ea);
}
.footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #94a3b8;
  position: relative;
  padding-top: 140px; 
}

.footer-wave {
  position: absolute;
  top: -1px;              /* footer se chipka hua */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.info-item {
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(6px);
}

.info-item .icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.contact-form button {
  transition: all 0.35s ease;
}

.contact-form button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(147,51,234,0.4);
}
.contact-form input,
.contact-form textarea {transition: all 0.35s ease;}
.contact-form input:hover,
.contact-form textarea:hover{transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(147,51,234,0.4);}


.footer-col ul li {
  transition: all 0.3s ease;
}

.footer-col ul li:hover {
  color: #ffffff;
  transform: translateX(6px);
}
.footer-col h3,
.footer-col h4 {
  transition: color 0.3s ease;
}

.footer-col h3:hover,
.footer-col h4:hover {
  color: #c084fc;
}





/* ICON WRAPPER */
.icon {
  width: 48px;
  height: 48px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG CONTROL (MOST IMPORTANT) */
.icon svg {
  width: 22px;
  height: 22px;
  display: block;
}








html {
  scroll-behavior: smooth;
}
