

/* Nav and tiles */
:root{
  --apple-blue:#0088FF;
  --tile-radius:18px;
}
/* html,body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Helvetica Neue",
               "Segoe UI",Roboto,Arial,sans-serif;
  background:#fff;
  color:#1d1d1f;
} */

/* Navbar */
.navbar {
  padding: 0;
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  z-index: 999999999;
}

/* Container centers everything */
.navbar .container-xxl {
  display: flex;
  align-items: center;
  justify-content: center; /* whole group in middle */
  width: 100%;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 1rem; /* space between logo and links */
  padding: 0;
}

.navbar-brand img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Collapse wrapper should not push left/right */
.navbar-collapse {
  flex-grow: 0;   /* stops Bootstrap from stretching */
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.navbar-nav .nav-link {
  padding: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #1d1d1f;
}

.navbar-nav .nav-link:hover {
  color: var(--apple-blue);
}
.navbar-nav .nav-link.active {
  color: var(--apple-blue);
}




/* Promo strip */ 
.promo-strip{ padding:.55rem 0; border-bottom:#eeee 1px solid; font-size:11px;} 
.promo-strip .promo-cta{ margin-left:.35rem; text-decoration:none; } 
.promo-strip .promo-cta:hover{ text-decoration:underline; }

/* Full-width container with small side gaps */
.fullwidth-container {
  max-width: 100%;
  padding-left: 7px;   /* small Apple-style gap */
  padding-right: 7px;  /* small Apple-style gap */
}

/* Tiles */
/* Tile wrapper */  
/* Tile wrapper */
.tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;       /* keep same uniform height */
  margin: 0;
  padding: 0;
}

/* Full-bleed image (no gaps or borders inside tile) */
.tile-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ensures image fully fills tile */
  display: block;
  transition: transform .35s ease;
}

/* Hover animation */
.tile:hover .tile-hero {
  transform: scale(1.03);
}


/* Actions */
.tile-actions {
  margin-top: auto;
  padding-bottom: 20px;
}

/* Light / Dark / Gradient themes */
.tile-light { background: #636363; }
.tile-air { background: #dff1ff; }
.tile-dark { background: #000; color: #fff; }

.btn-apple {
  background: var(--apple-blue);
  color: #fff;
  border-radius: 999px;
  padding: .45rem 1.2rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
  font-size: 12px;

  /* fixed centered bottom */
  position: fixed;
  bottom: 30px;           /* distance from bottom */
  left: 50%;              /* center horizontally */
  transform: translateX(-50%);
  z-index: 9999;          /* keep above all */
}

.btn-apple:hover { 
  background-color: #0a3677; 
  color: #fff; 
}



/* ====================== Pop Up Styles ====================== */

/* Blur navbar when modal opens */
body.modal-open .navbar {
  filter: blur(10px);
  pointer-events: none;
  transition: filter 0.3s ease;
}


/* Modal container */
/* ========== Overlay ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 0; /* ensures visible top/bottom space */
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 9998; /* sits below navbar but above rest of the page */
}

/* Show modal */
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ========== Modal Container ========== */
.modal-container {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  width: 85%;
  max-width: 1400px;
  height: 200vh; /* tall modal */
  border-radius: 24px;
  overflow: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3rem;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.6s ease;
  scrollbar-width: none;
  transform: scale(0.98);
  transition: transform 0.3s ease;
  z-index: 9999; /* ensures modal content stays above navbar blur */
}

/* Modal visible scale */
.modal-overlay.open .modal-container {
  transform: scale(1);
}

/* Hide scrollbar */
.modal-container::-webkit-scrollbar {
  display: none;
}

/* Smooth scroll */
.modal-container {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ========== Sticky Close Button ========== */
.modal-close {
  position: sticky;  /* makes it stick at top of scroll */
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

/* .modal-close:hover {
  background: rgba(255,255,255,0.9);
  transform: scale(1.05);
} */

/* Fade blur edges */
.modal-container::before,
.modal-container::after {
  content: "";
  position: sticky;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 5;
  pointer-events: none;
}

.modal-container::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), transparent);
}

.modal-container::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
}

/* ========== Navbar Blur Only on Background ========== */
body.modal-open .navbar {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.4);
  z-index: 998; /* lower than modal */
}


/* Blur overlays on top and bottom of scroll */
.modal-container::before,
.modal-container::after {
  content: "";
  position: sticky;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 5;
  pointer-events: none;
}

.modal-container::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
}

.modal-container::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
}


/* Smooth appear animation */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Modal content scroll styling */
.modal-content {
display: flex;
flex-direction: column;
gap: 2rem;
}

/* Each content block */
.modal-section {
display: flex;
flex-direction: column;
gap: 1rem;
background: #F5F5F7;
/* border-radius: 12px; */
padding: 1.5rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
width:1230px;
}

.modal-section img {
width: 100%;
border-radius: 50px;
object-fit: cover;
}

/* Close button */
.modal-container {
position: relative;        /* necessary for absolute positioning */
overflow-y: auto;
}

.modal-close-wrapper {
position: sticky;
top: 1rem;
margin-left: auto;
display: block;
transform: translateX(100.7%); /* push outside container */
z-index: 10000;
}

.modal-close {
background: #000;
border: none;
font-size: 1rem;
font-weight: bold;
color: #fff;
cursor: pointer;
border-radius: 50%;
width: 30px;
height: 30px;
line-height: 24px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
transition: transform 0.2s ease, box-shadow 0.2s ease;
display: block;
}

.modal-close:hover {
transform: scale(1.12); /* scale only inside wrapper */
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}




/* Prevent background scroll */
body.modal-open {
overflow: hidden;
}

/* Base modal section (single column by default) */
.modal-section {
display: flex;
flex-direction: column;
gap: 1.5rem;
background: #F5F5F7;
border-radius: 14px;
padding: 2rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
width: 100%;
}

/* Override for two-column sections */
.modal-section.two-col {
flex-direction: row;
align-items: center;
justify-content: flex-start; /* align items to left instead of spreading them */
gap: 3rem;
padding: 0rem 2rem;
}


/* Image styles for two-column */
.modal-section.two-col img {
width: 45%;  /* Increase from 38% to reduce the left gap */
height: auto;
object-fit: cover;
border-radius: 50px; 
margin: 0;
margin-left: -4.5%;
}

#viral .modal-section.two-col img {
width: 45%;  /* Increase from 38% to reduce the left gap */
height: auto;
object-fit: cover;
margin: 0;
margin-left: -4.5%;
}

/* Text column */
.modal-section.two-col .modal-text {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

/* Text styling */
.modal-section.two-col p {
font-size: 1.6rem;
line-height: 1.6;
color: #000;
margin: 0;
}
/* content management */
.modal-section.two-col.cont-1 {
  display: flex;
  justify-content: center;   /* Horizontal center */
  align-items: center;       /* Vertical center */
  text-align: center;
  position: relative;
}

.modal-section.two-col.cont-1 .modal-text {
  flex: 1;
  max-width: 900px;   /* Prevent text from stretching too wide */
  margin: auto;
}

.modal-section.two-col.cont-1 p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
}

.watch-samples-btn-cont-1 {
  display: inline-block;
  background: var(--apple-blue);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  margin: 0 auto;
  width: fit-content; 
}

.watch-samples-btn-cont-1:hover {
background-color: #0a3677;
color: #fff;
}


/* Responsive adjustment */
@media (max-width: 992px) {
.modal-section.two-col {
flex-direction: column;
gap: 1.5rem;
padding: 1.5rem;
}

.modal-section.two-col img {
width: 100%;
}

.modal-section.two-col .modal-text {
width: 100%;
}

.modal-section.two-col p {
font-size: 1.3rem;
}
}

/* Two-column modal section */
.modal-section.two-col.reverse {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 3rem;
padding: 2rem 3rem;
}

/* Image on the right */
.modal-section.two-col.reverse img {
width: 35%;           /* Shrinked image for better balance */
height: auto;
object-fit: cover;
border-radius: 20px;
margin: 0;
}

/* Text column */
.modal-section.two-col.reverse .modal-text {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

/* Responsive adjustment */
@media (max-width: 992px) {
.modal-section.two-col.reverse {
flex-direction: column;
gap: 1.5rem;
padding: 1.5rem;
}

.modal-section.two-col.reverse img {
width: 100%;
}

.modal-section.two-col.reverse .modal-text p {
font-size: 1.3rem;
}
}


.watch-samples-btn {
display: block;               /* make it a block element */
background: var(--apple-blue);
color: #fff;
border-radius: 999px;
padding: 0.6rem 1.5rem;
font-weight: 600;
line-height: 1;
transition: all 0.3s ease;
font-size: 14px;
text-decoration: none;
margin: 1rem auto 0;          /* centers horizontally */
width: fit-content;           /* shrink to button size */
}

.watch-samples-btn-social-2 {
display: inline-block;               /* make it a block element */
background: var(--apple-blue);
color: #fff;
border-radius: 999px;
padding: 0.6rem 1.5rem;
font-weight: 600;
line-height: 1;
transition: all 0.3s ease;
font-size: 14px;
text-decoration: none;
/* margin: 1rem;          */
width: fit-content;          
}
.watch-samples-btn-social-2:hover {
background-color: #0a3677;
color: #fff;
}
.watch-samples-btn:hover {
background-color: #0a3677;
color: #fff;
}

#viralVideoModal {
/*background-image: url('/static/assets/img/Orginals/viral_03.png'); */
background-size: cover;        
background-position: center;   
background-repeat: no-repeat;
border-radius: 14px;           
padding: 2rem 3rem;
display: flex;
align-items: center;
justify-content: flex-end;   /* align text to right side */
color: #fff !important;      
height: 600px;               /* fixed height as in inline style */
}

/* Text styling inside this modal */
#viralVideoModal .modal-text {
max-width: 600px;              /* optional: limits text width for readability */
display: flex;  
flex-direction: column;
justify-content: center;
text-align: right;
color: #fff !important;
text-shadow: 0 2px 6px rgba(0,0,0,0.4); /* optional for readability */
}

/* Responsive */
@media (max-width: 992px) {
#viralVideoModal {
flex-direction: column;
justify-content: center;
padding: 1.5rem;
}

#viralVideoModal .modal-text {
max-width: 100%;
text-align: center;
}

#viralVideoModal .modal-text p {
font-size: 1.3rem;
}
}

/* ===== FIX START ===== */

/* Let overlay handle scrolling */
.modal-overlay {
  overflow-y: auto;  /* ✅ keep this scroll */
}

/* Remove scroll from modal container */
.modal-container {
  overflow: visible !important;   /* ✅ remove interior scroll */
  height: auto !important;        /* ✅ auto height adjusts to content */
  max-height: none !important;    /* allow full expansion */
}

/* Ensure sticky close button works properly */
.modal-close-wrapper {
  position: sticky;
  top: 1rem;
  z-index: 10000;
}

/* Prevent horizontal scrollbars for modal */
.modal-overlay {
  overflow-x: hidden !important;
}

/* Also ensure the page doesn’t shift horizontally */
body.modal-open {
  overflow-x: hidden !important;
}


/* ===== FIX END ===== */


/* ================= CLEAN WHITE FOOTER ================= */
.footer {
  background: #fff;
  color: #000;
  padding: 60px 20px 25px;
  border-top: 2px solid #111;
  font-size: 1.05rem; /* Global base font size */
}

/* --- Layout: Equal spacing & center alignment --- */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 97px; /* Equal gap between all columns */
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Brand Column --- */
.footer-col.brand {
  text-align: center;
}

.footer-col.brand img {
  display: block;
  margin: 0 auto 12px;
  max-width: 120px;
  height: auto;
}

.footer-col.brand p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #000;
}

/* --- Column Headings --- */
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

/* --- Column Links --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0070f3;
}

/* --- Social & Contact --- */
.footer-col .contact-link {
  color: #0070f3;
  font-weight: 600;
  text-decoration: none;
}

.footer-col .contact-link:hover {
  text-decoration: underline;
}

.footer-col .socials {
  margin: 10px 0;
}

.footer-col .socials a {
  color: #000;
  font-size: 1.3rem;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-col .socials a:hover {
  color: #0070f3;
}

.footer-col .mail {
  font-weight: 500;
  color: #000;
  margin: 4px 0;
  font-size: 0.95rem;
}

/* --- Bottom Section --- */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 1.5rem;
  color: #000;
}

/* --- Responsive Fixes --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col h4 {
    margin-top: 10px;
  }

  .footer-col .socials a {
    margin: 0 8px;
  }
}




/* =======================================================
   ✅ RESPONSIVE MEDIA QUERIES (with Fixed iPad Navbar)
   ======================================================= */

/* ============================
   📱 MOBILE VIEW (max 480px)
   ============================ */
@media (max-width: 480px) {
  /* ---- Contact Section ---- */
  .contact-section {
    padding: 40px 15px;
  }

  .title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    height: 45px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
  }

  .consent {
    font-size: 11px;
    text-align: center;
  }

  /* ---- Navbar ---- */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar .logo {
    margin-left: 10px;
  }

  .navbar .logo img {
    max-width: 110px;
    height: auto;
  }

  /* Hamburger button */
  .navbar-toggler {
    margin-left: auto;
    margin-right: 15px;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
    z-index: 1001;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Slide-in menu */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
    text-align: left;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  /* Close button (inside slide menu) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 1100; /* make sure it’s above all content */
}

/* Ensure slide menu itself is clickable area */
.navbar-collapse {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 1000;
  padding-top: 80px;
  text-align: left;
}

.navbar-collapse.show {
  left: 0;
}


  /* ---- Footer ---- */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
  }

  .footer-top .footer-col.brand img {
    max-width: 120px;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials a {
    font-size: 18px;
    margin: 0 6px;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   📲 TABLETS (481px – 767px)
   ============================ */
@media (min-width: 481px) and (max-width: 767px) {
  .contact-section {
    padding: 60px 25px;
  }

  .title {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-submit {
    width: 80%;
    font-size: 15px;
  }

  /* Navbar with hamburger */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 20px;
    border: none !important;
    background: none !important;
    z-index: 1001;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    height: 100vh;
    background-color: #fff;
    transition: left 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 500;
  }

  .navbar .logo img {
    max-width: 130px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 1100;
  }

  /* Footer */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 25px;
    text-align: center;
  }
}

/* ============================
   💻 IPAD & SMALL LAPTOPS (768px – 1023px)
   ============================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-section {
    padding: 80px 50px;
  }

  .title {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.15rem;
  }

  /* ✅ Show full menu (no hamburger) */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    color: #000;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
    color: #0070f3;
  }

  .navbar .logo img {
    max-width: 150px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    gap: 25px;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
    max-width: 130px;
    height: auto;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ============================
   🖥️ DESKTOPS (≥1024px)
   ============================ */
@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 60px;
  }

  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .btn-submit {
    width: 400px;
  }

  /* Full desktop navbar */
  .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
  }

  .navbar-nav .nav-item {
    margin-left: 20px;
  }

  .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
  }

  /* ===== Footer Cleanup for iPad Pro & Desktop ===== */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 60px 20px;
    text-align: left;
  }

  .footer-top .footer-col {
    flex: 1;
    max-width: 280px;
    margin-bottom: 0;
  }

  .footer-top .footer-col.brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer-top .footer-col.brand img {
    margin: 0 0 10px 0;
    max-width: 120px;
  }

  .footer-top .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-top .footer-col ul {
    padding: 0;
    margin: 0;
  }

  .footer-top .footer-col ul li {
    margin-bottom: 6px;
  }

  .footer-top .footer-col ul li a {
    font-size: 14px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-bottom {
    padding: 10px 0 20px;
    text-align: center;
    font-size: 13px;
  }
}

/* Extra fallback for <1024px if needed */
@media (max-width: 1023px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-top .footer-col {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .footer-top .footer-col.brand img {
    display: block;
    margin: 0 auto 10px;
  }

  .footer-top .footer-col .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-top .footer-col .socials a {
    font-size: 20px;
    color: #000;
    transition: color 0.3s;
  }

  .footer-top .footer-col .socials a:hover {
    color: #0070f3;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
  }
}
/* ===============================
   COMPANY INTRO SECTION (Desktop)
   =============================== */
.company-intro {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.company-intro .intro-container {
  max-width: 950px;
  text-align: center;
}

.company-intro .intro-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.company-intro .intro-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: justify;
}

.company-intro .link-with-arrow {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
}



/* ===============================
   📱 MOBILE VIEW (max 576px)
   =============================== */
@media (max-width: 576px) {

  .company-intro {
    padding: 50px 15px;
  }

  .company-intro .intro-container {
    text-align: center;
  }

  .company-intro .intro-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .company-intro .intro-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
    padding: 0 5px;
  }

  .company-intro .link-with-arrow {
    font-size: 14px;
    margin-top: 15px;
  }
}



/* ===============================
   📱 TABLET VIEW (min 577px – max 768px)
   =============================== */
@media (min-width: 577px) and (max-width: 768px) {

  .company-intro {
    padding: 60px 20px;
  }

  .company-intro .intro-title {
    font-size: 35px;
  }

  .company-intro .intro-text {
    font-size: 16px;
    max-width: 700px;
  }
}

/* Slide Menu (hidden by default on the left) */
.slide-menu {
  position: fixed;
  top: 0;
  left: -300px; /* hide offscreen to the left */
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  padding: 20px;
  z-index: 1050; /* above navbar */
}

/* Show menu */
.slide-menu.open {
  left: 0; /* slide in from left */
}

/* Close button inside slide menu */
.slide-menu .close-btn {
  font-size: 28px;
  font-weight: bold;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px; /* you can move it to left: 20px if you prefer */
}

/* Slide menu links */
.slide-menu .nav-link {
  display: block;       /* each link on its own line */
  margin: 8px 0;        /* reduce vertical spacing */
  font-size: 18px;      /* keep size consistent */
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.slide-menu .nav-link:hover {
  color: #ff6600; /* optional hover color */
}

  /* ===== Banner Base Style ===== */


/* ===== Mobile (up to 480px) ===== */
@media (max-width: 480px) {
  .banner{
    height: 127px;
  }
}


/* ===== Tablet (481px - 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
 .banner{
  height: 254px;
 }
}


/* ===== Tablet Landscape / Small Laptop (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner{
    height: 335px;
  }
}



@media (max-width: 480px) {

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 15px;
    padding: 20px 15px;
    text-align: center;
  }

  /* Brand column takes full width */
  .footer-top .footer-col.brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-top .footer-col.brand img {
    max-width: 100px;
    margin: 0 auto 8px;
  }

  .footer-top .footer-col.brand p {
    font-size: 13px;
    margin-top: 5px;
  }

  /* Other columns wrapped inside a 2-column group */
  .footer-columns-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    width: 100%;
  }

  .footer-columns-wrap .footer-col {
    text-align: left;
  }

  .footer-top .footer-col h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .footer-top .footer-col ul li a {
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-top .footer-col .socials a {
    font-size: 16px;
    margin-right: 6px;
  }

  .footer-bottom {
    padding: 10px 0;
    font-size: 11px;
    text-align: center;
  }
}
