/* CSS Variables - Silver & Purple Theme */
:root {
    --primary: #3A2152; /* Deep purple */
    --primary-light: #4a2a6a;
    --primary-dark: #2a183d;
    --secondary: #6c5ce7; /* Purple accent */
    --secondary-light: #7d70e9;
    --accent: #C0C0C0; /* Silver */
    --accent-light: #e0e0e0;
    --light: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --dark: #1B1B1B; /* Requested dark background */
    --darker: #121212;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-silver: linear-gradient(135deg, var(--accent-light), var(--accent));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
}

/* Stadium-Shaped Header Styles */
.navbar {
    background: transparent;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    margin: 25px auto;
    max-width: 1200px;
    position: relative;
    z-index: 1000;
}

.navbar-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid transparent;
    /* Stadium shape: height/2 for border-radius */
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(58, 33, 82, 0.15);
    height: 60px;
    display: flex;
    align-items: center;
}

/* Border gradient effect for stadium shape */
.navbar-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3A2152, #6c5ce7, #C0C0C0, #3A2152);
    background-size: 400% 400%;
    border-radius: 52px; /* Slightly larger to accommodate border */
    z-index: -1;
    animation: gradientBorder 8s ease infinite;
    opacity: 0.9;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 50px;
    z-index: -1;
}

.navbar .container {
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: #3A2152 !important;
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: #6c5ce7;
    margin-left: 5px;
    background: linear-gradient(to right, #6c5ce7, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: #3A2152 !important;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    border: none !important;
    display: flex;
    align-items: center;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: #6c5ce7 !important;
    transform: translateY(0);
    box-shadow: none;
}

.navbar-nav .nav-link.active {
    color: #6c5ce7 !important;
    font-weight: 700;
}

/* Separator lines between menu items */
.navbar-nav .nav-item:not(:last-child) {
    position: relative;
    margin-right: 20px;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: rgba(58, 33, 82, 0.2);
}

/* Mobile menu toggle */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.navbar-toggler-icon {
    background: none;
    position: relative;
    width: 24px;
    height: 18px;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3A2152;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

/* Scrolled navbar styles */
.navbar.scrolled {
    margin: 15px auto;
}

.navbar.scrolled .navbar-container {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(58, 33, 82, 0.2);
    height: 55px;
}

.navbar.scrolled .navbar-container::before {
    border-radius: 50px;
}

.navbar.scrolled .navbar-container::after {
    border-radius: 48px;
}

/* Mobile menu styling */
@media (max-width: 991.98px) {
    .navbar {
        margin: 15px 15px;
        max-width: calc(100% - 30px);
    }
    
    .navbar-container {
        border-radius: 45px;
        height: 55px;
    }
    
    .navbar-container::before {
        border-radius: 47px;
    }
    
    .navbar-container::after {
        border-radius: 45px;
    }
    
    .navbar-nav {
        padding: 0;
        margin-top: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 0;
        margin: 0 8px;
        display: block;
        text-align: center;
        height: auto;
    }
    
    .navbar-nav .nav-item:not(:last-child)::after {
        display: none;
    }
    
    .navbar-brand {
        padding: 0;
    }
}

/* Hero Section with Original Image */
.hero-original {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #e0e0e0;
    color: #3A2152;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border: 1px solid #C0C0C0;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #3A2152;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #3A2152, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .lead {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.6;
}

.hero-text .btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, #3A2152, #6c5ce7);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    color: #3A2152;
    border: 2px solid #dee2e6;
    background: transparent;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #3A2152;
    transform: translateY(-3px);
}

/* Responsive Design for Hero Section */
@media (max-width: 991.98px) {
    .hero-original {
        height: 80vh;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-text {
        padding: 35px;
        margin: 0 auto;
        max-width: 700px;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .hero-text .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .hero-original {
        height: auto;
        min-height: 70vh;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text {
        padding: 30px 25px;
        margin: 0 auto;
        max-width: 600px;
    }
    
    .hero-text h1 {
        font-size: 2.1rem;
    }
    
    .hero-text .lead {
        font-size: 1rem;
    }
    
    .hero-text .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-text .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-text {
        padding: 25px 20px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
    
    .hero-text .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Floating elements */
.floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
}

.floating-1 {
    top: 10%;
    right: 15%;
    font-size: 6rem;
    color: var(--secondary);
    transform: rotate(15deg);
}

.floating-2 {
    bottom: 15%;
    left: 10%;
    font-size: 4rem;
    color: var(--accent);
    transform: rotate(-10deg);
}

/* Stats Section */
.stats {
    background: var(--light);
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.stat-item {
    padding: 30px;
    border-radius: 20px;
    background: var(--light);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--gray-200);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid var(--accent);
}

.stat-icon i {
    font-size: 28px;
    color: var(--primary);
}

.stat-item h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 3rem;
}

.stat-item p {
    color: var(--gray-800);
    font-size: 1.2rem;
}

/* Services Preview - Attractive Cards */
.services-preview {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 100px 0;
}

.service-card {
    background: var(--light);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-800);
    flex-grow: 1;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features span {
    background: var(--accent-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .service-features span {
    background: rgba(108, 92, 231, 0.15);
    color: var(--secondary);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 1.05rem;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Categories */
.category-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--accent);
}

.category-icon i {
    font-size: 28px;
    color: var(--primary);
}

.category-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1.4rem;
}

.category-card p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Why Choose Us */
.reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
}

.reason-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid var(--accent);
}

.reason-icon i {
    font-size: 20px;
    color: var(--primary);
}

.reason-item h5 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.2rem;
}

.reason-item p {
    color: var(--gray-600);
    margin: 0;
}

.why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Global Presence */
.global-presence {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 100px 0;
    position: relative;
}

.global-content {
    position: relative;
    z-index: 2;
}

.countries {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.countries span {
    background: var(--accent-light);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
}

.countries span:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    border: 1px solid var(--gray-200);
}

/* Testimonials */
.testimonials {
    background: var(--light);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    float: left;
    margin-right: 20px;
    border: 1px solid var(--accent);
}

.quote-icon i {
    font-size: 24px;
    color: var(--primary);
}

.testimonial-content p {
    font-style: normal;
    margin-bottom: 30px;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    border: 2px solid var(--accent);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.2rem;
}

.author-info p {
    color: var(--primary);
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

/* Improved CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3A2152 0%, #6c5ce7 100%);
    color: white;
    text-align: center;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    margin: 80px 0 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    padding: 16px 36px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    background: white;
    color: #3A2152;
    border: none;
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    color: #2a183d;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    color: var(--light);
    margin-bottom: 20px;
}

.footer-logo h3 span {
    color: var(--secondary);
}

footer h5 {
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-weight: 500;
}

footer ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

footer address p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

footer address i {
    color: var(--secondary);
    margin-right: 10px;
    width: 20px;
    font-size: 1rem;
}

hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Enhanced Footer Top Border */
footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(135deg, #3A2152, #6c5ce7);
    z-index: 2;
}

/* Hero Small (for inner pages) */
.hero-sm {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-sm::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-sm::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-sm .container {
    position: relative;
    z-index: 2;
}

.hero-sm h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* Service Pages Specific Styles */
.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Feature Cards */
.feature-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--accent);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary);
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Process Steps */
.process-step {
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h4 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.3rem;
}

.process-step p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Technology Items */
.tech-item {
    padding: 25px;
    background: var(--light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
    height: 100%;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.tech-item h5 {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 0;
}

/* Contact Page Styles */
.contact-info {
    padding: 35px;
    background: var(--light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: var(--primary);
}

.info-item h5 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: var(--gray-600);
}

.contact-form {
    background: var(--light);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control, .form-select {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(58, 33, 82, 0.2);
}

.form-check-input {
    margin-top: 0.6rem;
    margin-right: 10px;
}

.form-check-label {
    font-weight: 500;
    color: var(--gray-800);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.countries-list span {
    background: var(--accent-light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
}

.countries-list span:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Portfolio Page */
.portfolio-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h4 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 1.4rem;
}

.category {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content p {
    margin-bottom: 20px;
    color: var(--gray-600);
    flex-grow: 1;
}

.portfolio-content .btn {
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--accent-light);
    color: var(--primary);
    border: none;
    width: fit-content;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.portfolio-content .btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Client Results */
.result-card {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--accent);
}

.result-icon i {
    font-size: 28px;
    color: var(--primary);
}

.result-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

/* About Page Styles */
.mission-vision-card {
    background: var(--light);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
}

.mission-vision-card .icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid var(--accent);
}

.mission-vision-card .icon i {
    font-size: 28px;
    color: var(--primary);
}

.value-card {
    text-align: center;
    padding: 35px;
    border-radius: 20px;
    background: var(--light);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid var(--accent);
}

.value-icon i {
    font-size: 28px;
    color: var(--primary);
}

.team-member {
    text-align: center;
}

.team-image {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
}

.team-image .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.team-member h5 {
    margin: 15px 0 8px;
    color: var(--dark);
    font-size: 1.25rem;
}

.team-member p {
    color: var(--gray-600);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .cta-section h2 {
        font-size: 2.4rem;
    }
    
    .cta-section p.lead {
        font-size: 1.1rem;
    }
    
    .hero p.lead {
        font-size: 1.05rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 8px;
        font-size: 1rem;
    }
    
    .reasons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .reason-item {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 600px;
        padding: 25px;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .hero-image {
        transform: translateY(0);
        margin-top: 40px;
        max-width: 400px;
    }
    
    .floating-1, .floating-2 {
        display: none;
    }
    
    .countries {
        justify-content: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 18px;
    }
    
    .quote-icon {
        float: none;
        margin: 0 auto 25px;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 2.1rem;
    }
    
    .cta-section p.lead {
        font-size: 1.05rem;
    }
    
    .cta-section .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    footer {
        padding-top: 50px;
    }
    
    .reasons {
        flex-direction: column;
    }
    
    .reason-item {
        width: 100%;
    }
    
    .hero-sm {
        padding: 80px 0 50px;
    }
    
    .hero-sm h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
    
    .stat-item h2 {
        font-size: 2.2rem;
    }
    
    .countries span {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p.lead {
        font-size: 1rem;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-features span {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    footer {
        padding-top: 40px;
    }
    
    .hero-sm h1 {
        font-size: 1.9rem;
    }
    
    .service-card {
        padding: 25px;
    }
}
/* Map Cards */
.map-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--gray-200);
}

.map-header h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.map-header p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

.map-container {
    flex-grow: 1;
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Validation Styles */
.form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* CAPTCHA Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #495057;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), 
                      repeating-linear-gradient(45deg, #e9ecef, #e9ecef 10px, #dee2e6 10px, #dee2e6 20px);
}

.captcha-code {
    flex-grow: 1;
}

#refreshCaptcha {
    padding: 6px 12px;
    font-size: 0.875rem;
}

/* Loading spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Form button states */
.btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive adjustments for map cards */
@media (max-width: 991.98px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 250px;
    }
    
    .map-header {
        padding: 15px;
    }
    
    .map-header h4 {
        font-size: 1.2rem;
    }
}