/* Global Reset & Variables */
:root {
    --primary-color: #0f172a;
    /* Dark Blue */
    --secondary-color: #0ea5e9;
    /* Sky Blue */
    --accent-color: #f97316;
    /* Orange */
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --hero-overlay: rgba(15, 23, 42, 0.7);
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.highlight {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--primary-color);
    /* Changed to dark for white logo */
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    /* Increased from 50px */
    width: auto;
    display: block;
    transition: var(--transition);
}

.footer-logo-img {
    height: 100px;
    /* Increased from 60px */
    margin: 0 auto 20px;
}

.footer-logo-img {
    height: 60px;
    margin: 0 auto 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    /* Changed to white for dark header */
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links .btn-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
}

.nav-links .btn-nav:hover {
    background-color: var(--secondary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    /* Changed to white */
}

/* Hero Section with Parallax */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    /* Generic desk/tech image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    height: 300px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.about-image .image-placeholder {
    font-size: 5rem;
    color: var(--secondary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-top: 5px solid var(--secondary-color);
}

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

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-slogan {
    font-style: italic;
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price-single {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-single span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8;
}

.feature-list,
.price-box ul {
    text-align: left;
    margin-top: 20px;
}

.feature-list li,
.price-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.feature-list li i,
.price-box ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.ideal-for {
    background-color: #ffedd5;
    color: var(--accent-color);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Special Pricing Card */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.price-box {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.price-box.pro {
    background-color: #f0f9ff;
    border-color: var(--secondary-color);
}

.price-box .badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-box h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.price-box .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.note {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 15px;
}

/* Parallax Divider */
.parallax-divider {
    background-image: url('images/29672.jpg');
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.parallax-divider .content {
    position: relative;
    z-index: 1;
    color: white;
}

.parallax-divider h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-info {
    text-align: center;
    max-width: 600px;
}

.whatsapp-btn-large {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-large:hover {
    transform: scale(1.05);
    background-color: #20BA56;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-logo h2 {
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 0;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    z-index: 10;
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-price {
    margin: 15px 0;
}

.popup-price .old-price {
    text-decoration: line-through;
    color: #94a3b8;
    margin-right: 10px;
}

.popup-price .new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.popup-body ul {
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.popup-body .btn-primary {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        /* Position exactly below the header */
        background-color: var(--primary-color);
        /* Dark background for mobile menu */
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        text-align: center;
        /* Center links on mobile */
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 15px 0;
        /* Add spacing between links */
    }

    .hamburger {
        display: block;
        color: #ffffff !important;
        /* Force white color */
        font-size: 2rem;
        /* Make icon slightly larger */
    }

    .hamburger i {
        color: #ffffff !important;
        /* Ensure icon inherits white */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 200px;
    }

    /* Disable parallax fixed effect on mobile for better performance and scaling */
    .parallax {
        background-attachment: scroll;
        background-position: center;
    }
}