/* Font Settings



/* body {
  font-family: 'Body Grotesque', sans-serif;
}  */

/* body {
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
} */

@font-face {
  font-family: 'Body Grotesque';
  src: url('assets/fonts/PPObjectSans-Regular.otf') format('truetype');
  font-style: normal;
}


.text-grey {
  color: #4E5050;
}

.text-white {
  color : #ffffff;
}

.text-secondary {
  color: #fff2df !important;
}

.text-gradient-bw {
  color: #fff2df;
  display: inline-block;
  position: relative;
  transform: translateZ(0);
}

.text-orange {
  color: #FF914D;
}

.text-primary {
  color: #ff8a00 !important;
}

h2 {
  font-size: 2.8rem;
}

p {
  font-size: 1.8rem;
}

body {
    margin: 0;
    font-family: 'Body Grotesque', sans-serif;
    background-color: #fff;
    color: #333;
    font-size: 20px;
    scroll-snap-type: y mandatory;
  }
  
  /* Alternating section background */
  .section-grey { background-color: #E2E7EB; }
  @media (min-width: 1200px) {
    body { font-size: 21px; }
  }
  
  /* Top brand style (works with Bootstrap navbar) */
  .logo {
    font-weight: bold;
    color: #5960FF;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .logo-img {
    height: auto;
    width: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }
  
  .logo:hover .logo-img {
    opacity: 0.85;
  }
  
  /* Navbar at top (transparent overlay) */
  .navbar {
    background-color: transparent;
    padding: 30px 120px 0px 90px !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .navbar .nav-link {
    color: #fff2df !important;
    font-size: 1.25rem;
  }
  .navbar .nav-link:hover {
    opacity: 0.85;
  }
  /* Ensure hamburger icon visible */
  .navbar-toggler { 
    border: none;
    transition: all 0.3s ease;
  }
  .navbar-toggler-icon { 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,242,223,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
  }
  
  /* Change to X icon when menu is open */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,242,223,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 60px 60px;
    gap: 50px;
    flex-wrap: wrap;
    min-height: 100vh; /* one screen */
    scroll-snap-align: start;
    position: relative;
  }
  
  .hero-with-bg {
    background-image: url('images/hero-image.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
  }
  
  .hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
  }
  
  .hero-with-bg .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-text {
    flex: 1;
    min-width: 320px;
  }
  
  .hero-text h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  @media (min-width: 1200px) {
    .hero-text h1 { font-size: 5.5rem; }
  }
  
  .divider {
    width: 150px;
    height: 10px;
    background-color: #fff2df;
    margin: 15px 0;
    border-radius: 2px;
    transform: translateZ(0);
  }
  
  .subtext-orange {
    color: #fff2df;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 500;
    transform: translateZ(0);
  }
  
  .subtext-blue {
    color: #fff2df;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    transform: translateZ(0);
  }
  
  .button-group {
    display: flex;
    gap: 20px;
  }
  
  /* Custom call-to-action buttons (avoid clashing with Bootstrap .btn) */
  .cta-btn {
    padding: 18px 70px;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1),
                6px 6px 8px rgba(0, 0, 0, 0.08),
                8px 8px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    top: 0;
  }
  .hero .cta-btn {
    margin-top: 100px;
  }
  .cta-btn.whatsapp { 
    background: linear-gradient(135deg, #4EE476 0%, #1A9D3E 100%);
    box-shadow: 4px 4px 4px rgba(78, 228, 118, 0.4),
                6px 6px 8px rgba(0, 0, 0, 0.08),
                8px 8px 15px rgba(0, 0, 0, 0.05);
  }
  .cta-btn.telegram { 
    background: linear-gradient(135deg, #2BA3E8 0%, #004E8C 100%);
    box-shadow: 4px 4px 4px rgba(43, 163, 232, 0.4),
                6px 6px 8px rgba(0, 0, 0, 0.08),
                8px 8px 15px rgba(0, 0, 0, 0.05);
  }
  .cta-btn:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.12),
                8px 8px 12px rgba(0, 0, 0, 0.1),
                12px 12px 20px rgba(0, 0, 0, 0.08);
  }
  .cta-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.08),
                3px 3px 5px rgba(0, 0, 0, 0.06);
  }
  
  
  /* Services and Mission Wrapper with Background */
  .services-mission-wrapper {
    background-image: url('images/service-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Services grid */
  #services { 
    display: flex; 
    align-items: center; 
    scroll-snap-align: start; 
    overflow-x: hidden;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  #services .container {
    overflow-x: hidden;
  }
  
/* Mission section */
#mission.mission-section { 
  display: flex; 
  align-items: center; 
  scroll-snap-align: start; 
  padding-top: 2rem !important; 
  padding-bottom: 2rem !important;
}
.title-underline { width: 120px; height: 6px; background: #E2A9F1; }
.mission-image-container { 
  width: 100%;
  max-width: 400px;
  height: 250px;
  background-image: url('images/core-image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: blue;
  border-radius: 100px;
  margin: 0 auto;
}
.social-icons img { 
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-icons a { 
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-icons a:hover { 
  opacity: 0.85; 
  transform: translateY(-2px); 
}
  
  /* Features & Advantages Wrapper with Background */
  .features-advantages-wrapper {
    background-color: #0d131a;
  }

  /* Features section */
  #features.features-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    scroll-snap-align: start; 
    padding-top: 2rem !important; 
    padding-bottom: 2rem !important; 
  }
  .feature-card { 
    background: linear-gradient(135deg, #0d131a 0%, #2d3f5f 50%, #0d131a 100%);
    min-height: 350px;
    border-radius: 20px; 
    border: 2px solid #2d3f5f;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .icon-circle { 
    width: 90px; 
    height: 90px; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2.5rem; 
  }
  .icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  .feature-title { color: #FF914D; font-weight: 800; }
  .feature-card p { color: #fff2df !important; }
  
  /* Advantages section */
  #advantages.advantages-section { 
    position: relative;
    overflow: hidden;
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    scroll-snap-align: start; 
    padding-top: 2rem !important; 
    padding-bottom: 2rem !important; 
  }
  .advantages-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
  }
  .advantages-section .container {
    position: relative;
    z-index: 1;
  }
  .brand-icons i { font-size: 2.5rem; }
  .brand-icons .bi-facebook { color: #1877f2; }
  .brand-icons .bi-tiktok { color: #000; }
  .brand-icons .bi-google { color: #34a853; }
  .brand-icons .bi-instagram { color: #e1306c; }
  .adv-card {
    background: linear-gradient(135deg, #0d131a 0%, #2d3f5f 50%, #0d131a 100%);
    border-radius: 20px;
    border: 2px solid #2d3f5f;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .adv-card p {
    font-size: 22px;
  }

  /* base for all three */
  .decor-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 65px;
    height: 65px;
    z-index: 100;
    pointer-events: none;
  }

  /* each image position */
  .img1 {
    background-image: url("images/facebook-icon.png");
    top: -20%;
    right: 21%;
  }

  .img2 {
    background-image: url("images/tiktok-icon.png");
    top: -20%;
    right: 12%;
  }

  .img3 {
    background-image: url("images/instagram-icon.png");
    top: -20%;
    right: 3%;
  }

  .img-star {
     background-image: url("images/our-strength.png");
     position: absolute;
     top: -10%;
     right: -2%;
     height: 345px;
     width: 260px;
     z-index: 100;
  }

  .adv-card {
    z-index: 1;
  }
  
  .adv-card-2, .adv-card-3 {
    z-index: 1;
  }

  .img-left {
    background-image: url("images/our-strength-2.png");
    position: absolute;
    bottom: 0;
    left: 5%;
    height: 205px;
    width: 240px;
    z-index: 100;
}
  
  .adv-text {
    width: 100%;
    text-align: center;
    padding: 0px 100px;
  }
  .adv-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
  }
  .adv-image-right {
    right: 20px;
  }
  .adv-image-left {
    left: 20px;
  }
  .adv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Records section */
  #records.records-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    scroll-snap-align: start; 
    background-color: #0d131a;
    padding-top: 2rem !important;
    padding-bottom: 7rem !important;
  }
  #records .row {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .record-card { 
    background: linear-gradient(135deg, #0d131a 0%, #2d3f5f 50%, #0d131a 100%);
    border: 2px solid #2d3f5f;
    border-radius: 30px; 
    padding: 15px 15px 0 15px; 
    box-shadow: 0 8px 28px rgba(0,0,0,0.15); 
    margin-bottom: 0; 
  }
  .record-thumb { 
    border-radius: 20px; 
    overflow: hidden; 
    background: #000;
    position: relative;
    height: 500px;
  }
  .record-thumb video,
  .record-thumb img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
  }
  .record-tag { 
    color: #ff8a00; 
    font-weight: 800; 
    font-size: 1.4rem; 
    text-align: center; 
  }
  .record-btn { 
    background-color: #5960FF !important;
    position: relative;
    bottom: -20px;
    margin-top: 10px; 
    padding: 16px 10px; 
    font-size: 1rem; 
    width: 80%; 
    display: block; 
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    top: 25px;
  }
  
  /* Cross-border section */
  #crossborder.cross-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    scroll-snap-align: start; 
    background-color: #0d131a;
    background-image: url('images/map-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 2rem !important; 
    padding-bottom: 2rem !important; 
  }
  .flags-row .flag { 
    font-size: 3rem;
    transition: all 0.3s ease;
  }
  .extra-flags {
    animation: fadeIn 0.5s ease-in-out;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }
  .text-primary-em { color: #5f93d5; }
  .cb-bullets { color: #fff2df; font-weight: 600; line-height: 1.9; }
  .stat-card p { color: #fff2df !important; }
  .cb-bullets .cb-key { color: #E2A9F1; }
  .stat-card { 
    background: linear-gradient(135deg, #0d131a 0%, #2d3f5f 50%, #0d131a 100%);
    border: 2px solid #2d3f5f;
    border-radius: 20px; 
    box-shadow: 0 8px 28px rgba(0,0,0,0.08); 
  }
  .stat-num { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
  
  /* Why us section */
  #whyus.whyus-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    scroll-snap-align: start; 
    padding-top: 2rem !important; 
    padding-bottom: 2rem !important;
    position: relative;
    overflow: hidden;
  }
  .whyus-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  #whyus.whyus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
  }
  #whyus.whyus-section .container {
    position: relative;
    z-index: 3;
  }
  .benefit-card { 
    background: linear-gradient(135deg, #0d131a 0%, #2d3f5f 50%, #0d131a 100%);
    border: 2px solid #2d3f5f;
    border-radius: 20px; 
    box-shadow: 0 8px 28px rgba(0,0,0,0.08); 
    min-height: 320px;
    padding: 60px !important;
  }
  .benefit-title { font-weight: 800; }
  .benefit-card p { color: #fff2df !important; }
  
  /* Scroll-to-top button */
  .scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 2px solid #2d3f5f;
    border-radius: 50%;
    background: #0d131a;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 1000;
  }
  .scroll-top-btn i { font-size: 1.2rem; }
  .scroll-top-btn:hover { opacity: 0.9; transform: translateY(-1px); }
  
  /* Contact section */
  #contact.contact-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background-color: #0d131a;
    position: relative;
  }
  #contact.contact-section::before {
    content: '';
    position: absolute;
    top: 380px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
  }
  #contact.contact-section .container {
    position: relative;
    z-index: 2;
  }
  .contact-hero {
    height: 380px;
    background: url('images/banner-1.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
  }
  .contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.45));
  }
  .contact-hero > div { position: relative; z-index: 1; }
  .contact-hero-logo {
    height: auto;
    width: 200px;
    max-width: 100%;
    object-fit: contain;
  }
  
  /* Contact split divider */
  .contact-split { position: relative;  margin: 0 auto; }
  @media (min-width: 992px) {
    .contact-split::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 5px;
      background: #ff8a00;
      transform: translateX(-1.5px);
    }
    .contact-right { padding-left: 60px; }
  }
  #contact .cta-btn {
    padding: 18px 60px;
    font-size: 1.4rem;
  }

  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .hero { padding: 100px 24px 40px 24px; }
    .hero-with-bg {
      background-position: center right;
    }
    .hero-with-bg::before {
      background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.25) 100%);
    }
    
    /* Adjust buttons for tablet */
    .hero .button-group {
      gap: 15px !important;
    }
    .hero .cta-btn {
      padding: 16px 40px;
      font-size: 1.3rem;
      margin-top: 60px !important;
    }
    .mission-image-container { 
      max-width: 400px;
      height: 500px;
      border-radius: 250px;
    }
    
    /* Navbar padding for tablet */
    .navbar {
      padding: 20px 40px 0px 40px !important;
      background-color: transparent;
    }
    .logo-img {
      height: 50px;
    }
    
    /* Services section transform adjustment */
    .first-row {
      transform: translateX(-30px);
    }
    .second-row {
      transform: translateX(30px);
    }
    
    /* Advantages section tablet adjustments */
    .adv-card {
      height: auto;
      min-height: 120px;
      padding: 20px !important;
    }
    .adv-text {
      padding: 0px 40px;
    }
    .adv-card p {
      font-size: 18px;
    }
    .img-star {
      height: 280px;
      width: 200px;
      top: -8%;
    }
    .img-left {
      height: 180px;
      width: 200px;
    }
    .decor-img {
      width: 55px;
      height: 55px;
    }
    .img1 { right: 18%; }
    .img2 { right: 9%; }
    .img3 { right: 0%; }
  }
  
  /* Medium screens (768-850px) - stack buttons vertically */
  @media (max-width: 850px) and (min-width: 768px) {
    .hero .button-group {
      flex-direction: column;
      gap: 15px !important;
      align-items: flex-start;
    }
    .hero .cta-btn {
      width: 100%;
      max-width: 320px;
      padding: 16px 30px;
      font-size: 1.2rem;
    }
  }
  
  /* Mobile floating action buttons */
  .mobile-sticky-buttons {
    display: none;
    position: fixed;
    right: 0;
    top: 65%;
    transform: translateY(-25%);
    z-index: 999;
    flex-direction: column;
    gap: 0;
  }
  
  .mobile-sticky-buttons .sticky-btn-link {
    display: block;
    width: 35px;
    height: auto;
    line-height: 0;
    filter: drop-shadow(-2px 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .mobile-sticky-buttons .sticky-btn-link:hover {
    transform: translateX(-5px);
    filter: drop-shadow(-3px 5px 10px rgba(0, 0, 0, 0.3));
  }
  
  .mobile-sticky-buttons .sticky-btn-link img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 767.98px) {
    body { font-size: 16px; scroll-snap-type: y proximity; }
    
    /* Hide dot on mobile */
    .hide-mobile {
      display: none;
    }
    
    /* Show mobile sticky buttons */
    .mobile-sticky-buttons {
      display: flex;
      gap: 0;
    }
    
    /* Hide hero section buttons on mobile */
    .hero .button-group {
      display: none !important;
    }
    
    /* Center hero section properly on mobile */
    .hero {
      padding: 0px 15px 30px 15px !important;
    }
    
    .hero-with-bg {
      background-position: center right;
      background-size: cover;
    }
    
    .hero-with-bg::before {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.4) 100%);
    }
    .hero .container {
      max-width: 100%;
      padding: 0;
    }
    .hero .row {
      margin: 0;
      text-align: center;
      row-gap: 0 !important;
    }
    .hero .row > * {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
    .hero-text {
      text-align: center;
    }
    .hero-text h1 { 
      font-size: 2.4rem;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 15px;
    }
    .divider {
      margin-left: auto;
      margin-right: auto;
      margin: 10px auto;
    }
    .subtext-orange, .subtext-blue { 
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 8px;
    }
    .service-card img { height: 180px; }
    .record-thumb { height: 300px; }
    .flags-row .flag { font-size: 1.6rem; }
    .stat-num { font-size: 2rem; }
    .social-icons img { 
      width: 60px;
      height: 60px;
    }
    .mission-image-container { 
      max-width: 320px;
      height: 320px;
      border-radius: 40px;
    }
    
    /* 1. Fix navbar padding for mobile */
    .navbar {
      padding: 15px 15px 15px 15px !important;
      background-color: transparent;
    }
    .navbar-brand {
      font-size: 1.1rem;
    }
    .logo-img {
      height: auto;
      width: 50px;
    }
    .navbar .nav-link {
      font-size: 1rem;
      padding: 8px 0 !important;
    }
    .navbar-nav {
      gap: 0 !important;
    }
    .navbar-nav .nav-item {
      margin: 0;
    }
    /* Remove hamburger button border on click and adjust position */
    .navbar-toggler {
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      padding-right: 0 !important;
      margin-right: 0 !important;
    }
    .navbar-toggler:focus,
    .navbar-toggler:active {
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
    }
    /* Collapsed menu styling */
    .navbar-collapse {
      margin-top: 15px;
    }
    
    /* Mobile: Use fade-in only (no sliding) for smoother experience */
    .animate-left-to-right,
    .animate-right-to-left,
    .animate-on-scroll {
      opacity: 0;
      transform: translateX(0) !important; /* Remove sliding on mobile */
      transition: opacity 0.6s ease-out;
    }
    
    .animate-left-to-right.animated,
    .animate-right-to-left.animated,
    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateX(0) !important;
    }
    
    .fade-in {
      opacity: 0;
      transition: opacity 0.6s ease-out;
    }
    
    .fade-in.animated {
      opacity: 1;
    }
    
    /* 2. Remove transform on services rows to prevent overflow */
    .first-row, .second-row {
      transform: none !important;
    }
    
    /* 3. Fix contact section buttons */
    #contact .cta-btn {
      padding: 14px 30px;
      font-size: 1rem;
      width: 100%;
    }
    #contact .button-group {
      display: flex !important;
      flex-direction: column;
      gap: 15px !important;
      width: 100%;
    }
    #contact .button-group .cta-btn {
      width: 100%;
    }
    .contact-split .d-flex {
      flex-direction: column;
      gap: 0.75rem !important;
    }
    
    /* Advantages section mobile adjustments */
    .adv-card {
      height: auto;
      min-height: 100px;
      padding: 16px !important;
    }
    .adv-text {
      padding: 0px 20px;
    }
    .adv-card p {
      font-size: 16px;
      line-height: 1.6;
    }
    
    /* Hide large decorative images on mobile for cleaner look */
    .img-star {
      display: none;
    }
    .img-left {
      display: none;
    }
    
    /* Hide small social icons on mobile for cleaner look */
    .img1,
    .img2,
    .img3 {
      display: none;
    }
    
    /* Additional mobile improvements */
    .advantages-section h2 {
      font-size: 2rem;
    }

    .mobile-gap-1-5 {
      gap: 1.5rem !important;
    }
    .advantages-section {
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
    
    /* Why Us section mobile improvements */
    .benefit-card {
      min-height: auto;
      padding: 30px !important;
    }
    .benefit-title {
      font-size: 1rem;
    }
    .icon-circle {
      width: 70px;
      height: 70px;
    }
    .icon-circle img {
      width: 40px;
      height: 40px;
    }
    
    /* Features section mobile improvements */
    .feature-card {
      min-height: auto;
      padding: 30px !important;
    }
    .feature-title {
      font-size: 1.1rem;
    }
    
    /* Global section improvements for mobile */
    section h2 {
      font-size: 2rem;
    }
    section .container {
      padding-left: 15px;
      padding-right: 15px;
    }
    
    /* Cross-border section mobile */
    .stat-card {
      padding: 20px !important;
    }
    .cb-bullets {
      font-size: 14px;
      line-height: 1.7;
    }
    
    /* Contact section mobile */
    #contact h2 {
      font-size: 1.8rem;
    }

    .contact-hero {
      background-attachment: unset !important;
    }

    .contact-hero h2 {
      font-size: 1.5rem;
    }
    .contact-hero h4 {
      font-size: 1.1rem;
    }
    
    /* Remove margin bottom after logo on mobile */
    .contact-hero-logo {
      margin-bottom: 0 !important;
    }
    .contact-hero .mb-5 {
      margin-bottom: 0 !important;
    }
    
    /* Mobile divider between contact info sections */
    #contact .text-center.mb-5 {
      padding-bottom: 1.5rem;
      border-bottom: 2px solid #2d3f5f;
    }
    
    .contact-right {
      border-top: 2px solid #2d3f5f;
      padding-top: 1.5rem !important;
      margin-top: 1.5rem;
    }
  }
  @media (max-width: 375px) {
    /* Extra small mobile adjustments */
    .adv-card p {
      font-size: 14px;
    }
    .adv-text {
      padding: 0px 10px;
    }
    /* Social icons already hidden on mobile */
    .advantages-section h2 {
      font-size: 1.75rem;
    }
    
    /* Navbar extra small */
    .navbar {
      padding: 0px 10px 0px 10px !important;
    }
    .navbar-brand {
      font-size: 1rem;
    }
    
    /* Contact buttons extra small */
    #contact .cta-btn {
      padding: 12px 20px;
      font-size: 0.9rem;
    }
  }
  
  @media (min-width: 1400px) {
    .hero-text h1 { font-size: 6rem; }
  }
  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #dfe6f1;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.6;
    z-index: 1;
    border-radius: 16px;
  }
  
  /* First row positioning adjustments */
  .first-row {
    transform: translateX(-50px);
    overflow-x: hidden !important;
  }

  .second-row {
    transform: translateX(50px);
    overflow-x: hidden !important;
  }
  .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: saturate(0.9);
    opacity: 0.95;
    display: block;
  }
  .service-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 2.4rem;
    color: #111;
    text-shadow: 0 2px 8px rgba(255,255,255,0.6);
    z-index: 2;
  }

  /* Scroll animations - Left to Right (for odd sections) */
  .animate-left-to-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .animate-left-to-right.animated {
    opacity: 1;
    transform: translateX(0);
  }
  

  /* Scroll animations - Right to Left (for even sections) */
  .animate-right-to-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .animate-right-to-left.animated {
    opacity: 1;
    transform: translateX(0);
  }

  /* Keep old class for backward compatibility */
  .animate-on-scroll {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateX(0);
  }

  /* Fade-only animation (no transform to avoid stacking context issues) */
  .fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
  }

  .fade-in.animated {
    opacity: 1;
  }

  /* Stagger animation delays for multiple elements */
  .animate-left-to-right:nth-child(1),
  .animate-right-to-left:nth-child(1),
  .animate-on-scroll:nth-child(1),
  .fade-in:nth-child(1) { transition-delay: 0s; }
  
  .animate-left-to-right:nth-child(2),
  .animate-right-to-left:nth-child(2),
  .animate-on-scroll:nth-child(2),
  .fade-in:nth-child(2) { transition-delay: 0.2s; }
  
  .animate-left-to-right:nth-child(3),
  .animate-right-to-left:nth-child(3),
  .animate-on-scroll:nth-child(3),
  .fade-in:nth-child(3) { transition-delay: 0.4s; }
  
  .animate-left-to-right:nth-child(4),
  .animate-right-to-left:nth-child(4),
  .animate-on-scroll:nth-child(4),
  .fade-in:nth-child(4) { transition-delay: 0.6s; }
  
  .animate-left-to-right:nth-child(5),
  .animate-right-to-left:nth-child(5),
  .animate-on-scroll:nth-child(5),
  .fade-in:nth-child(5) { transition-delay: 0.8s; }
  
  .animate-left-to-right:nth-child(6),
  .animate-right-to-left:nth-child(6),
  .animate-on-scroll:nth-child(6),
  .fade-in:nth-child(6) { transition-delay: 1s; }
  