/* -------------------------
   Brand tokens & base
   ------------------------- */
:root {
  --primary: #e3412d;
  --primary-700: #2b0a44;
  --secondary: #181264;
  --bg: #ffffff;
  --muted: #000;
  --white: #ffffff;
  --glass: rgba(64, 18, 100, 0.05);
  --card-shadow: 0 24px 60px rgba(64, 18, 100, 0.1);
  --radius: 0;
  --max-w: 1240px;
  --section-bg: #f9f9f9;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
.section-bg {
  background-color: var(--section-bg);
}

body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: var(--white);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

 .is_mobile {
    display: none!important;
  }

/* Mobile Restriction - Desktop Only */
.mobile-restriction {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.mobile-restriction-content {
  background: white;
  padding: 60px 40px;
  border-radius: 0;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mobile-restriction-icon {
  font-size: 80px;
  color: var(--primary);
  margin-bottom: 30px;
}

.mobile-restriction-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: #222;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.mobile-restriction-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.mobile-restriction-subtitle {
  font-size: 16px;
  color: #888;
  font-style: italic;
}

/* Hide main content on mobile */
@media (max-width: 992px) {
  body.mobile-restricted .mobile-restriction {
    display: flex;
  }
  
  body.mobile-restricted {
    overflow: hidden;
  }
  
  /* Hide everything except restriction and preloader */
  body.mobile-restricted > *:not(.mobile-restriction):not(.preloader) {
    display: none !important;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.preloader-logo-wrap {
  width: auto;
  max-width: 80%; /* Adjusted for better mobile responsiveness */
  height: auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: preloaderFadeIn 0.8s ease-out, preloaderFloat 3s ease-in-out infinite;
}

.preloader-logo {
  width: auto;
  max-width: 100%; /* Prevent logo from exceeding container width */
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(227, 65, 45, 0.15));
}

.preloader-logo-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  max-width: 80vw;
  max-height: 80vw;
  background: rgba(227, 65, 45, 0.05);
  z-index: -1;
  border-radius: 50%;
  animation: preloaderRipple 2s ease-out infinite;
}

.preloader-spinner {
  position: relative;
  width: 60px;
  height: 60px;
}

.preloader-spinner::before,
.preloader-spinner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-radius: 0;
}

.preloader-spinner::before {
  animation: preloaderSpin 1.2s linear infinite;
}

.preloader-spinner::after {
  border-top-color: var(--secondary);
  animation: preloaderSpin 1s linear infinite reverse;
  opacity: 0.6;
}

.preloader-progress {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(227, 65, 45, 0.1);
  overflow: hidden;
}

.preloader-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: preloaderProgress 2s ease-in-out infinite;
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes preloaderRipple {
  0% {
    width: 200px;
    height: 200px;
    opacity: 0.3;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloaderProgress {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* -------------------------
   Topbar & Header
   ------------------------- */
/* -------------------------
   Topbar & Header
   ------------------------- */
.topbar {
  background-color: var(--primary);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Header Navigation Adjustments */
.site-header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header nav.main {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main a.active{
  color: var(--primary)!important;
}

/* Mega Menu Styles */
/* Mega Menu Styles */
.nav-item.has-dropdown {
  position: static; /* Allows full width mega menu */
  height: 80px; /* Match header height */
  display: flex;
  align-items: center;
}

.nav-item.has-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.nav-item.has-dropdown .dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-item.has-dropdown:hover .dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 3px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 0px 0 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* Custom Scrollbar */
.mega-menu::-webkit-scrollbar {
  width: 6px;
}
.mega-menu::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.mega-menu::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}
.mega-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Show Logic: Hover or Focus-within for interaction */
.nav-item.has-dropdown:hover .mega-menu,
.nav-item.has-dropdown:focus-within .mega-menu,
.nav-item.has-dropdown.is-active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
}

/* .mega-links-wrapper {
    flex: 1;
    column-count: 3;
    column-gap: 40px;
} */

.mega-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
    

.mega-sidebar {
    width: 25%;
    min-width: 280px;
    flex-shrink: 0;
}

/* Ensure action column fills sidebar */
.mega-column.mega-action-column {
    width: 100%;
    margin-bottom: 0;
}

.mega-column {
    display: inline-block; /* Prevents weird breaking across columns */
    width: 100%;
    margin-bottom: 0px;
    break-inside: avoid;
    vertical-align: top;
}


@media (max-width: 1200px) {
    .mega-links-wrapper {
        column-count: 2;
    }
}

@media (max-width: 992px) {
    /* Mobile styles handle this, but for tablet just in case */
    .mega-menu-grid {
        flex-direction: column;
    }
    .mega-links-wrapper {
        width: 100%;
        column-count: 2;
    }
    .mega-sidebar {
        width: 100%;
    }
}

.mega-location-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; /* Larger */
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}

.mega-project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-project-list li {
  margin-bottom: 12px;
}

.mega-project-list a {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  display: flex;
  align-items: center;
}

.mega-project-list a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--primary);
  margin-right: 0;
  transition: all 0.3s ease;
}

.mega-project-list a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.mega-project-list a:hover::before {
  width: 10px;
  margin-right: 8px;
}

.badge-running {
  display: inline-block;
  font-size: 10px;
  background: #e3412d; /* Primary */
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  vertical-align: middle;
  box-shadow: 0 2px 5px rgba(227, 65, 45, 0.3);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 65, 45, 0.4);
  }
  70% {
    box-shadow: 0 0 0 4px rgba(227, 65, 45, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 65, 45, 0);
  }
}

.mega-column.mega-action-column {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f0b40 100%);
  padding: 40px 30px;
  border-radius: 4px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(24, 18, 100, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 250px; /* Ensure it has presence */
}

/* Decorative circle */
.mega-column.mega-action-column::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.mega-column.mega-action-column .mega-location-title {
  border-bottom: 0;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 26px; /* Larger title */
  font-weight: 400;
  letter-spacing: 0;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary);
  background: #ffffff;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 5px;
  transition: all 0.3s ease;
  border-radius: 2px;
  width: 100%; /* Full width button in the card */
  max-width: 200px;
}

.view-all-btn:hover {
  background: #f0f0f0;
  color: var(--secondary);
  gap: 15px;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: white;
}

.topbar i {
  font-size: 16px;
}

.pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill i {
  font-size: 14px;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 26px rgba(16, 12, 32, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
}

.brand img {
  height: 55px;
}

nav.main {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav.main a {
    padding: 5px 10px;
    border-radius: 0;
    font-weight: 600;
    color: #222;
    transition: color 0.2s ease;
}

nav.main a:hover {
  color: var(--secondary);
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

body .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateZ(0);
}

body .btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

body .btn:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

body .btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(64, 18, 100, 0.2);
  border: 2px solid var(--primary);
}

body .btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 18, 100, 0.35);
}

body .btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

body .btn-ghost:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(64, 18, 100, 0.3);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 0;
  box-shadow: 0 6px 0 #111, 0 -6px 0 #111;
}

/* -------------------------
   HERO: Video + Parallax
   ------------------------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
  color: white;
  padding: 64px 0;
}

header.site-header {
  z-index: 1005; /* Ensure header is above mobile menu */
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
    z-index: 1006;
    position: relative;
    margin-left: auto; /* Push to right */
  }
  
  .cta .btn-primary {
    display: none; /* Hide CTA button on mobile to save space */
  }
  
  .brand img {
    height: 45px; /* Adjust logo size for mobile */
  }

  .site-header nav.main {
    display: none; /* Hidden by default on mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start; /* Align to top */
    align-items: center;
    padding: 100px 20px 20px; /* Add top padding to clear the header */
    z-index: 1000; /* Behind header but above content */
    overflow-y: auto;
  }
  
  .site-header nav.main.active {
    display: flex !important;
  }
  
  .site-header nav.main a {
    font-size: 18px;
    padding: 15px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
  }
  
  /* Reset dropdown for mobile */
  .nav-item.has-dropdown {
    flex-direction: column;
    height: auto;
    width: 100%;
    align-items: center;
    display: none;
  }
  
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding: 0 20px 20px;
    background: #fff;
    width: 100%;
    max-height: none;
    overflow-y: visible;
  }
  
  .nav-item.has-dropdown.active .mega-menu {
    display: block;
  }
  
  .mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .mega-links-wrapper {
      column-count: 1;
      width: 100%;
  }
  
  .mega-sidebar {
      width: 100%;
      margin-top: 20px;
  }

  .mega-column {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .site-header {
    padding: 0;
  }
  
  .site-header .nav {
    padding: 10px 0;
    justify-content: space-between; /* Ensure logo and hamburger are spaced */
  }
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  transform-origin: center center;
  filter: brightness(0.8) contrast(1.1);
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 56px;
  margin: 0 0 10px;
  line-height: 1.02;
  letter-spacing: -0.6px;
  overflow: visible;
}

.hero p.lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 70%;
}

.hero .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .card {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 0;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(6px);
}

.hero-card {
  border-radius: 0;
  overflow: hidden;
  max-width: 420px;
}

.hero-card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.float-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 13px;
}

/* -------------------------
   Minimalist About Section
   ------------------------- */
.minimal-about {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.minimal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: flex-start;
}

.minimal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.minimal-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.achievement-card {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(64, 18, 100, 0.15);
  border-color: var(--secondary);
}

.achievement-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 5px;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.3s ease;
}

.achievement-card:hover .achievement-number {
  color: var(--secondary);
}

.achievement-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.minimal-about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.minimal-about-text h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.minimal-about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 30px;
}

.signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.signature-img {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: cover;
  border: 3px solid var(--primary);
  padding: 2px;
}

.signature-text {
  display: flex;
  flex-direction: column;
}

.signature-text strong {
  font-weight: 600;
  color: var(--primary);
}

.signature-text span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.minimal-gallery {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.gallery-main {
  position: relative;
  width: 75%;
  height: 420px;
  overflow: visible;
  z-index: 2;
  margin-bottom: 0;
}

.gallery-main::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  background: rgba(227, 65, 45, 0.08);
  border-radius: 0;
  z-index: -1;
  transition: all 0.4s ease;
}

.gallery-main:hover::after {
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  z-index: 1;
}

.gallery-main:hover img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2), 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 3;
}

.gallery-secondary > div {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-secondary > div::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 0;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-secondary > div:hover {
  transform: translateY(-8px) translateX(-5px);
  box-shadow: 0 30px 80px rgba(64, 18, 100, 0.25), 0 12px 35px rgba(64, 18, 100, 0.2);
}

.gallery-secondary > div:hover::before {
  opacity: 1;
  background: var(--secondary);
}

.gallery-secondary img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-secondary > div:hover img {
  transform: scale(1.08);
}

.award-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.award-badge i {
  color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .minimal-grid {
    gap: 40px;
  }
  
  .gallery-main {
    height: 380px;
    width: 70%;
  }
  
  .gallery-secondary {
    width: 60%;
  }
  
  .gallery-secondary img {
    height: 250px;
  }
}

@media (max-width: 992px) {
  .minimal-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .minimal-gallery {
    min-height: 450px;
  }
  
  .gallery-main {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
  }
  
  .gallery-main::after {
    display: none;
  }
  
  .gallery-secondary {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
  }
  
  .gallery-secondary img {
    height: 280px;
  }
  
  .minimal-about-text {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .minimal-achievements {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .minimal-gallery {
    min-height: 400px;
  }
  
  .gallery-main {
    height: 350px;
  }
  
  .gallery-secondary img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .minimal-achievements {
    grid-template-columns: 1fr 1fr;
  }
  
  .minimal-gallery {
    min-height: 350px;
  }
  
  .gallery-main {
    height: 280px;
  }
  
  .gallery-main::after {
    display: none;
  }
  
  .gallery-secondary img {
    height: 200px;
  }
  
  .achievement-card {
    padding: 15px 5px;
  }
  
  .achievement-number {
    font-size: 28px;
  }
  
  .achievement-text {
    font-size: 13px;
  }
}

/* -------------------------
   Sections
   ------------------------- */
section {
  padding: 60px 0 60px;
  background: transparent;
}


.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.kicker {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.kicker::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 30px;
  margin: 8px 0;
}

.desc {
  color: var(--muted);
  /* max-width: 880px; */
  margin: 8px auto 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

/* projects grid */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
}

.projects-header-left {
  flex: 1;
}

.projects-header-right {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
  align-items: start;
}

.project-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card.featured {
  border-color: var(--primary);
  box-shadow: 0 6px 25px rgba(227, 65, 45, 0.15);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(64, 18, 100, 0.2);
  border-color: var(--secondary);
}

.project-card.featured:hover {
  box-shadow: 0 8px 35px rgba(64, 18, 100, 0.25);
  border-color: var(--secondary);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-price-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(64, 18, 100, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}
.project-price-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(64, 18, 100, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}


.project-card:hover .project-price-tag {
  background: var(--secondary);
  box-shadow: 0 4px 12px rgba(64, 18, 100, 0.4);
}

.project-sold-out {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #dc3545;
  color: white;
  padding: 8px 16px;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.project-content {
  padding: 20px;
}

.project-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 15px;
}

.project-location i {
  color: var(--primary);
  font-size: 16px;
}

/* awards */
#awards {
  overflow: hidden;
}

.awards-swiper-wrapper {
  position: relative;
  margin-top: 40px;
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.awardsSwiper {
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.awardsSwiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important; 
  display: flex;
  /* animation: scrollAwards 40s linear infinite; REMOVED to avoid conflict with Swiper */
  will-change: transform;
}

@keyframes scrollAwards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.awardsSwiper .swiper-slide {
  width: 140px !important;
  flex-shrink: 0;
  transition: none;
}

.awardsSwiper .swiper-slide-active .award {
  transform: scale(1);
  opacity: 1;
}

.awardsSwiper .swiper-slide:not(.swiper-slide-active) .award {
  opacity: 0.7;
  transform: scale(0.95);
}

.award {
  background: white;
  padding: 16px;
  border-radius: 0;
  border: none;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.awardsSwiper .swiper-slide:nth-child(1) .award { animation-delay: 0.1s; }
.awardsSwiper .swiper-slide:nth-child(2) .award { animation-delay: 0.2s; }
.awardsSwiper .swiper-slide:nth-child(3) .award { animation-delay: 0.3s; }
.awardsSwiper .swiper-slide:nth-child(4) .award { animation-delay: 0.4s; }
.awardsSwiper .swiper-slide:nth-child(5) .award { animation-delay: 0.5s; }
.awardsSwiper .swiper-slide:nth-child(6) .award { animation-delay: 0.6s; }
.awardsSwiper .swiper-slide:nth-child(7) .award { animation-delay: 0.7s; }
.awardsSwiper .swiper-slide:nth-child(8) .award { animation-delay: 0.8s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animation classes for all sections */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Section reveal animations */
[data-sr] {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* ScrollReveal will add sr-visible class */
.sr-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Ensure sections are visible by default, ScrollReveal will handle animation */
section {
  opacity: 1;
}


/* Section head animations */
.section-head.animate-on-scroll {
  transition-delay: 0.1s;
}

/* Staggered animations for child elements */
.minimal-achievements .achievement-card,
.projects-grid .project-card,
.why-content-wrapper .why-card,
.reviews-slider .review-card,
.contact-grid .contact-card,
.new-section-grid .new-section-card,
.blog-grid .blog-card {
  opacity: 1;
  transform: none;
  transition: all 0.3s ease;
  will-change: auto;
  position: relative;
}

.minimal-achievements.animated .achievement-card:nth-child(1),
.projects-grid.animated .project-card:nth-child(1),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(1),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(1),
.reviews-slider.animated .review-card:nth-child(1),
.contact-grid.animated .contact-card:nth-child(1),
.new-section-grid.animated .new-section-card:nth-child(1),
.blog-grid.animated .blog-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.minimal-achievements.animated .achievement-card:nth-child(2),
.projects-grid.animated .project-card:nth-child(2),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(2),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(2),
.reviews-slider.animated .review-card:nth-child(2),
.contact-grid.animated .contact-card:nth-child(2),
.new-section-grid.animated .new-section-card:nth-child(2),
.blog-grid.animated .blog-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.minimal-achievements.animated .achievement-card:nth-child(3),
.projects-grid.animated .project-card:nth-child(3),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(3),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(3),
.reviews-slider.animated .review-card:nth-child(3),
.contact-grid.animated .contact-card:nth-child(3),
.new-section-grid.animated .new-section-card:nth-child(3),
.blog-grid.animated .blog-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.minimal-achievements.animated .achievement-card:nth-child(4),
.projects-grid.animated .project-card:nth-child(4),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(4),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(4),
.reviews-slider.animated .review-card:nth-child(4),
.contact-grid.animated .contact-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.minimal-achievements.animated .achievement-card:nth-child(5),
.projects-grid.animated .project-card:nth-child(5),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(5),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(5),
.reviews-slider.animated .review-card:nth-child(5),
.contact-grid.animated .contact-card:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.minimal-achievements.animated .achievement-card:nth-child(6),
.projects-grid.animated .project-card:nth-child(6),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(6),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(6),
.reviews-slider.animated .review-card:nth-child(6),
.contact-grid.animated .contact-card:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.minimal-achievements.animated .achievement-card:nth-child(7),
.projects-grid.animated .project-card:nth-child(7),
.why-content-wrapper.animated .why-left-column .why-card:nth-child(7),
.why-content-wrapper.animated .why-right-column .why-card:nth-child(7),
.reviews-slider.animated .review-card:nth-child(7),
.contact-grid.animated .contact-card:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Gallery animations */
.minimal-content.animate-on-scroll,
.minimal-gallery.animate-on-scroll {
  transition-delay: 0.2s;
}

.gallery-main,
.gallery-secondary > div {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-gallery.animated .gallery-main {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.3s;
}

.minimal-gallery.animated .gallery-secondary > div {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
}

.minimal-about-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-content.animated .minimal-about-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.award:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(227, 65, 45, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.award a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-click-text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(227, 65, 45, 0.95);
  color: white;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(227, 65, 45, 0.4);
}

.award:hover .award-click-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.award a::after {
  content: '🔍';
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(227, 65, 45, 0.9);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(227, 65, 45, 0.4);
}

.award:hover a::after {
  opacity: 1;
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 6px 16px rgba(227, 65, 45, 0.5);
}

.award img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  transform: scale(1);
}

.award:hover img {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(227, 65, 45, 0.2);
  }
  50% {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(227, 65, 45, 0.3);
  }
}


/* why grid */
.why-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 50px;
}

.why-left-column,
.why-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-center-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.why-content-wrapper.animated .why-center-image {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

.why-center-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--primary);
  z-index: 2;
  display: none;
}

.why-center-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 8px;
  background: var(--secondary);
  z-index: 2;
  display: none;
}

.why-center-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.why-card {
  background: white;
  padding: 24px;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(10, 10, 30, 0.08);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  height: 100%;
  position: relative;
}

.why-card:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 32px rgba(64, 18, 100, 0.15);
  border-left-color: var(--secondary);
}

.why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(7158%) hue-rotate(352deg) brightness(95%) contrast(89%);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon img {
  transform: scale(1.1);
}

.why-card h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.why-card .muted {
  margin: 0;
  line-height: 1.6;
  color: #666;
}

/* New Section */
#new-section {
  background: white;
  position: relative;
}

.new-section-content {
  margin-top: 50px;
}

.new-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.new-section-card {
  background: white;
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(10, 10, 30, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.new-section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.new-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 10, 30, 0.12);
}

.new-section-card:hover::before {
  transform: scaleX(1);
}

.new-section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(227, 65, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.new-section-icon i {
  font-size: 36px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.new-section-card:hover .new-section-icon {
  background: var(--secondary);
  transform: scale(1.1) rotate(5deg);
}

.new-section-card:hover .new-section-icon i {
  color: white;
  transform: scale(1.1);
}

.new-section-card h4 {
  margin: 0 0 16px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.new-section-card .muted {
  margin: 0;
  line-height: 1.7;
  color: #666;
  font-size: 15px;
  flex: 1;
}

/* reviews */
#reviews {
  position: relative;
  padding: 80px 0;
}

/* Reviews Section - Slick Carousel */
.reviews-swiper-wrapper {
  position: relative;
  margin-top: 30px; /* Reduced from 60px */
  padding: 0 60px;
}

.reviewsSwiper {
  padding: 40px 0 30px; /* Reduced bottom padding from 60px to 30px */
  overflow: hidden;
}

.reviewsSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: flex-start; /* Stop stretching */
  justify-content: center;
}

.review-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto; /* Allow natural height */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 280px; /* Ensure a reasonable minimum height for uniformity */
}

/* Gradient left accent */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.review-card:hover::before,
.reviewsSwiper .swiper-slide-active .review-card::before {
  opacity: 1;
  width: 6px;
}

.review-card:hover,
.reviewsSwiper .swiper-slide-active .review-card {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(227, 65, 45, 0.15);
  border-color: rgba(227, 65, 45, 0.1);
}

/* Subtle quote background */
.review-card::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  line-height: 1;
  color: rgba(227, 65, 45, 0.03);
  pointer-events: none;
  font-weight: 700;
}

.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 15px 5px; /* Aggressively Reduced Padding */
  background: linear-gradient(135deg, rgba(227, 65, 45, 0.02) 0%, rgba(24, 18, 100, 0.02) 100%);
  position: relative;
  z-index: 1;
}

.review-avatar-wrapper {
  margin-bottom: 10px; /* Reduced margin */
  position: relative;
}

.review-avatar-wrapper::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  z-index: -1;
  opacity: 0.15;
  transition: all 0.3s ease;
}

.review-card:hover .review-avatar-wrapper::after {
  opacity: 0.3;
  inset: -6px;
}

.review-avatar {
  width: 50px; /* Reduced to 50px */
  height: 50px; /* Reduced to 50px */
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(227, 65, 45, 0.2);
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* Reduced gap */
}

.review-name {
  font-weight: 700;
  font-size: 16px; /* Reduced to 16px */
  color: #1a1a1a;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.3px;
  margin: 0;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars img {
  height: 12px; /* Reduced size */
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.review-text {
  color: #4a4a4a;
  line-height: 1.5; /* Tightened leading */
  margin: 0;
  font-size: 14px; /* Reduced font size */
  padding: 10px 15px; /* Compact padding */
  flex-grow: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 400;
  
  /* Truncate text */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 15px; /* Compact padding */
  background: rgba(0, 0, 0, 0.02);
  font-size: 13px;
  color: #666;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-source svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.review-card:hover .review-source svg {
  transform: scale(1.1);
}

.review-source span {
  color: #666;
  font-weight: 500;
}

.review-date {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  margin-left: 0;
  white-space: nowrap;
}
.reviews-navigation {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  gap: 15px;
}

.reviews-button-prev,
.reviews-button-next {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(227, 65, 45, 0.3);
}

.reviews-button-prev:hover,
.reviews-button-next:hover {
  background: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(227, 65, 45, 0.4);
}

.reviews-button-prev.swiper-button-disabled,
.reviews-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 30px;
  border-radius: 6px;
}

.pagination-dot {
  width: 50px;
  height: 5px;
  background: rgba(227, 65, 45, 0.2);
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.pagination-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-dot.active {
  background: rgba(227, 65, 45, 0.3);
}

.pagination-dot.active::before {
  width: 100%;
}

.pagination-dot:hover {
  background: rgba(227, 65, 45, 0.3);
  transform: scaleY(1.5);
}

/* Blog News */
#blog {
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  align-items: start;
}

.blog-card {
  background: white;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(10, 10, 30, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 10, 30, 0.12);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 12px 16px;
  text-align: center;
  border-radius: 0;
  min-width: 60px;
  box-shadow: 0 4px 12px rgba(227, 65, 45, 0.3);
}

.blog-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}

.blog-month {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(227, 65, 45, 0.1);
  border-radius: 0;
}

.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin: 0 0 16px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--secondary);
}

.blog-excerpt {
  color: #666;
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-size: 15px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--secondary);
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

.blog-view-all {
  text-align: center;
  margin-top: 50px;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Gradient accent border */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(227, 65, 45, 0.15);
  border-color: rgba(227, 65, 45, 0.1);
}

.contact-card:hover::before {
  opacity: 1;
  height: 6px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 25px rgba(227, 65, 45, 0.25);
  transition: all 0.4s ease;
}

.contact-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.15;
  z-index: -1;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(227, 65, 45, 0.35);
}

.contact-card:hover .contact-icon::after {
  opacity: 0.25;
  inset: -10px;
}

.contact-icon i {
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
  transform: scale(1.1);
}

.contact-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  text-align: center;
  letter-spacing: 0.3px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(227, 65, 45, 0.04);
  transform: translateX(5px);
}

.contact-item > i {
  color: var(--primary);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover > i {
  transform: scale(1.15);
  color: var(--secondary);
}

.contact-item > div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.contact-item p.muted {
  margin: 0 0 10px 0;
  line-height: 1.7;
  color: #666;
  font-size: 15px;
}

.contact-item a {
  display: block;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 15px;
}

.contact-item a:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.contact-item a i {
  margin-right: 8px;
  font-size: 14px;
}

/* footer */
footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-connect h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: white;
}

.footer-email-form {
  display: flex;
  gap: 8px;
  max-width: 350px;
}

.footer-email-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  border-radius: 0;
  margin: 0;
}

.footer-email-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-email-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.footer-email-form button {
  padding: 12px 20px;
  border-radius: 0;
  min-width: 50px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: white;
  font-family: "Cormorant Garamond", serif;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

.footer-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.footer-keywords a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-keywords a:hover {
  color: var(--primary);
  background: rgba(227, 65, 45, 0.1);
  border-color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 12, 0.6);
  z-index: 220;
}

.modal.show {
  display: flex;
}

.modal-card {
  width: 94%;
  max-width: 560px;
  background: white;
  border-radius: 0;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(10, 8, 30, 0.18);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 0;
  border: 1px solid #eee;
  margin-bottom: 10px;
  font-size: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border-radius: 0;
  overflow: hidden;
}

.whatsapp-float.back-to-top-visible {
  bottom: 100px;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.4s ease;
  border-radius: 0;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  background: #20BA5A;
}

.whatsapp-float:hover::before {
  transform: scale(1);
}

.whatsapp-float i {
  position: relative;
  z-index: 1;
  animation: whatsappPulse 2s ease-in-out infinite;
  font-size: 28px;
  display: block;
  line-height: 1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #25D366;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #25D366;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(227, 65, 45, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  border-radius: 0;
  overflow: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(227, 65, 45, 0.4);
}

.back-to-top:hover::before {
  transform: translateY(0);
}

.back-to-top i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

.back-to-top-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--primary);
}

.back-to-top:hover .back-to-top-tooltip {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

/* responsive */
@media (max-width: 1000px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .reviews-swiper-wrapper {
    padding: 0 20px;
  }
  
  .reviews-navigation {
    padding: 0 10px;
  }
  
  .reviews-button-prev,
  .reviews-button-next {
    width: 40px;
    height: 40px;
  }
  
  .review-card {
    padding: 30px 25px;
  }
  
  .review-avatar {
    width: 70px;
    height: 70px;
  }
  
  .review-name {
    font-size: 16px;
  }
  
  .review-text {
    font-size: 14px;
  }
  
  .review-source {
    font-size: 12px;
  }
  
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-center-image {
    order: -1;
    padding: 15px;
  }
  
  .why-center-image img {
    max-height: 400px;
  }
  
  .why-left-column,
  .why-right-column {
    gap: 20px;
  }
  
  .new-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .new-section-card {
    padding: 30px 24px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .blog-image-wrapper {
    height: 220px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-card {
    padding: 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  nav.main {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .projects-header-right {
    margin-top: 0;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .awards-swiper-wrapper {
    padding: 0;
    overflow: hidden;
  }
  
  .award {
    width: 120px;
    height: 120px;
    padding: 12px;
  }
}

@media (max-width: 600px) {
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-center-image {
    order: -1;
  }
  
  .why-center-image img {
    max-height: 300px;
  }
  
  .project-image-wrapper {
    height: 240px;
  }
  
  .project-title {
    font-size: 22px;
  }
  
  .project-price-tag {
    font-size: 14px;
    padding: 6px 12px;
    top: 15px;
    left: 15px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-email-form {
    max-width: 100%;
  }
  
  .footer-keywords {
    justify-content: center;
  }
  
  .awards-swiper-wrapper {
    padding: 0;
    overflow: hidden;
  }
  
  .award {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
  
  .hero h1 {
    font-size: 34px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .whatsapp-float.back-to-top-visible {
    bottom: 75px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 45px;
    font-size: 18px;
  }
  
  .back-to-top-tooltip {
    display: none;
  }
}

/* small helpers */
.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.spacer {
  flex: 1;
}

/* Site Visit Modal Styles */
.site-visit-modal .modal-card {
  max-width: 500px;
  padding: 0;
  overflow: hidden;
}

.modal-header {
  background: var(--primary);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.close-modal {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.modal-body {
  padding: 30px;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #eee;
  z-index: 1;
}

.step-dot {
  width: 30px;
  height: 30px;
  background: #eee;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #888;
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(227, 65, 45, 0.2);
}

.step-dot.completed {
  background: var(--secondary);
  color: white;
}

.step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.step-content.active {
  display: block;
}

.date-picker-wrapper input[type="date"] {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: "Jost", sans-serif;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-slot-btn {
  padding: 10px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.time-slot-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.time-slot-btn.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.step-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Projects Sliders */
.runningProjectsSwiper,
.completedProjectsSwiper {
  overflow: hidden;
  padding: 10px; /* Add padding to avoid cutting off shadows */
}

.runningProjectsSwiper .swiper-slide,
.completedProjectsSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.swiper-nav-buttons {
    display: flex;
    gap: 10px;
}

.running-prev, .running-next,
.completed-prev, .completed-next {
    width: 40px;
    height: 40px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.running-prev::after, .running-next::after,
.completed-prev::after, .completed-next::after {
    font-size: 16px;
    font-weight: bold;
    font-family: inherit; /* Use arrow symbols directly */
}

/* Map Swiper icons to arrows */
.running-prev::after, .completed-prev::after {
    content: '←'; 
}
.running-next::after, .completed-next::after {
    content: '→';
}

.running-prev:hover, .running-next:hover,
.completed-prev:hover, .completed-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 65, 45, 0.25);
}

.running-prev.swiper-button-disabled, .running-next.swiper-button-disabled,
.completed-prev.swiper-button-disabled, .completed-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #ccc;
    box-shadow: none;
    transform: none;
}

.running-pagination, .completed-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 20px; 
    display: flex;
    justify-content: center;
    gap: 6px;
}

.running-pagination .swiper-pagination-bullet,
.completed-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s;
}

.running-pagination .swiper-pagination-bullet-active,
.completed-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* Smooth infinite scroll for Awards */
.awardsSwiper .swiper-wrapper { transition-timing-function: linear !important; }

/* connect our client company css */
.connect_our_company.stats-section {
    background-image: linear-gradient(rgba(227, 65, 45, 1), rgba(227, 65, 45, 1)), url('https://www.sanjeevnigroup.com/image/Sanjeevni-family-background-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
}

.connect_our_company .stats-icon {
    font-size: 44px;
    margin-bottom: 20px;
    color: #fff;
    transition: transform 0.3s ease;
}

.connect_our_company .stats-icon i {
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.connect_our_company .col-md-3:hover .stats-icon {
    transform: translateY(-5px);
}

.connect_our_company .stats-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.connect_our_company .stats-title {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.connect_our_company .custom-hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    margin-top: 60px;
    margin-bottom: 0;
    opacity: 1;
}

/* Fix for stats section grid without Bootstrap */
.connect_our_company .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
    justify-content: center;
}

.connect_our_company .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 12px;
    padding-left: 12px;
    width: 100%;
}

.connect_our_company .col-12 {
    width: 100%;
}

@media (max-width: 768px) {
    .connect_our_company .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}


.text-center {
    text-align: center !important;
}

/* Ensure font consistency */
.connect_our_company {
    font-family: 'Jost', sans-serif;
}


/* Responsive Styles for Blog, Contact, and Reviews */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .review-source {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 15px 20px;
  }
  
  .review-source span {
    font-size: 12px;
  }
  
  .reviews-pagination {
    margin-top: 20px;
  }
  
  /* Ensure contact info fits */
  .contact-card {
    padding: 30px 20px;
  }
}

/* Small mobile fix for topbar */
@media (max-width: 540px) {
  .topbar {
    font-size: 11px;
    padding: 6px 0;
  }
  .topbar .wrap {
    justify-content: center;
    gap: 6px;
  }
  .topbar-left,
  .topbar-right {
    justify-content: center;
    gap: 12px;
    width: 100%;
  }
  .topbar-left {
    margin-bottom: 4px;
  }
  .pill {
    padding: 4px 10px;
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  #is_desktop {
    display: none !important;
  }
  .is_mobile {
    display: block !important;
  }
}

/* Default state for desktop */
.is_mobile {
    display: none;
}
#is_desktop {
    display: block;
}

/* Side Floating Buttons */
.side-floating-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 99999;
  gap: 0; 
}

.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px!important;
  height: 140px;
  color: white;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  writing-mode: vertical-lr; 
  text-orientation: mixed;
  padding: 10px 0;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 10px;
}

.side-btn span {
  transform: rotate(180deg);
}

.side-btn:hover {
  transform: translateX(-5px);
  width: 50px;
}

.btn-enquire {
  background: linear-gradient(135deg, #4361ee, #3a0ca3); 
  border-radius: 12px 0 0 12px;
}

.btn-call {
  background: linear-gradient(135deg, #f72585, #b5179e); 
  /* Yellowish option from image reference: */
  background: linear-gradient(135deg, #ffb703, #fb8500);
  border-radius: 12px 0 0 12px;
}

/* Visible on all devices */
@media (max-width: 768px) {
  .side-floating-buttons {
    display: flex; 
    right: 0;
  }
}
@media (max-width: 992px) {
  .completed_project {
    grid-template-columns: repeat(1, 1fr)!important;

}
  .projects-grid {
    grid-template-columns: repeat(1, 1fr)!important;
}
}
.project-sold-out-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    color: #D32F2F;
    font-size: 24px;
    font-weight: 800;
    font-family: sans-serif;
    text-transform: uppercase;
    border: 5px solid #D32F2F;
    padding: 10px 25px;
    border-radius: 6px;
    letter-spacing: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 5;
    white-space: nowrap;
    opacity: 0.5;
}

.project-image-wrapper {
    position: relative;
}
