/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0B0F19; /* Deep slate blue/black */
    color: #F3F4F6;
    line-height: 1.6;
}

/* Header Navigation */
header {
    background-color: #0B0F19;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1001;
}

.logo span {
    color: #3B82F6;
}

/* Hidden Toggle Control elements on Desktop */
.menu-toggle,
.hamburger-label {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3B82F6;
}

/* Sections Setup */
section {
    padding: 100px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

/* Two-Column Flex/Grid Layouts */
.flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.flex-text {
    flex: 1;
}

.flex-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.flex-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.flex-image img:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 50px rgba(59, 130, 246, 0.2);
}

/* Hero Section Specifics */
.hero {
    padding: 200px 20px 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.hero h1 span {
    background: linear-gradient(to right, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3B82F6;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2563EB;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #FFFFFF;
    text-align: center;
}

.section-title span {
    color: #3B82F6;
}

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

.card {
    background-color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.card p {
    color: #9CA3AF;
    font-size: 15px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.contact-info p {
    color: #9CA3AF;
    margin-bottom: 30px;
}

.info-details {
    margin-top: 20px;
}

.info-item {
    margin-bottom: 20px;
    color: #F3F4F6;
}

.info-item strong {
    color: #3B82F6;
}

.info-item a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #3B82F6;
}

.contact-form {
    background-color: #111827;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #9CA3AF;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #1F2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 15px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
}

/* WhatsApp Floating Action Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background-color: #20BA5A;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    background-color: #0B0F19;
}

/* Responsive Styles (Covers Mobile Layout & Fixes) */
@media (max-width: 768px) {
    /* Mobile Header Layout */
    .hamburger-label {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-label span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #FFFFFF;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Collapsible Navigation Menu Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background-color: #111827;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px 30px;
        gap: 25px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links a {
        font-size: 18px;
        display: block;
    }

    /* Checkbox triggers opening/closing the drawer */
    .menu-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }

    /* Hamburger Animation to X */
    .menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Section adjustments for smaller devices */
    section {
        padding: 80px 20px 50px 20px;
        scroll-margin-top: 70px;
    }

    .flex-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* Fix mobile container widths to prevent image clipping */
    .flex-text, .flex-image {
        width: 100%;
    }

    .flex-image img {
        max-width: 100%;
        height: auto;
    }

    /* Reduced Font Scaling to prevent words from clipping */
    .hero {
        padding: 140px 20px 80px 20px;
    }

    .hero h1 {
        font-size: 28px !important;
        line-height: 1.35;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

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

    .card {
        padding: 30px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }

  }
  

