@charset "UTF-8";

/* =====================================================
   GLOBAL MOBILE WRAPPER — INDUSTRY STANDARD (OPTION A)
   ===================================================== */
.mobile-wrapper {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ============================================
   GLOBAL MOBILE RESET
   ============================================ */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  background: #fff; /* keep or adjust if needed */
}

/* Prevent accidental width forcing */
html, body {
  max-width: 100% !important;
}




/* ============================================================
   MOBILE STYLES — MAX WIDTH 599px
   Entire stylesheet structured under one media query
   ============================================================ */
@media (max-width: 599px) {

  /* ============================================================
     1. GLOBAL MOBILE RULES
     ============================================================ */
  body {
    max-width: 599px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  main {
    margin: 120px auto 0;
    padding: 0 20px;
  }



  /* ============================================================
     2. BACKGROUND BLOCKS
     ============================================================ */

  .background-index {
    background-color: rgba(78, 107, 117, 1);
    background-repeat: no-repeat;
    height: 1200px;
    z-index: 0;
	
  }

  .background-2 {
    background-color: rgba(78, 107, 117, 1);
    background-repeat: no-repeat;
    background-size: 100% 750px;
    background-position: 0px 0px;
    z-index: 0;
    background-color: #EEE;
  }
  
  
}

  .background-4 {
    z-index: 0;
    background-color: #EEE;
  }

  .background-3 {
    background-color: #EEE;
    height: 2800px;
    background-position: 0px 0px;
    z-index: 0;
   
  }



  /* ============================================================
     3. NAVIGATION / HAMBURGER MENU
     ============================================================ */
  .nav-bar {
    padding: 20px 25px;
  }

  .desktop-only {
    display: none !important;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #222;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 35px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 2000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
    padding: 10px;
  }

  .mobile-contact-btn {
    display: block;
    background: rgba(78, 107, 117, 1);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
  }



  /* ============================================================
     4. HERO SECTIONS
     ============================================================ */
  .hero-section {
    height: 100vh;
    min-height: 560px;
    top: 61px;
    background-position: 20% 80%;
    background-size: 310%;
  }

  .hero-section-2 {
    height: 277px;
    top: 61px;
    background-size: 600%;
    background-position: 50% 0%;
  }

  .hero-title {
    font-size: 32px;
    width: 80%;
  }

  .hero-title-2 {
    font-size: 40px;
    width: 100%;
  }

  .hero-subtitle {
    width: 60%;
    font-size: 15px;
  }
  
  .down-arrow h3 {
  font-size: 15px;
  }



  /* ============================================================
     5. INTRO SECTION
     ============================================================ */

  .intro-section h2 {
    font-size: 28px;
  }

  .intro-section p {
    margin: 18px auto;
    font-size: 15px;
    font-weight: 500;
    color: #CCC;
    text-align: center;
    opacity: 0.7;
    transform: scale(1);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }

  .intro-section p.is-in-view {
    transform: scale(1.12);
    opacity: 1;
    color: #FFF;
    filter: brightness(1.3);
  }



  /* ============================================================
     6. INFO SECTION (Image + Text)
     ============================================================ */

  .info-section-container {
    flex-direction: column;
    height: 800px;
    width: 95%;
    text-align: center;
  }

  .info-text {
    width: 95%;
    margin: 10px auto 0px;
    padding-bottom: 40px;
  }

  .info-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }



  /* ============================================================
     7. SERVICES ICON GRID (Glow Cards)
     ============================================================ */

  /* Disable animations on mobile */
  .service-overlap-container {
    transform: none !important;
    transition: none !important;
    filter: none !important;
    margin: -50px 15px 0;
    max-width: none;
    border-radius: 3px;
  }

  .service-overlap-container.in-view {
    transform: none !important;
    filter: none !important;
  }

  .glow-card {
    transition: none !important;
    transform: none !important;
    width: 100%;
    height: 130px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0),
                0 4px 6px -2px rgba(0, 0, 0, 0);
  }

  .glow-card::before {
    opacity: 0 !important;
    transition: none !important;
  }

  .glow-card img {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    width: 70px;
    height: auto;
    max-width: 100%;
  }

  .glow-card:hover img {
    transform: none !important;
    opacity: 1 !important;
  }

  .glow-card .hover-text {
    opacity: 0 !important;
    transition: none !important;
  }

  .glow-card:hover .hover-text {
    opacity: 0 !important;
  }

  .services-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
  }



  /* ============================================================
     8. MOBILE ACTION BAR (Appears on Card Click)
     ============================================================ */

  .mobile-actions {
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .mobile-actions button {
    background: rgba(78, 107, 117, 1);
    color: white;
    border: none;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
  }

  .mobile-actions .mobile-learn {
    background: rgba(78, 107, 117, 1);
    color: white;
    border: none;
    padding: 7px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }

  .glow-card.choice-mode .mobile-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0);
  }

} /* END MOBILE MEDIA QUERY BLOCK */





@media (max-width: 599px) {

  /* ============================================================
     9. TESTIMONIALS — MOBILE OVERRIDES
     ============================================================ */

  .testimonial-slider-container {
    padding: 30px 20px;
    border-radius: 18px;
  }

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

  .testimonial-heading {
    font-size: 19px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-arrow {
    font-size: 30px;
  }

  .testimonial-more-btn {
    font-size: 15px;
    margin-top: 100px;
    display: block;
  }



  /* ============================================================
     10. CLIENT LOGO SECTION — MOBILE
     ============================================================ */

  .section-title {
    font-size: 15px;
    letter-spacing: 10px;
  }

  .client-logo {
    height: 90px;
  }



  /* ============================================================
     11. CTA (CALL TO ACTION) — MOBILE
     ============================================================ */

  .cta-section {
    height: 280px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 10px 25px;
  }



 /* ============================================================
   FOOTER — FULLY STACKED ON MOBILE
   ============================================================ */

.main-footer {
    height: auto !important;
    padding: 45px 20px !important;
    text-align: center !important;
}

.footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    height: auto !important;
    position: relative !important;
}

/* Logo centered at top */
.footer-logo-placeholder {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
}

/* Social icons stacked under logo */
.footer-social {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
}

/* Footer links appear BELOW social icons */
.footer-links {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

.footer-links li {
    margin: 10px 0 !important;
}

.footer-links a {
    font-size: 16px !important;
    border-bottom: none !important;
}

/* Copyright at the very bottom */
.footer-copyright {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: 10px !important;
    opacity: 0.9 !important;
    font-size: 14px !important;
}




  /* ============================================================
     13. FAQ PAGE — MOBILE OVERRIDES
     ============================================================ */

  .faq-question .q-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 16px !important; 
    margin-left: 16px;
    flex: 1;
  }

  .faq-answer p {
    margin: 0 0 40px 80px;
    font-size: 15px;
  }

  .faq-item {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .3);
	height: 
  }
  



  /* ============================================================
     14. CONTACT PAGE — MOBILE OVERRIDES
     ============================================================ */

  .contact-title {
    font-size: 36px !important;
  }

  .contact-form {
    padding: 40px 25px !important;
  }

  .form-grid {
  grid-template-columns: 1fr !important;
  }

  .submit-btn {
    width: 100% !important;
  }

  .message {
    margin: 20px 0 !important;
  }



  /* ============================================================
     15. ABOUT PAGE — MOBILE OVERRIDES
     ============================================================ */

  .main-content-about {
    margin-top: 0px;
    padding-top: 60px;
  }

  .philosophy {
    padding: 25px 0px;
    border-top: solid #777 3px;
    border-bottom: solid #777 3px;
    margin-bottom: 30px;
  }

  .philosophy h2 {
    color: #FFF;
    margin-bottom: 8px;
    width: 90%;
  }

  .philosophy p {
    color: #FFF;
    width: 90%;
  }

  .about-section {
    padding: 0px 0px 0px !important;
    margin-top: 65px;
  }

  .about-wrapper {
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* Full-width hero image on mobile */
  .about-float-image {
    float: none !important;
    display: block;
    width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  
  .about-float-image-right {
    float: none !important;
    display: block;
    width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .about-text-flow {
    padding: 50px 25px 100px !important;
    text-align: center;
    font-size: 16.5px !important;
  }

  .about-main-title {
    font-size: 38px !important;
    margin-bottom: 30px !important;
  }

  .about-subtitle {
    font-size: 28px !important;
    margin: 45px 0 18px !important;
  }





.timeline-item {
  width: 80%;
  padding: 10px 5px;
  position: relative;
  margin: 0px 0px;

  /* Reveal animation starting point */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(.22,.61,.36,1);
}

.timeline-item.left {
  left: 0;
  text-align: right;
  width: 80%;
}



.timeline-content {
  background: #fff;
  padding: 15px 10px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
  display: inline-block;
  max-width: 440px;

  /* Micro interaction */
  transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}


.timeline-item::before {
  content: "";
  position: absolute;
  top: 45px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #4e6b75;
  box-shadow: 0 0 0 4px rgba(78,107,117,0.25);
}

.timeline-content p {
  color: #333;
  font-size: 10px;
  line-height: 1.45;
  margin-bottom: 10px;
}


.client-name {
  font-family: 'Stardom', sans-serif;
  font-size: 15px;
  color: #666;
  opacity: 0.9;
}


} /* END MOBILE MEDIA QUERY */




