/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/* ================= REDUCE SECTION GAPS (MOBILE) ================= */
@media (max-width: 768px) {
  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}


/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* ========== NAVBAR ========== */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo img {
  height: 42px;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #7091E6;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
/* .nav-cta {
  padding: 10px 18px;
  background: #7091E6;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background: #5a7bd6;
} */

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: 0.3s;
}

/* ========== MOBILE MENU ========== */
/* ===== PREMIUM TRANSPARENT MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 70px;                 /* below navbar */
  right: 16px;

  width: 240px;
  padding: 18px 20px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 6px;

  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 999;
}

/* OPEN STATE */
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* MENU LINKS */
.mobile-menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(112, 145, 230, 0.1);
}


/* ========== NAV BAR RESPONSIVE ========== */
@media (max-width: 900px) {

  /* NAVBAR GRID LAYOUT */
  .navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
  }

  /* LOGO SMALLER */
  .nav-logo img {
    height: 34px;
  }

  /* HIDE DESKTOP LINKS */
  .nav-links {
    display: none;
  }

  /* CTA BUTTON CENTERED BUT SLIGHT RIGHT */
  .nav-cta {
    position: absolute;
    left: 65%;
    transform: translateX(-50%);
    padding: 8px 14px;
    font-size: 13px;
  }

  /* SHOW HAMBURGER */
  .hamburger {
    display: flex;
    justify-self: end;
  }
}

.mobile-menu.open {
  display: column;
}

/* 3d slider section */
/* SECTION */
.slider3d-section { width: 100%; height: 420px; display: flex; justify-content: center; align-items: center; perspective: 1300px; background: white; }

/* CAROUSEL */
.carousel { width: 700px; height: 350px; position: relative; transform-style: preserve-3d; animation: rotateSlow 26s linear infinite; gap: 10px; }

/* IMAGES */
.carousel img { width: 350px; height: 260px; object-fit: cover; border-radius: 12px; position: absolute; left: 150px; top: 50px; cursor: pointer; transition: 0.4s; box-shadow: 0 6px 20px rgba(0,0,0,0.25); object-fit: cover; }

/* 5 Images around circle */
.carousel img:nth-child(1) { transform: rotateY(0deg) translateZ(260px); }
.carousel img:nth-child(2) { transform: rotateY(72deg) translateZ(260px); }
.carousel img:nth-child(3) { transform: rotateY(144deg) translateZ(260px); }
.carousel img:nth-child(4) { transform: rotateY(216deg) translateZ(260px); }
.carousel img:nth-child(5) { transform: rotateY(288deg) translateZ(260px); }


/* AUTO ROTATE */
@keyframes rotateSlow { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }

/* IMAGE POPUP MODAL */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); justify-content: center; align-items: center; z-index: 9999; }

.modal-content { max-width: 90%; max-height: 90%; border-radius: 16px; animation: fadeIn 0.3s ease; }

.closeBtn { position: absolute; top: 20px; right: 30px; font-size: 40px; color: white; cursor: pointer; }

@keyframes fadeIn { from {opacity: 0; transform: scale(0.9);} to {opacity: 1; transform: scale(1);} }

/* MOBILE */
@media(max-width: 768px){
  .slider3d-section { height: 320px; perspective: 900px; margin-top: -20px; }
  .carousel { width: 220px; height: 200px; }
  .carousel img { width: 230px; height: 210px; left: 20px; top: 20px; }
  .carousel img:nth-child(1){ transform: rotateY(0deg) translateZ(180px); }
  .carousel img:nth-child(2){ transform: rotateY(72deg) translateZ(180px); }
  .carousel img:nth-child(3){ transform: rotateY(144deg) translateZ(180px); }
  .carousel img:nth-child(4){ transform: rotateY(216deg) translateZ(180px); }
  .carousel img:nth-child(5){ transform: rotateY(288deg) translateZ(180px); }
}
/* ================= ABOUT US ================= */
.about-section {
  background: #ffffff;
  padding: 80px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-text {
  max-width: 750px;
}

.about-text h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #7091E6;
}

.about-intro {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #333;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

/* SEO keyword highlight (soft, premium) */
.about-text mark {
  background: rgba(112, 145, 230, 0.12);
  color: #1a1a1a;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Emotional closing line */
.about-highlight {
  margin-top: 20px;
  font-weight: 500;
  color: #1a1a1a;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 18px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-intro {
    font-size: 17px;
  }

  .about-text p {
    font-size: 15px;
  }
}
/* ================= ABOUT DESKTOP CENTER ================= */
@media (min-width: 901px) {
  .about-section {
    text-align: center;
  }

  .about-container {
    display: flex;
    justify-content: center;
  }

  .about-text {
    max-width: 750px;
    margin: 0 auto;
  }
}

/* ABOUT US END */

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 90px 20px;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* VIDEO BOX */
.services-media {
  max-width: 480px;
  width: 100%;
   height: 400px; 
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.services-video {
   width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

/* CONTENT */
.services-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
}

.services-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* BUTTONS */
.services-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #000;
  color: #fff;
}

.btn.primary:hover {
  background: #222;
}

.btn.secondary {
  background: #000;
  color: #fff;
}

.btn.secondary:hover {
  background: #222;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: -30px;
  }

  .services-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 900px) {
  .services-media {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* SERVICES SECTION END */

/* ================= SERVICES ICON SECTION ================= */
.services-icons-section {
  padding: 90px 20px;
  background: #ffffff;
}

.services-icons-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

/* EACH SERVICE */
.service-item {
  padding: 10px;
}

.service-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000;
}

.service-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-icons-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* SERVICES ICON SECTION END */

/* ================= REELS SECTION ================= */
.reels-section {
  padding: 80px 20px;
  background: #ffffff;
}

.reels-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
}

/* Wrapper */
.reels-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reels-wrapper::-webkit-scrollbar {
  display: none;
}

/* Track */
.reels-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Reel Item */
.reel-item {
  flex: 0 0 auto;
  width: 220px;
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.reel-item:hover img {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .reel-item {
    width: 180px;
    height: 320px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  padding: 70px 20px;
  background: #ffffff;
}

.testimonials-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
}

/* Wrapper */
.testimonials-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

/* Track */
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Card */
.testimonial-card {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  padding: 16px;
}

/* Image */
.testimonial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Text */
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

/* Name */
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    width: 220px;
  }

  .testimonial-card img {
    height: 150px;
  }
}
/* ===== FIX TESTIMONIAL POPUP SIZE ===== */

#testimonialPopup {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

/* backdrop */
.testimonial-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* popup box */
.testimonial-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 520px;   /* 🔥 CONTROL POPUP WIDTH */
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* popup image */
.testimonial-popup-content img {
  width: 100%;
  height: 390px;      /* 🔥 CONTROL IMAGE HEIGHT */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* text */
#popupText {
  font-size: 15px;
  line-height: 0.6;
  color: #444;
  margin-bottom: 8px;
}

/* name */
#popupName {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* close button */
.testimonial-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}

/* ================= more services STYLED SERVICES ================= */
/* ================= MORE SERVICES (CARD STYLE) ================= */

.styled-services-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* GRID CONTAINER */
.styled-services-container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards desktop */
  gap: 40px;
}

/* CARD */
.styled-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 18px;
  transition: transform 0.35s ease;
}

.styled-service-card:hover {
  transform: translateY(-6px);
}

/* IMAGE BOX */
.service-image {
  width: 100%;
  height: 320px;               /* controls card height */
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BUTTON */
.service-btn {
  margin-top: -22px;           /* pulls button upward */
  width: 85%;

  background: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 16px;
  font-weight: 600;
  color: #000;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.styled-service-card:hover .service-btn {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.service-btn .arrow {
  font-size: 22px;
  font-weight: 400;
}

/* REMOVE DEFAULT BUTTON OUTLINE */
.service-btn:focus {
  outline: none;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .styled-services-container {
    grid-template-columns: 1fr; /* Y axis (stack) */
    gap: 30px;
  }

  .styled-service-card {
    width: 90%;
    margin: 0 auto;
  }

  .service-image {
    height: 220px;             /* smaller image on mobile */
  }

  .service-btn {
    width: 90%;
    font-size: 15px;
  }
}

/* more services end */

/* ================= WORKFLOW SECTION ================= */
.workflow-section {
  padding: 90px 20px;
  background: #f9f9f9;
}

.workflow-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Badge */
.workflow-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #eaeaea;
  color: #333;
  margin-bottom: 15px;
}

/* Title */
.workflow-title {
  font-size: 32px;
  margin-bottom: 60px;
}

/* Timeline */
.workflow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Line */
.workflow-line {
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: #dcdcdc;
  z-index: 0;
  border-radius: 4px;
}

/* Step */
.workflow-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.workflow-step.show {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.workflow-dot {
  width: 20px;
  height: 20px;
  background: #d0d0d0;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.workflow-dot.active {
  background: #555;
}

/* Text */
.workflow-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.workflow-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .workflow-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workflow-line {
    display: none;
  }
}

/* ================= FOOTER TOP ================= */
.footer-top {
  padding: 80px 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.footer-top-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* BRAND COLUMN */
.footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

.brand-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid #000;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;

  transition: all 0.3s ease;
}

.footer-contact-btn:hover {
  background: #000;
  color: #fff;
}

/* QUICK LINKS */
.links-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-grid li {
  margin-bottom: 10px;
}

.links-grid a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-grid a:hover {
  color: #000;
}

/* MAP */
.map-col iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .footer-top {
    padding: 60px 16px;
  }

  .footer-top-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    width: 140px;
  }

  .links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-col iframe {
    height: 180px;
  }
  .links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 16px 24px;
  }

  .links-grid ul {
    margin: 0;
    padding: 0;
  }

  .links-grid li {
    margin-bottom: 8px;
  }
}
/* ================= FINAL FOOTER ================= */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #eee;
  padding: 18px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .site-footer {
    padding: 16px;
  }

  .site-footer p {
    font-size: 12px;
  }
}


/* ================= FLOATING SOCIAL BUTTONS ================= */
.social-float{
  position: fixed;
  right: 20px;
  bottom: 68px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.social-btn img{
  width: 28px;
  height: 28px;
}

/* WhatsApp */
.social-btn.whatsapp{
  background: #25D366;
}

/* Instagram gradient */
.social-btn.instagram{
  background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* Hover */
.social-btn:hover{
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

/* Mobile */
@media(max-width:768px){
  .social-float{
    right: 16px;
    bottom: 55px;
  }

  .social-btn{
    width: 50px;
    height: 50px;
    
  }

  .social-btn img{
    width: 48px;
    height: 48px;
  }
}
/* float button end */

/* ================= FLOATING QUOTATION BUTTON ================= */
.floating-quotation-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  padding: 12px 18px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  background: #000;
  color: #fff;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover (Desktop polish) */
.floating-quotation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .floating-quotation-btn {
    padding: 10px 14px;
    font-size: 13px;
    bottom: 16px;
    right: 16px;
  }
}

/* ================= EXTRA SMALL MOBILE ================= */
@media (max-width: 480px) {
  .floating-quotation-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
