* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A2342;
    --secondary-blue: #1B4965;
    --accent-blue: #5FA8D3;
    --bright-blue: #62B6CB;
    --cyan: #00D9FF;
    --gradient-1: linear-gradient(135deg, #0A2342 0%, #1B4965 100%);
    --gradient-2: linear-gradient(135deg, #1B4965 0%, #5FA8D3 100%);
    --gradient-3: linear-gradient(135deg, #62B6CB 0%, #00D9FF 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0E27;
    color: #fff;
    overflow-x: hidden;
}

/* Header Modern */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, #748ba7d9, #0a2342d9);

    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(98, 182, 203, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: linear-gradient(to right, #87a2c4d9, #243346d9);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: glow 3s ease-in-out infinite;
}

.logo img {
    position: absolute;
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 80px;
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    text-decoration: none;
    background: var(--gradient-3);
    padding: 10px;
    border-radius: 50px;
    border: none;
    color: #0A2342;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 217, 255, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher with Flags */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-toggle img {
    height: 18px;
    width: auto;
    border-radius: 2px;
}

.lang-toggle i {
    font-size: 0.8rem;
    margin-left: 2px;
    color: var(--cyan);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 12px;
    padding: 8px;
    display: none;
    flex-direction: column;
    min-width: 140px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    gap: 4px;
}

.lang-switcher:hover .lang-dropdown {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    font-size: 0.9rem;
}

.lang-dropdown a img {
    height: 16px;
    width: 22px;
    border-radius: 2px;
}

.lang-dropdown a:hover {
    background: rgba(0, 217, 255, 0.15);
    color: var(--cyan);
}

/* Hero Section Ultra Modern */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-1);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    background:
        radial-gradient(circle at 20% 50%, rgba(98, 182, 203, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.3) 0%, transparent 50%);
}

.hero-bg img {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    object-fit: contain;
    opacity: 0.15;
    z-index: 2;
    /* filter: blur(5px); */
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    border: 3px solid var(--cyan);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    border: 3px solid var(--bright-blue);
    top: 70%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--bright-blue);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

a {
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    color: #0A2342;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    position: relative;
    overflow: hidden;

}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--cyan);
    color: #0A2342;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: rgba(27, 73, 101, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--bright-blue);
    margin-top: 0.5rem;
}

/* Section Modern */
section {
    padding: 8rem 3rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--accent-blue);
    line-height: 1.7;
}

/* Services Grid Modern */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(27, 73, 101, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--cyan);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0A2342;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card .service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--bright-blue);
}

/* Products Grid Modern */
.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    /* Owl Carousel specific styles */
    display: block;
    /* Override grid for carousel */
}

.products-grid .owl-item {
    padding: 10px;
    /* Space between carousel items */
}

.products-grid .item {
    /* This div will wrap each product-card in the carousel */
    display: flex;
    /* To center content if needed */
    justify-content: center;
}

.products-grid .item {
    display: flex;
    /* Ensure flexbox for height consistency */
    justify-content: center;
    align-items: stretch;
    /* Make all items in a row the same height */
}

.products-grid .product-card {
    width: 100%;
    /* Ensure card takes full width of item */
    margin: auto;
    /* Center card in item */
    height: 100%;
    /* Ensure card fills the height of its parent item */
    display: flex;
    /* Use flexbox for internal layout */
    flex-direction: column;
    justify-content: space-between;
    /* Distribute content vertically */
}

.product-card {
    background: rgba(27, 73, 101, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.3);
}

.product-image {
    height: 250px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.product-card:hover .product-image::before {
    left: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

/* Make product info a column so tag stays at the bottom */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-info .product-tag {
    margin-top: auto;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-info p {
    color: var(--accent-blue);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Description line clamps */
.desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-10 {
    -webkit-line-clamp: 10;
}

.clamp-3 {
    -webkit-line-clamp: 3;
}

.product-tag {
    width: fit-content;
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: var(--cyan);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials Modern */
.testimonials {
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(98, 182, 203, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 217, 255, 0.2) 0%, transparent 50%);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Owl Carousel specific styles */
    display: block;
    /* Override grid for carousel */
}

.testimonials-grid .owl-item {
    padding: 10px;
    /* Space between carousel items */
}

.testimonials-grid .item {
    /* This div will wrap each testimonial-card in the carousel */
    display: flex;
    /* To center content if needed */
    justify-content: center;
}

.testimonials-grid .item {
    display: flex;
    /* Ensure flexbox for height consistency */
    justify-content: center;
    align-items: stretch;
    /* Make all items in a row the same height */
}

.testimonials-grid .testimonial-card {
    width: 100%;
    /* Ensure card takes full width of item */
    margin: auto;
    /* Center card in item */
    height: 100%;
    /* Ensure card fills the height of its parent item */
    display: flex;
    /* Use flexbox for internal layout */
    flex-direction: column;
    justify-content: space-between;
    /* Distribute content vertically */
}

.testimonial-card {
    background: rgba(27, 73, 101, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(98, 182, 203, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0A2342;
    font-weight: 700;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--cyan);
    font-size: 0.9rem;
}

/* CTA Section Modern */
.cta-section {
    background: var(--gradient-2);
    text-align: center;
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Modern */
footer {
    background: #060816;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--accent-blue);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--cyan);
    color: #0A2342;
    transform: translateY(-5px);
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--cyan);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(98, 182, 203, 0.1);
    color: var(--accent-blue);
}

/* Floating Action Button */
.fab-button {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-3);
    border: none;
    color: #0A2342;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
    animation: none;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Popup Styles */
.contact-popup-overlay {
    position: fixed;
    bottom: 100px;
    /* Position above the FAB button (FAB height + some margin) */
    right: 30px;
    /* Align with the FAB button */
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    /* Initially slightly below its final position */
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    background: transparent;
    /* No overlay background */
    display: block;
    /* Allow width/height properties */
    pointer-events: none;
    /* Do not block clicks when hidden */
}

.contact-popup-overlay.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    /* Move to final position */
    pointer-events: auto;
    /* Allow clicks when visible */
}

.contact-popup {
    background: var(--primary-blue);
    border-radius: 15px;
    padding: 1.5rem;
    /* Smaller padding */
    width: 280px;
    /* Fixed smaller width */
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    position: relative;
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(98, 182, 203, 0.2);
}

.contact-popup-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan);
}

.contact-popup-header .close-popup {
    color: var(--accent-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-popup-header .close-popup:hover {
    color: #fff;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #fff;
    padding: 1rem 1.5rem;
    background: rgba(27, 73, 101, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(98, 182, 203, 0.2);
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    background: var(--secondary-blue);
    transform: translateX(5px);
    border-color: var(--cyan);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--cyan);
}

.contact-info p {
    margin: 0;
    line-height: 1.4;
}

.contact-info .small-font {
    font-size: 0.9rem;
    color: var(--accent-blue);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger.active {
    margin-right: 80px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-right: 40px;
    }

    /* 1. Hide CTA on Mobile */
    .nav-cta {
        display: none !important;
    }

    /* 2. Fullscreen Glossy Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen */
        height: 100vh;
        width: 100%;
        /* Full Width */
        background: rgba(10, 14, 39, 0.98);
        /* Deep dark blue */
        backdrop-filter: blur(25px);
        /* Heavy Blur */
        flex-direction: column;
        justify-content: center;
        /* Center items vertically */
        align-items: center;
        /* Center items horizontally */
        padding: 2rem;
        gap: 3rem;
        /* Spacing between links */
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        /* Below hamburger (1001) */
    }

    .nav-links.active {
        right: 0;
        padding-top: 90px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Animation for Links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        display: block;
        font-size: 2rem;
        /* Large text */
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        color: #fff;
        position: relative;
    }

    .nav-links a:hover {
        color: var(--cyan);
    }

    /* Hide the slide-in underline on mobile, just use color shift */
    .nav-links a::before {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 60px;
    }

    .hero-bg img {
        top: 50%;
        width: 80%;
        opacity: 0.1;
    }

    .hero-content {
        padding: 0 0.5rem;
        gap: 3rem;
    }

    /* ... existing content ... */
    .product-card {
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.5rem;
        justify-content: flex-start;
    }

    .product-info .product-tag {
        margin-top: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Sections Mobile */
    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Products Grid Mobile */
    .products-grid {
        padding: 0 1rem;
    }

    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.5rem;
    }

    /* Stats Grid Mobile */
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Contact Popup Mobile */
    .contact-popup-overlay {
        right: 50%;
        transform: translateX(50%) translateY(20px);
        bottom: 100px;
    }

    .contact-popup-overlay.show {
        transform: translateX(50%) translateY(0);
    }

    .contact-popup {
        width: 90vw;
        max-width: 320px;
    }

    /* FAB Button Mobile */
    .fab-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .product-card,
    .testimonial-card {
        border-radius: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Popup Styles */
.contact-popup-overlay {
    position: fixed;
    bottom: 160px;
    /* Position above the FAB button (FAB at 90px + 60px height + margin) */
    right: 30px;
    /* Align with the FAB button */
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    /* Initially slightly below its final position */
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    background: transparent;
    /* No overlay background */
    display: block;
    /* Allow width/height properties */
    pointer-events: none;
    /* Do not block clicks when hidden */
}

.contact-popup-overlay.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    /* Move to final position */
    pointer-events: auto;
    /* Allow clicks when visible */
}

.contact-popup {
    background: var(--primary-blue);
    border-radius: 15px;
    padding: 1.5rem;
    /* Smaller padding */
    width: 280px;
    /* Fixed smaller width */
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    position: relative;
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(98, 182, 203, 0.2);
}

.contact-popup-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan);
}

.contact-popup-header .close-popup {
    color: var(--accent-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-popup-header .close-popup:hover {
    color: #fff;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #fff;
    padding: 1rem 0.5rem;
    background: rgba(27, 73, 101, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(98, 182, 203, 0.2);
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    background: var(--secondary-blue);
    transform: translateX(5px);
    border-color: var(--cyan);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--cyan);
}

.contact-info p {
    margin: 0;
    line-height: 1.4;
}

.contact-info .small-font {
    font-size: 0.9rem;
    color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    background: var(--gradient-1);
}

.about-section {
    padding: 6rem 3rem;
    position: relative;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--accent-blue);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: rgba(27, 73, 101, 0.3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--cyan);
    border: 1px solid rgba(98, 182, 203, 0.2);
}

/* Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(27, 73, 101, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.mission-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--accent-blue);
    line-height: 1.6;
}

/* Features Grid (Why Choose Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--accent-blue);
    line-height: 1.6;
}

/* Certificates Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.certificate-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.certificate-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 217, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay i {
    font-size: 2rem;
    color: #fff;
}

@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: 50vh;
    }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(98, 182, 203, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    min-width: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lang-dropdown a {
    padding: 0.5rem 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.lang-dropdown a:hover {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Certified Section */
.footer-section.certified-section {
    grid-column: auto;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.certified-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.certified-logos img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
    padding: 0;
    transition: transform 0.3s ease;
    margin: 0 auto;
}


.certified-logos img:hover {
    transform: scale(1.1);
}

/* Owl Carousel Navigation Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.owl-nav button:hover {
    background: var(--cyan) !important;
    color: #0A2342 !important;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}


/* Created By Section in Footer */

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
}

/* Created By Section in Footer */
.created-by-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
    /* Reset margin since it's in flex container */
}

.created-by-logo {
    width: 60px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.created-by-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

.created-by-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}