/* --- 1. FONTS & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@500;600;700&display=swap');

:root {
    --nav-bg: #2b2b2b; 
    --primary-blue: #0056b3; 
    --dark-blue-section: #345980; 
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

/* --- 2. GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--white); }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: #000; letter-spacing: 0.5px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- 3. NAVIGATION --- */
.navbar { background: var(--nav-bg); padding: 1.2rem 0; position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.logo i { color: var(--primary-blue); font-size: 1.8rem; }

.nav-menu { display: flex; gap: 30px; }
.nav-link { font-size: 0.8rem; font-weight: 600; color: #ccc; letter-spacing: 1px; text-transform: uppercase; }
.nav-link:hover { color: var(--white); }

/* Hamburger Menu */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background-color: #fff; margin: 5px auto; }

/* --- 4. HERO BANNER --- */
.hero-banner { width: 100%; height: 550px; position: relative; overflow: hidden; background-color: #000; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.carousel-slide.active { opacity: 1; }
.carousel-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); }

/* --- 5. INTRO TEXT --- */
.intro-text { text-align: center; padding: 5rem 20px; background: var(--white); }
.intro-text h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; }
.intro-text p { max-width: 800px; margin: 0 auto 2.5rem; color: var(--text-light); font-size: 1.1rem; }

/* Buttons */
.outline-btn { display: inline-block; background: transparent; border: 1px solid #000; color: #000; padding: 1rem 2.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; }
.outline-btn:hover { background: #000; color: #fff; }

.outline-btn-small { display: inline-block; border: 1px solid #333; color: #333; padding: 0.6rem 1.5rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-top: 1rem; transition: 0.3s; }
.outline-btn-small:hover { background: #333; color: #fff; }

/* --- 6. SECTIONS --- */
.streamline-section { padding: 6rem 0; background: #fff; }
.streamline-wrapper { display: flex; align-items: center; gap: 4rem; justify-content: center; }

.streamline-image img { width: 350px; height: 350px; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.streamline-content { max-width: 500px; text-align: left; }
.streamline-content h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #333; font-weight: 700; }
.streamline-content p { margin-bottom: 1.5rem; color: #666; font-size: 0.95rem; line-height: 1.8; }

.creative-projects { padding: 0 0 6rem; text-align: center; }
.blue-text { color: var(--dark-blue-section); font-size: 1.5rem; margin-bottom: 3rem; letter-spacing: 1px; }
.project-banner img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 2px; }

.dark-about { background-color: var(--dark-blue-section); padding: 6rem 0; color: #fff; text-align: center; }
.small-header { color: #aab8c2; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 4rem; text-transform: uppercase; }
.three-col-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.about-col { padding: 2rem; }
.circle-icon img { width: 300px; height: 290px; border-radius: 50%; border: 4px solid #fff; object-fit: cover; margin-bottom: 2rem; }
.about-col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.about-col p { color: #e0e0e0; font-size: 0.85rem; line-height: 1.6; }

/* --- 7. CONNECT & FOOTER CONTACT --- */
.lets-connect { background-color: #102a43; padding: 6rem 0; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); }
.connect-wrapper { display: flex; align-items: center; justify-content: center; gap: 4rem; }

.connect-logo-box { background: #fff; width: 300px; height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.logo-content i { font-size: 4rem; color: var(--primary-blue); display: block; margin-bottom: 10px; }
.logo-content span { font-size: 2.5rem; font-weight: 700; color: var(--primary-blue); display: block; font-family: 'Poppins', sans-serif; }
.logo-content small { color: #555; font-size: 0.6rem; letter-spacing: 1px; }

.connect-text { max-width: 500px; }
.connect-text h2 { color: #fff; font-size: 1.8rem; margin-bottom: 1rem; letter-spacing: 1px; }
.connect-text p { margin-bottom: 2rem; font-size: 1rem; opacity: 0.9; }
.btn-outline-white { display: inline-block; border: 1px solid #fff; color: #fff; padding: 0.8rem 2rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.btn-outline-white:hover { background: #fff; color: var(--dark-blue-section); }

.main-contact-area { background-color: #102a43; padding: 5rem 0 3rem; color: #fff; }
.contact-area-title { text-align: center; font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 3rem; color: #aab8c2; }
.contact-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }

/* UPDATED HEADERS: Larger and White */
.contact-col-left h4, .contact-col-right h4 { 
    font-size: 1.2rem;   /* Increased size */
    color: #ffffff;      /* Pure White */
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    letter-spacing: 0.5px;
}

.form-group-line { margin-bottom: 1.5rem; }
.form-group-line label { font-size: 0.8rem; display: block; margin-bottom: 8px; }
.form-group-line input, .form-group-line textarea { width: 100%; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 12px; font-family: inherit; }
.form-group-line input:focus, .form-group-line textarea:focus { border-color: #fff; outline: none; }

.btn-send-wide { width: 100%; background: transparent; border: 1px solid #fff; color: #fff; padding: 12px; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; margin-top: 10px; transition: 0.3s; font-weight: 600; }
.btn-send-wide:hover { background: #fff; color: #102a43; }
.recaptcha-text { font-size: 0.6rem; opacity: 0.6; margin-top: 1rem; }

.whatsapp-btn { background: #19a23b; color: #102a43; border: none; padding: 15px 25px; font-weight: 700; font-size: 1rem; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 2rem; border-radius: 20px; }
.mb-2 { margin-bottom: 1.5rem; font-size: 0.9rem; opacity: 0.9; }
.info-block { margin-bottom: 2rem; }
.info-block h5 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.info-block p { font-size: 0.85rem; margin-bottom: 0.3rem; opacity: 0.8; }
.email-link { text-decoration: underline; }

.social-footer { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; }
.social-footer h4 { font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
.social-circle { display: inline-block; color: #fff; font-size: 1.2rem; margin: 0 10px; transition: 0.3s; }
.social-circle:hover { color: #ccc; }

footer { background: var(--nav-bg); color: #888; text-align: center; padding: 2rem; font-size: 0.8rem; }

/* --- 8. RESPONSIVE --- */
@media (max-width: 1024px) {
    .streamline-wrapper { gap: 2rem; }
    .streamline-image img { width: 300px; height: 300px; }
    .intro-text h1 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--nav-bg); width: 100%; text-align: center; transition: 0.3s; padding: 2rem 0; box-shadow: 0 10px 10px rgba(0,0,0,0.2); }
    .nav-menu.active { left: 0; }
    .menu-toggle { display: block; }
    
    .hero-banner { height: 400px; }
    
    .streamline-section { padding: 4rem 0; }
    .streamline-wrapper { flex-direction: column; text-align: center; }
    .streamline-content { padding: 0 15px; }
    .streamline-image img { width: 250px; height: 250px; }
    
    .dark-about, .lets-connect { padding: 4rem 0; }
    
    .connect-wrapper { flex-direction: column; text-align: center; }
    .connect-logo-box { width: 100%; max-width: 300px; margin-bottom: 2rem; }
    
    .contact-area-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-col-left { order: 2; } 
    .contact-col-right { order: 1; }
}/* =========================================
   NEW: PROJECT BUBBLES STYLES
   ========================================= */
.project-bubbles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 40px; /* Space between bubbles */
    margin-top: 50px;
    padding-bottom: 50px;
}

/* The Circle Itself */
.project-bubble {
    width: 200px;
    height: 200px;
    /* Using your dark blue variable for background */
    background: linear-gradient(135deg, var(--dark-blue-section), var(--primary-blue));
    border-radius: 50%; /* Makes it a perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border: 5px solid rgba(255, 255, 255, 0.8); /* nice white border border */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* Soft shadow underneath */
    
    /* THE BREATHING ANIMATION APPLIED HERE */
    animation: breathe 6s ease-in-out infinite;
}

/* Content inside the bubble */
.bubble-content i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    color: rgba(255,255,255,0.9);
}

.bubble-content h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 0 10px;
}

/* --- THE BREATHING KEYFRAMES --- */
@keyframes breathe {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    50% {
        /* Move up and get slightly bigger */
        transform: translateY(-25px) scale(1.05);
        box-shadow: 0 25px 45px rgba(0,0,0,0.3);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
}

/* --- STAGGERED DELAYS (So they don't move together) --- */
.project-bubble:nth-child(1) { animation-delay: 0s; }
.project-bubble:nth-child(2) { animation-delay: 1.2s; }
.project-bubble:nth-child(3) { animation-delay: 2.4s; }
.project-bubble:nth-child(4) { animation-delay: 0.6s; }
.project-bubble:nth-child(5) { animation-delay: 1.8s; }

/* --- HOVER STATE --- */
/* When hovering, stop the animation and highlight */
.project-bubble:hover {
    animation-play-state: paused; /* Pauses breathing */
    transform: translateY(-10px) scale(1.1); /* Stuck in "up" position */
    background: var(--primary-blue); /* Brighter blue on hover */
    border-color: #fff;
    cursor: pointer;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .project-bubbles-container { gap: 25px; }
    .project-bubble { width: 160px; height: 160px; }
    .bubble-content i { font-size: 2.5rem; margin-bottom: 10px; }
    .bubble-content h3 { font-size: 0.8rem; }
}

/* Review Card Hover Effect */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}