/* =====================
   CSS Variables & Reset
   ===================== */
@import url("https://fonts.googleapis.com/css2?family=Monument+Extended:wght@400;700&display=swap");

:root {
  --gold: #f3c91f;
  --black: #000000;
  --dark-black: #0a0a0a;
  --gray: #666666;
  --light-gray: #1a1a1a;
  --white: #ffffff;
  --off-white: #e8e8e8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Monument Extended",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.title-underline {
  width: 120px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 60px;
}

#projectType {
  padding-right: 52px; /* arrow ke liye extra space */

  background-position: right 20px center;
  /* pehle agar 14px tha, ab 20px */
}
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding-right: 60px; /* arrow ke liye jagah */
}

/* Custom chevron */
.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px; /* 👈 yahin se aage-peeche hoga */
  width: 10px;
  height: 10px;
  border-right: 2px solid #f3c91f;
  border-bottom: 2px solid #f3c91f;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

/* =====================
   Page Loader
   ===================== */

/* Updated logo reveal - halves start together at center and split apart smoothly */

.page-loader {
  position: fixed;

  inset: 0;

  background: #000000;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  pointer-events: all;

  overflow: hidden;
}

.page-loader.hide {
  pointer-events: none;
}

/* Logo container */

.logo-container {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: 100%;
}

/* Logo halves styling - positioned to form complete N initially */

.logo-half {
  position: absolute;

  height: 360px;

  width: auto;

  opacity: 1;

  filter: drop-shadow(0 0 40px rgba(243, 201, 31, 0.6));

  /* Start at center position to form complete logo */

  transform: translateX(0);
}

.logo-left {
  /* Positioned to form left half of N */

  left: calc(50% - 174px);
}

.logo-right {
  right: calc(50% - 102px);
  margin-top: 26px;
}

#about-hero,
#services-hero,
#what-we-do-hero {
  height: 70vh;
}

/* Mobile responsiveness for loader */

@media screen and (max-width: 1199px) {
  .logo-half {
    height: 250px;
  }

  .logo-left {
    left: calc(50% - 96px);
  }

  .logo-right {
    right: calc(50% - 100px);
  }
}

@media screen and (max-width: 480px) {
  .logo-half {
    height: 180px;
  }

  .logo-left {
    left: calc(50% - 62px);
  }

  .logo-right {
    right: calc(50% - 85px);
  }
}

/* Updated glow effect timing */

.screen-glow {
  position: fixed;

  inset: 0;

  background: radial-gradient(
    circle at center,

    rgba(243, 201, 31, 0.35) 0%,

    rgba(243, 201, 31, 0.18) 30%,

    rgba(243, 201, 31, 0.08) 55%,

    transparent 75%
  );

  opacity: 0;

  filter: blur(40px);

  z-index: 0;

  animation: screenGlow 2s ease-out forwards;
}

@keyframes screenGlow {
  0% {
    opacity: 0;

    transform: scale(0.85);
  }

  30% {
    opacity: 1;

    transform: scale(1);
  }

  70% {
    opacity: 0.6;

    transform: scale(1.1);
  }

  100% {
    opacity: 0;

    transform: scale(1.3);
  }
}

/* =====================
   Header & Navigation
   ===================== */

/* =====================
   HEADER
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.nav-logo img {
  height: 70px;
}

/* =====================
   DESKTOP MENU
===================== */
.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 50px;
  align-items: center;
}

.nav-link {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(#000);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 12px 30px;
  border-radius: 2px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 201, 31, 0.4);
}
/* Toggle + Close hidden on desktop */
.nav-toggle,
.nav-close {
  display: none;
}

/* =====================
   MOBILE MENU
===================== */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 26px;
    height: 2px;
    background: gold;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.show-menu {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 40px;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: gold;
    cursor: pointer;
  }
}

/* =====================
   Hero Section
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background-image: url("./public/images/banner-images.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  padding: 0 40px;
}

.hero-logo {
  margin-bottom: 40px;
}

.hero-logo img {
  height: 280px;
  width: auto;
  animation: fadeInScale 1s ease-out;
  filter: drop-shadow(0 10px 40px rgba(243, 201, 31, 0.3));
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--off-white);
  font-weight: 400;
  letter-spacing: 0.05em;
}

#about-hero .hero-subtitle,
#services-hero .hero-subtitle,
.what-we-do-wrap .hero-subtitle {
  margin-bottom: 0px;
}

/* Updated button styles for more creative design */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-btn.primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.hero-btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-btn.primary:hover {
  color: var(--black);
  background-color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 10px 30px rgba(243, 201, 31, 0.4);
}

.hero-btn.primary:hover::before {
  left: 0;
}

.hero-btn.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-btn.secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-btn.secondary:hover {
  border-color: var(--gold);
  color: var(--black);
}

.hero-btn.secondary:hover::before {
  left: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%,
  20% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 24px;
    opacity: 0;
  }
}

/* =====================
   Animations
   ===================== */
.fade-in {
  animation: fadeIn 1s ease-out 0.5s both;
}

.fade-in-delay {
  animation: fadeIn 1s ease-out 0.8s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-out 1.1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =====================
   About Section
   ===================== */
.about {
  background: var(--dark-black);
  border-top: 1px solid rgba(243, 201, 31, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.about-image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about-content {
  padding: 20px 0;
}

.about-content .section-title {
  text-align: left;
  font-size: 3rem;
}

.about-content .title-underline {
  margin: 0 0 40px 0;
}

.about-text {
  font-size: 1rem;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}



.stats-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.15);
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.85;
}

/* our story */

.story-hero-section {
  position: relative;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.story-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15), transparent 50%);
  pointer-events: none;
}


/* IMAGE SIDE */
.story-image-container {
  position: relative;
  height: 70vh;
  animation: fadeInLeft 1.2s ease;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(255, 217, 0, 0.144);
  position: relative;
  z-index: 1;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
  border-radius: 30px;
  z-index: 2;
  pointer-events: none;
}

/* CONTENT SIDE */
.story-content {
  padding-left: 60px;
  animation: fadeInRight 1.2s ease;
}

.story-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.story-tagline {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 600;
}

.story-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 30px;
}

.story-text strong {
  color: #ffd700;
}

/* Added About tagline and highlight styles */
.about-tagline {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  font-style: italic;
}

.about-highlight {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 40px;
  line-height: 1.8;
  padding-top: 40px;
  border-top: 2px solid rgba(243, 201, 31, 0.2);
}

/* =====================
   Information Section
   ===================== */
.information {
  background: var(--black);
  border-top: 1px solid rgba(243, 201, 31, 0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(243, 201, 31, 0.2);
}

.info-card {
  background: var(--black);
  padding: 60px 50px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.info-card:hover {
  background: var(--dark-black);
}

.info-card:hover::before {
  height: 100%;
}

.card-icon {
  margin-bottom: 30px;
  display: inline-flex;
  transition: all 0.3s ease;
}

.info-card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.card-text {
  color: var(--off-white);
  line-height: 1.8;
  font-size: 1rem;
}

/* =====================
   Services Section
   ===================== */
.services {
  background: var(--dark-black);
  border-top: 1px solid rgba(243, 201, 31, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(243, 201, 31, 0.2);
}

.service-box {
  text-align: left;
  padding: 70px 60px;
  background: var(--black);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-box:hover {
  background: var(--dark-black);
}

.service-box:hover::after {
  width: 100%;
}

.service-icon {
  margin-bottom: 40px;
  display: inline-flex;
  transition: all 0.3s ease;
}

.service-box:hover .service-icon {
  transform: translateX(10px);
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.service-text {
  color: var(--off-white);
  line-height: 1.8;
  font-size: 1rem;
}

/* Added service number styling for What We Do section */
.service-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(243, 201, 31, 0.15);
  margin-bottom: 20px;
  line-height: 1;
  transition: all 0.4s ease;
}

.service-box:hover .service-number {
  color: rgba(243, 201, 31, 0.3);
  transform: scale(1.1);
}

/* =====================
   Contact Section
   ===================== */
.contact {
  background: var(--black);
  border-top: 1px solid rgba(243, 201, 31, 0.1);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  font-size: 3rem;
}

.contact-info .title-underline {
  margin: 0 0 40px 0;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--off-white);
  margin-bottom: 60px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243, 201, 31, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item p {
  color: var(--off-white);
  font-size: 1.1rem;
}

.contact-form {
  background: var(--dark-black);
  padding: 60px;
  border: 1px solid rgba(243, 201, 31, 0.1);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(243, 201, 31, 0.2);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--dark-black);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.error-message {
  display: none;
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 8px;
}

.error-message.show {
  display: block;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff4444;
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.4s ease;
  z-index: 0;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  color: var(--black);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.form-success {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background: rgba(243, 201, 31, 0.1);
  color: var(--gold);
  border: 1px solid var(--gold);
  text-align: center;
  font-weight: 500;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* what we do */

#main-services {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

#main-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(243, 201, 31, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(243, 201, 31, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

#main-services .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#main-services .title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f3c91f 0%, #e6b800 100%);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.service-detailed-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(243, 201, 31, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-detailed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-detailed-card:hover {
  border-color: #f3c91f;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  transform: translateY(-10px);
  box-shadow:
    0 20px 60px rgba(243, 201, 31, 0.15),
    0 0 40px rgba(243, 201, 31, 0.1);
}

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

.service-icon-large {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.service-icon-large i , .why-icon i{
  color:#f3c91f;
}


.service-detailed-card:hover .service-icon-large {
  transform: scale(1.2) rotate(5deg);
}

.service-detailed-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.service-detailed-card p {
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  font-size: 0.9rem;
  color: #a0a0a0;
  padding: 8px 0 8px 25px;
  position: relative;
  transition: all 0.3s ease;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f3c91f;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-features li:hover {
  color: #ffffff;
  padding-left: 35px;
}

.service-features li:hover::before {
  left: 10px;
}

/* ========== DASHBOARD SHOWCASE SECTION ========== */
.dashboard-showcase {
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.08) 0%, rgba(243, 201, 31, 0.04) 100%);
  border: 2px solid rgba(243, 201, 31, 0.3);
  border-radius: 16px;
  display: flex;
  gap: 50px;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.dashboard-showcase:hover {
  border-color: #f3c91f;
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.12) 0%, rgba(243, 201, 31, 0.06) 100%);
  box-shadow: 0 20px 60px rgba(243, 201, 31, 0.2);
}

.showcase-content {
  flex: 1;
  min-width: 300px;
}

.showcase-content h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.showcase-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.showcase-image-container {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(243, 201, 31, 0.2);
}

.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.dashboard-showcase:hover .showcase-image {
  transform: scale(1.05);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .dashboard-showcase {
    flex-direction: column;
    gap: 40px;
  }

  .showcase-content h3 {
    font-size: 1.6rem;
  }

  .showcase-image-container {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboard-showcase {
    margin-top: 60px;
    padding: 40px 20px;
    gap: 30px;
  }

  .showcase-content h3 {
    font-size: 1.4rem;
  }

  .showcase-content p {
    font-size: 1rem;
  }
}

/* ========== HOW WE WORK SECTION ========== */
#detailed-process {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(15, 15, 15, 0.95) 100%);
  position: relative;
}

#detailed-process .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#detailed-process .title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f3c91f 0%, #e6b800 100%);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
  position: relative;
}

.process-flow-card {
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.08) 0%, rgba(243, 201, 31, 0.02) 100%);
  border: 2px solid rgba(243, 201, 31, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
}

.process-flow-card:hover {
  border-color: #f3c91f;
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.12) 0%, rgba(243, 201, 31, 0.05) 100%);
  transform: translateY(-8px);
  box-shadow:
    0 25px 50px rgba(243, 201, 31, 0.2),
    inset 0 0 30px rgba(243, 201, 31, 0.05);
}

.flow-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f3c91f;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(243, 201, 31, 0.3);
  letter-spacing: 2px;
}

.process-flow-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.process-flow-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.7;
}

.flow-arrow {
  width: 3px;
  height: 60px;
  background: linear-gradient(180deg, #f3c91f 0%, transparent 100%);
  margin: 20px auto;
  position: relative;
  border-radius: 2px;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #f3c91f;
}

/* ========== WHAT OUR CLIENTS SAY SECTION ========== */
#testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.94) 0%, rgba(20, 20, 20, 0.96) 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(243, 201, 31, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(243, 201, 31, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

#testimonials .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#testimonials .title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f3c91f 0%, #e6b800 100%);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(243, 201, 31, 0.2);
  border-radius: 12px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 15px;
  font-size: 5rem;
  color: rgba(243, 201, 31, 0.15);
  font-weight: bold;
  z-index: 0;
}

.testimonial-card:hover {
  border-color: #f3c91f;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  transform: translateY(-12px);
  box-shadow:
    0 25px 60px rgba(243, 201, 31, 0.15),
    0 0 40px rgba(243, 201, 31, 0.08);
}

.stars {
  font-size: 1.3rem;
  color: #f3c91f;
  margin-bottom: 20px;
  letter-spacing: 3px;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  color: #e0e0e0;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #f3c91f;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ========== WHY CHOOSE US SECTION ========== */
#why-choose-us {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.93) 0%, rgba(15, 15, 15, 0.94) 100%);
  position: relative;
}

#why-choose-us .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#why-choose-us .title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f3c91f 0%, #e6b800 100%);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.08) 0%, rgba(243, 201, 31, 0.02) 100%);
  border: 1px solid rgba(243, 201, 31, 0.25);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(243, 201, 31, 0.1) 50%, transparent 100%);
  transition: left 0.4s ease;
  z-index: 0;
}

.why-card:hover {
  border-color: #f3c91f;
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.12) 0%, rgba(243, 201, 31, 0.05) 100%);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(243, 201, 31, 0.15);
}

.why-card:hover::before {
  left: 100%;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-5deg);
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

  .story-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #e8e8e8;
            margin-bottom: 25px;
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .mvv-card {
            background: rgba(243, 201, 31, 0.08);
            border: 1px solid #f3c91f;
            padding: 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mvv-card:hover {
            background: rgba(243, 201, 31, 0.15);
            transform: translateY(-5px);
        }

        .mvv-card h3 {
            font-size: 1.5rem;
            color: #f3c91f;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .mvv-card p {
            color: #e8e8e8;
            line-height: 1.8;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .value-card {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border: 1px solid rgba(243, 201, 31, 0.2);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            background: rgba(243, 201, 31, 0.1);
            border-color: #f3c91f;
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
        }

         .value-icon i{
             color: #f3c91f;
        }

        .value-card h3 {
            color: #f3c91f;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .value-card p {
            color: #e8e8e8;
            line-height: 1.6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .team-member {
            background: rgba(243, 201, 31, 0.05);
            border: 1px solid #f3c91f;
            border-radius: 8px;
            overflow: hidden;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            background: rgba(243, 201, 31, 0.15);
            transform: translateY(-5px);
        }

        .team-avatar {
            font-size: 4rem;
            margin-bottom: 0px;
        }

        .team-avatar img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .team-member h3 {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .team-role {
            color: #f3c91f;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .team-bio {
            color: #e8e8e8;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-top: 60px;
            text-align: center;
        }

        .stat-item {
            padding: 30px 0;
            border-top: 2px solid #f3c91f;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #f3c91f;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-item p {
            color: #e8e8e8;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }


/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  #main-services,
  #detailed-process,
  #testimonials,
  #why-choose-us {
    padding: 60px 0;
  }

  #main-services .section-title,
  #detailed-process .section-title,
  #testimonials .section-title,
  #why-choose-us .section-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .services-detailed-grid,
  .process-flow-grid,
  .testimonials-grid,
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .service-detailed-card,
  .process-flow-card,
  .testimonial-card,
  .why-card {
    padding: 30px 25px;
  }

  .service-icon-large {
    font-size: 2.5rem;
  }

  .flow-number {
    font-size: 3rem;
  }

  .service-detailed-card h3,
  .process-flow-card h3,
  .why-card h3 {
    font-size: 1.2rem;
  }

  .story-title {
    font-size: 3rem;
  }

  .story-hero-section {
    padding: 50px 0;
  }

  .section {
    padding: 40px 0;
  }

  .story-content {
    padding-left: 0px;
  }

  .story-hero-section::before {
    display: none;
  }
}

@media (max-width: 480px) {
  #main-services,
  #detailed-process,
  #testimonials,
  #why-choose-us {
    padding: 50px 0;
  }

  #main-services .section-title,
  #detailed-process .section-title,
  #testimonials .section-title,
  #why-choose-us .section-title {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }

  .services-detailed-grid,
  .process-flow-grid,
  .testimonials-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detailed-card,
  .process-flow-card,
  .testimonial-card,
  .why-card {
    padding: 25px 20px;
  }

  .service-icon-large {
    font-size: 2rem;
  }

  .flow-number {
    font-size: 2.5rem;
  }

  .why-icon {
    font-size: 2rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }
}

/* =====================
   Footer
   ===================== */
.footer {
  background: var(--dark-black);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(243, 201, 31, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(1.1);
}

.footer-description {
  color: var(--off-white);
  line-height: 1.8;
  max-width: 350px;
  margin-bottom: 20px;
}

.footer-title {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--off-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--black);
  border: 1px solid rgba(243, 201, 31, 0.2);
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(243, 201, 31, 0.1);
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* =====================
   Scroll animations
   ===================== */
/* .animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
} */

/* Added CTA section styles */
.cta-section {
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-top: 1px solid rgba(243, 201, 31, 0.2);
  border-bottom: 1px solid rgba(243, 201, 31, 0.2);
  text-align: center;
  padding: 100px 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: 50px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 20px 60px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background: var(--white); */
  transition: left 0.4s ease;
  z-index: 0;
}

.cta-btn:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(243, 201, 31, 0.4);
  z-index: 99;
  background-color: #fff;
}

.cta-btn:hover::before {
  left: 0;
  color: #000 !important;
  z-index: 99;
}

.cta-section .cta-subtitle {
  margin-bottom: 16px;
  font-size: 18px;
}

/* Added inquiry page styles */
.inquiry-page {
  padding-top: 90px;
  min-height: 100vh;
  background: var(--black);
}

.inquiry-hero {
  background: linear-gradient(135deg, rgba(243, 201, 31, 0.15) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(243, 201, 31, 0.2);
}

.inquiry-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.inquiry-hero-text {
  font-size: 1.2rem;
  color: var(--off-white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.inquiry-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}

.inquiry-form {
  background: var(--dark-black);
  padding: 40px;
  border: 1px solid rgba(243, 201, 31, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.inquiry-form .form-group {
  margin-bottom: 30px;
}

.inquiry-form select {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(243, 201, 31, 0.2);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.inquiry-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--dark-black);
}

.inquiry-sidebar {
  position: sticky;
  top: 120px;
}

.inquiry-info-box {
  background: var(--dark-black);
  padding: 40px;
  border: 1px solid rgba(243, 201, 31, 0.15);
  margin-bottom: 30px;
}

.inquiry-info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inquiry-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid rgba(243, 201, 31, 0.1);
}

.inquiry-info-item:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1640px) and (max-height: 740px) {
  .hero-logo img {
    height: 180px;
  }

  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 36px;
  }

  .hero-logo {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 1320px) and (max-height: 740px) {
  .hero-logo img {
    height: 170px !important;
  }

  .hero-title {
    font-size: 3rem !important;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-logo {
    margin-bottom: 12px;
  }

  .hero-btn {
    max-width: 280px;
    padding: 10px 18px;
  }

  .logo-half {
    height: 245px;
  }

  .logo-left {
    left: calc(50% - 110px);
  }

  .logo-right {
    right: calc(50% - 82px);
    margin-top: 26px;
  }
}

@media screen and (max-width: 576px) and (max-height: 740px) {
  .hero-logo img {
    height: 120px !important;
  }

  .hero-title{
font-size: 28px !important;

  }

      .hero {
        height: 100vh !important;
    }

        #about-hero, #services-hero, #what-we-do-hero {
        height: 70vh !important;
    }

    .logo-left {
        left: calc(50% - 72px);
    }

        .logo-right {
        right: calc(50% - 72px);
        margin-top: 26px;
    }

        .logo-half {
        height: 180px;
    }
}

/* Laptop */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .hero-logo img {
    height: 220px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-image img {
    height: 520px;
  }

  .about-content .section-title {
    font-size: 2.6rem;
  }

  .info-card {
    padding: 50px 40px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .service-box {
    padding: 60px 50px;
  }

  .service-title {
    font-size: 1.8rem;
  }

  .service-number {
    font-size: 3.5rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    height: 90vh;
  }

  #about-hero, #services-hero, #what-we-do-hero{
    height: 70vh;
  }

  .about .about-image {
    order: 2;
  }

  .container {
    padding: 0 24px;
  }

  .hero-btn {
    max-width: 228px;
    padding: 14px 6px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }


  .hero-logo img {
    height: 180px;
  }

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

  .about-image img {
    height: 420px;
  }

  .about-content {
    padding: 0;
  }

  .about-content .section-title {
    font-size: 2.4rem;
  }

  .about-text {
    font-size: 1.05rem;
  }

  .about-highlight {
    font-size: 1.1rem;
  }

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

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

  .info-card {
    padding: 50px 40px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-text {
    font-size: 0.98rem;
  }

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

  .service-box {
    padding: 55px 45px;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-text {
    font-size: 0.98rem;
  }

  .footer {
    padding: 70px 0 35px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-content {
    margin-bottom: 26px;
  }

  .footer-description {
    max-width: 100%;
  }

  .cta-btn {
    padding: 12px 34px;
  }

  .nav-link {
    font-size: 15px;
  }

  .nav {
    padding: 6px 24px !important;
  }

  .inquiry-hero {
    padding: 40px 0 60px;
  }
  .inquiry-hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .inquiry-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inquiry-form .form-group {
    margin-bottom: 16px;
  }

  .story-hero-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-hero-section .story-image-container {
    order: 2;
  }

   .story-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-logo img {
    height: 160px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .story-image-container {
    height: 45vh;
}

  .about {
    padding: 60px 0;
  }

  .about-image img {
    height: 320px;
  }

  .about-content .section-title {
    font-size: 2rem;
  }

  .about-tagline {
    font-size: 1.15rem;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .stats-grid {
    margin-top: 20px;
}

  .about-highlight {
    font-size: 1.05rem;
    padding-top: 30px;
    margin-top: 30px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .information,
  .services,
  .cta-section,
  .inquiry-content {
    padding: 40px 0;
  }

  .info-card {
    padding: 40px 30px;
  }

  .card-icon {
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 1.35rem;
  }

  .card-text {
    line-height: 1.7;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.8;
  }

  .service-box {
    padding: 45px 35px;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-number {
    font-size: 3rem;
  }

  .service-text {
    line-height: 1.7;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 15px;
  }

  .footer-description {
    margin: 0 auto 25px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a:hover {
    transform: none; /* mobile UX */
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .inquiry-hero-text {
    font-size: 18px;
    line-height: 25px;
  }

  .select-wrap select {
    padding-right: 44px; /* kam space */
    font-size: 14px;
  }

  .select-wrap::after {
    right: 14px; /* arrow ko andar lao */
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .mvv-card {
    padding: 24px;
   
}
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 110px 0 70px;
            height: 80vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }

  .hero-logo img {
    height: 160px;
  }

  .scroll-indicator {
    bottom: 10px;
  }

  .about {
    padding: 40px 0;
  }

  .about-image img {
    height: 260px;
  }

  .about-content .section-title {
    font-size: 1.8rem;
  }

  .about-tagline {
    font-size: 1.05rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .info-card {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .service-box {
    padding: 35px 25px;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-text {
    font-size: 0.95rem;
  }

  .service-number {
    font-size: 2.6rem;
  }

  .footer {
    padding: 40px 0 25px;
  }

  .footer-title {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 25px;
  }

  .hero-logo {
    margin-bottom: 20px;
  }

  .hero-content {
    padding: 0 12px;
  }

  .hero-btn {
    max-width: 260px;
    padding: 10px 6px;
    font-size: 14px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 26px;
  }
}

/* Extra Small (320px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-logo img {
    height: 110px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-logo {
    margin-bottom: 30px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  .about-image img {
    height: 220px;
  }

  .about-content .section-title {
    font-size: 1.6rem;
  }

  .about-highlight {
    font-size: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .service-box {
    padding: 30px 20px;
  }

  .service-title {
    font-size: 1.15rem;
  }

  .service-number {
    font-size: 2.4rem;
  }

  .footer {
    padding: 45px 0 20px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
