/* style.css */
/* navbar styles new*/

/*  Loader styles */
:root {
    --navy: #001529;
    --orange: #FF6B00; /* Your brand orange */
}

#loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--navy);
    z-index: 99999; /* Above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-container { text-align: center; }

/* Logo Pulse Animation */
.loader-logo img {
    width: 80px;
    animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Text Spelling Animation */
.loader-text {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.loader-text span {
    opacity: 0;
    display: inline-block;
    animation: fadeInLetter 0.1s forwards;
}

.white { color: #ffffff; }
.orange { color: var(--orange); }

@keyframes fadeInLetter {
    to { opacity: 1; transform: translateY(0); }
}

/* Staggering the letters (0.1s intervals) */
.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }
.loader-text span:nth-child(5) { animation-delay: 0.5s; }
.loader-text span:nth-child(6) { animation-delay: 0.6s; }
.loader-text span:nth-child(7) { animation-delay: 0.7s; }
.loader-text span:nth-child(8) { animation-delay: 0.8s; }
.loader-text span:nth-child(9) { animation-delay: 0.9s; }
.loader-text span:nth-child(10) { animation-delay: 1.0s; }
.loader-text span:nth-child(11) { animation-delay: 1.1s; }
.loader-text span:nth-child(12) { animation-delay: 1.2s; }
.loader-text span:nth-child(13) { animation-delay: 1.3s; }

/* Progress Bar & Percentage */
.loader-percentage {
    color: #ffffff;
    margin-top: 15px;
    font-family: monospace;
    font-size: 1rem;
}

.loader-bar-bg {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--orange);
    transition: width 0.1s linear;
}

/* Class to hide loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}
/*  Loader styles end */


:root {
    --navy: #001f3f;
    --orange: #ff8c00;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #c7c6c6ca;
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styling */
.navbar {
    background: var(--navy);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Logo & Brand Name */
.logo-link {
    text-decoration: none;
}

.logo-group {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-logo {
    height: 50px;
    margin-right: 10px;
}

.brand-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.orange-text {
    color: var(--orange);
    font-weight: 650;
}

/* Nav Menu Styles */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.nav-links {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    transition: var(--transition);
}

.nav-links:hover {
    color: var(--orange);
}

/* Call to Action Button */
.nav-btn {
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 15px;
    transition: var(--transition);
    border: 2px solid var(--orange);
}

.nav-btn:hover {
    background: transparent;
    color: var(--orange);
}

/* Mobile Responsive */
.menu-toggle, .close-menu {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

@media screen and (max-width: 960px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: -100%; /* Hidden by default */
        opacity: 0;
        transition: all 0.5s ease;
        background: var(--navy);
        padding-top: 100px;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
    }

    .nav-links {
        padding: 2rem;
        width: 100%;
        display: table;
        font-size: 1.5rem;
    }

    .nav-btn {
        margin: 2rem 0;
        font-size: 1.3rem;
    }

    .menu-toggle {
        display: block;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
    }
}

/* Hero Styles */
.hero {
    height: 100vh;
    background: url('IMAGES/office.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 31, 63, 0.7); /* Navy Overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.typewriter-container {
    font-size: 1.8rem;
    font-weight: 400;
    min-height: 3rem;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content h2 {
        font-size: 1.5rem;}
    .hero-content p{
        font-size: 1.3rem;}
    }


.cursor {
    color: var(--orange);
    animation: blink 0.7s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-description {
    max-width: 800px;
    margin: 25px auto;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Buttons */
.hero-btns button {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    margin: 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--orange);
    color: white;
    border: none;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3); }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover { background: white; color: var(--navy); }

/* Modal Glassmorphism */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--navy);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Spinner Animation */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white); /* White spinner on orange background */
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Optional: Style for when button is "processing" */
.submit-btn.processing {
    background-color: #e67e00; /* Darker orange */
    cursor: pointer;
    pointer-events: none;
}

/* Problem section styles start here */
.inadequacies {
    padding: 100px 0;
    background: #f9f9f9; /* Light contrast against navy header */
    color: var(--navy);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-left: 5px solid var(--orange);
}

.pain-card i { font-size: 3rem; color: var(--orange); margin-bottom: 20px; }
.pain-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.pain-card ul { list-style: none; margin-bottom: 20px; }
.pain-card ul li { margin-bottom: 10px; font-size: 1.1rem; }
.pain-card ul li::before { content: "✕"; color: red; margin-right: 10px; font-weight: bold; }

.sector-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sector-item {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    width: 45%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sector-item:hover {
    background: var(--orange);
    color: white;
    transform: translateX(10px);
}

.detail-box {
    grid-column: 1 / -1;
    background: var(--navy);
    color: rgb(253, 249, 249);
    padding: 40px;
    border-radius: 20px;
    margin-top: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.detail-box h4 { font-size: 1.6rem; color: var(--orange); margin-bottom: 10px; }
.detail-box p { font-size: 1.2rem; line-height: 1.6; }

@media (max-width: 768px) {
    .pain-points-grid { grid-template-columns: 1fr; }
    .sector-item { width: 100%; }
}

/* Add an "Active" state and an indicator */
.sector-item {
    position: relative;
    border-left: 5px solid transparent; /* Prepared for the JS highlight */
}

/* The "Pulse" for the detail box if empty */
@keyframes attention {
    0% { box-shadow: 0 0 0 rgba(255, 140, 0, 0); }
    50% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.4); }
    100% { box-shadow: 0 0 0 rgba(255, 140, 0, 0); }
}

.detail-box:empty {
    animation: attention 2s infinite;
}

/* Mobile Tweak: Make sure they know it's clickable */
@media (max-width: 768px) {
    .sector-item::after {
        content: "Tap to see →";
        font-size: 0.7rem;
        color: var(--orange);
        margin-left: auto;
    }
}
/* Problem Section styles end */
/* Solutions Section styles start */
.solutions {
    padding: 100px 0;
    background: #001a35; /* Darker Navy */
    color: white;
}

.solutions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.badge {
    background: rgba(255, 140, 0, 0.2);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.solutions-text h2 {
    font-size: 3rem;
    margin: 20px 0;
}

.status-indicator {
    margin-top: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #2ecc71; /* Green */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--orange);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.solution-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--orange);
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .solutions-content { grid-template-columns: 1fr; text-align: center; }
    .status-indicator { justify-content: center; }
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background: #ffffff;
    color: var(--navy);
}

.wwd-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wwd-text h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.1;
}

.wwd-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.cursor2 {
    color: var(--orange);
    font-weight: bold;
    animation: blink 0.7s infinite;
}

/* Service Stack Styling */
.wwd-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--orange);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.5;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--navy);
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 992px) {
    .wwd-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .wwd-text { text-align: center; }
    .service-item:hover { transform: translateY(-5px); }
}

/* Target your existing container to center the button */
.wwd-text .wwd-cta {
    display: flex;
    justify-content: center; /* Centers it horizontally */
    align-items: center;
    width: 100%;
    margin-top: 40px; /* Space above the button */
}

/* Update your existing button style */
.btn-primary {
    background-color: #ff8c00; /* Your Brand Orange */
    color: #ffffff;
    padding: 18px 50px; /* Makes it larger and more professional */
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #ff8c00;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth 'pop' effect */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

/* The Hover Effect: Color Change + Move Upward */
.btn-primary:hover {
    background-color: transparent; /* Flip: Orange -> Transparent */
    color: #ff8c00;               /* Flip: White -> Orange */
    transform: translateY(-8px);    /* Moves upward */
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4); /* Glow effect */
}

/* Ensure it stays centered on mobile */
@media (max-width: 992px) {
    .wwd-text .wwd-cta {
        justify-content: center;
    }
}

/* How It Works Styles */
.how-it-works {
    padding: 100px 0;
    background: #f9f9f9;
    color: var(--navy);
}

.hiw-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hiw-text h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
}

.hiw-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Timeline Styling */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e1e1e1;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e1e1e1;
    z-index: 1;
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-dot {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.timeline-item.approve .timeline-dot {
    background: #2ecc71; /* Green: Their turn */
    border-color: #2ecc71;
    color: white;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.5;
}

/* Kinetic Animation Styling */
.hiw-graphics {
    position: relative;
    width: 100%;
    height: 100%;
}

.kinetic-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.main-graphic {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Floating Elements (Close to the main graphic) */
.floating-photos {
    position: absolute;
    top: 0;
    left: -30px; /* Slightly overlaps the main photo */
    width: 100%;
    height: 100%;
}

.floater {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left: 4px solid var(--orange);
}

.floater i {
    font-size: 1.5rem;
    color: var(--orange);
}

/* Define the Floating (away) paths */
.float-top {
    top: 15%;
    left: 5%;
}

.float-bottom {
    bottom: 15%;
    left: 5%;
}

/* --- THE KINETIC COLLISION ANIMATION --- */
/* Top element: floats down and away */
@keyframes top-float {
    0%   { transform: translate(0, 0); }
    40%  { transform: translate(20px, 30px); } /* Maximum away distance */
    70%  { transform: translate(-5px, -5px); } /* Speeding back in, slightly overshoots */
    100% { transform: translate(0, 0); } /* Blams back to start position */
}

/* Bottom element: floats up and away */
@keyframes bottom-float {
    0%   { transform: translate(0, 0); }
    40%  { transform: translate(20px, -30px); } /* Maximum away distance */
    70%  { transform: translate(-5px, 5px); } /* Speeding back in, slightly overshoots */
    100% { transform: translate(0, 0); } /* Blams back to start position */
}

/* Apply the animations */
.float-top {
    animation: top-float 4s ease-in-out infinite;
}

.float-bottom {
    animation: bottom-float 4s ease-in-out infinite;
}

@media (max-width: 992px) {
    .hiw-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .hiw-text { padding: 0 20px; }
}
/* How It Works styles ends */

/* Portfolio Styles */
/* =========================================
   PORTFOLIO SECTION: THE MOSAIC GRID
   ========================================= */
.portfolio {
    padding: 50px 0;
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* The Artistic Image Container */
.image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px; 
    gap: 12px;
    padding: 20px;
    background: #a6a6a8; /* Soft tech-blue background */
    border-radius: 20px 20px 0 0;
}

.image-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Interaction: Image "pops" on hover */
.image-mosaic img:hover {
    transform: scale(1.1) rotate(2deg);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Unique Shapes */
.m-round { border-radius: 50% 10% 50% 10%; }
.m-angled { clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); }
.m-square { border-radius: 20px; }
.m-diamond { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }

/* Card Info Styling */
.portfolio-card {
    background: #eeecec;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.1);
}

.portfolio-info {
    padding: 30px;
    border-top: 1px solid #f0f0f0;
}

.portfolio-info h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.portfolio-info p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.project-link:hover {
    gap: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .image-mosaic { grid-template-rows: 140px 140px; }
}

/* Packages styles */
/* --- Packages Section --- */
.packages {
    padding: 50px 0;
    background: #fdfdfd; /* Very light grey to separate from white sections */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Subtle Standout for Package 2 */
.price-card.featured {
    border: 1.5px solid var(--orange); /* Thin orange border instead of thick */
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.1); /* Soft navy-tinted shadow */
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.p-title { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.p-amount { font-size: 2.8rem; font-weight: 800; margin: 15px 0; color: var(--navy); }
.p-summary { color: #777; font-size: 0.9rem; min-height: 50px; }

.p-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1; /* Pushes button to the bottom */
}

.p-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #444;
}

.p-features i { color: #27ae60; font-size: 0.8rem; }

/* Buttons */
.p-btn {
    display: block;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 700;
    transition: 0.3s;
}

.p-btn:hover {
    background: var(--navy);
    color: white;
}

.featured-btn {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.featured-btn:hover {
    background: #e67e00;
    border-color: #e67e00;
}
/* Pricing & Packages */
/* Customization Note Style */
.pricing-custom-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.pricing-custom-note p {
    color: #666;
    font-size: 1rem;
}

.pricing-custom-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
    border-bottom: 2px solid rgba(255, 140, 0, 0.2);
    transition: 0.3s;
}

.pricing-custom-note a:hover {
    border-bottom: 2px solid var(--orange);
    color: var(--navy);
}
/* --- THE MODAL OVERLAY --- */
.section-header  h1{
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}


/* Advantage Section */
/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #ffffff;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.advantage-card {
    padding: 40px;
    background: #02025c;
    border-radius: 15px;
    border-bottom: 4px solid transparent;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    color: white;
}

.advantage-card:hover {
    background: #0f1e52;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.05);
    border-bottom: 4px solid var(--orange);
    color: white;
}

.adv-icon {
    width: 60px;
    height: 60px;
    background: rgba(241, 239, 236, 0.888);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.advantage-card:hover .adv-icon {
    background: var(--orange);
    color: white;
    transform: rotateY(360deg);
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Optional Background Pattern */
.why-choose-us::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}
/* --- Advantage Section ends --- */

/* Founder Styles */
/* --- Founder Section Styles --- */
.founder-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Optional pattern background (Subtle hex grid) */
.founder-section::after {
    content: "";
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OCIgaGVpZ2h0PSI4OCIgdmlld0JveD0iMCAwIDg4IDg4Ij48ZyBmaWxsPSIjZjBmMGYwIiBmaWxsLW9wYWNpdHk9IjAuNCI+PHBhdGggZD0iTTAgMGg4OHY4OEgwVjB6bTAgMWg4N3Y4N0gxVjF6bTggOGg3MXY3MUg4Vjh6bTAgMWg3MHY3MEg5Vjl6bTggOGg1NXY1NUgxNlYxNnpbMCAxMGg1NHY1NEgxN1YxN3ptOCA4aDM5djM5SDI0VjI0em0wIDFoMzh2MzhIMjVWMjV6Ii8+PC9nPjwvc3ZnPg==');
    opacity: 0.15;
    z-index: 0;
}

.founder-section .container { position: relative; z-index: 1; }

.founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Image gets slightly more space */
    gap: 60px;
    align-items: center;
}

/* Image Area Styles */
.founder-image-area {
    position: relative;
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 31, 63, 0.1);
    transition: 0.3s;
}

.founder-image-area:hover .profile-img {
    transform: translateY(-10px);
}

.image-accent-border {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    max-width: 480px;
    border: 4px solid var(--orange);
    border-radius: 20px;
    z-index: 1;
    transition: 0.3s;
}

.credential-badge {
    position: absolute;
    top: 30px;
    right: 0px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.credential-badge i { color: var(--orange); font-size: 1.2rem; }
.credential-badge span { font-weight: bold; color: var(--navy); font-size: 0.8rem; }

/* Text Area Styles */
.founder-text-area {
    padding-left: 20px;
}

.founder-title {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.founder-story p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.story-highlight {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700;
    font-style: italic;
    color: var(--orange);
    border-left: 3px solid var(--orange);
    padding-left: 20px;
    margin: 30px 0 !important;
}

.founder-mission {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 1px solid #f0f0f0;
    margin-top: 35px;
}

.mission-icon {
    width: 50px; height: 50px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}

.founder-mission p { margin: 0; color: var(--navy); }

/* Mobile Responsive */
@media (max-width: 992px) {
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-text-area { padding-left: 0; }
    .image-accent-border { display: none; } /* Simpler look for mobile */
    .credential-badge { left: 50%; transform: translateX(-50%); top: -30px; }
}
/* Founder Section ends */

/* Contact Styles */
/* --- Contact Section Styles --- */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side: Info */
.contact-round-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--orange);
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.method-icon-placeholder {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-text span {
    display: block;
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-text strong {
    font-size: 1.1rem;
    color: var(--navy);
}

/* Right Side: Form */
.contact-form-side {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.08);
}

.elevate-form .form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.elevate-form label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.elevate-form input, 
.elevate-form select, 
.elevate-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: 0.3s;
}

.elevate-form input:focus, 
.elevate-form select:focus, 
.elevate-form textarea:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.submit-btn {
    width: 100%;
    background: rgb(41, 41, 70);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

/* Mobile Fix */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Contact Section ends */
/* FAQ Section Styles */
/* --- FAQ Styles --- */
.faq-section { padding: 80px 0; background: #fff; }

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover { background: #fdfdfd; color: var(--orange); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Active State Styles */
.faq-item.active { border-color: var(--orange); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.faq-item.active .faq-question { color: var(--orange); }
.faq-item.active .faq-answer { max-height: 200px; } /* Adjust if answer is long */
.faq-item.active i { transform: rotate(45deg); color: var(--orange); }

/* Footer Section Styles */
/* --- Masterpiece Footer Styles --- */
.main-footer {
    background: #001529; /* Deeper Navy than the main sections */
    color: #ffffff;
    padding: 100px 0 30px;
    position: relative;
    border-top: 4px solid var(--orange);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Left Area */
.footer-brand-area h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.f-logo-img {
    height: 50px; /* Adjust based on your logo shape */
    margin-bottom: 15px;
    display: block;
}

.footer-vision-statement {
    color: #bdc3c7;
    line-height: 1.8;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--orange);
}

/* Middle Area */
.footer-nav-area h4, .footer-contact-area h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav-area h4::after, .footer-contact-area h4::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--orange);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover { color: var(--orange); padding-left: 8px; }

/* Right Area */
.footer-contact-info p {
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-info i { color: var(--orange); }

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.footer-socials a:hover { background: var(--orange); transform: translateY(-3px); }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    padding-left: 37%;
}
@media (max-width: 992px) {
    .footer-bottom{
    padding-left: 0;
    text-align: center;
}
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.founder-sig strong { color: #fff; }
.collective-tag { color: var(--orange); font-weight: 600; }

/* Mobile View */
@media (max-width: 992px) {
    .footer-top-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-nav-area h4::after, .footer-contact-area h4::after { left: 50%; transform: translateX(-50%); }
    .footer-links a:hover { padding-left: 0; }
    .bottom-flex { flex-direction: column; gap: 15px; }
    .footer-contact-info p { justify-content: center; }
    .footer-socials { justify-content: center; }
}
/* --- eye --- */
.pain-card-img {
    width: 70px; /* Adjust size to match your previous icon scale */
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}
/* --- solution cards --- */
.solution-card-img {
    width: 60px; /* Adjust to fit your icon-box size */
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto; /* Keeps it centered in the box */
    background-color: whitesmoke;
    border-radius: 50%;
}

/* --- steps --- */
.timeline-img {
    width: 24px; /* Adjust size to fit inside your dots */
    height: 24px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2; /* Ensures image stays above the vertical line */
    margin: 0 auto;
}

/* Ensure the dot container handles the image properly */
.timeline-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keeps images contained within the circle */
}

/* --- floating photos --- */
.floater {
    display: flex;
    align-items: center; /* Vertically centers the image and text */
    gap: 10px;           /* Provides space between the image and the span */
}

.floater-img {
    width: 30px;         /* Adjust based on your icon size */
    height: 30px;
    object-fit: contain;
    display: block;
}

/* --- Advantage --- */
.adv-card-img {
    width: 45px; /* Adjusted size to fit well within the icon box */
    height: 45px;
    object-fit: contain;
    transition: transform 0.6s ease; /* Smooth rotation timing */
}

/* Maintain the rotation effect on hover */
.advantage-card:hover .adv-icon {
    transform: rotateY(360deg);
    background: var(--orange); /* Keeps the background change you liked */
}

/* Ensure the image doesn't look weird during the flip */
.advantage-card:hover .adv-card-img {
    filter: brightness(1) invert(1); /* Optional: turns the image white if it's a dark icon */
}

.adv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    perspective: 1000px; /* Adds depth to the rotation */
}

/* --- package styles --- */
/* Package Modal Styles */
.pkg-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,21,41,0.9); /* Navy overlay */
    backdrop-filter: blur(5px);
}

.pkg-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pkg-close {
    position: absolute;
    right: 25px; top: 15px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
}

.pkg-close:hover { color: var(--orange); }

.pkg-form .form-group { margin-bottom: 15px; text-align: left; }
.pkg-form label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--navy); }
.pkg-form input, .pkg-form select {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px;
}

/* sticky whatsapp */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000; /* Ensures it stays above all other sections */
    display: flex;
    align-items: center;
    text-decoration: none;
}

.wa-img {
    width: 60px; /* Size of your floating button */
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tooltip that appears when someone hovers */
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #001529; /* Navy to match your brand */
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border: 1px solid var(--orange);
}

/* Hover Effects */
.whatsapp-float:hover .wa-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .wa-img {
        width: 50px;
        height: 50px;
    }
    .wa-tooltip {
        display: none; /* Hide tooltip on small mobile screens to save space */
    }
}
/* WhatsApp ends */

/* organization styles */
/* Initial States - Shorter distances for safety */
.sector-item {
    display: flex;         /* Puts image and text on the same line */
    align-items: center;   /* Centers them vertically */
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;             /* Adds space between the image and the text */
}

.sector-icon {
    width: 30px;           /* Adjust size as needed */
    height: 30px;
    object-fit: contain;   /* Prevents the image from stretching */
    transition: 0.3s;
}

.sector-item:hover .sector-icon {
    filter: grayscale(0%);  /* Brings back color on hover */
    transform: scale(1.1);  /* Slight "pulse" effect */
}

.sector-item span {
    font-weight: 500;
    color: var(--navy);
}
/* organization styles end*/

/* Test */
.robot-walk-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('IMAGES/robot2.jpg') no-repeat center center/cover;
}

/* Dark overlay so text and robot stand out */
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 21, 41, 0.7); /* Navy transparent */
    z-index: 1;
}

.walker-container {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8%;
}

/* The Rotating Broken Circle */
.walking-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px dashed var(--orange); /* "Broken" look using dashed */
    border-radius: 50%;
    animation: rotateCircle 10s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* The Robot Styling */
.robot-wrapper {
    position: relative;
    z-index: 3;
    animation: robotBob 2.2s ease-in-out infinite;
}

.walking-robot {
    width: 180px; /* Adjust robot size */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    border-radius: 10%;
}

/* Simulated Walking "Bob" */
@keyframes robotBob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 30px;
}

/* Advanced Solutions Section */
/* Advanced Solutions Styling */
/* --- Advanced Solutions Section --- */
.advanced-solutions {
    background: #f4f7fa; /* Light contrast from white sections */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
}

/* Header Badge & Title */
.badge {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.6;
}

/* --- The Grid & Scroll Logic --- */
.solutions-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row on Desktop */
    gap: 25px;
    padding: 20px 0 40px 0;
}

/* Responsive fix for Medium/Small Screens */
@media (max-width: 1100px) {
    .solutions-grid2 {
        display: flex; /* Switch to flex for scrolling */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
    }

    .solution-card2 {
        min-width: 280px; /* Ensures cards don't shrink */
        scroll-snap-align: start;
    }

    /* Show the "Scroll Right" Indicator only on mobile */
    .scroll-hint {
        display: block !important;
    }
}

/* --- Stylized Scrollbar --- */
.solutions-grid::-webkit-scrollbar {
    height: 8px;
}

.solutions-grid::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.solutions-grid::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

/* --- Solution Card Styling --- */
.solution-card2 {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.sol-image-wrapper {
    width: 70px;
    height: 70px;
    background: #fdf2e9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sol-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.solution-card2 h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-card2 p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Learn More Button */
.sol-more-btn {
    background: transparent;
    border: none;
    color: var(--orange);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    transition: 0.3s;
}

.sol-more-btn:hover {
    gap: 15px;
    color: var(--navy);
}

/* --- Scroll Hint (Mobile only) --- */
.scroll-hint {
    display: none;
    text-align: right;
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
    0% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.5; }
}

/* --- CTA Section --- */
.advanced-cta {
    margin-top: 50px;
    background: var(--navy);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.submit-btn2 {
    background: var(--orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    border: 2px solid var(--orange);
    margin-top: 20px;
}

.submit-btn2:hover {
    background: transparent;
    color: var(--orange);
}


/* separation line */
.tapered-line {
    width: 100%;       /* Full width of the parent div */
    height: 2px;       /* The thickness in the center */
    margin: 40px 0;    /* Space above and below the line */
    background: linear-gradient(
        to right, 
        transparent, 
        var(--orange) 50%, 
        transparent
    );
    border: none;      /* Ensures no default browser borders interfere */
}

/* Hamburger Icon */
.hamburger-icon {
    width: 45px;
    height: 45px;
}

/* Optional: Add a hover effect to the hamburger icon */
.hamburger-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* cross Icon */
.cross-icon {
    width: 32.5px;
    height: 32.5px;
    border-radius: 16px;
}

/* Optional: Add a hover effect to the cross icon */
.cross-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


/* Chat with Us Styles */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

.wa-text-button {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 5px 9px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px; /* Space between text and icon */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.wa-img {
    width: 60px;
    height: 60px;
    transition: 0.3s;
}

/* Hover Effects */
.whatsapp-float:hover .wa-text-button {
    background-color: #128C7E; /* Darker Green */
    transform: scale(1.05);
}

.whatsapp-float:hover .wa-img {
    transform: scale(1.1);
}

/* Hide the text button on small screens */
@media (max-width: 768px) {
    .wa-text-button {
        display: none;
    }
    
    /* Optional: Center the icon if the text disappears */
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
}