/* ============================= */
/* PERFECT MOBILE RESPONSIVE CSS */
/* INDEX PAGE - CENTERED BUTTON TEXT */
/* ============================= */

/* ========================================
   NAVBAR - BIGGER LOGO + BEAUTIFUL LIST STYLE
   ======================================= */
@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 20px;
  }

  /* ✅ BIGGER LOGO - FULL NAVBAR HEIGHT */
  .nav-logo {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-logo img {
    height: 62px !important;
    width: auto !important;
    max-height: 100% !important;
  }

  .menu-button {
    font-size: 24px;
    padding: 8px;
    z-index: 1001;
  }

  /* ✅ PERFECT NAV LIST - BEAUTIFUL GLASSMORPHISM */
  .nav-menu {
    right: 20px !important;
    top: 80px !important;
    width: 280px !important;
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    padding: 0 !important;
  }

  .nav-menu.active {
    max-height: 450px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 20px !important;
  }

  .nav-menu ul li a {
    display: block !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #2f4f2f !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    margin: 4px 0 !important;
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(47,79,62,0.1) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
    text-decoration: none !important;
  }

  .nav-menu ul li a:hover {
    background: rgba(47,79,62,0.08) !important;
    transform: translateX(6px) !important;
    box-shadow: 0 8px 25px rgba(47,79,62,0.15) !important;
  }
}

/* ========================================
  HERO SECTION - MOBILE IMAGE + CENTERED BUTTONS
  ======================================= */
@media (max-width: 768px) {
  .hero {
    background-image: url('../../images/Mobile\ view\ banner.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 70vh !important;
    padding-bottom: 10px !important;
  }

  .hero-content {
    margin-left: 20px !important;
    margin-right: 20px !important;
    padding-top: 120px !important;
  }

  .hero-content h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .hero-content p {
    font-size: 18px !important;
    margin-bottom: 30px !important;
  }

  .hero-buttons {
    gap: 15px !important;
    flex-direction: column !important;
  }

  /* ✅ CENTERED BUTTON TEXT - Book a Call + Discover More */
  .btn {
    padding: 16px 30px !important;
    font-size: 16px !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;  /* ✅ TEXT PERFECTLY CENTERED */
    align-items: center !important;      /* ✅ VERTICAL CENTER */
    text-align: center !important;       /* ✅ EXTRA text centering */
  }
}

/* ========================================
  ABOUT DESIGN PHILOSOPHY - TIGHT SPACING
  ======================================= */
@media (max-width: 768px) {
  .about {
    padding: 20px 25px 30px !important;
  }

  .about-content {
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .about-text h2 {
    font-size: 34px !important;
    margin-bottom: 20px !important;
  }

  .dv-tabs {
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
  }

  .tab-btn {
    padding: 14px 28px !important;
    font-size: 15px !important;
    border-radius: 25px !important;
  }

  .about-image-main img {
    width: 280px !important;
    height: 280px !important;
    border-radius: 20px !important;
  }
}

/* ========================================
  WHAT WE DO SECTION - TIGHT TOP SPACING
  ======================================= */
@media (max-width: 768px) {
  .what-we-do {
    padding: 20px 25px 40px !important;
  }

  .section-title {
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .services-slider-wrapper {
    padding: 0 10px !important;
  }
}

/* ========================================
  OUR APPROACH - PERFECT MOBILE LAYOUT
  ======================================= */
@media (max-width: 768px) {
  .our-approach {
    padding: 40px 25px !important;
  }

  .section-heading {
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 35px !important;
  }

  .approach-wrapper {
    flex-direction: column !important;
    gap: 35px !important;
    text-align: center !important;
  }

  .approach-image img {
    width: 100% !important;
    max-width: 350px !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    margin: 0 auto 25px !important;
  }

  .approach-points {
    gap: 25px !important;
  }

  .point {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 25px 0 !important;
  }

  .icon-box {
    flex-shrink: 0 !important;
  }

  .icon-box img {
    width: 60px !important;
    height: 60px !important;
  }

  .point h4 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  .point p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

/* ========================================
  OTHER SECTIONS - PERFECT TIGHT SPACING
  ======================================= */
@media (max-width: 768px) {
  .showcase {
    padding: 20px 20px 40px !important;
  }

  .stats {
    flex-direction: column !important;
    gap: 30px !important;
    padding: 40px 25px !important;
  }

  .contact-section {
    padding: 20px 25px 40px !important;
  }
}

/* ========================================
  FOOTER + PERFECT COPYRIGHT SPACING
  ======================================= */
@media (max-width: 768px) {
  .footer {
    padding: 50px 25px 15px !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .allRights {
    text-align: center !important;
    font-size: 13px !important;
    color: #888 !important;
    padding: 12px 25px 20px !important;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    background: #111 !important;
    line-height: 1.4 !important;
    border-top: 1px solid #333 !important;
  }
}

/* ========================================
  ULTRA SMALL MOBILE - 480px & BELOW
  ======================================= */
@media (max-width: 480px) {
  .hero {
    min-height: 60vh !important;
    padding-bottom: 8px !important;
  }

  .hero-content {
    padding-top: 100px !important;
  }

  .hero-content h1 {
    font-size: 28px !important;
  }

  .nav-logo img {
    height: 56px !important;
  }

  .about {
    padding: 15px 20px 25px !important;
  }

  .what-we-do {
    padding: 15px 20px 35px !important;
  }

  .approach-image img {
    height: 220px !important;
  }
}
