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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #000000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 121, 188, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
}

.logo span {
    color: #333;
}

header img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

header nav {
    margin-left: auto;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

header nav a:hover {
    color: #0079bc;
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.3);
}

.get-in-touch {
    background-color: transparent;
    color: #fff;
    padding: 10px 25px;
    border: 3px solid #0079bc;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 18px rgba(0, 121, 188, 0.3), inset 0 0 15px rgba(0, 121, 188, 0.15);
    margin-left: 30px;
}

.get-in-touch:hover {
    background-color: #0079bc;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 121, 188, 0.45), inset 0 0 20px rgba(0, 121, 188, 0.2);
    animation: buttonGlow 1.5s infinite alternate;
}

.mobile-menu-btn {
    display: none;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 25px rgba(0, 121, 188, 0.45), inset 0 0 20px rgba(0, 121, 188, 0.2);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 50px rgba(0, 121, 188, 0.8), inset 0 0 30px rgba(0, 121, 188, 0.4);
        transform: scale(1.15);
    }
}

/* Scrolling Text */
.scrolling-text {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    padding: 0;
    margin-top: 0;
    z-index: 1;
    opacity: 0.6;
    filter: blur(3px);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.scrolling-text span {
    display: inline-block;
    font-size: 30rem;
    font-weight: 800;
    letter-spacing: 20px;
    animation: scroll-left 30s linear infinite;
}

.scrolling-text span .outline {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}

.scrolling-text span .solid {
    color: #0079bc;
    text-shadow: 0 0 30px rgba(0, 121, 188, 0.6);
}

.scrolling-text span .outline-blue {
    color: transparent;
    -webkit-text-stroke: 1px #0079bc;
    filter: drop-shadow(0 0 15px rgba(0, 121, 188, 0.5));
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%);
    }
}



/* Hero Section */
.hero {
    position: relative;
    padding: 230px 8% 100px;
    background: #000000;
    background-size: 50px 50px;
    text-align: center;
}


.label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #0079bc;
    font-weight: 600;
}

.label::before {
    content: '→';
    margin-right: 8px;
    color: #0079bc;
}

.hero h1 {
    position: relative;
    z-index: 10;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-logo {
    position: relative;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    height: 300px;
    max-width: 90%;
    margin-bottom: 40px;
    object-fit: contain;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

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

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

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

.hero h1 .highlight {
    color: #0079bc;
    display: inline;
    position: relative;
    text-shadow: 0 0 12px rgba(0, 121, 188, 0.35), 0 0 25px rgba(0, 121, 188, 0.15);
}

.hero h1 .typewriter::after {
    content: '|';
    position: absolute;
    right: -5px;
    animation: blink 0.7s infinite;
    color: #0079bc;
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.4);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto 0px;
    padding-left: 20px;
    border-left: 4px solid #0079bc;
    text-align: left;
    color: #fff;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.6s forwards;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0079bc;
    margin-bottom: 5px;
}

.stat-item p {
    color: #fff;
    font-size: 0.95rem;
}


/* Why Choose Us Section */
.why-choose {
    padding: 100px 8% 100px;
    background-color: #050810;
    position: relative;
    text-align: center;
}

.section-label {
    font-size: 0.85rem;
    color: #0079bc;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    text-shadow: 0 0 10px rgba(0, 121, 188, 0.5);
}

.why-choose {
    padding: 100px 8%;
    background-color: #000000;
    position: relative;
}

.why-choose .section-label {
    position: sticky;
    top: 100px;
    z-index: 20;
    margin-bottom: 20px;
    display: inline-block;
    mix-blend-mode: difference;
}

.why-choose h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 60px;
    position: sticky;
    top: 140px;
    z-index: 19;
    background: #000000;
    padding: 10px 0 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.why-choose h2::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    height: 140px;
    background: #000000;
    z-index: -1;
}

.features-stack {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.feature-card {
    position: sticky;
    top: 280px;
    background: #000000;
    border: none;
    border-top: 1px solid #1a2332;
    border-radius: 0;
    padding: 50px 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    border-top-color: #0079bc;
    background: #050810;
    transform: none;
    box-shadow: none;
}

.feature-card-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 121, 188, 0.1);
    color: #0079bc;
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.feature-content p {
    color: #ccc;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: left;
}

.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.about-btn:hover {
    border-color: #0079bc;
    color: #0079bc;
    background-color: rgba(0, 121, 188, 0.1);
    box-shadow: 0 0 15px rgba(0, 121, 188, 0.25);
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.3);
}

/* Services Section */


.services {
    padding: 100px 8%;
    background-color: #000000;
    text-align: center;
}

.services .scrolling-title {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.services .scrolling-title h2 {
    display: inline-block;
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 10px;
}

.services .scrolling-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px #1a2332;
}

.services .scrolling-title .solid {
    color: #fff;
}

.services .scrolling-title .outline-blue {
    color: transparent;
    -webkit-text-stroke: 2px #0079bc;
    filter: drop-shadow(0 0 10px rgba(0, 121, 188, 0.3));
}

.services h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.coming-soon-title {
    font-size: 2rem !important;
    margin-top: 120px;
    margin-bottom: 40px !important;
    color: #ffffff !important;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.services-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 60px;
}

.services-btn:hover {
    border-color: #0079bc;
    color: #0079bc;
    background-color: rgba(0, 121, 188, 0.1);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    

    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    padding: 25px;
    background: linear-gradient(to top right, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    border: 1px solid #0a1019;
    border-radius: 10px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);

    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    
    transition: all 0.3s ease-out;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 121, 188, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, rgba(0, 121, 188, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.service-card:nth-child(1) {
    animation-delay: 0.5s;
}

.service-card:nth-child(2) {
    animation-delay: 0.6s;
}

.service-card:nth-child(3) {
    animation-delay: 0.7s;
}

.service-card:nth-child(4) {
    animation-delay: 0.8s;
}

.service-card:nth-child(5) {
    animation-delay: 0.9s;
}

.service-card:nth-child(6) {
    animation-delay: 1.0s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 121, 188, 0.2);
    transform: scale(1.10) translateY(-10px);
    border-color: rgba(255,255,255,0.3);
    background: linear-gradient(to top right, rgba(255,255,255,0.1), rgba(0,0,0,0.4));
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #ccc;
    line-height: 1.7;
}

.experience-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 80px;
}

.experience-stat {
    text-align: center;
}

.experience-stat h3 {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #0079bc;
    margin-bottom: 10px;
}

.experience-stat p {
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 48px 1%;
    background-image: 
        linear-gradient(rgba(26, 35, 50, 0.55) 1px, transparent 2px),
        linear-gradient(90deg, rgba(26, 35, 50, 0.55) 1px, transparent 2px);
    background-size: 50px 50px;
    text-align: center;
    position: relative;
    animation: gridWave 20s ease-in-out infinite;
}

@keyframes gridWave {
    0% { background-position: 0 0; }
    50% { background-position: 25px 25px; }
    100% { background-position: 0 0; }
}

#stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact .section-label, 
.contact h2, 
.contact .chat-bubble {
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.chat-bubble {
    width: 400px;
    height: 400px;
    border: 6px solid #0079bc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 150px;
    margin-top: 150px;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    box-shadow: 0 0 36px rgba(0, 121, 188, 0.3), inset 0 0 30px rgba(0, 121, 188, 0.15);
    transition: all 0.4s ease-in-out;
}

.chat-bubble:hover {
    background-color: #0079bc;
    color: white;
    transform: scale(1.35);
    box-shadow: 0 0 80px rgba(0, 121, 188, 0.8), 0 0 120px rgba(0, 121, 188, 0.5), inset 0 0 50px rgba(0, 121, 188, 0.3);
}

.chat-bubble span {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
}

.chat-bubble:hover span {
    color: #000;
}

/* Footer */
footer {
    background-color: #050810;
    padding: 60px 8% 30px;
}

.footer-content {
    
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    height: 100px;
    object-fit: contain;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;

    color: #a4c639;
    margin-bottom: 40px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.footer-logo span {
    color: #333;
}

.social-links a {
    color: #ccc;
    margin-right: 30px;
    text-decoration: none;
    font-size: 0.9rem;
}

.quick-links h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #0a1019;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-policies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a {
    color: #0079bc;
    text-decoration: none;
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.3);
    transition: all 0.3s ease;
}

.footer-policies a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 121, 188, 0.5);
}

.footer-policies span {
    color: #0a1019;
    font-size: 0.85rem;
}

.footer-badge {
    width: 120px;
    margin-bottom: 20px;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #0079bc;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #050810;
    border-top: 1px solid #0079bc;
    padding: 15px 5%;
    z-index: 9999;
    display: none; /* Hidden by default */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #0079bc;
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    background-color: #005a8c;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #333;
}

.cookie-btn.decline:hover {
    border-color: #666;
    color: white;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 25px 6%;
        border-top: 1px solid rgba(0, 121, 188, 0.3);
        background-color: rgba(5, 8, 16, 0.95);
        backdrop-filter: blur(10px);
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-content p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #e0e0e0;
    }

    .cookie-buttons {
        width: 100%;
        gap: 15px;
    }

    .cookie-btn {
        flex: 1;
        padding: 14px 0;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Custom Notification Toasts */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    min-width: 350px;
    background: #000000;
    border: 1px solid #1a2332;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.5s ease-out forwards;
    border-left: 5px solid;
}

.toast.hiding {
    animation: slideOutRight 0.5s ease-in forwards;
}

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

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

.toast-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.toast-message {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Toast Variants */
.toast-success { border-left-color: #00cc88; }
.toast-success .toast-icon { background: #00cc88; }

.toast-error { border-left-color: #ff4444; }
.toast-error .toast-icon { background: #ff4444; }

.toast-warning { border-left-color: #ffcc00; }
.toast-warning .toast-icon { background: #ffcc00; }
.toast-warning .toast-title { color: #ffcc00; }

.toast-info { border-left-color: #4488ff; }
.toast-info .toast-icon { background: #4488ff; }

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    header img {
        height: 35px !important;
    }
    
    .get-in-touch {
        display: none;
    }
    
    .mobile-menu-btn {
        display: inline-block;
        background-color: transparent;
        color: #fff;
        padding: 10px 25px;
        border: 3px solid #0079bc;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        margin-top: 10px;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #050810;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 80px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid #0a1019;
        align-items: flex-start;
    }
    
    header nav.active {
        right: 0;
    }
    
    header nav a {
        margin: 0;
        font-size: 1.1rem;
    }
    
    header.scrolled {
        padding: 15px 5%;
    }
    
    .get-in-touch {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .scrolling-text span {
        font-size: 3rem;
        letter-spacing: 10px;
    }
    
    .hero {
        padding: 270px 5% 60px;
    }
    
    .hero-logo {
        height: 150px !important;
        margin-bottom: 30px;
    }
    
    
    .hero h1 {
        margin-top: 20px;
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding-left: 15px;
        margin-bottom: 30px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .why-choose, .services, .portfolio, .contact {
        padding: 60px 5%;
    }
    
    .why-choose {
        padding: 100px 5% 60px;
    }

    .why-choose .section-label {
        top: 70px;
    }
    
    .why-choose h2 {
        font-size: 1.8rem;
        margin-bottom: 60px;
        top: 100px;
    }
    
    .feature-card {
        top: 180px;
        margin-bottom: 30px;
    }
    
    .feature-card-inner {
        padding: 30px 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }

    
    .why-choose h2, .portfolio h2, .contact h2, .services h3 {
        font-size: 1.8rem;
    }
    
    .services .scrolling-title h2 {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .experience-stat h3 {
        font-size: 3rem;
    }
    
    footer {
        padding: 40px 5% 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
        display: block;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .social-links a {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    header img {
        height: 30px !important;
    }
    
    .get-in-touch {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    header nav {
        width: 200px;
        padding: 80px 20px;
    }
    
    header nav a {
        font-size: 1rem;
    }
    
    .hero-logo {
        height: 120px !important;
    }
    
    .scrolling-text span {
        font-size: 12rem;
        letter-spacing: 5px;
    }
    
    .scrolling-text {
        padding: 0;
        top: 220px;
        text-align: left;
    }
    
    .scrolling-text span .outline {
        -webkit-text-stroke: 3px #2c3b54;
    }
    
    .scrolling-text span .outline-blue {
        -webkit-text-stroke: 3px #0079bc;
    }
    
    .circular-image {
        width: 200px;
        height: 200px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .services .scrolling-title h2 {
        font-size: 2rem;
    }
    
    .chat-bubble {
        width: 220px;
        height: 220px;
        margin-bottom: 200px;
    }
    
    .chat-bubble span {
        font-size: 1rem;
    }
}

/* Policy Pages */
.policy-page {
    padding: 150px 8% 80px;
    min-height: 100vh;
    animation: fadeInUp 0.6s ease;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(5, 8, 16, 0.5);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #0a1019;
}

.policy-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0079bc;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 121, 188, 0.3);
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0079bc;
    margin-top: 25px;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.2);
}

.policy-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.policy-container ul,
.policy-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.policy-container a {
    color: #0079bc;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(0, 121, 188, 0.3);
    transition: all 0.3s ease;
}

.policy-container a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 121, 188, 0.5);
}

@media (max-width: 768px) {
    .policy-page {
        padding: 100px 5% 60px;
    }
    
    .policy-container {
        padding: 40px 30px;
    }
    
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .policy-container h2 {
        font-size: 1.4rem;
    }
    
    .policy-container h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-container h1 {
        font-size: 1.6rem;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 200px 5% 60px;
    text-align: center;
}
.blog-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;

    background: linear-gradient(to top right, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    border: 1px solid #0a1019;
    border-radius: 10px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);

    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    
    transition: all 0.3s ease-out;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 121, 188, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 121, 188, 0.3);
    box-shadow: 0 15px 30px rgba(0, 121, 188, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-color: #1a1a1a;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.blog-date {
    font-size: 0.85rem;
    color: #0079bc;
    margin-bottom: 10px;
}
.blog-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}
.blog-excerpt {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.read-more {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}
.read-more:hover {
    gap: 10px;
    color: #0079bc;
}

/* Article Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 200px 5% 100px;
}
.article-header {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}
.article-date {
    color: #0079bc;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}
.article-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}
.article-content {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
}
.article-content h2 {
    color: #fff;
    font-size: 2rem;
    margin: 40px 0 20px;
}
.article-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}
.article-content p {
    margin-bottom: 20px;
}
.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.article-content li {
    margin-bottom: 10px;
}
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.back-link:hover {
    color: #0079bc;
}

/* Black Friday Promo Card */
.promo-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #0079bc;
    border-radius: 15px;
    padding: 20px;
    z-index: 9999;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 20px rgba(0, 121, 188, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 220px;
    animation: slideIn 1s ease-out;
}

.promo-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 121, 188, 0.6);
}

.promo-header {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0079bc;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 0 15px rgba(0, 121, 188, 0.6);
}

.promo-sub {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.promo-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0, 121, 188, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 121, 188, 0.5);
}

@media (max-width: 768px) {
    .promo-card {
        bottom: 15px;
        left: 15px;
        width: 140px;
        padding: 10px;
        border-radius: 10px;
    }
    
    .promo-header {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .promo-discount {
        font-size: 1.6rem;
        margin: 5px 0;
    }

    .promo-sub {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .promo-timer {
        font-size: 0.7rem;
        padding: 3px 5px;
        margin-top: 5px;
    }
}

/* Lenis Smooth Scroll */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

