/* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0B2847;
    --primary-blue: #1E5A8E;
    --light-blue: #1E88E5;
    --accent-blue: #4FC3F7;
    --white: #ffffff;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --text-dark: #2C3E50;
    --text-gray: #6C757D;

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 1rem 0;*/
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text h2 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
    margin-bottom: -3px;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.45rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.8rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-blue);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-phone i {
    color: var(--light-blue);
    font-size: 0.9rem;
}

.cta-button {
    padding: 0.75rem 1.8rem;
    background: var(--light-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B2847 0%, #1A4D7E 40%, #2874A6 70%, #3A9BC9 100%);
    z-index: 0;
}

/* Background image with professional */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(11, 40, 71, 1) 0%, rgba(11, 40, 71, 0.98) 45%, rgba(11, 40, 71, 0.85) 60%, rgba(11, 40, 71, 0.4) 80%, transparent 100%),
        url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1600&q=80');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Tech particle overlay */
.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Grid pattern */
.tech-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(79, 195, 247, 0.03) 50px, rgba(79, 195, 247, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(79, 195, 247, 0.03) 50px, rgba(79, 195, 247, 0.03) 51px);
    opacity: 0.5;
}

/* Floating particles/dots */
.tech-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(79, 195, 247, 0.2) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 150px 150px;
    background-position: 0 0, 40px 60px, 80px 30px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--light-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

/* Hero Image with Shield */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced glow effect */
.shield-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.5) 0%, rgba(30, 136, 229, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: shieldPulse 3s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Multiple glow layers */
.shield-icon-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.6) 0%, rgba(79, 195, 247, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: shieldPulse 3s ease-in-out infinite 0.5s;
    filter: blur(20px);
}

.shield-icon-container::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    animation: shieldPulse 3s ease-in-out infinite 1s;
    filter: blur(40px);
}

.shield-icon {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 40px rgba(79, 195, 247, 0.6));
}

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

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(79, 195, 247, 0.7) 50%, transparent 100%);
    height: 2px;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.line-1 {
    top: 20%;
    left: -100px;
    width: 150px;
    animation: circuitFlow1 3s ease-in-out infinite;
}

.line-2 {
    top: 50%;
    right: -100px;
    width: 120px;
    animation: circuitFlow2 3s ease-in-out infinite 0.5s;
}

.line-3 {
    bottom: 30%;
    left: -80px;
    width: 100px;
    animation: circuitFlow3 3s ease-in-out infinite 1s;
}

.line-4 {
    top: 70%;
    right: -90px;
    width: 130px;
    animation: circuitFlow4 3s ease-in-out infinite 1.5s;
}

@keyframes circuitFlow1 {
    0%, 100% { opacity: 0; transform: translateX(-20px); }
    50% { opacity: 1; transform: translateX(0); }
}

@keyframes circuitFlow2 {
    0%, 100% { opacity: 0; transform: translateX(20px); }
    50% { opacity: 1; transform: translateX(0); }
}

@keyframes circuitFlow3 {
    0%, 100% { opacity: 0; transform: translateX(-15px); }
    50% { opacity: 1; transform: translateX(0); }
}

@keyframes circuitFlow4 {
    0%, 100% { opacity: 0; transform: translateX(15px); }
    50% { opacity: 1; transform: translateX(0); }
}

/* Hero Cards */
.hero-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hero-card {
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.card-content h3 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    letter-spacing: 0.3px;
}

.card-link:hover {
    gap: 10px;
}

.card-link i {
    font-size: 0.7rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3.5rem;
}

.section-header-left {
    flex: 1;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 400;
}

.btn-view-all {
    padding: 0.85rem 2rem;
    background: var(--light-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-view-all:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 2.3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-content h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    letter-spacing: 0.3px;
}

.service-link:hover {
    gap: 10px;
}

.service-link i {
    font-size: 0.7rem;
}





/* ==================== INSIGHTS SECTION ==================== */
.insights {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.insights-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B2847 0%, #1A4D7E 50%, #2874A6 100%);
    z-index: 0;
}

/* Tech background image */
.insights-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

/* Tech grid and particles overlay */
.insights-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(79, 195, 247, 0.04) 40px, rgba(79, 195, 247, 0.04) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(79, 195, 247, 0.04) 40px, rgba(79, 195, 247, 0.04) 41px),
        radial-gradient(circle at 15% 30%, rgba(79, 195, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(30, 136, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 60px 60px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    animation: techParticles 25s linear infinite;
}

@keyframes techParticles {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 0 0, 60px 60px;
    }
}

/* Insights Header */
.insights-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.insights-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.insights-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Insights Grid - Now in a single row */
.insights-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.insight-card.featured {
    background: rgba(79, 195, 247, 0.12);
    border-color: rgba(79, 195, 247, 0.2);
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.insight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.insight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.insight-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-content h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 3em; /* Ensures consistent height */
}

.insight-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.insight-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    letter-spacing: 0.3px;
    margin-top: auto; /* Push to bottom */
}

.insight-link:hover {
    gap: 10px;
    color: var(--white);
}

.insight-link i {
    font-size: 0.7rem;
}

/* Remove old insights-wrapper and insights-content styles */
.insights-wrapper {
    display: block;
}

.insights-content {
    width: 100%;
}



/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Contact Information in Footer */
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.footer-contact li i {
    color: var(--light-blue);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li a:hover {
    color: var(--white);
    padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}



/* ==================== CHATBOT ==================== */
.chatbot-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

.chatbot-trigger i {
    font-size: 1.8rem;
    color: var(--white);
}

.chatbot-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 420px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chatbot-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-body {
    padding: 2rem;
}

.chatbot-form .form-group {
    margin-bottom: 1.3rem;
}

.chatbot-form label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.chatbot-form input,
.chatbot-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chatbot-form input:focus,
.chatbot-form textarea:focus {
    outline: none;
    border-color: var(--light-blue);
}

.chatbot-form textarea {
    resize: vertical;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.5);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }

    .hero-content-wrapper {
        gap: 40px;
    }

    .shield-icon-container {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .insights-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .btn-view-all {
        align-self: flex-start;
    }

    .service-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content-wrapper {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .chatbot-modal {
        width: calc(100% - 40px);
        right: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insights-grid {
        gap: 20px;
    }

    .insight-card {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .card-content h3 {
        font-size: 1.05rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .chatbot-trigger {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .chatbot-trigger i {
        font-size: 1.6rem;
    }

    .chatbot-modal {
        bottom: 90px;
        width: calc(100% - 30px);
        right: 15px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 100px;
        left: 20px;
    }

    .logo-text h2 {
        font-size: 0.85rem;
    }

    .logo-text .tagline {
        font-size: 0.4rem;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .service-card,
    .hero-card,
    .insight-card {
        border: 2px solid var(--text-dark);
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .chatbot-trigger,
    .chatbot-modal,
    .scroll-to-top,
    .btn-hero,
    .btn-view-all,
    .cta-button,
    .card-link,
    .service-link,
    .insight-link {
        display: none;
    }

    body {
        background: white;
    }

    .hero {
        background: var(--primary-dark);
        min-height: auto;
        padding: 2rem 0;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.loading {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loaded {
    opacity: 1;
}



/* ==================== RESPONSIVE UPDATES FOR INSIGHTS ==================== */

@media (max-width: 1200px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .insights-header {
        margin-bottom: 3rem;
    }

    .insights-title {
        font-size: 1.8rem;
    }

    .insights-subtitle {
        font-size: 0.95rem;
    }

    .insight-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .insights {
        padding: 4rem 0;
    }

    .insight-card {
        padding: 1.8rem;
    }

    .insight-icon {
        width: 60px;
        height: 60px;
    }

    .insight-icon i {
        font-size: 1.6rem;
    }
}


/*=====================================================*/
/*=========== Style for new section ===================*/
/*=====================================================*/


/* ==================== NEW SECTIONS STYLES ==================== */

/* Credentials Badge */
.credentials-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.credentials-badge span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-hero.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges .badge i {
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.trust-badges .badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==================== TRUST INDICATORS BAR ==================== */
/*.trust-indicators {
    background: var(--white);
    padding: 2.5rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.indicator i {
    font-size: 2rem;
    color: var(--light-blue);
}

.indicator span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}*/


/* ==================== TRUST INDICATORS BAR ==================== */
.trust-indicators {
    background: var(--white);
    padding: 2.5rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.indicator-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.indicator-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.indicator:hover .indicator-logo img {
    transform: scale(1.1);
}

.indicator span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .indicators-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .indicator-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .indicators-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
}

.image-badge i {
    font-size: 1.5rem;
}

.image-badge span {
    font-weight: 700;
    font-size: 0.9rem;
}

.about-text h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--primary-dark);
}








/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.cert-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: var(--light-blue);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.15);
    transform: translateY(-3px);
}

/* Logo Display */
.cert-icon.cert-logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem;
    border: 1px solid var(--light-gray);
}

.cert-icon.cert-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-details h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cert-details p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}





/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 6px;
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--light-blue);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-about {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--light-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-about:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

/* ==================== SECTION HEADERS ==================== */
.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center.white .section-title,
.section-header-center.white .section-label,
.section-header-center.white .section-subtitle {
    color: var(--white);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* ==================== SERVICES DETAILED GRID ==================== */
.services-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card-detailed {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

.service-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.popular {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--white);
}

.service-card-detailed h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-type {
    font-size: 0.85rem;
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.8rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-list li i {
    color: var(--light-blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Service Pricing */
.service-pricing {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.pricing-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.pricing-item .region {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

.pricing-item .price {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.pricing-item.full-width {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.price-large {
    font-size: 1.8rem;
    color: var(--light-blue);
    font-weight: 800;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--light-blue);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

/* ==================== EXPERTISE SECTION ==================== */
.expertise {
    padding: 6rem 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.expertise-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.expertise-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.expertise-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== REGIONS SECTION ==================== */
.regions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0B2847 0%, #1A4D7E 100%);
    position: relative;
    overflow: hidden;
}

.regions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.regions-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.region-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.region-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.region-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.region-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.region-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--light-blue);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-details > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-text a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* ==================== RESPONSIVE UPDATES ==================== */
@media (max-width: 1400px) {
    .services-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        position: relative;
        top: 0;
    }

    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .indicators-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid-four {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .trust-badges {
        gap: 1rem;
    }

    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .credentials-badge {
        padding: 0.5rem 1rem;
    }

    .credentials-badge span {
        font-size: 0.75rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }

    .indicators-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}



/* ==================== SERVICES SECTION ADDITION ==================== */
.services {
    padding: 6rem 0;
    background:
        linear-gradient(180deg,
        rgba(245, 247, 250, 1) 0%,
        rgba(232, 240, 254, 0.5) 40%,
        rgba(240, 248, 255, 0.6) 60%,
        rgba(245, 247, 250, 1) 100%
        );
    position: relative;
    overflow: hidden;
}

/* Elegant tech-inspired overlay */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(30, 136, 229, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 0% 50%, rgba(79, 195, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(30, 136, 229, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

/* Add this for animated glow effect */
.services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
    animation: slowRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.services .container {
    position: relative;
    z-index: 3;
}

.bd-none {
    border: none !important;
}

.text-uppercase{
    text-transform: uppercase !important;
}


/* ==================== ENGAGEMENT MODELS SECTION ==================== */
.engagement-models {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.engagement-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
    position: relative;
}

.engagement-card.featured {
    border-color: var(--light-blue);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.15);
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.engagement-card.featured:hover {
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.25);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.engagement-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.engagement-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.engagement-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-dark);
}

.engagement-card h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.engagement-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.engagement-features {
    margin-bottom: 2rem;
}

.engagement-features h4,
.engagement-benefits h4,
.engagement-services h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.engagement-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engagement-features li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.engagement-features li i {
    color: var(--light-blue);
    font-size: 0.9rem;
}

.engagement-benefits {
    margin-bottom: 2rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.engagement-services {
    margin-bottom: 2rem;
}

.service-tag {
    display: inline-block;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.3rem;
    font-weight: 600;
}

.engagement-duration {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 6px;
    border-left: 4px solid var(--light-blue);
}

.engagement-duration i {
    color: var(--light-blue);
    font-size: 1.2rem;
}

.engagement-duration span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-engagement {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.btn-engagement:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.btn-engagement.primary {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border: none;
}

.btn-engagement.primary:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
}

/* Engagement Note */
.engagement-note {
    background: linear-gradient(135deg, #F0F4F8, #E8EFF5);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--light-blue);
}

.engagement-note i {
    font-size: 2rem;
    color: var(--light-blue);
    margin-bottom: 1rem;
}

.engagement-note p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-consultation {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .engagement-models {
        padding: 4rem 0;
    }

    .engagement-card {
        padding: 2rem;
    }

    .engagement-icon {
        width: 70px;
        height: 70px;
    }

    .engagement-icon i {
        font-size: 2rem;
    }

    .engagement-card h3 {
        font-size: 1.5rem;
    }

    .service-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .engagement-note {
        padding: 1.5rem;
    }

    .engagement-note p {
        font-size: 0.95rem;
    }
}
