/* style.css */
@font-face {
    font-family: AlanSans;
    src: url(fonts/AlanSans-VariableFont_wght.ttf);
}
@font-face {
    font-family: inter;
    src: url(fonts/Inter-VariableFont_opsz\,wght\ copy.ttf);
}
body {
    font-family: AlanSans;
    color: #000;
}
p{
    font-family:inter !important;
}

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden; /* Prevents video from spilling out */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Sits behind everything */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures it acts like background-size: cover */
}

/* Adds a dark tint so your white/primary text stays readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: -1;
}

/* Ensure your text content stays on top */
.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    letter-spacing: -2px;
    line-height: 1.1;
}
.logo-container1{
    max-height: 250px;
}

.custom-nav {
    /* max-width: 900px; */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}




/* --- Mobile Left-to-Right Sidebar Styles --- */
@media (max-width: 991.98px) {

    /* Navbar */
    .custom-nav {
        margin: 10px !important;
        border-radius: 12px;
        backdrop-filter: blur(8px); /* FIXED */
    }

    /* Toggler Icon */
    .navbar-toggler-icon {
        filter: invert(1);
    }

    /* Sidebar */
    .offcanvas {
        background: linear-gradient(180deg, #ffffff 0%, #003cff 100%);
        width: 270px;
        height: 100vh;
        z-index: 1055 !important;
        border-right: none;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    }

    /* Header */
    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.5rem;
    }

    .offcanvas-title {
        color: #fff;
        letter-spacing: 2px;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    /* Body */
    .offcanvas-body {
        overflow-y: auto;
        padding: 1rem 1.5rem;
    }

    /* Nav Links */
    .navbar-nav {
        margin-top: 10px;
    }

    .nav-link {
        color: #ffffff !important;
        font-size: 1.05rem;
        padding: 14px 10px !important;
        border-radius: 8px;
        margin-bottom: 5px;
        display: block;
        transition: all 0.3s ease;
    }

    /* Hover & Active */
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: #00d2ff !important;
        transform: translateX(5px);
    }

    /* Divider */
    hr {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 15px 0;
    }

    /* Contact Button */
    .btn-contact {
        background: #00d2ff;
        color: #000 !important;
        font-weight: 600;
        margin-top: 15px;
        padding: 10px;
        border-radius: 25px;
        text-align: center;
        transition: 0.3s ease;
    }

    .btn-contact:hover {
        background: #fff;
        color: #000 !important;
    }
}




/* Custom Staggered Delays */
.anim-1 { animation-delay: 0.2s; }
.anim-2 { animation-delay: 0.5s; }
.anim-3 { animation-delay: 0.8s; }

/* Smoothness Tweak */
.animate__animated {
    --animate-duration: 0.8s; /* Makes the slide-up feel more premium */
}

/* Optional: Button Hover Animation */
.hero-btns .btn {
    transition: transform 0.3s ease;
}
.hero-btns .btn:hover {
    transform: translateY(-3px);
}

/* Button Customization */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    font-weight: 500;
}

.btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.about-section {
    /* Bold blue gradient background */
    background: linear-gradient(135deg, #0056b3 0%, #002d5f 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-main-text {
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-label .arrow-icon {
    font-size: 0.8rem;
    transform: rotate(-45deg); /* Matches the screenshot's arrow style */
}

.about-description p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-section {
    background-color: #ffffff;
}

.service-card {
    background-color: #f4f9ff; /* Subtle light blue tint */
    padding: 30px;
    border-radius: 12px;
    border: none;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #ebf4ff; /* Slightly darker on hover */
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.service-icon {
    font-size: 1.2rem;
}

.growth-section {
    overflow: hidden;
}

.growth-heading h2 {
    text-align: center;
    letter-spacing: -3px;
    line-height: 1;
    color: #000;
}

/* Custom Blue Underline */
.custom-underline {
    position: relative;
    display: inline-block;
}

.custom-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px; /* Adjust based on font weight */
    width: 100%;
    height: 8px;
    background-color: #0d6efd;
    z-index: -1;
    opacity: 0.8;
}

/* Image Parallax Setup */
.growth-image-container {
    height: 700px; /* Fixed height for the parallax effect */
    width: 100%;
    /* position: relative; */
}

.growth-img {
    height: 120%; /* Taller than container to allow room to move */
    object-fit: cover;
    transform: translateY(-10%);
}

/* style.css */
.process-icon-box {
    width: 100%;
    height: 180px; /* Adjust to match the aspect ratio in screenshot */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-icon-box:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.step-item h3 {
    letter-spacing: -1px;
}

.step-item p u {
    text-decoration-color: #0d6efd;
    text-underline-offset: 4px;
}

/* Specific logo styling at bottom left if needed */
.brand-footer-logo {
    width: 120px;
    margin-top: 50px;
}

.masked-text {
    /* Set the background image (use a colorful or sky-themed image) */
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=800') no-repeat;
    background-size: cover;
    background-position: center;
    
    /* Clip background to text */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Make the text color transparent so the background shows through */
    color: transparent;
    
    /* Fallback for older browsers */
    display: inline-block;
    line-height: 1;
    letter-spacing: -2px;
}

/* Optional: Different images for Vision vs Mission to match the screenshot vibe */
.vision-block .masked-text {
    background-image: url('images/0410f82cf4ca73a597c4f2b699138a0bc260118e.jpg');
}

.mission-block .masked-text {
    background-image: url('images/d15e4046b491b393efb6d1e3e60ac6bcec82c9d7.jpg');
}

.vision-mission-section p {
    font-weight: 500;
    line-height: 1.5;
}

.benefits-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/unsplash_E3LsanLgkLM.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    transform: scale(1.1); /* Prevents white edges from the blur */
}

.benefits-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

.benefits-section .container {
    z-index: 3; /* Keeps content above background */
}

.benefit-item h4 {
    letter-spacing: -0.5px;
}

.benefit-item p {
    font-size: 1.1rem;
    max-width: 320px;
}

.testimonial-card {
    background-color: #efefef;
    max-width: 600px; /* Width of cards on desktop */
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
}

.testimonial-slider {
    cursor: grab;
}

.testimonial-slider:active {
    cursor: grabbing;
}

.cursor-pointer { cursor: pointer; }

.faq-icon {
    width: 35px;
    height: 35px;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: #0d6efd; /* Primary blue */
}

.faq-header h4 {
    letter-spacing: -0.5px;
    max-width: 90%;
}

.faq-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.display-1 {
    letter-spacing: -4px;
    color: #001d3d; /* Dark Navy from your screenshot */
}

/* Custom border color for the top of the section */
.border-primary {
    border-color: #0d6efd !important;
}
.text-navy {
    color: #001d3d; /* Dark navy color */
}

.display-1 {
    letter-spacing: -4px;
    line-height: 0.9;
}

.contact-section .card img {
    filter: brightness(0.95);
}

.map-placeholder {
    border: 1px solid #eee;
}
/* Banner Styling */
.cta-banner {
    background-color: #0d6efd !important;
    border-radius: 25px !important;
}

.banner-title {
    letter-spacing: -2px;
    font-size: 3.5rem; /* Larger to match screenshot */
}

.cta-small-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Book a Call Links */
.display-2 {
    font-size: 4.5rem; /* Huge impact font */
    letter-spacing: -3px;
    font-weight: 800 !important;
    transition: all 0.3s ease;
}

.hover-link:hover {
    color: #0044cc !important;
}

/* WhatsApp Button */
.bg-whatsapp {
    background-color: #25D366 !important;
    width: 90px;
    height: 90px;
}

.whatsapp-icon-wrapper {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-icon-wrapper:hover {
    transform: scale(1.1) rotate(15deg);
}

.footer-section {
    background: linear-gradient(135deg, #0052cc 0%, #002d5f 100%);
    /* min-height: 60vh; */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/* Background Watermark */
.footer-map-watermark {
    position: absolute;
    left: 5%;
    top: 10%;
    width: 300px;
    z-index: 0;
    pointer-events: none;
}

.footer-map-watermark img {
    width: 100%;
    filter: brightness(0) invert(1); /* Makes the map white-ish */
}

/* Links Styling */
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Outlined Typography */
.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.8;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .footer-base-branding {
        text-align: center;
        align-items: center !important;
    }
    .outline-text {
        font-size: 5rem;
        margin-bottom: 20px !important;
    }
}
/* Responsive fixes */
@media (max-width: 768px) {
    .banner-title { font-size: 2.2rem; text-align: center; }
    .display-2 { font-size: 2.5rem; letter-spacing: -1px; }
    .bg-whatsapp { width: 65px; height: 65px; }
    .cta-banner { text-align: center !important; }
    .testimonial-card {
    background-color: #efefef;
    max-width: 300px !important; /* Width of cards on desktop */
    flex-shrink: 0;
}
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .display-1 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    .col-lg-4 {
        height: 400px; /* Force height on smaller screens */
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        padding: 2rem !important;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .faq-accordion-pro{
        margin-top: -150px !important;
    }
    .mt-nahi{
        margin-top: -80% !important;
    }
}

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

@media (max-width: 768px) {
    .process-icon-box {
        height: 140px;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .growth-heading h2 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .growth-image-container {
        height: 400px;
    }
}

/* Ensure text doesn't get too wide on massive screens */
@media (min-width: 1200px) {
    .about-main-text {
        max-width: 90%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-nav {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .mobile-border-none {
        border-top: none !important;
    }
}


/* Ensure links are visible on mobile sidebars */
@media (max-width: 991.98px) {
    .offcanvas-body .nav-link {
        color: #ffffff !important; /* Forces white text */
        display: block !important;  /* Ensures they take up space */
        opacity: 1 !important;      /* Removes any transparency */
        padding: 1.2rem 1rem !important; 
        font-size: 1.1rem;
        z-index: 1; /* Ensures they sit above the background */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Active State for visibility */
    .offcanvas-body .nav-link.active {
        color: #00d2ff !important; 
        font-weight: bold;
    }
}