/* Local @font-face rules */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/assets/fonts/poppins/poppins-v23-latin-300.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/poppins/poppins-v23-latin-regular.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/poppins/poppins-v23-latin-500.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/poppins/poppins-v23-latin-600.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/poppins/poppins-v23-latin-700.woff2') format('woff2'); 
}

:root {
    --primary-blue: #0066CC;
    --primary-orange: #FF7A00;
    --dark-blue: #004C99;
    --dark-orange: #CC6200;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E6E9EF;
    --dark-gray: #333333;
    --text-color: #4A4A4A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--white); color: var(--text-color); line-height: 1.7; overflow-x: hidden; }
body.mobile-nav-open { overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*header { background-color: var(--white); padding: 2px 0; position: sticky; top: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }*/

/* Sticky / Frozen Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff; /* keep white background */
  z-index: 999; /* keep above everything */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Push down the page so content isn’t hidden under fixed header */
body {
  padding-top: 75px; /* Adjust height to your header size */
}

/* Smooth animation when scrolling */
header.scrolled {
  background: #ffffff;
  transition: all 0.3s ease-in-out;
}



.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative; /* This is now the positioning anchor for the dropdown */
}
.logo img { max-height: 40px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 25px; }
.nav-links > li > a { color: var(--dark-gray); text-decoration: none; font-weight: 500; transition: color 0.3s; position: relative; padding: 25px 0; display: flex; align-items: center; gap: 5px; }
.nav-links > li:hover > a { color: var(--primary-orange); }
.dropdown { position: static; } /* No longer needs to be a positioning anchor */

/* --- Mega Menu Dropdown --- */
.dropdown {
    position: static;
}

.mega-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position right below the header */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #E6E9EF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    transform: translateX(-50%) translateY(10px);
}

.dropdown:hover .mega-menu {
    display: block; /* Show on hover */
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 3fr;
    gap: 30px;
}

.mega-menu-column .mega-menu-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    border-bottom: 2px solid #FF7A00;
    padding-bottom: 8px;
    display: inline-block;
}

.mega-menu-column .mega-menu-link {
    display: block;
    text-decoration: none;
    color: #4A4A4A;
    padding: 8px 0;
    font-weight: 500;
    transition: color 0.3s, padding-left 0.3s;
}

.mega-menu-column .mega-menu-link:hover {
    color: #FF7A00;
    padding-left: 5px;
}

.mega-menu-promo {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.mega-menu-promo img {
    max-width: 100px;
    margin-bottom: 15px;
}

.mega-menu-promo h4 {
    font-size: 1.1rem;
    color: #004C99; /* Dark blue */
    margin-top: 0;
    margin-bottom: 10px;
}

.mega-menu-promo p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}


.nav-actions { display: flex; align-items: center; gap: 15px; }
.mobile-menu-btn { display: none; font-size: 1.8rem; background: none; border: none; cursor: pointer; color: var(--dark-gray); }

.btn { display: inline-block; background: var(--primary-orange); color: var(--white); padding: 10px 25px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3); }
.btn:hover { background: var(--dark-orange); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4); }

.btn-secondary { background: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); box-shadow: none; }
.btn-secondary:hover { background: var(--primary-blue); color: var(--white); transform: translateY(0); box-shadow: none;}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 90%;
    height: 100%;
    background-color: var(--white);
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
}
.mobile-nav.is-open { right: 0; }
.mobile-nav .close-btn { position: absolute; top: 15px; right: 20px; font-size: 2.5rem; background: none; border: none; color: var(--dark-gray); cursor: pointer; }
.mobile-nav-links { list-style: none; margin-bottom: auto; }
.mobile-nav-links li { margin-bottom: 10px; border-bottom: 1px solid var(--medium-gray); }
.mobile-nav-links a { display: block; padding: 15px 5px; color: var(--dark-gray); text-decoration: none; font-weight: 600; }
.mobile-nav .btn { display: block; text-align: center; }
.mobile-submenu { list-style: none; padding-left: 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.mobile-submenu li a { font-weight: 500; padding: 10px 5px; font-size: 0.9rem; }
.mobile-dropdown.open .mobile-submenu { max-height: 500px; }
.mobile-drop-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.mobile-drop-toggle i { transition: transform 0.3s ease; }
.mobile-dropdown.open .mobile-drop-toggle i { transform: rotate(180deg); }

/*.hero { position: relative; padding: 80px 0; background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.9)), url('/img/hero-home.webp') no-repeat center center/cover; color: white; text-align: center; }*/

/* --- Universal Hero Style --- */
.hero {
    position: relative;
    padding: 80px 0;
    color: white;
    text-align: center;
    /* --- Crucial Part --- */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* This creates the dark overlay on top of the image you will add in your HTML */
    background-image: linear-gradient(rgba(0, 33, 71, 0.85), rgba(0, 33, 71, 0.9));
}

.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--primary-orange); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.hero-btns { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.tech-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.tech-tag { background: rgba(255, 255, 255, 0.1); padding: 8px 18px; border-radius: 30px; font-size: 14px; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); }

.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.8rem; color: var(--dark-gray); margin-bottom: 15px; }
.section-title p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: var(--white); border-radius: 15px; padding: 40px 30px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border-top: 4px solid var(--primary-blue); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); border-top-color: var(--primary-orange); }
.feature-icon { font-size: 3rem; color: var(--primary-blue); margin-bottom: 25px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark-gray); }
.feature-card a { margin-top: 20px; font-weight: 500; color: var(--primary-blue); text-decoration: none; }
.feature-card a:hover { color: var(--primary-orange); }

.pricing-section { background-color: var(--light-gray); }
.currency-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.currency-tab { padding: 10px 25px; cursor: pointer; font-weight: 600; background-color: var(--white); color: var(--dark-gray); transition: all 0.3s ease; border-radius: 50px; border: 1px solid var(--medium-gray); }
.currency-tab.active { background-color: var(--primary-orange); color: var(--white); border-color: var(--primary-orange); box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: stretch; }
.pricing-card { background: var(--white); border-radius: 15px; text-align: center; transition: all 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--medium-gray); display: flex; flex-direction: column; overflow: hidden; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pricing-header { padding: 25px; background-color: #fcfdff; border-bottom: 1px solid var(--medium-gray); }
.pricing-card.popular { border: 2px solid var(--primary-orange); }
.pricing-card h3 { font-size: 1.5rem; margin: 0; }
.pricing-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.price { font-size: 2.8rem; font-weight: 700; margin: 0 0 20px 0; color: var(--primary-blue); }
.popular .price { color: var(--primary-orange); }
.price span { font-size: 1.1rem; color: var(--dark-gray); font-weight: 400; }
.pricing-features { list-style: none; text-align: left; flex-grow: 1; margin-bottom: 30px; }
.pricing-features li { padding: 8px 0; display: flex; align-items: center; font-size: 0.95rem; }
.pricing-features li i { color: var(--primary-orange); margin-right: 10px; }
.custom-order-cta { background: var(--white); border-radius: 15px; padding: 40px; text-align: center; margin-top: 60px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid var(--medium-gray); }
.custom-order-cta h2 { font-size: 2rem; color: var(--dark-gray); margin-bottom: 10px; }
.custom-order-cta p { max-width: 600px; margin: 0 auto 25px; }

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-scroller { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); }
.testimonial-track { display: flex; width: max-content; animation: scroll 90s linear infinite; }
.testimonial-scroller:hover .testimonial-track { animation-play-state: paused; }
.testimonial-card { width: 350px; margin: 0 15px; }
.testimonial-content-wrapper { background: #fff; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); padding: 30px; height: 100%; }
.testimonial-header { display: flex; align-items: center; margin-bottom: 20px; }
.testimonial-avatar { width: 60px; height: 60px; background: var(--primary-blue); color: #fff; font-size: 24px; font-weight: bold; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; }
.testimonial-author h4 { font-size: 1.1rem; color: var(--dark-gray); }
.testimonial-author p { font-size: 0.9rem; color: #777; }
.stars { color: #ffc107; margin-top: 15px; }

.faq { background-color: var(--light-gray); }
.faq-grid { max-width: 1000px; margin: 0 auto; }
.faq-item { background: white; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-left: 4px solid var(--primary-blue); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.1rem; color: var(--dark-gray); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 300px; }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

footer { background-color: var(--dark-blue); padding: 60px 0 30px; color: #d1d5db; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px; }

.footer-brand p { margin-top: 0; max-width: 350px; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #d1d5db; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-orange); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; text-align: center; }
.payment-title { font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, 0.9); margin-bottom: 15px; }
.payment-icons { display: flex; gap: 15px; justify-content: center; align-items: center; font-size: 2rem; }
.payment-icons img { height: 24px; filter: grayscale(1) brightness(1.5); }

.floating-contact { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.floating-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s ease; }
.floating-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background-color: #25D366; }
.telegram-btn { background-color: #0088cc; }

@media (min-width: 768px) {
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-actions .btn-secondary { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.8rem; }
    .mega-menu { width: auto; left: 20px; right: 20px; max-width: none; } /* Adjust dropdown for tablets */
    .mega-menu-content { grid-template-columns: 1fr 1fr; }
    .mega-menu-promo { display: none; } /* Hide promo on smaller screens */
    .pricing-card.popular { transform: scale(1); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 2.2rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .mega-menu-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}



/* ===============================================
   LOCATION SECTION STYLES
   =============================================== */

.location-section {
    background-color: var(--light-gray); /* Optional: Adds a light background color */
}

.location-group {
    margin-bottom: 40px; /* Space between each region (e.g., North America, Europe) */
}

.location-group:last-child {
    margin-bottom: 0;
}

.location-group h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 600;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.location-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* --- ADD THESE LINES --- */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; 
}


.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-card img {
    height: 40px;
    margin-bottom: 15px;
}

.location-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-blue); 
}

.location-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
    color: var(--text-color);
}


.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

/* Responsive fix for header gap */
@media (max-width: 992px) {
  body {
    padding-top: 65px; /* adjust for tablet header */
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 50px; /* adjust for mobile header */
  }
}



