/* Import Poppins font */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #7c3aed;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #e879f9;
}

/* Hamburger for mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1201;
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: #7c3aed;
  border-radius: 2px;
  transition: 0.3s;
}

/* Badge - visually appealing */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(90deg, #e879f9 0%, #7c3aed 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.5em 1.5em 0.5em 1em;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.13);
  letter-spacing: 1px;
  border: 2px solid #fff3;
  text-shadow: 0 1px 2px #7c3aed33;
}
.badge-icon {
  margin-right: 0.3em;
  display: inline-block;
  vertical-align: middle;
}

/* HERO SECTION UPDATED */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('https://images.pexels.com/photos/7089987/pexels-photo-7089987.jpeg') center/cover no-repeat;
  clip-path: polygon(0% 15%, 0 0, 15% 0%, 85% 0%, 100% 0, 100% 15%, 100% 91%, 100% 100%, 85% 100%, 75% 100%, 63% 91%, 0 91%);
  margin-bottom: 3rem;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  z-index: 2;
}
.hero-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  z-index: 2;
  min-width: 260px;
}
.hero-left .badge {
  margin-bottom: 1.2rem;
}
.hero-left h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem 0;
  letter-spacing: 1px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #7c3aed 0%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-left .hero-subheading {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
  color: #f3e8ff;
  text-align: left;
  line-height: 1.3;
  max-width: 600px;
}
.hero-left .hero-buttons {
  justify-content: flex-start;
}
.hero-right {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 260px;
}
.glass-card {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(124,58,237,0.18);
  border-radius: 24px;
  padding: 2.2rem 2.2rem 1.5rem 2.2rem;
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 260px;
  max-width: 320px;
  align-items: flex-start;
  animation: fadeIn 1.2s ease;
}
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}
.hero-card-item:last-child {
  margin-bottom: 0;
}
.hero-icon {
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  padding: 0.4em 0.5em;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icon svg {
  display: block;
  width: 2.1rem;
  height: 2.1rem;
}
.hero-card-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7c3aed;
  display: block;
}
.hero-card-label {
  font-size: 1rem;
  color: #6b7280;
  display: block;
}

/* Buttons with icon and gradient hover */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.9em 2.2em;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(124,58,237,0.13);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  outline: none;
}
.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
}
.btn-gradient {
  background: linear-gradient(90deg, #7c3aed 60%, #e879f9 100%);
  color: #fff;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #e879f9 60%, #fbc2eb 100%);
  color: #7c3aed;
  box-shadow: 0 6px 24px rgba(232,121,249,0.18);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: linear-gradient(90deg, #e879f9 60%, #fbc2eb 100%);
  color: #7c3aed;
  border: 2px solid transparent;
  box-shadow: 0 6px 24px rgba(232,121,249,0.18);
}

/* Responsive Styles for Hero Section */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
  }
  .hero-left, .hero-right {
    width: 100%;
    min-width: 0;
  }
  .hero-right {
    justify-content: flex-start;
    margin-top: 2.5rem;
  }
  .glass-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
  .hero-left .hero-subheading {
    font-size: 1.2rem;
  }
  .hero-left h1 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }
  .badge {
    margin-top: 2.2rem;
  }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100vw;
    background: rgba(30, 30, 40, 0.98);
    flex-direction: column;
    gap: 1.5rem;
    width: 200px;
    height: 100vh;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: -2px 0 16px rgba(124,58,237,0.08);
    transition: right 0.3s;
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li a {
    color: #fff;
    font-size: 1.1rem;
    padding: 0.5em 0;
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links li a:hover {
    background: linear-gradient(90deg, #7c3aed 60%, #e879f9 100%);
    color: #fff;
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-container {
    padding: 0.7rem 0.7rem !important;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
    clip-path: polygon(0% 15%, 0 0, 15% 0%, 85% 0%, 100% 0, 100% 15%, 100% 91%, 100% 100%, 85% 100%, 75% 100%, 63% 91%, 0 91%);
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.5rem;
  }
  .hero-left, .hero-right {
    width: 100%;
    min-width: 0;
  }
  .hero-left {
    padding-right: 0;
  }
  .hero-left h1 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #7c3aed 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .hero-left .hero-subheading {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }
  .badge {
    font-size: 0.85rem;
    padding: 0.35em 1em 0.35em 0.7em;
    margin-bottom: 0.7rem;
    margin-top: 3.2rem;
  }
  .badge-icon {
    width: 15px;
    height: 15px;
  }
  .btn {
    font-size: 0.95rem;
    padding: 0.6em 1.2em;
    gap: 0.5em;
  }
  .btn-icon {
    width: 16px;
    height: 16px;
  }
  .hero-buttons {
    gap: 0.7rem;
  }
  .glass-card {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    min-width: 0;
    max-width: 143px;
    width: 55vw;
    border-radius: 14px;
    gap: 0.7rem;
    margin: 0;
    align-items: flex-start;
  }
  .hero-right {
    justify-content: flex-start;
    margin-top: 1.2rem;
  }
  .hero-card-item {
    gap: 0.5rem;
  }
  .hero-icon svg {
    width: 0.85rem;
    height: 0.85rem;
  }
  .hero-card-value {
    font-size: 0.68rem;
  }
  .hero-card-label {
    font-size: 0.55rem;
  }
  .subheading-desktop { display: none; }
  .subheading-mobile { display: block; }
  .nav-container {
    position: relative;
  }
  .nav-toggle {
    display: flex !important;
    position: absolute !important;
    left: 35%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    z-index: 1001;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Placeholder sections */
#about, #services, #book, #contact {
  min-height: 100px;
}

.subheading-desktop { display: block; }
.subheading-mobile { display: none; }

/* ABOUT US SECTION REDESIGN */
.aboutus-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(120deg, #181c2a 70%, #23263a 100%);
  padding: 4.5rem 0 4rem 0;
  box-sizing: border-box;
  overflow: hidden;
}
.aboutus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}
.aboutus-text-col {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 260px;
  z-index: 2;
}
.aboutus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(90deg, #e879f9 0%, #7c3aed 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.5em 1.5em 0.5em 1em;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.13);
  letter-spacing: 1px;
  border: 2px solid #fff3;
  text-shadow: 0 1px 2px #7c3aed33;
}
.aboutus-badge-icon {
  margin-right: 0.3em;
  display: inline-block;
  vertical-align: middle;
}
.aboutus-heading-gradient {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #7c3aed 0%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.aboutus-tagline {
  font-size: 1.18rem;
  color: #e0e6f7;
  margin-bottom: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.aboutus-values-row {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.aboutus-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 80px;
}
.aboutus-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #23263a;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,30,40,0.13);
  margin-bottom: 0.2rem;
}
.aboutus-value-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: #fff;
  fill: none;
}
.aboutus-value-label {
  font-weight: 700;
  color: #7c3aed;
  font-size: 1.05rem;
}
.aboutus-value-desc {
  color: #e0e6f7;
  font-size: 0.98rem;
  font-weight: 400;
}
.aboutus-img-col {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.aboutus-img-glass {
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(124,58,237,0.18);
  border-radius: 50%;
  padding: 1.1rem;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(124,58,237,0.10);
  background: #fff;
  display: block;
}
/* Fade-in animation for both columns */
.scroll-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}
.scroll-fadein.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .aboutus-container {
    flex-direction: column;
    gap: 2.2rem;
    padding: 0 1rem;
    align-items: stretch;
    position: relative;
  }
  .aboutus-img-col,
  .aboutus-img-glass {
    display: none !important;
  }
  .aboutus-img-mobile {
    display: block !important;
    width: 120px;
    height: 120px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(124,58,237,0.10);
    background: #fff;
    margin: 1.2rem 0 0 0;
  }
  .aboutus-img {
    display: none !important;
  }
  .aboutus-text-col {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 1.5rem 1rem;
    z-index: 2;
  }
  .aboutus-values-row {
    gap: 1.2rem;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .aboutus-img-mobile {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .aboutus-section {
    padding: 2.2rem 0 1.5rem 0;
  }
  .aboutus-heading-gradient {
    font-size: 1.2rem;
  }
  .aboutus-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .aboutus-values-row {
    gap: 0.7rem;
  }
  .aboutus-value-label {
    font-size: 0.92rem;
  }
  .aboutus-value-desc {
    font-size: 0.85rem;
  }
  .aboutus-img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
  }
}

/* SERVICES SECTION */
.services-section {
  background: #f6faff;
  padding: 0 0 4rem 0;
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  min-height: 0;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.08em;
}
.services-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1.2rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 0;
}
.services-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 990px;
  min-width: 0;
  gap: 1.5rem;
  min-height: 0;
}
.service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 32.5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.4,2,.3,1), box-shadow 0.35s;
  border: none;
  height: 340px;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px rgba(124,58,237,0.16);
  z-index: 2;
}
.service-card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30,30,40,0.32) 40%, rgba(30,30,40,0.08) 100%);
  z-index: 1;
}
.service-card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  padding: 1.1rem 1.2rem 1.2rem 1.2rem;
  box-sizing: border-box;
  text-shadow: 0 2px 8px rgba(30,30,40,0.18);
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,30,40,0.10);
  margin-bottom: 0.5rem;
}
.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #000;
  fill: none;
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  text-align: left;
}
.service-desc {
  font-size: 0.98rem;
  color: #e0e7ef;
  margin-bottom: 1.1rem;
  text-align: left;
  font-weight: 400;
}
.service-btn {
  background: linear-gradient(90deg, #7c3aed 60%, #e879f9 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.5em 1.3em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.service-btn:hover {
  background: linear-gradient(90deg, #e879f9 60%, #7c3aed 100%);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(232,121,249,0.18);
}
.services-nav {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  color: #7c3aed;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 3;
}
.services-nav:hover {
  background: #e879f9;
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,121,249,0.18);
}
.services-nav-left {
  left: 0;
}
.services-nav-right {
  right: 0;
}
@media (max-width: 1100px) {
  .services-slider-wrapper {
    max-width: 800px;
  }
  .services-slider {
    max-width: 720px;
  }
  .service-card {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 32.5%;
  }
}
@media (max-width: 900px) {
  .services-slider-wrapper {
    max-width: 600px;
  }
  .services-slider {
    max-width: 500px;
  }
  .service-card {
    min-width: 180px;
    max-width: 180px;
    flex: 0 0 32.5%;
    height: 260px;
  }
}
@media (max-width: 700px) {
  .services-slider-wrapper {
    max-width: 99vw;
  }
  .services-slider {
    max-width: 99vw;
    gap: 1rem;
    justify-content: flex-start;
  }
  .service-card {
    min-width: 90vw;
    max-width: 95vw;
    flex: 0 0 100%;
    height: 220px;
  }
  .service-card-content {
    padding: 0.7rem 0.7rem 0.8rem 0.7rem;
  }
  .service-title {
    font-size: 1rem;
  }
  .service-desc {
    font-size: 0.85rem;
  }
  .service-btn {
    font-size: 0.95rem;
    padding: 0.4em 1em;
  }
  .services-title {
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
  }
}

.service-img {
  width: 100%;
  max-width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 10px rgba(124,58,237,0.10);
  display: block;
}

/* Navbar Contact Us button */
.nav-contact-btn {
  margin-left: 1.2rem;
  padding: 0.5em 1.3em;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #7c3aed 60%, #e879f9 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-contact-btn:hover {
  background: linear-gradient(90deg, #e879f9 60%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,121,249,0.18);
}
@media (max-width: 700px) {
  .nav-contact-btn {
    margin-left: 0;
    width: 100%;
    font-size: 1.05rem;
    padding: 0.7em 0;
    border-radius: 18px;
  }
}

.aboutus-call-btn {
  margin: 2.8rem 0 0.5rem 0;
  font-size: 1.08rem;
  padding: 0.9em 2.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .aboutus-call-btn {
    margin: 2rem auto 0.7rem auto;
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* TEAM SECTION */
.team-section {
  background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
  padding: 4.5rem 0 4rem 0;
  position: relative;
  min-height: 100vh;
  display: block;
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: block;
}
.team-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: block;
}
.team-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  display: block;
}
.team-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  width: 100%;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
  position: relative;
  display: block;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.15);
}
.team-card-image {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.3s;
  display: block;
  box-shadow: 0 4px 20px rgba(124,58,237,0.10);
}
.team-card:hover .team-card-image img {
  transform: scale(1.05);
}
.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: 1px solid rgba(124,58,237,0.1);
  display: block;
}
.team-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.team-card-name h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.02em;
  display: block;
}
.team-card-name p {
  font-size: 0.9rem;
  color: #7c3aed;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
  display: block;
}
.team-card-contact {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.team-contact-btn {
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.team-contact-btn:hover {
  background: #7c3aed;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}
.team-contact-btn:hover svg {
  stroke: #fff;
}
.team-contact-btn svg {
  transition: stroke 0.2s;
  display: block;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .team-card-image {
    height: 300px;
  }
  .team-card-image img {
    border-radius: 14px;
  }
  .team-title {
    font-size: 1.8rem;
  }
  .team-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .team-section {
    padding: 3rem 0 2.5rem 0;
  }
  .team-container {
    padding: 0 1rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .team-card-image {
    height: 220px;
  }
  .team-card-image img {
    border-radius: 10px;
  }
  .team-title {
    font-size: 1.4rem;
  }
  .team-subtitle {
    font-size: 0.95rem;
  }
  .team-card-overlay {
    padding: 1rem 1.2rem;
  }
  .team-card-name h4 {
    font-size: 1rem;
  }
  .team-card-name p {
    font-size: 0.85rem;
  }
  .team-contact-btn {
    width: 32px;
    height: 32px;
  }
  .team-contact-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: linear-gradient(120deg, #fafdff 60%, #e8f4fd 100%);
  padding: 4.5rem 0 4rem 0;
  position: relative;
}
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.2rem;
}
.testimonials-title {
  font-size: 2.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7c3aed 0%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.testimonials-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.98);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  animation: fadeIn 1.2s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,0.13);
  transform: translateY(-6px) scale(1.03);
}
.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
  border: 3px solid #f3e8ff;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.testimonial-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: #7c3aed;
  margin: 0;
}
.testimonial-stars {
  display: flex;
  gap: 0.1rem;
  margin-top: 0.1rem;
}
.testimonial-text {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
  margin-top: 0.7rem;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .testimonial-card {
    min-height: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .testimonials-title {
    font-size: 1.3rem;
  }
  .testimonials-subtitle {
    font-size: 0.95rem;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }
  .testimonial-name {
    font-size: 1rem;
  }
  .testimonial-text {
    font-size: 0.97rem;
  }
}

/* CONTACT IMAGE */
.contact-image-col {
  flex: 1 1 35%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-right: 2.5rem;
}
.contact-image {
  width: 100%;
  max-width: 340px;
  min-width: 180px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.10);
  object-fit: cover;
  background: #fff;
  display: block;
}
@media (max-width: 1100px) {
  .contact-image-col {
    margin-right: 1.2rem;
  }
  .contact-image {
    max-width: 260px;
    border-radius: 16px;
  }
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-image-col {
    width: 100%;
    margin: 0 0 1.2rem 0;
    justify-content: center;
  }
  .contact-image {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    border-radius: 14px;
  }
}
@media (max-width: 600px) {
  .contact-image {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* CONTACT US SECTION (NEW) */
.contactus-section {
  background: #f0f4f8;
  padding: 4.5rem 0 1.5rem 0;
  position: relative;
}
.contactus-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  padding: 0 2rem;
}
.contactus-img-col {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactus-img {
  width: 100%;
  max-width: 420px;
  min-width: 180px;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(124,58,237,0.10);
  background: #fff;
  display: block;
}
.contactus-form-col {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 260px;
  gap: 1.5rem;
}
.contactus-title {
  font-size: 2rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.contactus-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contactus-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contactus-form-group label {
  font-size: 1rem;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contactus-form-group input,
.contactus-form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85em 1em;
  border: 1.5px solid #e0e6f7;
  border-radius: 12px;
  background: #fafdff;
  color: #222;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contactus-form-group input:focus,
.contactus-form-group textarea:focus {
  border: 1.5px solid #7c3aed;
  box-shadow: 0 2px 8px rgba(124,58,237,0.10);
}
.contactus-submit-btn {
  width: 100%;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  padding: 0.9em 2.2em;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(124,58,237,0.13);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.contactus-submit-btn:hover {
  background: linear-gradient(90deg, #60a5fa 60%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(124,58,237,0.18);
  transform: scale(1.03);
}
.contactus-location-block {
  margin-top: 2.2rem;
  background: #fafdff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(124,58,237,0.06);
  padding: 1.1rem 1.2rem;
  width: 100%;
}
.contactus-location-block h4 {
  color: #7c3aed;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.contactus-location-block p {
  color: #444;
  font-size: 0.98rem;
  margin: 0.2rem 0;
}
.contactus-location-block a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contactus-location-block a:hover {
  color: #7c3aed;
  text-decoration: underline;
}
/* Fade-in animation for contact section */
.contactus-img-col.scroll-fadein, .contactus-form-col.scroll-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}
.contactus-img-col.scroll-fadein.visible, .contactus-form-col.scroll-fadein.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .contactus-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: stretch;
  }
  .contactus-img-col {
    width: 100%;
    min-width: 0;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .contactus-img {
    min-height: 220px;
    max-width: 100%;
    border-radius: 16px;
  }
  .contactus-form-col {
    width: 100%;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
@media (max-width: 600px) {
  .contactus-img {
    min-height: 140px;
    border-radius: 10px;
  }
  .contactus-title {
    font-size: 1.2rem;
  }
}

/* FOOTER SECTION */
.footer-section {
  background: #f6f7fb;
  color: #222;
  padding: 2rem 0 1.5rem 0;
  border-top: 1.5px solid #e0e6f7;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.footer-about {
  flex: 1 1 45%;
  min-width: 260px;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}
.footer-desc {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.footer-hours-loc {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 220px;
}
.footer-hours h4,
.footer-location h4 {
  color: #7c3aed;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.footer-hours ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.footer-hours ul li {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0.2rem;
}
.footer-location p {
  color: #444;
  font-size: 0.98rem;
  margin: 0.2rem 0;
}
.footer-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fafdff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(124,58,237,0.07);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-social-icon:hover {
  background: #7c3aed;
  box-shadow: 0 4px 16px rgba(124,58,237,0.13);
  transform: scale(1.08);
}
.footer-social-icon:hover svg {
  stroke: #fff;
}
.footer-social-icon svg {
  transition: stroke 0.2s;
}
.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  color: #888;
  font-size: 0.98rem;
}
.footer-desc a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-desc a:hover {
  color: #7c3aed;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: stretch;
  }
  .footer-about, .footer-hours-loc {
    width: 100%;
    min-width: 0;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .footer-section {
    padding: 1.2rem 0 0.7rem 0;
  }
  .footer-title {
    font-size: 1.05rem;
  }
  .footer-desc {
    font-size: 0.95rem;
  }
  .footer-bottom {
    font-size: 0.9rem;
    margin-top: 0.7rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 32px 0;
    clip-path: none !important;
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 18px;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin-bottom: 16px;
  }
  .hero-subheading {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 18px;
  }
  .hero-buttons .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 0;
  }
  .services-section {
    padding: 44px 0 32px 0;
  }
  .services-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .services-slider-wrapper {
    padding: 0 8px;
  }
  .service-card {
    min-width: 85vw !important;
    max-width: 95vw;
    margin: 0 4px;
  }
  .aboutus-section {
    padding: 44px 0 32px 0;
  }
  .aboutus-heading-gradient {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  .aboutus-tagline {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .btn, .btn-gradient, .btn-outline {
    font-size: 1.1rem;
    padding: 14px 0;
    min-width: 120px;
  }
  .nav-toggle {
    width: 24px;
    height: 24px;
    right: 30%;
    padding-top: 0;
  }
  .nav-toggle span {
    width: 15.6px;
    height: 1.8px;
    margin: 2.4px 0;
  }
}

/* Responsive font scaling for headings */
h1, .hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}
h2, .services-title, .aboutus-heading-gradient {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

@media (max-width: 600px) {
  body {
    font-size: 0.97rem;
  }
  .container, .nav-container, .hero-inner, .services-container, .aboutus-container, .team-container, .testimonials-container, .contactus-container, .footer-container {
    padding: 0 0.5rem !important;
    max-width: 100vw;
  }
  h1, .hero-left h1, .aboutus-heading, .aboutus-heading-gradient, .team-title, .testimonials-title, .contact-title, .footer-title {
    font-size: 1.1rem !important;
    line-height: 1.2;
    margin-bottom: 0.7rem;
  }
  h2, .aboutus-subheading, .team-subtitle, .testimonials-subtitle, .contact-subtitle {
    font-size: 0.98rem !important;
    margin-bottom: 0.5rem;
  }
  .btn, .btn-gradient, .btn-outline, .contactus-submit-btn, .aboutus-call-btn {
    font-size: 0.98rem !important;
    padding: 0.7em 1.1em !important;
    width: 100%;
    min-width: 0;
    border-radius: 18px !important;
    margin: 0.5rem 0 !important;
    box-sizing: border-box;
  }
  .nav-links {
    width: 100vw;
    padding: 1.2rem 0.5rem;
    font-size: 1.05rem;
    gap: 1.1rem;
  }
  .hero-inner, .aboutus-container, .team-container, .testimonials-container, .contactus-container, .footer-container {
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: stretch !important;
  }
  .hero-left, .hero-right, .aboutus-text-col, .aboutus-img-col, .team-card, .testimonial-card, .contactus-form-col, .contactus-img-col, .footer-about, .footer-hours-loc {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0.7rem 0.5rem !important;
    box-sizing: border-box;
  }
  .glass-card, .aboutus-img-glass, .team-card, .testimonial-card, .contactus-form-col, .footer-about, .footer-hours-loc {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(124,58,237,0.08) !important;
    padding: 1rem 0.7rem !important;
  }
  .aboutus-img, .team-card-image img, .testimonial-avatar, .contactus-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    margin: 0 auto 1rem auto !important;
    display: block;
  }
  .services-slider, .team-grid, .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .service-card, .team-card, .testimonial-card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 1rem auto !important;
  }
  .service-btn, .team-contact-btn {
    width: 100% !important;
    font-size: 0.98rem !important;
    padding: 0.6em 0 !important;
    border-radius: 16px !important;
  }
  .footer-section {
    padding: 1.2rem 0 0.7rem 0 !important;
  }
  .footer-bottom {
    font-size: 0.9rem !important;
    margin-top: 0.7rem !important;
  }
  .footer-social {
    gap: 0.7rem !important;
    margin-top: 0.5rem !important;
  }
  .footer-social-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.1rem !important;
  }
  .contactus-location-block, .aboutus-location-block {
    padding: 0.7rem 0.5rem !important;
    font-size: 0.95rem !important;
  }
  .form-group, .contactus-form-group {
    gap: 0.2rem !important;
  }
  .form-group input, .form-group textarea, .contactus-form-group input, .contactus-form-group textarea {
    font-size: 0.97rem !important;
    padding: 0.7em 0.7em !important;
    border-radius: 8px !important;
  }
}

/* Mobile Navbar Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 320px;
  height: 100vh;
  background: rgba(30, 27, 75, 0.98);
  box-shadow: -2px 0 16px rgba(0,0,0,0.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 32px 32px 32px;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-menu li {
  margin-bottom: 28px;
}
.mobile-menu a, .mobile-menu button {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: inherit;
}
.mobile-menu .nav-contact-btn {
  margin-top: 12px;
  width: 100%;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
    width: 100%;
    justify-items: flex-end;
    padding-top: 10px;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
} 