/* =========================================
   1. GLOBAL RESET & FONTS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER LAYOUT (Align Right)
   ========================================= */
header {
    background: #ffffff;
    padding: 0 5%;
    height: 80px;
    display: flex;            /* Makes items sit side-by-side */
    align-items: center;      /* Vertically centers items */
    /* Removing 'justify-content' lets us control spacing manually */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav {
    /* THIS IS THE KEY: */
    margin-left: auto;        /* Pushes the Menu (and icons) to the RIGHT side */
    display: flex;
    align-items: center;
    gap: 30px;                /* Space between menu links */
}

nav a {
    color: #0b1c2d;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
}

nav a:hover, nav a.active {
    color: #00bfff;
}

.header-socials {
    margin-left: 40px;        /* Adds space between the 'Contact' link and Icons */
    display: flex;
    gap: 15px;                /* Space between the two icons */
    align-items: center;
}

/* Remove the blue filter specifically for the SVG so colors show */
.header-socials .instagram-icon svg {
    filter: none; /* Disables the blue effect from line 837 */
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Optional: Slight pop on hover */
.header-socials .instagram-icon:hover svg {
    transform: scale(1.1);
}

.header-socials img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    /* Optional: Makes icons blue. Remove if using colored icons */
    filter: invert(38%) sepia(73%) saturate(3000%) hue-rotate(180deg) brightness(95%) contrast(101%);
}
/* =========================================
   3. HOME PAGE STYLES
   ========================================= */
.hero-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #87CEEB, #00BFFF, #0288d1);
}

/* =========================================
   HERO BACKGROUND – FLOATING BUBBLE WAVES
   ========================================= */

.hero-slider {
    position: relative;
    overflow: hidden;
}

/* =========================================
   UPDATED STRONGER BUBBLES
   ========================================= */

.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* UPDATED BUBBLE STYLE */
.bubble {
    position: absolute;
    bottom: -100px;
    /* Increased opacity from 0.1 to 0.25 */
    background: rgba(255, 255, 255, 0.25); 
    
    /* Added a thin border for better definition */
    border: 1px solid rgba(255, 255, 255, 0.4); 
    
    border-radius: 50%;
    
    /* Stronger inner reflection (rim light) */
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5); 
    
    /* Increased blur slightly for a "thicker glass" look */
    backdrop-filter: blur(2px); 
    
    animation: floatUp 15s linear infinite, sway 4s ease-in-out infinite alternate;
}

/* UPDATED ANIMATION - Keeps opacity higher for longer */
@keyframes floatUp {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: scale(0.8);
    }
    10% {
        opacity: 1; /* Starts fully visible now */
    }
    90% {
        opacity: 0.7; /* Stays visible near the top */
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Sway animation remains the same */
@keyframes sway {
    from { margin-left: -20px; }
    to { margin-left: 20px; }
}

/* Randomization remains the same (Keep your existing nth-child code) */
.bubble:nth-child(1) { left: 10%; width: 80px; height: 80px; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 40px; height: 40px; animation-duration: 18s; animation-delay: 2s; background: rgba(255, 255, 255, 0.3); } /* Slightly brighter variation */
.bubble:nth-child(3) { left: 35%; width: 120px; height: 120px; animation-duration: 22s; animation-delay: 4s; }
.bubble:nth-child(4) { left: 50%; width: 60px; height: 60px; animation-duration: 15s; animation-delay: 0s; }
.bubble:nth-child(5) { left: 65%; width: 90px; height: 90px; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(6) { left: 80%; width: 50px; height: 50px; animation-duration: 19s; animation-delay: 3s; background: rgba(255, 255, 255, 0.2); }
.bubble:nth-child(7) { left: 90%; width: 100px; height: 100px; animation-duration: 25s; animation-delay: 5s; }
.bubble:nth-child(8) { left: 15%; width: 30px; height: 30px; animation-duration: 16s; animation-delay: 7s; }
.bubble:nth-child(9) { left: 55%; width: 70px; height: 70px; animation-duration: 20s; animation-delay: 6s; }
.bubble:nth-child(10) { left: 75%; width: 45px; height: 45px; animation-duration: 17s; animation-delay: 8s; }

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-split { display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; gap: 40px; }
.slide-img-col { flex: 1; display: flex; justify-content: center; }
.slide-img-col img { width: 100%; max-width: 500px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); animation: float 4s ease-in-out infinite; }
.slide-text-col { flex: 1; text-align: left; color: #fff; z-index: 3; }
.slide-text-col h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.slide-text-col p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; }
.btn-group.left-align { display: flex; justify-content: flex-start; gap: 15px; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.btn-glow { background: #fff; color: #007bb5; padding: 15px 35px; border-radius: 30px; text-decoration: none; font-weight: bold; box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); transition: 0.3s; display: inline-block; }
.btn-glow:hover { transform: translateY(-3px); }
.btn-glossy { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; padding: 15px 35px; border-radius: 30px; text-decoration: none; font-weight: bold; backdrop-filter: blur(5px); transition: 0.3s; display: inline-block; }
.btn-glossy:hover { background: rgba(255, 255, 255, 0.4); }

/* --- Who We Are --- */
.section { padding: 80px 8%; }
.who-we-are { background: #f0f8ff; }
.container.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.col-text h2 { color: #0277bd; font-size: 2.5rem; margin-bottom: 20px; }
.col-text .lead { font-weight: bold; color: #01579b; margin-bottom: 15px; }
.col-text p { line-height: 1.6; color: #555; margin-bottom: 20px; }
.link-arrow { color: #00bfff; text-decoration: none; font-weight: bold; }
.about-img { width: 100%; max-width: 450px; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 0 15px rgba(173, 216, 230, 0.6)); }

/* --- Services (Marquee) --- */
.services-section { background: #fff; overflow: hidden; padding-bottom: 50px; }
.section-title { text-align: center; color: #0277bd; font-size: 2.5rem; margin: 30px 0 50px 0; }
.marquee-wrapper { width: 100%; overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; flex-direction: row; width: max-content; gap: 30px; animation: scroll 30s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track:hover { animation-play-state: paused; }
.service-card { background: #e1f5fe; border: 1px solid #b3e5fc; flex: 0 0 auto; width: 300px; padding: 40px 30px; border-radius: 15px; text-align: center; transition: 0.3s; }
.service-card:hover { background: #ffffff; border-color: #00bfff; transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3); }
.card-icon-img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 20px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.service-card h3 { margin-bottom: 15px; color: #0277bd; }

/* --- Why Choose --- */
.why-choose { background: linear-gradient(135deg, #0288d1, #01579b); padding: 100px 8%; overflow: hidden; }
.white-text { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; align-items: start; }
.why-card { position: relative; border-radius: 20px; overflow: hidden; background: #e1f5fe; height: 400px; transition: 0.4s ease; }
.why-card.staggered { margin-top: 60px; }
.card-img-wrapper { width: 100%; height: 100%; padding-bottom: 100px; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: contain; object-position: center top; padding: 20px; transition: transform 0.6s ease; }
.why-card:hover .card-img-wrapper img { transform: scale(1.05); }
.why-card:hover { box-shadow: 0 0 35px rgba(179, 229, 252, 0.6); transform: translateY(-5px); }
.glass-content { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(240, 248, 255, 0.95); border-top: 1px solid #b3e5fc; padding: 20px 25px; color: #0b1c2d; text-align: left; }
.glass-content h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 5px; color: #01579b; }
.glass-content p { font-size: 0.9rem; line-height: 1.4; font-weight: 500; color: #455a64; margin-bottom: 0; }

/* --- CTA Section --- */
.cta-glow { background: #ffffff; padding: 100px 8%; text-align: center; color: #0b1c2d; }
.cta-glow h2 { font-size: 3rem; margin-bottom: 15px; font-weight: 800; }
.cta-glow p { font-size: 1.2rem; color: #555; }
.big-btn { padding: 18px 50px; font-size: 1.2rem; background: #00bfff !important; color: #0b1c2d !important; margin-top: 30px; border-radius: 30px; text-decoration: none; display: inline-block; font-weight: bold; box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3); transition: 0.3s; }
.big-btn:hover { background: #009acd !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 191, 255, 0.5); }

/* =========================================
   4. ABOUT PAGE STYLES
   ========================================= */
.page-header { background: linear-gradient(135deg, #0288d1, #01579b); color: white; text-align: center; padding: 60px 20px; }
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.page-header p { font-size: 1.2rem; opacity: 0.9; }

/* Intro Section */
.about-section { padding: 60px 0; background-color: #f0f8ff; }
.light-bg { background-color: #ffffff; }

/* Intro Card */
.about-intro-card { background: #fff; border-radius: 20px; display: flex; overflow: hidden; align-items: center; margin-top: -40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.intro-text { flex: 1; padding: 50px; }
.intro-text h2 { color: #0277bd; font-size: 2.2rem; margin-bottom: 20px; }
.intro-text p { color: #555; line-height: 1.6; margin-bottom: 15px; }
.intro-text .lead { font-size: 1.1rem; font-weight: 600; color: #333; }
.intro-img { flex: 1; background: #e1f5fe; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; }

/* Timeline */
.timeline-card { background: #fff; border-radius: 15px; padding: 40px; text-align: center; max-width: 900px; margin: 0 auto; border-left: 5px solid #00bfff; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.year-badge { display: inline-block; background: #00bfff; color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: bold; margin-bottom: 15px; }
.timeline-content h3 { color: #0b1c2d; margin-bottom: 15px; }
.timeline-content p { color: #555; }

/* =========================================
   NEW SECTION: TEAM CULTURE (ADDED HERE)
   ========================================= */
/* =========================================
   NEW SECTION: TEAM CULTURE (FIXED SIZE)
   ========================================= */
.team-culture {
    padding: 80px 0;
    background-color: #ffffff;
}

.culture-header {
    text-align: center;
    margin-bottom: 60px;
}

.culture-header h2 {
    font-size: 2.5rem;
    color: #0b1c2d;
    margin-bottom: 10px;
}

.culture-header p {
    font-size: 1.1rem;
    color: #555;
}

/* The Row */
.culture-item {
    display: flex;
    align-items: center; /* Keeps image vertically centered with text */
    justify-content: space-between;
    margin-bottom: 60px; 
    gap: 50px; /* Increased gap for better breathing room */
    max-width: 1000px; /* Prevents the whole row from getting too wide */
    margin-left: auto;
    margin-right: auto;
}

/* Text Container - Gives it MORE space (60%) */
.culture-text {
    flex: 1.5; 
}

.culture-text h3 {
    font-size: 1.25rem; 
    color: #002b49; 
    margin-bottom: 10px;
    font-weight: 700;
}

.culture-text p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Image Container - Gives it LESS space (40%) and limits width */
.culture-image {
    flex: 1; 
    display: flex;
    justify-content: center; /* Centers image in its box */
}

.culture-image img {
    width: 100%;
    max-width: 350px; /* LIMITS THE IMAGE SIZE HERE */
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .culture-item {
        flex-direction: column; 
        text-align: center;
        gap: 20px;
    }
    
    .culture-image img {
        max-width: 100%; /* Full width on mobile */
        margin-top: 10px;
    }
}
/* =========================================
   END TEAM CULTURE
   ========================================= */

/* MVV Section */
.mvv-section { padding: 80px 8%; background: #f0f8ff; }
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.mvv-card { background: #ffffff; padding: 50px 30px; border-radius: 25px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border: 1px solid #e1f5fe; transition: all 0.4s ease; position: relative; overflow: hidden; }
.mvv-card:hover { transform: translateY(-15px); border-color: #00bfff; }
.icon-circle { width: 100px; height: 100px; margin: 0 auto 10px; background: transparent; display: flex; align-items: center; justify-content: center; }
.icon-circle img { width: 70px; height: 70px; object-fit: contain; }
.mvv-card h3 { color: #0b1c2d; font-size: 1.8rem; margin-bottom: 20px; font-weight: 700; }
.mvv-card p { color: #555; line-height: 1.6; font-size: 1.1rem; }

/* =========================================
   WHAT DRIVES US (Story Narrative Layout)
   ========================================= */
.drives-us-section {
    padding: 100px 8%;
    background-color: #ffffff; /* Clean White Canvas */
}

/* Wrapper for the Split Layout */
.drives-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left is smaller, Right is wider */
    gap: 80px;
    align-items: start;
}

/* --- LEFT SIDE: Sticky Intro --- */
.drives-intro {
    position: sticky; /* Sticks while you scroll the list */
    top: 120px; /* Distance from top of screen */
    text-align: left;
}

.drives-intro .section-title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 2.8rem;
    color: #0b1c2d;
}

.drives-intro .subtitle {
    font-size: 1.3rem;
    color: #00bfff; /* Sky Blue Accent */
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.intro-divider {
    width: 60px;
    height: 4px;
    background: #00bfff;
    margin-bottom: 25px;
    border-radius: 2px;
}

.intro-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* --- RIGHT SIDE: The Journey List --- */
.drives-list {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #e1f5fe; /* The subtle "Path" line */
}

/* The Individual Items */
.drive-item {
    position: relative;
    margin-bottom: 60px; /* Spacing between story points */
    padding-left: 30px;
}

.drive-item:last-child {
    margin-bottom: 0;
}

/* The "Dot" Marker on the line */
.drive-marker {
    position: absolute;
    left: -39px; /* Aligns dot perfectly on the border line */
    top: 5px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #00bfff; /* Sky Blue Ring */
    border-radius: 50%;
    transition: 0.3s ease;
    z-index: 1;
}

/* Hover Effect on the Item */
.drive-item:hover .drive-marker {
    background: #00bfff; /* Fills the dot on hover */
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5); /* Glowing effect */
    transform: scale(1.2);
}

.drive-content {
    transition: transform 0.3s ease;
}

.drive-item:hover .drive-content {
    transform: translateX(10px); /* Slight slide for interaction */
}

.drive-content h3 {
    font-size: 1.8rem;
    color: #0b1c2d;
    margin-bottom: 12px;
    font-weight: 700;
}

.drive-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .drives-wrapper {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 50px;
    }
    
    .drives-intro {
        position: relative; /* Remove sticky on mobile */
        top: 0;
        text-align: left;
    }
    
    .drives-intro .section-title {
        font-size: 2.2rem;
    }
    
    .drives-list {
        border-left: 2px solid #e1f5fe;
        padding-left: 20px;
    }
    
    .drive-marker {
        left: -29px; /* Adjust dot position for mobile padding */
    }
}

/* =========================================
   SERVICES PAGE (Premium Alternating Layout)
   ========================================= */

.services-showcase {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden; /* Keeps animations contained */
}

/* Container for specific spacing */
.services-showcase .container {
    max-width: 1100px;
}

/* --- THE ROW --- */
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px; /* Space between services */
    opacity: 0; 
    animation: fadeIn 1s forwards; /* Simple entry animation */
}

/* The Reverse Row (Content Left, Image Right) */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* Make sure the last item doesn't have huge margin */
.service-row:last-child {
    margin-bottom: 0;
}

/* --- THE VISUAL (Image) --- */
.service-visual {
    flex: 1;
    position: relative;
}

.service-visual img {
    width: 100%;
    max-width: 550px; /* Limits max image size */
    height: auto;
    border-radius: 20px;
    /* Soft premium shadow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); 
    transition: transform 0.5s ease;
}

/* Hover Effect: Gentle lift */
.service-row:hover .service-visual img {
    transform: translateY(-10px);
}

/* --- THE TEXT CONTENT --- */
.service-text {
    flex: 1;
    padding: 20px;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #0b1c2d;
    margin-bottom: 15px;
    font-weight: 800;
}

/* The Value Statement (One-line impact) */
.value-statement {
    font-size: 1.2rem;
    color: #00bfff; /* Sky blue highlight */
    font-weight: 600;
    margin-bottom: 25px;
    border-left: 4px solid #00bfff;
    padding-left: 15px;
    line-height: 1.4;
}

/* The Bullet List */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

/* Custom Bullet Point (Arrow or Dot) */
.service-list li::before {
    content: "✔"; /* You can change this to "•" or "➤" */
    color: #00bfff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* --- HEADER TEXT UPDATES --- */
.page-header .subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 1;
}

.page-header .intro-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE DESIGN (Mobile) --- */
@media (max-width: 900px) {
    .service-row, 
    .service-row.reverse {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 30px;
        margin-bottom: 80px;
        text-align: center; /* Center align text for mobile */
    }
    
    .value-statement {
        border-left: none; /* Remove side border on mobile */
        border-bottom: 3px solid #00bfff; /* Add bottom border instead */
        padding-left: 0;
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .service-list {
        text-align: left; /* Keep list left-aligned for readability */
        display: inline-block;
    }

    .service-text h2 {
        font-size: 2rem;
    }
}
/* =========================================
   6. CONTACT PAGE STYLES
   ========================================= */
.contact-section {
    padding: 80px 8%;
    background-color: #f0f8ff; /* UPDATED: Sky Blue Background */
    min-height: 80vh;
}

.contact-header { text-align: center; margin-bottom: 50px; }
.contact-header h1 { font-size: 3rem; color: #0b1c2d; margin-bottom: 10px; }
.trust-line { font-size: 1.1rem; color: #555; font-weight: 500; background: #e1f5fe; display: inline-block; padding: 5px 15px; border-radius: 20px; }

/* Split Wrapper */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: start; }

/* Left Panel */
.contact-info-panel { background: #ffffff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(255, 255, 255, 0.8); }
.contact-info-panel h3 { color: #01579b; font-size: 1.5rem; margin-bottom: 15px; }
.info-intro { color: #555; margin-bottom: 30px; line-height: 1.6; }

.info-blocks { display: flex; flex-direction: column; gap: 25px; }
.info-item { display: flex; align-items: center; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid #e1f5fe; }
.info-item:last-child { border-bottom: none; }

.info-icon { background: transparent; width: auto; height: auto; display: flex; align-items: center; }
.info-icon img { width: 40px; height: 40px; object-fit: contain; }

.info-text label { display: block; font-size: 0.9rem; color: #888; font-weight: 600; }
.info-text span { font-size: 1.1rem; color: #0b1c2d; font-weight: 600; }

/* Right Panel */
.contact-form-panel { background: #ffffff; padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0, 191, 255, 0.1); border: 1px solid #e1f5fe; }
.styled-form .form-group { margin-bottom: 25px; }
.styled-form label { display: block; margin-bottom: 8px; color: #0b1c2d; font-weight: 600; font-size: 0.95rem; }

.styled-form input, .styled-form textarea {
    width: 100%; padding: 15px 20px; border: 2px solid #e1f5fe; border-radius: 12px; font-size: 1rem;
    background: #fdfdfd; transition: 0.3s ease; outline: none;
}
.styled-form input:focus, .styled-form textarea:focus { border-color: #00bfff; box-shadow: 0 0 15px rgba(0, 191, 255, 0.2); background: #fff; }
.styled-form textarea { resize: vertical; }

.btn-submit {
    width: 100%; background: #00bfff; color: #0b1c2d; padding: 18px; border: none; border-radius: 30px;
    font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: 0.3s ease; box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}
.btn-submit:hover { background: #009acd; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4); }
/* =========================================
   7. FOOTER
   ========================================= */
footer {
    background: #0b1c2d;
    color: #81d4fa;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    margin-top: auto;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
========================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* =========================================
   8. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .slide-split { flex-direction: column-reverse; text-align: center; }
    .btn-group.left-align { justify-content: center; }
    .container.two-col { grid-template-columns: 1fr; }
    .why-card.staggered { margin-top: 0; }
    .story-card, .card-content { flex-direction: column; align-items: flex-start; margin-bottom: 20px; }
    .about-intro-card { flex-direction: column; }
    nav { display: none; }
}