*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple-dark: #1A0B2E;
  --purple-deep: #2D1654;
  --purple: #5B2D8E;
  --purple-mid: #7B42B0;
  --purple-light: #9B6DD0;
  --purple-glow: #B48AE0;
  --gold: #C9A84C;
  --gold-light: #E0C56E;
  --cream: #F6F0FB;
  --white: #FFFFFF;
  --gray-50: #F8F7FA;
  --gray-100: #EEEDF2;
  --gray-200: #D1CFD8;
  --gray-600: #6B6880;
  --gray-800: #1F1D29;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(26,11,46,0.08);
  --shadow-md: 0 4px 20px rgba(26,11,46,0.10);
  --shadow-lg: 0 12px 40px rgba(26,11,46,0.14);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--purple-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 60px;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 60px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.4s ease;
  background: #fff;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-text { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); font-weight: 600; line-height: 1.2; }
.logo-text span { display: block; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(0,0,0,0.8); font-size: 0.88rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark) !important;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 700 !important;
  transition: all 0.3s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.mobile-toggle { display: none; background: none;  font-size: 1.5rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(165deg, var(--purple-dark) 0%, #1E0F35 40%, #2D1654 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,45,142,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* HERO FORM */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--gold), var(--purple), var(--gold));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.6;
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--purple-dark);
  margin-bottom: 4px;
  font-weight: 600;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,45,142,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 14px;
  justify-content: center;
}
.form-trust svg { width: 14px; height: 14px; color: var(--purple); }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-dark);
}
.trust-item svg { width: 22px; height: 22px; color: var(--purple); flex-shrink: 0; }

/* ========== SERVICES ========== */
.services { padding: 100px 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(91,45,142,0.1), rgba(91,45,142,0.05));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(170deg, var(--purple-dark) 0%, #1E0F35 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(201,168,76,0.06), transparent 70%);
}
.why-us .section-label { color: var(--gold); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.why-features { display: grid; gap: 24px; margin-top: 40px; }
.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.why-feature:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.2); }
.why-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.why-feature h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.why-stat-card:hover { border-color: rgba(201,168,76,0.3); }
.why-stat-card .num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.why-stat-card .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: var(--gray-50); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-stars img{
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--purple-dark); }
.testimonial-loc { font-size: 0.78rem; color: var(--gray-600); }

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ourleaders{
   background: linear-gradient(135deg, #ffffff, #d0ced3);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ourleaders::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 60px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ========== FOOTER ========== */
.footer {
  background: var(--purple-dark);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 16px; }
.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.85rem; transition: color 0.3s; }
.footer ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

/* ========== FLOATING CTA (Mobile) ========== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--purple-dark);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.95rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links a{
    color: rgb(255 ,255 ,255 , 80%);
  }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .floating-cta { display: block; }
  .why-stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 390px) {
.logo-icon{
    width: 200px;
}
}


.gallery{
    padding-bottom:100px;
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-grid{
    column-count:4;
    column-gap:20px;
}

.gallery-item{
    break-inside:avoid;
    margin-bottom:20px;
}

.gallery-item img{
    width:100%;
    border-radius:18px;
}

@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }
}