:root {
  --max-width: 1400px;
  --padding: clamp(16px, 4vw, 80px);

  --h1: clamp(32px, 5vw, 72px);
  --h2: clamp(26px, 3vw, 40px);
  --h3: clamp(18px, 2vw, 26px);
  --p: clamp(14px, 1.2vw, 18px);
}





html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  background: #0b0f19;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 70px;
  position: fixed;
  width: 100%;
  background: rgba(10, 15, 25, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.logo img {
  height: 45px;
  /* desktop */
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.6));
}

/* NAV LINKS */
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: clamp(14px, 1vw, 18px);
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #00e5ff;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}



.btn {
  background: linear-gradient(135deg, #00e5ff, #00bcd4);
  padding: 10px 22px;
  border-radius: 30px;
  color: black;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 229, 255, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

/* HERO */
.hero {
   min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
 padding: 120px var(--padding) 60px;
  gap: 40px;
  width: 100%;
  background: radial-gradient(circle at top, #1e40af 0%, #0b0f19 60%, #05070f 100%);
}
.hero-inner {
  max-width: 1400px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.hero-left {
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
}

.hero h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: #00e5ff;
}

.hero h1 span {
  color: #00e5ff;
}

.hero p {
  font-size: clamp(14px, 1.2vw, 18px);
  margin: 15px 0;
  opacity: 0.8;
}

.hero-right img {
  width: clamp(260px, 26vw, 420px);
  height: clamp(260px, 26vw, 420px);
  object-fit: cover;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob 6s infinite;
}

.hero-right {
  flex-shrink: 0;
  /* prevent stretching */
}

.hero-left {
  max-width: 550px;
  /* keep text compact */
}

/* SHAPE ANIMATION */
@keyframes blob {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
}

.hero-subtitle span {
  color: #00e5ff;
  font-weight: 700;
}

.hero-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.85);

  /* PREMIUM CARD LOOK */
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #00e5ff;

  padding: 15px 18px;
  border-radius: 10px;

  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

  max-width: 520px;
}

#typing {
  background: linear-gradient(90deg, #ffffff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


}

.cursor {
  color: #00e5ff;
  font-weight: 300;
  margin-left: 2px;
  animation: blink 0.8s infinite;
}

@media (max-width: 768px) {

  /* NAVBAR FIX */
  .navbar {
    padding: 12px 15px;
  }

  nav {
    display: flex;
    /* hide menu for mobile */
  }

  /* HERO FIX */
  
  /* HERO FIX */
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 100px 20px 40px;

    min-height: auto;  
    height: auto;
  }


  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 10px;
    word-break: break-word;
  }

  .hero h3 {
    font-size: 16px;
  }

  .hero p {
    font-size: 14px;
  }

  /* BUTTON FIX */
  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-btns a {
    width: 100%;
  }

  /* IMAGE FIX */
  .hero-right {
    margin-top: 20px;
  }

  .hero-right img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    margin: auto;
    display: block;
  }

}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* optional premium glow effect */
.hero h1 {
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  word-break: break-word;
  margin-bottom: 10px;
}

/* BUTTON */
.btn-outline {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  margin-left: 5px;
}

@media (max-width:768px) {

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

}


/* SECTIONS */
.section {
  padding: 100px 60px;
  text-align: center;
}

.dark {
  background: #0f172a;
}

.title {
  font-size: 35px;
  margin-bottom: 40px;
  color: #00e5ff;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 30px;
  border-radius: 18px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0, 229, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.card:hover::before {
  transform: translateX(100%);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

/* PROJECTS */
.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

.project img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.5s;
}

.project:hover img {
  transform: scale(1.1);
}

.project span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #00e5ff;
  color: black;
  padding: 5px 10px;
  border-radius: 10px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.stat-card {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px;
  border-radius: 18px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0, 229, 255, 0.15), transparent);
  transition: 0.5s;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.stat-number {
  font-size: 34px;
  font-weight: 700;
  color: #00e5ff;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* CONTACT PREMIUM */
.contact-section {
  background: linear-gradient(135deg, #0f172a, #020617);
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* LEFT BOX */
.contact-info-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  width: 320px;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-box h3 {
  color: #00e5ff;
  font-size: 22px;
  margin-bottom: 5px;
}

.contact-info-box p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.info-item {
  margin: 15px 0;
  font-size: 14px;
  opacity: 0.9;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 15px;
  background: #25D366;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  width: 320px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  outline: none;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 12px;
  opacity: 0.6;
  transition: 0.3s;
}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group input:valid+label,
.input-group textarea:valid+label {
  top: 0px;
  left: 10px;
  font-size: 10px;
  color: #00e5ff;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #00e5ff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER PREMIUM */
.footer {
  background: #020617;
  padding: 60px 40px 20px;
  margin-top: 50px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  gap: 40px;
}

.footer-content h3 {
  color: #00e5ff;
}

.footer-content h4 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-content p {
  opacity: 0.7;
  font-size: 14px;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 13px;
}

.about-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;

  padding: 60px;
  margin-top: 50px;

  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* LEFT IMAGE CONTAINER */
.about-box img {
  width: 430px;
  height: 540px;
  object-fit: cover;
  border-radius: 22px;

  border: 2px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 80px rgba(0, 229, 255, 0.18);

  transition: 0.5s;
  position: relative;
}

/* IMAGE HOVER PREMIUM EFFECT */
.about-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 100px rgba(0, 229, 255, 0.3);
}


/* RIGHT SIDE CONTENT */
.about-box div {
  max-width: 520px;
  text-align: left;
  position: relative;
}

/* NAME STYLE */
.about-box h4 {
  margin-top: 20px;
  font-size: 24px;
  color: #00e5ff;
  letter-spacing: 1px;
}

/* TEXT */
.about-box p {
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* FLOATING STATS ON IMAGE */
.about-box img::after {
  content: "10+ Years • 100+ Deals";
  position: absolute;
  bottom: 15px;
  left: 15px;

  background: rgba(0, 0, 0, 0.6);
  color: #00e5ff;

  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
}

/* GLOW BACKGROUND EFFECT */
.about-box::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* MOBILE */
@media (max-width:768px) {
  .about-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .about-box div {
    text-align: center;
  }

  .about-box img {
    width: 320px;
    height: 400px;
  }
}

.about-card {
  display: flex;
  gap: 40px;
  align-items: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);

  padding: 40px;
  border-radius: 25px;
  max-width: 1000px;
  margin: auto;

  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-text p {
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-name {
  color: #00e5ff;
  font-size: 22px;
  margin-top: 15px;
}

/* RIGHT SLIDER */
.about-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

/* TRACK */
.slider-track {
  display: flex;
  width: 300%;
  animation: aboutSlide 9s infinite;
}

/* SLIDES */
.slide {
  flex: 1;
  min-width: 100%;
  padding: 25px;

  background: rgba(0, 229, 255, 0.04);
  border-left: 3px solid #00e5ff;
  border-radius: 12px;
}

.slide h3 {
  color: #00e5ff;
  margin-bottom: 10px;
  font-size: 16px;
}

.slide p {
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.6;
}

/* ANIMATION */
@keyframes aboutSlide {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-100%);
  }

  65% {
    transform: translateX(-100%);
  }

  70% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(-200%);
  }
}

/* MOBILE */
@media(max-width:768px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-slider {
    width: 100%;
  }
}

.btn,
.btn-outline,
.hero-btns a {
  text-decoration: none;
  display: inline-block;
}

.hero-btns a {
  transition: 0.3s;
}

.hero-btns a:hover {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}


/* BACKDROP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* POPUP BOX */
.popup-box {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 18px;
  width: 320px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

  /* animation */
  transform: scale(0.8);
  opacity: 0;
  animation: popupIn 0.3s forwards;
}

@keyframes popupIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* TITLE */
.popup-box h2 {
  color: #00e5ff;
  margin-bottom: 15px;
  font-size: 20px;
}

/* INPUTS */
.popup-box input,
.popup-box textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-box textarea {
  resize: none;
  height: 80px;
}

/* BUTTON */
.popup-box button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #00e5ff, #00bcd4);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  transform: scale(1.05);
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  color: white;
  font-size: 18px;
  opacity: 0.7;
  transition: 0.3s;
}

.close:hover {
  opacity: 1;
  color: #00e5ff;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
}

/* 🔥 IMAGE FIX */
.gallery-item img {
  width: 100%;
  height: 220px;              /* fixed clean size */
  object-fit: cover;          /* premium look */
  object-position: center;    /* no weird cut */
  transition: 0.5s;
}

/* HOVER ZOOM */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* TEXT OVERLAY */
.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* CARD HOVER */
.gallery-item:hover {
  transform: translateY(-5px);
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

  .gallery-grid {
    grid-template-columns: 1fr;   /* one column clean */
    gap: 15px;
  }

  .gallery-item img {
    height: 200px;               /* slightly smaller */
  }

  .gallery-item span {
    font-size: 12px;
    padding: 8px;
  }
}
.office-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  max-width: 1100px;
  margin: auto;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);

  padding: 60px;
  border-radius: 25px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* LEFT IMAGE FIX */
.office-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.office-image img {
  width: 100%;
  max-width: 450px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;

  border: 2px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.15);

  transition: 0.4s;
}

.office-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 90px rgba(0, 229, 255, 0.25);
}

/* RIGHT CONTENT FIX */
.office-content {
  flex: 1;
  text-align: left;
}

.office-content h3 {
  color: #00e5ff;
  font-size: 26px;
  margin-bottom: 10px;
}

.office-content p {
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* INFO CARDS */
.office-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.office-card {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.15);
}

.office-card h4 {
  color: #00e5ff;
  font-size: 14px;
  margin-bottom: 5px;
}

.office-card p {
  font-size: 13px;
  opacity: 0.8;
}

/* BUTTON ALIGN */
.office-content .btn {
  display: inline-block;
  margin-top: 10px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px) {
  .office-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .office-content {
    text-align: center;
  }

  .office-image img {
    height: 350px;
  }
}

.office-map iframe {
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
}

.office-cta {
  margin-top: 20px;
  margin-bottom: 20px;
}

.office-map {
  margin-top: 10px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {

  /* NAVBAR */
  .navbar {
    padding: 15px 25px;
  }

  nav {
    display: flex;
    /* hide menu (you can add hamburger later) */
  }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 40px;
    min-height: auto;
    height: auto;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .hero-right img {
  width: clamp(250px, 26vw, 420px);
  height: auto;
  object-fit: contain;
}

  /* SECTIONS */
  .section {
    padding: 70px 20px;
    scroll-margin-top: 90px;
  }



  /* CARDS */
  .card {
    padding: 20px;
  }

  /* STATS */
  .stats {
    padding: 25px;
    gap: 15px;
  }

  .stat-card {
    min-width: 140px;
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  /* CONTACT */
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-box,
  .contact-form {
    width: 100%;
    max-width: 350px;
  }

  /* FOOTER */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  /* PROJECT GRID */
  .project img {
    height: 180px;
  }

  /* GALLERY */
  .gallery-item img {
    height: 180px;
  }

  /* OFFICE SECTION */
  .office-container {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .office-content {
    text-align: center;
  }

  .office-image img {
    height: 300px;
  }

  /* WHATSAPP BUTTON */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }

}

@media (max-width:768px) {

  /* FIX ABOUT MAIN BOX */
  .about-box {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 20px;
  }

  /* FIX IMAGE */
  .about-box img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  /* FIX INNER CARD */
  .about-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  /* TEXT CENTER */
  .about-text {
    text-align: center;
  }

  /* SLIDER FULL WIDTH */
  .about-slider {
    width: 100%;
  }

  /* FIX TEXT SIZE */
  .about-text p {
    font-size: 14px;
  }

  /* REMOVE EXTRA SPACE */
  .about-box div {
    max-width: 100%;
  }

}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* MOBILE MENU */
@media (max-width:768px) {

  .menu-toggle {
    display: flex;
  }

  /* HIDE DESKTOP BUTTON */
  .desktop-btn {
    display: none;
  }

  /* NAV MENU DEFAULT (HIDDEN) */
  nav {
    position: fixed;
    /* 🔥 CHANGE THIS */
    top: 70px;
    left: 0;
    /* add this */
    width: 100%;
    background: #020617;
    z-index: 999;
    /* IMPORTANT */

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar {
    z-index: 1000;
  }

  .hero {
    position: relative;
    z-index: 1;
  }

  /* BIG SCREEN FIX */
  /*@media (min-width: 1200px){

  .hero{
    padding: 0 120px;
  }

  .hero h1{
    font-size: 70px;  /* bigger heading */
  /*}

  .hero h3{
    font-size: 22px;
  }

  .hero p{
    font-size: 18px;
    max-width: 600px;
  }

}
@media (min-width: 1200px){

  nav a{
     font-size: clamp(14px, 1vw, 18px);  /* increase menu size */
  /* }

  .btn{
    padding: 12px 26px;
    font-size: 15px;
  }

}
@media (min-width: 1200px){

  .hero-right img{
    width: 380px;
    height: 380px;
  }

}

/* ACTIVE MENU (OPEN) */
  nav.active {
    max-height: 300px;
    padding: 20px 0;
    /* show padding only when open */
  }

  /* LINKS */


}

/* HAMBURGER ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* IMAGE FIX */
.hero-right img {
  width: clamp(260px, 26vw, 420px);
  height: clamp(260px, 26vw, 420px);
  object-fit: cover;

  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

nav a {
  font-size: clamp(14px, 1vw, 18px);
}

.btn {
  padding: clamp(8px, 1vw, 14px) clamp(18px, 2vw, 26px);
}

@media (min-width: 1600px) {

 .hero-inner {
    max-width: 1600px;
    gap: 80px;
  }
  .hero-left {
    max-width: 700px;
  }

  .logo img {
    height: 55px;
  }

  nav a {
    font-size: 33px;
  }

}

@media (min-width: 1200px) {

  .hero {
    padding: 140px 80px 80px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-right img {
    width: 400px;
    height: 400px;
  }

} 
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  width: max-content;   /* IMPORTANT: allows unlimited logos */
  animation: scroll 40s linear infinite;
}

.logo-track img {
  height: 80px;
  margin: 0 40px;  /* spacing between logos */
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* smooth infinite scroll */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}