html,
body {
    width: 100%;
    overflow-x: hidden;
}



:root {
    --navy: #0a2540;
    --teal: #00d4aa;
}




body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(6, 86, 70, 0.5) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1030;
}



.navbar.scrolled {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(7, 97, 79, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.brand-logo {
    font-size: 22px;
    letter-spacing: 0.5px;
}

.brand-logo span {
    color: #00d4aa;
    /* brand accent color */
}

/* Mobile */
@media (max-width: 576px) {
    .brand-logo {
        font-size: 18px;
    }
}

.navbar-logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* FIXED Top Bar - No Gap on Desktop, No Overlap on Mobile */
.top-bar {
    font-size: 0.875rem;
    padding-top: env(safe-area-inset-top);
    /* Default desktop padding */
    padding: 6px 0;
}

/* DESKTOP - Seamless connection */
@media (min-width: 769px) {
    .top-bar {
        padding: 4px 0;
        /* Minimal padding */
    }

    .navbar {
        top: 37px !important;
        /* Exact top-bar height */
        margin-top: 0 !important;
    }

    .navbar.scrolled {
        top: 37px !important;
    }
}


/* MOBILE - Hide Top Bar */
@media (max-width: 768px) {

    /* Hide top bar */
    .top-bar {
        display: none !important;
    }

    /* Reset navbar position since top bar is hidden */
    .navbar {
        top: 0 !important;
    }

    .navbar.scrolled {
        top: 0 !important;
    }
}




/* Extra small screens */
@media (max-width: 576px) {
    .top-bar {
        padding: 6px 0 !important;
        font-size: 0.75rem;
    }

    .navbar {
        top: 0px !important;
    }

    .navbar.scrolled {
        top: 0px !important;
    }
}

/* iOS Safari Safe Area */
@supports (padding-top: env(safe-area-inset-top)) {
    .top-bar {
        padding-top: max(6px, env(safe-area-inset-top));
    }
}





/* ===== TOP BAR BASE (DESKTOP DEFAULT) ===== */
.top-bar {
    z-index: 1030;
}

.top-contact {
    font-size: 14px;
}

/* Desktop: keep Bootstrap layout intact */
.top-contact-wrap,
.social-wrap {
    display: block;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 767px) {

    /* Email + Phone in ONE row */
    .top-contact {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Social icons below & centered */
    .social-wrap {
        display: flex;
        justify-content: center;
        margin-top: 6px;
    }

    .social-icons a {
        margin: 0 8px;
    }
}

/* Push content down (fixed top bar) */
body {
    padding-top: 42px;
}


.top-bar a:hover {
    color: var(--navy) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--teal) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: rgba(0, 212, 170, 0.1);
    color: var(--teal) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(0, 212, 170, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Active Nav Link */
.navbar-nav .nav-link.active {
    color: #00d4aa !important;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 212, 170, 0.2);
    font-weight: 600;
    position: relative;
}

/* Active link underline effect */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa, #00f5bb);
    border-radius: 1px;
}

/* Hover state for active */
.navbar-nav .nav-link.active:hover {
    color: #00f5bb !important;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    transform: translateY(-1px);
}




.hero {
    position: relative;
    min-height: 95vh;
    overflow: hidden;
}

/* Video full size */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover entire hero */
    z-index: 0;
}

@supports (-webkit-touch-callout: none) {
    .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}


/* Hero content above video */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Optional overlay for better text readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    /* semi-transparent dark overlay */
    z-index: 1;
}



/* Mobile view button in hero size fix */
@media (max-width: 576px) {
    .btn-lg {
        font-size: 0.9rem;
        padding: 10px 18px !important;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
        text-align: center;
    }
}


/* Logo Card */
.logo-card {
    position: relative;
    z-index: 3;
    background: transparent;
    max-width: 560px;
    /* bigger */
    padding: 0;
    box-shadow: none;
}

.logo-card img {
    width: 100%;
    max-height: 380px;
    /* bigger logo */
    object-fit: contain;
}

/* marquee  */

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}



/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

#heroText {
    display: inline-block;
    min-height: 70px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.founder-img-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
    z-index: 1;
    /* creates stacking context */
}

/* Dotted background */
.founder-img-wrapper::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 60px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00d4aa 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: -1;
    /* 🔥 THIS IS THE KEY */
}

.founder-img-wrapper img {
    position: relative;
    z-index: 2;
    background: #fff;
}

@media (max-width: 768px) {
    .founder-img-wrapper::before {
        top: 0;
        left: 0;
        border-radius: 30px;
    }
}


/* Founder Card */
.founder-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-img img {
    margin-left: 10px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--teal);
}

.founder-info p {
    font-size: 15px;
    line-height: 1.6;
}

/* Social Buttons Hover */
.social-links .btn:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}



.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    transition: width 1.5s ease-in-out;
}


/* **************** */

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.service-card i {
    font-size: 40px;
    color: var(--teal);
}



/* Review section */



/* ===============================
   Carousel Button Position (Desktop)
   =============================== */
.custom-carousel-btn.carousel-control-prev {
    left: -60px;
    /* shift left */
}

.custom-carousel-btn.carousel-control-next {
    right: -60px;
    /* shift right */
}

/* Optional: nicer button look */
.custom-carousel-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

/* ===============================
   Mobile View – Disable Buttons
   =============================== */
@media (max-width: 576px) {
    .custom-carousel-btn {
        display: none !important;
        /* hides & disables */
        pointer-events: none;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars i {
    font-size: 1.1rem;
}

.custom-carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #00d4aa;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 10;
    /* Separate positioning for prev/next */
}

@media (max-width: 768px) {
    .custom-carousel-btn.carousel-control-prev {
        left: 5px;
    }

    .custom-carousel-btn.carousel-control-next {
        right: 5px;
    }
}

.custom-carousel-btn:hover {
    background: #00d4aa;
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(13, 202, 240, 0.4);
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
    background-size: 70% 70% !important;
    opacity: 1 !important;
    background-image: none !important;
    /* Remove default Bootstrap arrows */
}

/* Custom Green Arrows */
.custom-carousel-btn.carousel-control-prev::before {
    content: "←";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00d4aa;
    font-size: 20px;
    font-weight: bold;
}

.custom-carousel-btn.carousel-control-next::after {
    content: "→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00d4aa;
    font-size: 20px;
    font-weight: bold;
}

.custom-carousel-btn:hover::before,
.custom-carousel-btn:hover::after {
    color: #fff !important;
}


/* price and package  */
.package-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.package-header.popular {
    background: linear-gradient(135deg, #00d4aa 0%, #00d4aa 100%);
    color: white;
}

.package-header.popular .current-price .amount {
    color: white !important;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 300;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4aa;
    ;
    line-height: 1;
}



.feature-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-weight: 500;
    border-bottom: 1px solid #f8f9fa;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.package-footer {
    padding: 0 2rem 2rem;
}

.btn-teal {
    background: linear-gradient(135deg, #00d4aa 0%, #77f8c9 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(86, 244, 176, 0.4);
}

@media (max-width: 768px) {
    .amount {
        font-size: 2.5rem;
    }
}



/* Why Choose Us Section Styles */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #191e1d, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #13725f;
    margin-top: 0.5rem;
}

.cta-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e9ecef;
}

.process-timeline {
    position: relative;
}



.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .timeline-item:hover {
        transform: none;
    }
}

.timeline-item.active {
    opacity: 1;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(13, 202, 240, 0.3);
}

.timeline-icon i {
    color: white;
    font-size: 1.5rem;
}

.timeline-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00d4aa;
}

.timeline-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00d4aa, #00d4aa);
    z-index: 0;
}

@media (max-width: 768px) {

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }

    /* ✅ Hide the vertical line on mobile */
    .process-timeline::before {
        content: none !important;
        display: none !important;
    }
}




:root {
    --slider-speed: 15s;
    /* change speed here */
}

/* ===== SECTION ===== */
.clients-section {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    margin-bottom: 40px;
}

.clients-title h2 {
    font-weight: 700;
    color: #2c3e50;
}

.clients-title p {
    color: #6c757d;
}

/* ===== SLIDER ===== */
.logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    width: max-content;
    animation: scroll var(--slider-speed) linear infinite;
}

.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

/* ===== LOGO ITEM ===== */


.clients-section {
    padding: 60px 0;
    background: #fff;
}

.clients-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.clients-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.clients-title p {
    color: #666;
    font-size: 15px;
}

.logos-slider {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    width: max-content;
}

.logo-item {
    flex: 0 0 auto;
    padding: 15px 40px;
}

.logo-item img {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* LEFT TO RIGHT */
.slide-left {
    animation: slideLeft 25s linear infinite;
}

/* RIGHT TO LEFT */
.slide-right {
    animation: slideRight 25s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
    .logo-item {
        padding: 10px 25px;
    }

    .logo-item img {
        max-height: 45px;
    }
}

.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-item img {
    max-width: 150px;
    max-height: 100px;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-item:hover img {
    /* filter: grayscale(0%); */
    opacity: 1;
    transform: scale(1.05);
}

/* ===== ANIMATION ===== */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .logo-item {
        width: 130px;
        height: 70px;
        margin: 0 12px;
    }

    .logo-item img {
        max-width: 90px;
        max-height: 45px;
    }
}













/* Call Floating Button */



.call-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    /* above WhatsApp */
    width: 65px;
    height: 65px;
    background: #0d6efd;
    /* Bootstrap blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
    transition: all 0.4s ease;
    z-index: 9999;
}

/* Hover effect (desktop only look) */
.call-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.6);
}

/* Icon animation */
.call-float i {
    animation: ring 1.5s infinite;
}



/* ===============================
   Mobile – Slight Transparency
   =============================== */
@media (max-width: 576px) {

    .whatsapp-float,
    .call-float {
        opacity: 0.65;
        /* 👈 slightly transparent */
        backdrop-filter: blur(2px);
        /* optional soft look */

    }

    .whatsapp-float:hover,
    .call-float:hover {
        opacity: 0.9;
    }
}


/* Ring animation */
@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .call-float {
        width: 60px;
        height: 60px;
        font-size: 24px;
        right: 15px;
        bottom: 90px;
    }
}








/* Preloader Wrapper */

#preloader {
    overflow: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #0a2540;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Content */
.loader-content {
    text-align: center;
    color: #ffffff;
}

/* Spinner */
.spinner {
    width: 55px;
    height: 55px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fade out animation */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}









.bg-navy {
    background-color: var(--navy) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.text-teal {
    color: var(--teal) !important;
}

.bg-teal {
    background-color: var(--teal) !important;
}

.btn-teal {
    background-color: var(--teal);
    border-color: var(--teal);
    color: white;
}

.btn-teal:hover {
    background-color: #0a2540;
    border-color: #00b894;
    color: white;
}

.btn-outline-teal {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-outline-teal:hover {
    background-color: var(--navy);
    border-color: var(--teal);
    color: white;
}

.stat-item {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card img {
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 120px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .top-bar .row>div {
        text-align: center !important;
        margin-bottom: 5px;
    }

    .top-bar .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 30px;
    }

    .counter {
        font-size: 2rem;
    }

    .stat-item {
        padding: 15px;
    }

    .service-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .service-card i {
        font-size: 30px;
    }

    .team-card {
        margin-bottom: 30px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        font-size: 24px;
        padding: 12px;
    }

    .alert {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .counter {
        font-size: 1.75rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card i {
        font-size: 25px;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .navbar-logo {
        height: 25px;
    }

    .whatsapp-float {
        right: 10px;
        bottom: 10px;
        font-size: 20px;
        padding: 10px;
    }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    /* VISIBLE by default */
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    z-index: 9999;
    border: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    right: 25px;
    /* Slight move right on hover */
}

.whatsapp-float i {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .whatsapp-float:hover {
        right: 15px;
    }
}


/* Pulse animation */
@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 26px;
        bottom: 20px;
        right: 15px;
    }
}



/* Footer Styles - No underlines, professional */


.linkedin-icon,
.linkedin-icon:hover,
.linkedin-icon:focus,
.linkedin-icon:active {
    text-decoration: none !important;
}


.footer-logo {
    width: 50px;
    height: 85px;
    object-fit: contain;
}

.bg-navy {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.footer-links a {
    text-decoration: none !important;
    /* NO UNDERLINES */
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}



/* Responsive footer */
@media (max-width: 768px) {
    .footer-logo {
        width: 45px;
        height: 70px;
    }

    .social-footer a {
        font-size: 1.5rem;
    }
}


.footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-links i {
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover+i,
.footer-links a:hover~i {
    transform: translateX(3px);
}

.footer-links a:hover {
    color: #00d4aa !important;
}

.footer-logo {
    width: 160px;
    /* desktop size */
    max-width: 100%;
}

.footer-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 576px) {
    .footer-logo {
        width: 130px;
    }

    .footer-text {

        /* FIXED Top Bar Mobile Overlap Issue */
        .top-bar {
            font-size: 0.875rem;
            /* Add top padding to account for safe area */
            padding-top: env(safe-area-inset-top);
        }

        /* Mobile Specific Fix */
        @media (max-width: 768px) {
            .top-bar {
                padding: 8px 0 !important;
                /* Fixed padding */
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .top-bar .row>div {
                margin-bottom: 4px !important;
                /* Stack with spacing */
                text-align: center !important;
            }

            /* Ensure proper stacking - no overlap */
            .top-bar .col-12 {
                display: block !important;
                width: 100% !important;
            }

            /* Navbar offset - CRITICAL FIX */
            .navbar {
                top: 52px !important;
                /* top-bar height + padding */
            }

            .navbar.scrolled {
                top: 52px !important;
            }
        }

        /* Extra small screens */
        @media (max-width: 576px) {
            .top-bar {
                padding: 6px 0 !important;
                font-size: 0.75rem;
            }

            .navbar {
                top: 46px !important;
            }

            .navbar.scrolled {
                top: 46px !important;
            }

            /* Phone number specific fix */
            .top-bar span[ class*="me-2 text-teal"]+span {
                display: block;
                margin-top: 2px;
            }
        }

        /* iOS Safari Safe Area */
        @supports (padding-top: env(safe-area-inset-top)) {
            .top-bar {
                padding-top: max(8px, env(safe-area-inset-top));
            }

            .navbar {
                top: max(52px, calc(env(safe-area-inset-top) + 44px)) !important;
            }
        }

        font-size: 16px;
    }
}


/* about page hero section */
.hero2 {
    position: relative;
    padding: 100px 0;
    min-height: 40vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover entire hero area */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 43, 43, 0.7);
    /* overlay to make text readable */
    z-index: 1;
}

.hero2 .container {
    position: relative;
    z-index: 2;
    /* text above overlay and image */
}

.hero2 h1 {
    margin-top: 70px;
    font-size: 3rem;
    font-weight: bold;
}

.hero2 p.lead {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .hero2 {
        padding: 80px 0;
    }

    .hero2 h1 {
        font-size: 2rem;
    }

    .hero2 p.lead {
        font-size: 1rem;
    }
}

/* our stories section */
.story-card {
    border-radius: 12px;
    background: #fff;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--teal);
    color: #0a2540;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .story-badge {
        bottom: 10px;
        left: 10px;
        font-size: 0.85rem;
    }
}

.blended-image {
    max-width: 100%;
    opacity: 100%;
    mix-blend-mode: multiply;
    position: relative;
}

/* 📱 Mobile screens */
@media (max-width: 768px) {
    .blended-image {
        max-width: 100%;
        margin: 0 auto;
        /* centers the image */
        mix-blend-mode: normal;
        /* cleaner on mobile */
        opacity: 1;
    }
}





/* Founder Image Wrapper */
/* Founder Image Card */
.founder-image-card {
    background: #fff;
    border-radius: 24px;
    padding: 12px;
    max-width: 380px;
    margin: auto;
    transition: transform 0.3s ease;
}

.founder-image-card img {
    border-radius: 20px;
}

.founder-image-card:hover {
    transform: translateY(-8px);
}

/* Heading underline */
.heading-underline {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #00d4aa;
    border-radius: 2px;
}

/* Text color helper */
.text-navy {
    color: #0a2540;
}


/* Wrapper */
.founder-image-wrapper {
    max-width: 380px;
    margin: auto;
    position: relative;
}

/* Dotted background */
.dot-bg {
    position: absolute;
    top: -58px;
    left: -58px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00d4aa 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    border-radius: 28px;
    z-index: 1;
}

/* Founder Image (Curved Corners) */
.founder-img {
    position: relative;
    z-index: 2;
    border-radius: 32px 8px 32px 8px;
    /* top-left | top-right | bottom-right | bottom-left */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Hover lift */
.founder-img:hover {
    transform: translateY(-6px);
}

/* Mobile tweak */
@media (max-width: 768px) {
    .founder-image-wrapper {
        max-width: 280px;
    }

    .dot-bg {
        top: -15px;
        left: -15px;
    }
}








/* service page */

/* ==========================
   FLIP SERVICES CARDS
========================== */

.services-flip {
    background: #fff;
}

/* Card Container */
.flip-card {
    perspective: 1000px;
    height: 280px;
}

/* Inner */
.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

/* Hover (Desktop) */
.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Front */
.flip-front {
    background: #ffffff;
}

/* Back */
.flip-back {
    background: linear-gradient(135deg, var(--navy), #103a63);
    color: #fff;
    transform: rotateY(180deg);
}

.flip-back ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.flip-back li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), #4df1c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .flip-card {
        height: 260px;
    }
}

/* FAQ Styling */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 212, 170, 0.1);
    color: var(--navy);
}

/* Video Card */
.video-card iframe {
    border: none;
}

/* Banner Styles */
.flashing-offer {
    background-color: #00d4aa;
    color: white;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    opacity: 0;
    /* invisible initially */
}

/* Banner text */
.flashing-offer h4 {
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

/* Highlighted offer */
.offer-highlight {
    color: #fff200;
    font-weight: bold;
    margin-left: 5px;
}

/* Close button */
.close-offer {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 1s forwards;
}

/* Flashing animation */
.flash {
    animation: flash 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.6;
    }
}


body {
    background: #f8f9fa;
}

.btn-teal {
    background: #00bfa6;
    color: #fff;
    border: none;
}

.btn-teal.active,
.btn-teal:hover {
    background: #0a2540;
    color: #fff;
}

/* Portfolio */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item {
    display: block;
}

.hidden {
    display: none !important;
}