/* --- Global Variables & Reset --- */
:root {
  --navy: #0a192f;
  --teal-glow: #64ffda;
  --text-white: #e6f1ff;
  --blue: #134aa8;
  --glass-navy: rgba(10, 25, 47, 0.95); 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--text-white);
  line-height: 1.6;
}

/* --- Layout Structure --- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content { flex: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* --- Header & Navigation --- */
.navbar {
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 5%;
  /* Teal shadow under header */
  box-shadow: 0 4px 20px rgba(100, 255, 218, 0.25);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 20px; /* Space between logo and text */
}

.logo-img {
    width: 65px; 
    height: 65px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--teal-glow);
    /* Amplified Glow */
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.5), 
                inset 0 0 10px rgba(100, 255, 218, 0.2);
    transition: box-shadow 0.4s ease;
}

.logo:hover .logo-img {
    /* stationary but pulsing glow */
    box-shadow: 0 0 40px rgba(100, 255, 218, 0.8);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers tagline under name */
    line-height: 1;
}

.brand-name {
    font-family: 'Inter', sans-serif; /* Modern Tech Font */
    font-size: 2.2rem; /* Noticeably bigger */
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px; /* Tighter spacing for a modern look */
}

.brand-tagline {
    font-family: 'JetBrains Mono', monospace; /* The "Data/Coding" Font */
    font-size: 0.9rem; /* Slightly larger for legibility */
    color: var(--teal-glow);
    font-weight: 500;
    letter-spacing: 4px; /* Wide spacing for that high-tech feel */
    text-transform: uppercase;
    margin-top: 5px;
}

/* Nav Buttons - Pill Shape & Transitions */
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  background-color: var(--blue);
  color: var(--text-white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px; /* Pill Shape */
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav-btn:hover {
  background-color: var(--teal-glow);
  color: var(--navy);
  box-shadow: 0 0 15px var(--teal-glow);
  transform: translateY(-2px);
}

.nav-btn i { margin-right: 6px; }

/* --- Hero Section --- */
.hero {
  padding: 100px 5%;
  text-align: center;
}

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.hero h1 span { color: var(--teal-glow); display: block; }
.hero p { max-width: 700px; margin: 0 auto 40px; color: #a8b2d1; font-size: 1.1rem; }

/* CTA & Generic Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s all;
}

.cta-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-primary { background: var(--teal-glow); color: var(--navy); box-shadow: 0 0 15px rgba(100, 255, 218, 0.3); }
.btn-primary:hover { background: white; transform: scale(1.05); }

.btn-secondary { border: 2px solid var(--blue); color: var(--text-white); }
.btn-secondary:hover { background: var(--blue); }

.btn-outline { border: 1px solid var(--blue); color: var(--text-white); font-size: 0.9rem; padding: 8px 20px; }
.btn-outline:hover { background: var(--teal-glow); color: var(--navy); border-color: var(--teal-glow); }

/* --- Content Sections --- */
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.section-title span { color: var(--teal-glow); }

.why-choose { padding: 80px 5%; background: rgba(0,0,0,0.1); }
.why-content { max-width: 800px; margin: 0 auto; text-align: center; }

.services { padding: 80px 5%; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.service-card {
  background: rgba(255,255,255,0.02);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--teal-glow);
  background: rgba(100, 255, 218, 0.05);
}

.service-icon { font-size: 2.5rem; color: var(--teal-glow); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.service-card p { color: #8892b0; margin-bottom: 25px; flex-grow: 1; }

/* --- Footer --- */
.site-footer {
    background-color: var(--navy);
    min-height: 80px; 
    display: flex;
    align-items: center;
    border-top: 1.5px solid var(--teal-glow);
    box-shadow: 0 -10px 25px rgba(100, 255, 218, 0.15);
    padding: 0 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.social-media a {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: var(--teal-glow);
    text-shadow: 0 0 10px var(--teal-glow);
    transform: translateY(-3px);
}

/* --- Footer Privacy Link --- */
.footer-left .privacy-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
    margin-left: 15px;
    transition: var(--transition);
}

.footer-left .privacy-link:hover {
    color: var(--teal-glow);
    text-decoration: none;
    text-shadow: 0 0 12px var(--teal-glow);
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 5%;
    right: 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-navy);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.banner-content {
    padding: 15px 35px;
    display: flex;
    align-items: center; /* Vertical alignment fix */
    justify-content: space-between;
    gap: 30px;
}

.cookie-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--teal-glow);
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.4));
}

.cookie-text {
    flex: 1;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Privacy Policy Link Customization --- */
.privacy-link {
    color: var(--blue) !important; /* Brand Blue initial state */
    text-decoration: none !important; /* No underline ever */
    font-weight: 700;
    transition: var(--transition);
}

.privacy-link:hover {
    color: var(--teal-glow) !important; /* Glowing Teal on hover */
    text-shadow: 0 0 12px var(--teal-glow);
    text-decoration: none !important; /* Force remove underline on hover */
}

#accept-cookies {
    background: var(--teal-glow);
    color: var(--navy);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap; /* Prevents the button text from wrapping */
    transition: var(--transition);
}

#accept-cookies:hover {
    box-shadow: 0 0 25px var(--teal-glow);
    transform: scale(1.05);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    .site-footer {
        height: auto;
        padding: 20px 5%;
    }
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Mobile Menu --- */
.nav-toggle { display: none; }
.menu-icon { display: none; font-size: 1.8rem; color: var(--teal-glow); cursor: pointer; }

/*Service Form*/
.contact-section { padding: 100px 5%; background: var(--navy); }
.contact-subtitle { text-align: center; color: #a8b2d1; margin-bottom: 40px; }

.enquiry-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-row .form-group {
    flex: 1; /* Ensures both inputs stay equal length */
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    height: 55px; /* Consistent height for all inputs */
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    color: var(--text-white) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group textarea {
    height: auto;
    padding: 15px 25px;
}

/* Fix for the Dropdown "White on White" */
#service-dropdown option {
    background-color: #0a192f; 
    color: var(--text-white);
}

#service-dropdown:focus {
    background-color: #0d213e; /* Slightly lighter navy when active */
    color: var(--teal-glow);
}

::placeholder {
    color: rgba(230, 241, 255, 0.5); /* Faded version of your white text */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-weight: 700;
    margin-top: 10px;
}

/* Specific styling for the dropdown to match inputs */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364ffda' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--teal-glow);
    background: rgba(100, 255, 218, 0.05);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
}

.submit-btn {
    width: 100%; /* Same length as inputs */
    padding: 18px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}

@media (max-width: 1100px) {
  .menu-icon { display: block; z-index: 1001; }
  .menu-icon .close { display: none; }
  .nav-toggle:checked + .menu-icon .hamburger { display: none; }
  .nav-toggle:checked + .menu-icon .close { display: block; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--glass-navy);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    transform: translateY(-100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .nav-btn { width: 280px; text-align: center; font-size: 1.1rem; }
  
  .footer-content { flex-direction: column; text-align: center; }
  .privacy-link { display: block; margin: 15px 0 0 0; }
}



/* --- WhatsApp Floating Button Styling --- */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25D366; /* Official WhatsApp Green */
        color: #FFF;
        border-radius: 18px; /* Rounded square "App Icon" shape */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 35px;
        z-index: 2000;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        text-decoration: none;
        /* Smooth transition for hover effects only */
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                    background-color 0.3s ease, 
                    box-shadow 0.3s ease;
    }

    /* Hover State with Glow */
    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
        color: #FFF;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 55px;
            height: 55px;
            font-size: 30px;
            bottom: 20px;
            right: 20px;
            border-radius: 14px;
        }
    }