@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  /* Brand */
  --primary: #4D70FF;
  --primary-dark: #1A37A8;
  --logo-gradient: linear-gradient(135deg, #4D70FF 0%, #1A37A8 100%);

  /* Typography */
  --text-dark: #111827;     
  --text-gray: #4B5563;     
  --text-accent: #1A37A8;   

  /* Backgrounds & Canvas Surfaces */
  --bg-pure: #FFFFFF;
  --bg-warm-white: #FAFAFA;
  --bg-stone: #F3F4F6;
  --nav-bg: rgba(17, 24, 39, 0.85);

  /* UI Elements */
  --border: #E5E7EB;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all .4s cubic-bezier(.25,1,.5,1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main), 'Poppins', sans-serif;
  color: #333;
}

a {
  text-decoration: none;
}

/* ===== HEADER ===== */
header {
  position: relative;
  width: 100%;
}

/* ===== NAVBAR ===== */
nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5rem;
  backdrop-filter: blur(10px);
  background: transparent;
  z-index: 999;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.16);
}

nav img.logo {
  width: 160px;
}

/* Nav links */
nav ul#nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  transition: all 0.3s ease;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

nav ul li a:hover {
  color: var(--primary);
}

/* ===== DROPDOWN MENU (DESKTOP) ===== */
.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 8vh;
  left: 0;
  min-width: 280px;
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 0;
  list-style: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #D1D5DB;
  transition: all 0.25s ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(77, 112, 255, 0.15);
  color: #FFFFFF;
  padding-left: 24px;
}

.dropdown.active .dropdown-menu {
  max-height: 500px;
  padding: 10px 0;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Hover reveal for Desktop */
@media (min-width: 993px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Button */
.nav-btn {
  background: var(--logo-gradient);
  padding: 14px 24px;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(77, 112, 255, 0.3);
}

/* ===== HAMBURGER MENU ICON ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-image.active {
  opacity: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  margin-top: 20vh;
  height: 100%;
  width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 6%;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
} 

.hero-content h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}
.animated-btn{
  background: var(--logo-gradient);
  color: #fff;
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.90rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
}
/* ===== RESPONSIVE MOBILE STYLES ===== */
@media (max-width: 992px) {
  nav {
    width: 100%;
    padding: 15px 20px;
  }
  
  nav img.logo {
    width: 150px;
  } 

  .menu-toggle {
    display: flex;
  }
  
  nav ul#nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #111827;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 2rem 2rem 2rem;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  nav ul#nav-links.active {
    right: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    font-size: 1.05rem;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    text-align: left;
    padding: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 10px 0;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu li a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .nav-btn {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  html,
body {
    width: 100%;
    overflow-x: hidden;
}
  .hero-content {
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 6%;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Tagline Animation ======== */
/* --- ANIMATED VISION SECTION --- */
.vision-section {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2.5rem 1.5rem;
  background: #0b0f19;
}

/* Ambient background glow */
.vision-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1.5rem;
}

/* Animated Text Container */
.text-stage {
  position: relative;
  height: 100px;
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrase {
  position: absolute;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  filter: blur(8px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* Active phrase state */
.phrase.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* Leaving phrase state */
.phrase.exit {
  opacity: 0;
  transform: translateY(-20px) scale(1.05);
  filter: blur(8px);
}

/* Accent highlighting for key verbs */
.highlight {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Step Indicators */
.indicators {
  display: flex;
  gap: 12px;
  margin-top: 2.5rem;
  z-index: 2;
}

.dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.dot-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  border-radius: 2px;
}

/* Responsive scaling */
@media (max-width: 640px) {
  .phrase {
    font-size: 3.5rem;
  }
  .text-stage {
    height: 70px;
  }
}
/* ====== Tagline Animation ======== */

/* ===== BRAND LEAF BADGE ACCENT ===== */
.tag-accent-container {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 15px;
}

.tag-accent-container .about-tag {
  margin-bottom: 0; 
}

.tag-leaf-icon {
  width: 24px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  margin-top: -9px;
  transform: rotate(-10deg);
  animation: leafFloat 6s ease-in-out infinite alternate;
}

/* ===== ABOUT SECTION ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-us-section {
  padding: 100px 0;
  background: var(--bg-pure);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr; 
  gap: 70px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-text h2 em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

.about-description {
  font-size: 1.1rem;
  font-family: var(--font-main);
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 520px;
}

.about-stats-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 35px;
  margin-bottom: 45px;
}

.stat-block {
  display: flex;
  flex-direction: column;
}

.stat-header {
  display: flex;
  align-items: baseline;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-accent);
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.stat-sub {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 4px;
}



/* --- Right Column: Elegant Two-Image Staggered Gallery --- */
.about-gallery-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  position: relative;
  align-items: center;
}

.gallery-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
  background: var(--bg-stone);
  border: 1px solid var(--border);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-frame:hover img {
  transform: scale(1.06);
}

/* The Stagger Effect */
.frame-left {
  transform: translateY(-35px); /* Positioned slightly higher */
  aspect-ratio: 4 / 6.5;
}

.frame-right {
  transform: translateY(35px); /* Positioned slightly lower */
  aspect-ratio: 4 / 6.5;
}

/* --- Flawless Responsiveness --- */
@media (max-width: 1024px) {
  .about-us-section {
      padding: 100px 0;
  }
  .about-grid {
      gap: 50px;
  }
  .about-text h2 {
      font-size: 2.7rem;
  }
  .stat-number {
      font-size: 2.8rem;
  }
}

@media (max-width: 912px) {
  .about-grid {
      grid-template-columns: 1fr; /* Stack layout seamlessly */
      gap: 80px;
  }
  .about-text {
      order: 1; /* Keep the text storytelling on top when scaled down */
  }
  .about-gallery-dual {
      order: 2;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
  }
  
  .about-us-section {
      padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .container {
      padding: 0 24px;
  }
  
  .about-stats-container {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  

}
/* -----About Css End------ */

/* -------Services CSS--------- */
/* ---------------------------- */
.services-editorial {
  padding: 100px 5vw;
}

.services-container {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

/* --- Left Column Layout Structure --- */
.services-left-column {
  position: sticky;
  top: 60px;
  display: flex;
  flex-direction: column;
}

.about-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 15px;
  display: inline-block;
}

/* The Sticky Visual Deck --- */
.services-visual-wrapper {
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.06);
  border: 1px solid var(--border);
  position: relative;
  width: 100%;
}

.visual-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: pointer-events 0s;
  pointer-events: none;
  background-color: var(--border);
}

.visual-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) brightness(0.98); 
}

.visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* --- Right Column: Parallel Service Accordions --- */
.services-list {
  padding-top: 200px; /* Pushes list down to align strictly with the top edge of the image */
}

.service-item {
  border-top: 1px solid var(--border);
  padding: 35px 0;
  cursor: pointer;
  transition: var(--transition);
}

.service-item:last-child {
  border-bottom: 1px solid var(--border);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-num {
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF; 
  font-family: monospace;
  transition: color 0.3s;
}

.service-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.5px;
  flex: 1;
  color: var(--text-dark);
  transition: color 0.3s, transform 0.3s;
}

.service-arrow {
  font-size: 20px;
  color: #9CA3AF;
  transition: transform 0.3s, color 0.3s;
}

.service-details {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.service-details p {
  padding-top: 20px;
  padding-left: 44px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 540px;
}

/* Active / Hover Interactive Logic Styles */
.service-item:hover .service-title,
.service-item.active .service-title {
  color: var(--text-accent);
}

.service-item.active .service-title {
  transform: translateX(8px);
}

.service-item.active .service-num {
  color: var(--primary);
}

.service-item.active .service-arrow {
  color: var(--primary);
  transform: translate(4px, -4px) rotate(45deg);
}

/* Responsive styling splits */
@media (max-width: 992px) {
  .services-editorial {
      padding: 80px 24px;
  }
  .services-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  .services-left-column {
      position: relative;
      top: 0;
  }
  .services-visual-wrapper {
      height: 380px;
  }
  .services-list {
      padding-top: 0; /* Clear baseline top adjustments on stacked responsive screens */
  }
}
/* ----Services CSS End------ */

/* ----Why Us------ */
/* ---------------- */
/* --- Why Choose Us Section Styles --- */
.why-choose-us {
  padding: 100px 5vw;
  background-color: var(--bg-pure); /* Contrast color break from the services background */
  border-top: 1px solid var(--border);
}

.wcu-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.wcu-content {
  max-width: 500px;
}

.wcu-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.wcu-description {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
}

/* Value Cards Grid Layout */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card Styling */
.wcu-card {
  background: #f9fbfd;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Asymmetric design element: Make the main warranty card span full height or width */
.wcu-card.premium-badge {
  grid-row: span 2;
  background-color: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.wcu-card.premium-badge::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 220px;
  height: 220px;
  background-image: url('./images/leaf-image.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06; /* Adjust for transparency */
  pointer-events: none;
  filter: brightness(0) invert(1); /* Converts dark image to white */
  z-index: 0;
}

.wcu-card.premium-badge .wcu-num {
  color: var(--primary);
}

.wcu-card.premium-badge .wcu-unit,
.wcu-card.premium-badge .wcu-card-text {
  color: #9CA3AF;
}

.wcu-card.premium-badge .wcu-card-title {
  color: #FFFFFF;
}

/* Card Interiors */
.wcu-card-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.wcu-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-accent);
}

.wcu-unit {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-gray);
}

.wcu-icon-box {
  font-size: 2rem;
  color: var(--text-accent);
  margin-bottom: 25px;
  font-family: monospace;
}

.wcu-card-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.wcu-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Hover Subtle Reveal State */
.wcu-card:not(.premium-badge):hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(17, 24, 39, 0.04);
  border-color: rgba(77, 112, 255, 0.3);
}

/* Design flourish behind the main badge */
.wcu-card-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(77,112,255,0.15) 0%, rgba(0,0,0,0) 70%);
  bottom: -50px;
  right: -50px;
  pointer-events: none;
}

/* Responsive Scaling Overrides */
@media (max-width: 992px) {
  .why-choose-us {
      padding: 80px 24px;
  }
  .wcu-container {
      grid-template-columns: 1fr;
      gap: 50px;
  }
  .wcu-content {
      max-width: 100%;
  }
  .wcu-heading {
      font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .wcu-grid {
      grid-template-columns: 1fr;
  }
  .wcu-card.premium-badge {
      grid-row: span 1;
  }
}
/* ----Why Us End------ */
/* Project section */
.projects {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

.projects-container {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
  width: 1240px;
}
.project-header-block {
  text-align: center;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Force flex alignment to center the leaf icon inline with the span text */
.project-header-block .tag-accent-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}

/* Premium Typography Matching for the Custom Headings */
.project-header-block h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark, #111827);
  max-width: 600px; /* Keeps long titles beautifully broken into two readable lines */
  margin: 0 auto;
}

/* Stylized Emphasized Font Target */
.project-header-block h2 em {
  font-style: italic;
  font-family: var(--font-heading, 'Playfair Display', serif);
}

/* Responsive Font Scaling for Mobile Layout Views */
@media (max-width: 768px) {
  .project-header-block h2 {
      font-size: 2.7rem;
      padding: 0 15px;
  }
}
.projects-container .project-card:first-child{
  margin-left: 30px;
}

.project-card {
  flex: 0 0 calc(100% / 3);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
  
}

.project-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}
.project-card .tag {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 10px;
  top: 15px;
  left: 15px;
}

.project-card h3 {
  font-size: 1.3rem;
  margin: 15px 20px 5px;
}

.project-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0 20px;
}

.project-card span {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin: 5px 20px 20px;
}

/* Arrow buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background: #fff;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .project-card {
    flex: 0 0 calc(100% / 2);
  }
  .projects-container {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .project-card {
    flex: 0 0 100%;
    padding: 0 5%;
  }
  .project-header{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12vh 5% 0;
   }
   .projects-container .project-card:first-child{
    margin-left: 0;
  }
 
  .project-card .tag {
    left: 25px;
  }
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
/* Project section end */
/* -------Transformation CSS-------- */
/* ---------------------------------- */
.transformation-section {
  padding: 100px 5vw;
  background-color: var(--bg-pure);
  font-family: 'Montserrat', sans-serif;
}

.trans-editorial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Centered Editorial Header Block Layout --- */
.trans-header-block {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.trans-header-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111827;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.trans-header-block h2 em {
  font-style: italic;
}

.trans-lead-text {
  font-size: 16px;
  color: #4B5563;
  max-width: 650px;
  line-height: 1.7;
}

/* --- Immersive Main Slider Showcase Frame --- */
.slider-showcase-frame {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 60px;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: 0 40px 80px rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  border: 1px solid #E5E7EB;
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.after-wrapper {
  width: 50%;
  z-index: 2;
  overflow: hidden;
  border-right: 2px solid #FFFFFF;
}

.after-wrapper img {
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

/* --- Premium Typographic Slider Labels --- */
.label {
  position: absolute;
  bottom: 24px;
  padding: 8px 20px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-before { right: 24px; }
.label-after { left: 24px; }

/* Invisible Range input Overlay */
.comparison-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* Minimalist Glassmorphic Control Handle UI */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  background: #FFFFFF;
  color: #111827;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.slider-handle::before { content: "‹"; font-size: 1.5rem; margin-right: 4px; font-weight: 300; }
.slider-handle::after { content: "›"; font-size: 1.5rem; margin-left: 4px; font-weight: 300; }

/* --- Bottom Curated Journey Steps Row --- */
.reels-editorial-deck {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.deck-header-group {
  max-width: 680px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.deck-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #111827;
  margin: 0;
  line-height: 1.25;
}

.deck-title em {
  font-style: italic;
}

/* Custom Styling for the Paragraph Tag */
.deck-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.video-trans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.reel-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reel-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5 / 9;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  border: 1px solid #E5E7EB;
  background-color: #000000;
  cursor: pointer;
}

.reel-img-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.25, 1, .5, 1);
}

/* Video Play Icon Overlay Styling */
.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s cubic-bezier(.25, 1, .5, 1);
  pointer-events: none;
}

.video-overlay-play svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  margin-left: 2px;
}

.reel-img-wrapper:hover .video-overlay-play {
  background: #4D70FF;
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #4D70FF;
}

.reel-img-wrapper.is-playing .video-overlay-play {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.8);
}

.reel-item:hover .reel-img-wrapper video {
  transform: scale(1.04);
}

/* --- Responsive Adaptations & Mobile Video Slider --- */
@media (max-width: 992px) {
  .transformation-section { padding: 80px 24px; }
  .trans-header-block h2 { font-size: 2.7rem; }
  .deck-title { font-size: 2.1rem; }
}

/* Mobile Touch Slider Rules for Video Cards */
@media (max-width: 768px) {
  .trans-header-block h2 { font-size: 2rem; }
  .slider-container { aspect-ratio: 4 / 3; }

  .video-trans {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 16px;
      padding: 10px 4px 20px 4px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Hide default scrollbars for clean aesthetic */
  }

  .video-trans::-webkit-scrollbar {
      display: none;
  }

  .reel-item {
      flex: 0 0 75%; /* Exposes a peek preview of the next card */
      max-width: 280px;
      scroll-snap-align: center;
  }

  .deck-header-group {
      margin-bottom: 24px;
  }
}
/* --------Transformation CSS End---------- */

/* --------Our Design Process------- */
/* --------------------------------- */

.process-container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  background-color: var(--bg-color);
  font-family: var(--font-body);
  color: var(--text-main);
  margin: auto;
  padding: 100px 0px; 
    
}

/* Section Header */

.about-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-muted);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 40px;
}

.process-title em {
  font-style: italic;
}

/* Stepper Header */
.stepper-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.stepper-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E5E7EB;
  z-index: 1;
  transform: translateY(-50%);
}

.stepper-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: #4D70FF;
  z-index: 1;
  transform: translateY(-50%);
  transition: width 0.4s ease;
}

.step-circle {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-pure);
  border: 2px solid #E5E7EB;
  color: #6B7280;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-circle:hover {
  border-color: var(--accent-color);
  color: var(--primary);
  transform: translateY(-2px);
}

.step-circle.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(77, 112, 255, 0.25);
}

/* Content Area Frame */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.nav-arrow {
  background: var(--bg-pure);
  border: 1px solid #E5E7EB;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111827 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.nav-arrow:hover {
  background-color: var(--primary);
  border-color: #4D70FF;
  color: #FFFFFF !important;
}

.content-card {
  background: var(--bg-pure);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  text-align: left;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.04);
  min-height: 380px;
}

.text-section {
  flex: 1;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(77, 112, 255, 0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.step-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-main);
  line-height: 1.2;
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.illustration-section {
  flex: 1.1;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.illustration-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-card:hover .illustration-section img {
  transform: scale(1.03);
}


/* Responsive Adaptation */
/* --- Mobile Responsive Rules --- */
@media (max-width: 768px) {
/* 1. Hide side navigation arrows on mobile */
.nav-arrow {
display: none !important;
}

/* 2. Adjust carousel container gap */
.carousel-wrapper {
gap: 0;
justify-content: center;
}

/* 3. Set content card width to 90vw for optimal mobile viewport fill */
.content-card {
width: 90vw;
margin: 0 auto;
flex-direction: column-reverse; /* Keeps image on top for mobile editorial flow */
padding: 20px;
gap: 20px;
min-height: auto;
}

.text-section {
text-align: center;
}

.step-badge {
margin-left: auto;
margin-right: auto;
}

.illustration-section {
width: 100%;
height: 300px; /* Reduced height for smaller mobile viewports */
}

.process-title {
font-size: 2rem;
}

.step-heading {
font-size: 1.5rem;
}

/* Stepper adjustment for tight screens */
.stepper-wrapper {
max-width: 100%;
padding: 0 10px;
}

.step-circle {
width: 36px;
height: 36px;
font-size: 12px;
}
}

/* ---------Our Design Process End------- */


/* --------Instagram Image Scroll ---------*/
/* --------------------------------------- */

:root {
  --image-width: 320px;
  --image-height: 400px;
  --gap: 20px;
  --speed: 30s;
  --bg-color: #fbf9f4; /* Off-white background matching the image */
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif; /* Clean modern font */
  background-color: var(--bg-color);
}

.instagram-section {
  padding: 60px 0;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--border);
}

/* Header Layout */
.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.instagram-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.instagram-title .italic-text {
  font-family: 'Playfair Display', Georgia, serif; 
  font-style: italic;
}

.instagram-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 1px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.instagram-link:hover {
  color: var(--primary);
}

.instagram-link .insta-arrow {
  margin-left: 8px;
}

/* Marquee Scroller */
.instagram-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: var(--gap);
  animation: scrollRightToLeft var(--speed) linear infinite;
  padding-left: var(--gap);
}

/* Pauses layout globally on hover */
.instagram-marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  position: relative;
  width: var(--image-width);
  height: var(--image-height);
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Instagram Icon Overlay */
.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.instagram-overlay i {
  color: #ffffff;
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.marquee-item:hover .instagram-overlay {
  opacity: 1;
}

.marquee-item:hover .instagram-overlay i {
  transform: scale(1);
}

/* Keyframe Animation */
@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (var(--gap) / 2)));
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .instagram-title {
    font-size: 2rem;
  }
  :root {
    --image-width: 240px;
    --image-height: 320px;
  }
}


/* Modal */
 /* Trigger Button */
 .btn-primary {
  background: linear-gradient(135deg, #0b2545, #134074);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.35);
}

/* Modal Backdrop */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Header Image Banner */
.modal-header-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Form Body */
.modal-body {
  padding: 24px 28px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: #134074;
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}

.btn-submit:hover {
  background: #20bd5a;
}

.btn-submit:active {
  transform: scale(0.98);
}