:root {
    --primary-color: #0056b3;
    /* Deep Blue */
    --secondary-color: #00d2ff;
    /* Cyan/Bright Blue */
    --accent-color: #00ff88;
    /* Tech Green for highlights */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --gradient: linear-gradient(135deg, #004e92 0%, #000428 100%);
    /* Deep tech gradient */
    --card-gradient: linear-gradient(145deg, #ffffff, #f0f0f0);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #f0f2f5;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 140px;
    /* Increased height significantly */
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 150px;
    /* Huge logo as requested */
    transition: var(--transition);
}

.btn-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.5);
    background: #004494;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header.btn-ghost {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-header.btn-ghost:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

/* Animated Background (Squares) */
.hero-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
}

/* Digital Network Effect (Upgraded Squares) */
.hero-circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
    animation: animate-nodes 15s linear infinite;
    bottom: -100px;
    border-radius: 50%;
}

@keyframes animate-nodes {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-1000px) scale(0.5);
        opacity: 0;
    }
}

.hero-circles li:nth-child(1) {
    left: 25%;
    animation-delay: 0s;
}

.hero-circles li:nth-child(2) {
    left: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.hero-circles li:nth-child(3) {
    left: 70%;
    animation-delay: 4s;
}

.hero-circles li:nth-child(4) {
    left: 40%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.hero-circles li:nth-child(5) {
    left: 65%;
    animation-delay: 0s;
}

.hero-circles li:nth-child(6) {
    left: 75%;
    animation-delay: 3s;
}

.hero-circles li:nth-child(7) {
    left: 35%;
    animation-delay: 7s;
}

.hero-circles li:nth-child(8) {
    left: 50%;
    animation-delay: 15s;
    animation-duration: 25s;
}

.hero-circles li:nth-child(9) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 35s;
}

.hero-circles li:nth-child(10) {
    left: 85%;
    animation-delay: 0s;
    animation-duration: 11s;
}

/* Full-Page Animated Background */
body {
    background: #f0f2f5;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.05) 0%, transparent 40%);
    z-index: -2;
    animation: bg-shift 20s infinite alternate ease-in-out;
}

@keyframes bg-shift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-2%, -2%) scale(1.1);
    }
}

/* Rocket Mascot Animation (Updated for Parallax) */
.rocket-container {
    position: absolute;
    right: -2%;
    top: 20%;
    width: 450px;
    z-index: 5;
    display: none;
    pointer-events: none;
    transition: transform 0.2s ease-out;
    /* Smooth parallax */
    mix-blend-mode: lighten;
    /* More effective at removing dark-blue backgrounds */
}

.rocket-container img {
    width: 100%;
    filter: contrast(1.4) brightness(1.1) saturate(1.2);
    /* Forcing background to black and hero to pop */
}

@media (min-width: 1100px) {
    .rocket-container {
        display: block;
    }
}

/* Creative Section Reveal */
[data-aos] {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Advanced Buttons */
.btn-main {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}

.btn-main:hover::after {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--secondary-color) 0%, #00a8cc 100%);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.6);
    filter: brightness(1.1);
}

.btn-main i {
    font-size: 1.5rem;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-shape svg path {
    fill: #f0f2f5;
    /* Matches body bg */
}

/* Typing Cursor */
.cursor {
    display: inline-block;
    width: 4px;
    background-color: var(--secondary-color);
    animation: blink 1s infinite;
    margin-left: 5px;
    vertical-align: middle;
    height: 1em;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}



/* Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f0f2f5;
}

.section-header {
    margin-bottom: 70px;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    color: #555;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    /* Neumorphism soft shadow */
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Split Lifestyle Sections */
.split-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.split-section.alt-bg {
    background: linear-gradient(180deg, #f0f2f5 0%, #ffffff 100%);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse .split-container {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.split-image:hover img {
    transform: scale(1.02);
}

/* Decorative Blobs */
.blob-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blob-pulse 5s infinite ease-in-out;
}

@keyframes blob-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.check-list li i {
    color: var(--accent-color);
    background: var(--dark-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.client-details h4 {
    color: var(--white);
    font-size: 1.1rem;
}

.client-details span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-body p {
    padding-bottom: 20px;
    color: #666;
}

/* Address/Location Section */
.location-section {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.location-box {
    background: var(--gradient);
    color: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 78, 146, 0.4);
    position: relative;
    overflow: hidden;
}

.location-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.address-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: url('../img/pattern-bg.png') repeat, #f8f9fa;
    /* Assuming no image, fallback to color */
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: var(--dark-color);
    color: var(--white);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    padding: 80px 0 30px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    /* Make logo white */
    opacity: 0.8;
}

.footer-content p {
    margin-bottom: 25px;
    font-size: 1rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
    font-size: 1.4rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-section.reverse .split-container {
        flex-direction: column;
    }

    .split-image,
    .split-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        height: 90px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-header {
        padding: 10px;
        gap: 0;
    }

    .btn-header span {
        display: none;
    }

    .btn-header i {
        font-size: 1.2rem;
    }

    .logo img {
        height: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .location-box {
        padding: 40px 20px;
    }

    .address-text {
        font-size: 1.2rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }
}