/* Project: Branding Orbit
    File: style.css
    Description: Modern, responsive styling with floating interactive elements.
*/




















































































































/* --- 1. General Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

/* --- 2. Header & Banner --- */
.main-header {
    width: 100%;
    height: auto; /* Controlled height as requested */
    overflow: hidden;
    background-color: #000;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching */
    display: block;
    transition: transform 0.5s ease;
}

.main-header:hover .header-img {
    transform: scale(1.02); /* Subtle zoom effect */
}

/* --- 3. Navigation Bar --- */
nav {
    background: #111111;
    display: flex;
    justify-content: center;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover, nav a.active {
    color: #00d4ff;
}

/* --- 4. Content Sections --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.welcome-section h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.welcome-section p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #666;
}

/* --- 5. Headings & Cards --- */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin: 60px 0 40px;
    color: #111;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #00d4ff;
    display: block;
    margin: 15px auto;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #00d4ff;
}

.card .icon {
    font-size: 45px;
    margin-bottom: 20px;
    display: block;
}

.wide-card {
    flex: none;
    width: 100%;
    max-width: 950px;
    background: #111;
    color: #fff;
}

/* --- 6. Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #00d4ff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn:hover {
    background: #00b8e6;
    transform: scale(1.05);
}

/* --- 7. Floating WhatsApp Character --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 160px; /* Large, noticeable size */
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: floatAnimation 4s ease-in-out infinite;
}

.float-img {
    width: 100%;
    height: auto;
    cursor: pointer;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Floating Animation */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}

/* Tooltip for WhatsApp */
.tooltip {
    position: absolute;
    left: -130px;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* --- 8. Footer --- */
footer {
    text-align: center;
    padding: 50px 0;
    background: #0a0a0a;
    color: #777;
    margin-top: 80px;
}

/* --- 9. Responsive Design --- */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .main-header { height: 300px; }
    .welcome-section h1 { font-size: 2.2rem; }
    .whatsapp-float { width: 130px; }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .main-header { height: 220px; }
    
    nav {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    nav a {
        margin: 5px 10px;
        font-size: 12px;
    }
    
    .welcome-section { padding: 60px 20px; }
    .welcome-section h1 { font-size: 1.8rem; }
    
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        min-width: unset;
    }
    
    .whatsapp-float {
        width: 100px; /* Scales down slightly for mobile */
        right: 20px;
        bottom: 20px;
    }
    
    .tooltip {
        display: none; /* Hide tooltip on mobile to save space */
    }
}















































































































































/* --- About Us Specific Styling --- */

/* Text colors for dark sections */
.text-white {
    color: #ffffff !important;
}

/*=========================================================*/

.bg-dark {
    background-color: #111;
    padding: 80px 0;
    margin-top: 50px;
}

/* Our Story Text */
.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

/* What Sets Us Apart Grid */
.apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.apart-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
    color: #ccc;
    transition: 0.3s;
}

.apart-item h3 {
    color: #00d4ff;
    margin-bottom: 10px;
}

.apart-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}


/*=============================================================*/

/* Mission & Vision Boxes */
.mission-box, .vision-box {
    border-top: 6px solid #00d4ff;
}

.mission-box h2, .vision-box h2 {
    color: #111;
    margin-bottom: 15px;
}

/* Animations for Page Entry */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustment for About page items */
@media (max-width: 768px) {
    .apart-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision .card-container {
        flex-direction: column;
    }
}



































































/* --- Services Page Specific Styles --- */

/* --- Services Page Branding & Animations --- */

/* Brand Color Scheme Replacement for Black */
.brand-bg-dark {
    background-color: #000b18; /* Deep Space Navy */
    padding: 80px 0;
    margin-top: 50px;
}

/* Service Card Deliverables */
.deliverables {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 15px;
}

.deliverables li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Process Steps Styling */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    color: white;
}

.step-number {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #00d4ff 0%, #007bff 100%);
    color: white;
    font-size: 26px;
    font-weight: bold;
    line-height: 65px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step:hover .step-number {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.step h4 {
    color: #00d4ff;
    margin-bottom: 10px;
}

/* Wide CTA Gradient Update */
.brand-cta-gradient {
    background: linear-gradient(135deg, #001f3f 0%, #000b18 100%) !important;
    border: 1px solid #00d4ff;
}

/* Specific Card Animation on Entry */
.service-card {
    opacity: 0;
    animation: slideUp 0.8s forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
}


























/* --- Contact Page Specific Styles --- */

/* Contact Cards Extension */
.contact-card strong {
    display: block;
    margin-top: 10px;
    color: #00d4ff;
    font-size: 1.1rem;
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid input, .form-grid select, .form-grid textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #001f3f;
    color: white;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s;
}

.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

/* FAQ Styling */
.faq-section {
    padding-bottom: 80px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    display: none;
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

/* Responsive Form */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .form-container {
        padding: 20px;
    }
}

/* Branding Orbit Blue BG (Matches Services Page) */
.brand-bg-dark {
    background-color: #1f2627;
    padding: 80px 20px;
    margin-top: 50px;
}