.popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(13, 59, 102, 0.45); /* darker overlay for focus */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlayFadeIn 0.3s;
}
@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.popup-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,102,153,0.18), 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
    max-width: 420px;
    width: 95vw;
    position: relative;
    animation: popupIn 0.35s cubic-bezier(.23,1.02,.64,1);
    border: 1.5px solid #e3eaf2;
    overflow: hidden;
}
.popup-box {
    padding: 36px 28px 24px 28px;
    position: relative;
    background: #f8fafd;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,102,153,0.06);
    min-width: 270px;
    max-height: 80vh;
    overflow-y: auto;
}
.popup-box h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #006699;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg,#e3f0fa 60%, #f8fafd 100%);
    border-radius: 8px;
    padding: 10px 0 8px 0;
    box-shadow: 0 2px 8px rgba(0,102,153,0.04);
}
.close-btn {
    position: absolute;
    top: 10px; right: 18px;
    font-size: 2.1rem;
    color: #006699;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
    background: none;
    border: none;
    outline: none;
    transition: color 0.2s, background 0.2s;
    border-radius: 50%;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
}
.close-btn:hover {
    color: #fff;
    background: #d4af37;
}
.popup-box label {
    display: block;
    font-size: 1.01rem;
    font-weight: 500;
    color: #0d3b66;
    margin-bottom: 6px;
    margin-top: 16px;
    text-align: left;
}
.popup-box input[type="text"],
.popup-box input[type="email"],
.popup-box input[type="tel"],
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e3eaf2;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 8px;
    background: #fff;
    color: #222;
    transition: border 0.2s;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0 1px 4px rgba(0,102,153,0.04);
}
.popup-box input[type="text"]:focus,
.popup-box input[type="email"]:focus,
.popup-box input[type="tel"]:focus,
.popup-box select:focus,
.popup-box textarea:focus {
    border-color: #006699;
    background: #f8fafd;
}
.popup-box textarea {
    min-height: 80px;
    resize: vertical;
}
.popup-box button[type="submit"] {
    width: 100%;
    margin-top: 18px;
    background: linear-gradient(90deg,#d4af37,#b8860b);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(212,175,55,0.13);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
    position: sticky;
    bottom: 0;
    z-index: 2;
}
.popup-box button[type="submit"]:hover {
    background: linear-gradient(90deg,#b8860b,#d4af37);
    box-shadow: 0 8px 32px rgba(212,175,55,0.18);
}
.popup-box #thankyouMsg {
    text-align: center;
    font-size: 1.01rem;
    margin-top: 10px;
}
.popup-box input[type="hidden"] {
    display: none;
}
@media (max-width: 600px) {
    .popup-container {
        max-width: 99vw;
        min-width: 0;
        border-radius: 10px;
    }
    .popup-box {
        padding: 18px 6vw 18px 6vw;
        border-radius: 10px;
        min-width: 0;
    }
    .popup-box h3 {
        font-size: 1.1rem;
        padding: 8px 0 6px 0;
    }
}
.popup-box label {
    display: block;
    font-size: 1.01rem;
    font-weight: 500;
    color: #0d3b66;
    margin-bottom: 6px;
    margin-top: 16px;
    text-align: left;
}
.popup-box input[type="text"],
.popup-box input[type="email"],
.popup-box input[type="tel"],
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e3eaf2;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 8px;
    background: #f8fafd;
    color: #222;
    transition: border 0.2s;
    outline: none;
    box-sizing: border-box;
}
.popup-box input[type="text"]:focus,
.popup-box input[type="email"]:focus,
.popup-box input[type="tel"]:focus,
.popup-box select:focus,
.popup-box textarea:focus {
    border-color: #006699;
    background: #fff;
}
.popup-box textarea {
    min-height: 80px;
    resize: vertical;
}
.popup-box button[type="submit"] {
    width: 100%;
    margin-top: 18px;
    background: linear-gradient(90deg,#d4af37,#b8860b);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(212,175,55,0.13);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}
.popup-box button[type="submit"]:hover {
    background: linear-gradient(90deg,#b8860b,#d4af37);
    box-shadow: 0 8px 32px rgba(212,175,55,0.18);
}
.popup-box #thankyouMsg {
    text-align: center;
    font-size: 1.01rem;
    margin-top: 10px;
}
.popup-box input[type="hidden"] {
    display: none;
}
/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.32);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,102,153,0.13);
    padding: 0;
    max-width: 420px;
    width: 95vw;
    position: relative;
    animation: popupIn 0.3s;
}
@keyframes popupIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.popup-box {
    padding: 32px 28px 24px 28px;
    position: relative;
}
.close-btn {
    position: absolute;
    top: 12px; right: 18px;
    font-size: 2rem;
    color: #006699;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
    background: none;
    border: none;
    outline: none;
    transition: color 0.2s;
}
.close-btn:hover { color: #d4af37; }
/* ================================
   MODERN REDESIGN - SEVEN VISA SERVICES
   ================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #006699;
    --secondary-color: #0088cc;
    --accent-color: #d4af37;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #006699 0%, #0088cc 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 92vw;
        max-width: 370px;
        background: rgba(255,255,255,0.95);
        flex-direction: column;
        padding: 32px 24px 24px 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        border-radius: 18px 0 18px 0;
        backdrop-filter: blur(8px);
        transition: left 0.35s cubic-bezier(.77,0,.18,1);
        z-index: 9999;
        margin: 0 4vw;
        gap: 18px;
        align-items: flex-start;
        opacity: 0.98;
    }
    .nav-menu.active {
        left: 4vw;
        animation: menuFadeIn 0.4s cubic-bezier(.77,0,.18,1);
    }
    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 12px 0 12px 12px;
    font-size: 1.13rem;
    border-radius: 8px 0 0 8px;
    transition: color 0.2s, box-shadow 0.2s;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
    box-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 2;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 24px);
}
.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.nav-link.login-btn {
    background: var(--gradient-1);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 0;
    margin-top: 10px;
    box-shadow: 0 2px 12px rgba(0,102,153,0.10);
    font-size: 1.08rem;
}

.nav-link.login-btn:hover {
    background: var(--gradient-2);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        z-index: 10000;
        transition: transform 0.3s cubic-bezier(.77,0,.18,1);
    }
    .hamburger span {
        width: 28px;
        height: 3.5px;
        background: var(--primary-color);
        border-radius: 2px;
        display: block;
        transition: all 0.35s cubic-bezier(.77,0,.18,1);
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    overflow: hidden;
}


.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    top: 50%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 102, 153, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

.badge-icon {
    font-size: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 14px;
    color: var(--dark-color);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Center the hero buttons just beneath the map image */
.hero-image .hero-buttons {
    justify-content: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .hero-image .hero-buttons { margin-top: 10px; }
    
    .scroll-indicator {
        display: none !important;
    }
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card p {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.card-1 {
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: #666;
}

/* Features Bar */
.features-bar {
    background: var(--gradient-1);
    padding: 20px 0;                /* reduce vertical height of blue strip */
    margin-top: -50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;                      /* tighter spacing to reduce height */
    align-items: center;            /* vertical alignment within the strip */
    justify-items: center;          /* ensure perfect centering per column */
}

.feature-item {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;            /* rigid center for first/last items */
    justify-content: center;
}

.feature-icon {
    width: 64px;                    /* smaller circle to lower visual height */
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    backdrop-filter: blur(10px);
}

.feature-icon i {
    font-size: 1.5rem;              /* scale icon to match smaller circle */
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 102, 153, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header.center .underline {
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge h3 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}

.about-content .underline {
    margin-left: 0;
}

.about-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.about-list span {
    font-size: 1rem;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-slider-wrapper {
    margin-top: 35px;
}

.servicesSwiper .swiper-slide {
    display: flex;
    height: auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 100%;
    height: 160px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 20px 20px 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin: 0 20px 20px;
}

.service-link {
    margin-top: auto;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--light-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 90px;
    scroll-margin-top: 120px;
    position: relative;
    z-index: 2;
}

.faq-box {
    background: var(--white);
    border: 1px solid #dfe5ec;
    border-radius: 18px;
    padding: 26px 26px 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    margin-top: 24px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.faq-visual {
    display: flex;
    justify-content: center;
}

.faq-content {
    max-width: 700px;
    margin: 0;
}

.faq-accordion {
    width: 100%;
    display: flex;
    justify-content: center;
}

.accordion-item {
     background: var(--white);
     border-radius: 15px;
     margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0,0,0,0.05);
     border: 1px solid rgba(0, 102, 153, 0.1);
}

.accordion-item.active {
    background: var(--white);
     box-shadow: 0 8px 25px rgba(0, 102, 153, 0.15);
     border-color: var(--primary-color);
}

.accordion-button {
    width: 100%;
    background: transparent;
    border: none;
     padding: 25px 30px;
    text-align: left;
     font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: var(--primary-color);
     background: rgba(0, 102, 153, 0.03);
}

.icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
     font-weight: 300;
     min-width: 30px;
     text-align: center;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
     max-height: 300px;
}

.accordion-body p {
     padding: 0 30px 25px;
     color: #555;
    line-height: 1.7;
     font-size: 0.95rem;
}

.faq-image {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-accordion {
        justify-content: center;
    }

    .faq-content {
        margin: 10px auto 0;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 70px 0;
        margin-top: 80px;
        scroll-margin-top: 120px;
    }

    .accordion-button {
        padding: 20px;
    }

    .accordion-body p {
        padding: 0 20px 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.info-card p {
    color: #666;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.iti {
    width: 100% !important;
}

.iti input {
    width: 100% !important;
    padding-left: 90px !important;
}

.iti__country-list {
    z-index: 99999 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
}

.thank-you-msg {
    display: none;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.thank-you-msg.show {
    display: block;
}

.thank-you-msg i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Map Section */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.float-btn span {
    display: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.call-btn {
    background: #e63946;
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 45px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    margin-top: 3px;
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form button {
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        display: none !important;
    }
    
    .about-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Small laptops (common 1366px widths) */
@media (max-width: 1366px) {
    .container { max-width: 1120px; }
    .hero-container { gap: 40px; }
    .hero-title { font-size: 3.2rem; }
    .hero-description { font-size: 1.05rem; }
    .features-bar { padding: 16px 0; }
    .feature-icon { width: 56px; height: 56px; }
    .feature-icon i { font-size: 1.35rem; }
    .feature-item h4 { font-size: 1rem; }
    .hero-stats { gap: 28px; }
}

/* Tablets / medium widths just above stacked layout */
@media (max-width: 992px) {
    .hero-stats { gap: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 16px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        flex-direction: row !important;
        gap: 12px;
        margin-bottom: 20px;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
    }
    
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }
    
    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-item h4 { font-size: 0.95rem; }
    
    .process-step {
        padding: 28px 18px;
    }
    
    /* keep service icons balanced on smaller screens */
    .service-icon { height: 140px; }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .newsletter-form {
        flex-wrap: wrap;
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .floating-card {
        display: none;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    .nav-container { height: 68px; padding: 0 14px; }
    .logo img { height: 48px; }
    .logo-text { font-size: 0.9rem; }
    
    .hero {
        padding-top: 68px;
        min-height: 65vh;
    }
    .hero-content {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 102, 153, 0.15);
        color: var(--primary-color);
        padding: 8px 16px;
        border-radius: 50px;
        margin-bottom: 16px;
        font-weight: 600;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.65rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 16px;
        margin-bottom: 28px;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
    }
    
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.7rem; }
    
    .hero-buttons {
        gap: 12px;
        justify-content: center;
    }
    
    .btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-slider-wrapper {
        margin-top: 20px;
    }

    .servicesSwiper {
        padding: 0 12px 34px;
    }

    .servicesSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .servicesSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        height: auto;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .services-section .section-header h2 {
        font-size: 1.7rem;
        margin-bottom: 6px;
    }
    
    .services-section .section-header p {
        font-size: 0.85rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .about-grid {
        gap: 20px;
    }
    
    .about-text { font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
    .about-list { margin-bottom: 20px; }
    .about-list li { margin-bottom: 10px; gap: 10px; }
    .about-list span { font-size: 0.9rem; }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 24px;
    }
    
    .process-step {
        padding: 20px 14px;
    }
    
    .step-number { font-size: 1.8rem; }
    .process-step h3 { font-size: 1rem; margin-bottom: 10px; }
    .process-step p { font-size: 0.85rem; line-height: 1.5; }
    .step-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
    .step-icon i { font-size: 1.5rem; }
    
    .service-card {
        border-radius: 16px;
        min-height: 420px;
        width: 100%;
    }

    .service-card h3 { font-size: 1.1rem; margin: 14px 14px 10px; font-weight: 600; }
    .service-card p {
        display: -webkit-box;
        line-clamp: 4;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0 14px 14px;
        line-height: 1.5;
    }
    .service-icon {
        width: 100%;
        aspect-ratio: 4 / 3;
        height: auto;
        padding: 0;
    }

    .service-icon img {
        width: 100% !important;
        height: 100% !important;
        display: block;
        object-fit: cover;
        object-position: center;
    }
    
    .service-link { 
        font-size: 0.9rem; 
        margin-bottom: 16px; 
        margin-top: 4px;
        padding: 8px 0;
        font-weight: 600;
    }
    
    .service-link { 
        margin-bottom: 14px;
    }
    
    .faq-section {
        padding: 50px 0;
        margin-top: 50px;
    }
    
    .faq-box {
        padding: 20px;
        margin-top: 20px;
    }
    
    .faq-layout {
        gap: 20px;
    }
    
    .faq-image {
        max-width: 100%;
        max-height: 200px;
        margin-bottom: 10px;
    }
    
    .accordion-button { padding: 18px; font-size: 0.95rem; }
    .accordion-body p { padding: 0 18px 18px; font-size: 0.85rem; }
    .accordion-item { margin-bottom: 14px; }
    
    .contact-grid {
        gap: 24px;
        margin-top: 24px;
    }
    
    .info-card {
        padding: 20px;
        margin-bottom: 14px;
        gap: 12px;
    }
    
    .info-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .info-card h4 { font-size: 1rem; margin-bottom: 6px; }
    .info-card p { font-size: 0.9rem; }
    
    .contact-form-wrapper { padding: 24px; }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-block {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .footer-logo { width: 100px; }
    .footer-col h4 { font-size: 1rem; margin-bottom: 14px; }
    .footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
    .footer-col p { font-size: 0.9rem; line-height: 1.6; }
    
    .contact-list li { font-size: 0.9rem; gap: 8px; }
    .contact-list i { font-size: 1rem; }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 10px 12px;
    }
    
    .newsletter-form button {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 16px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-image {
        display: none !important;
    }
    
    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    
    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    
    .float-btn span {
        display: none;
    }
}
