/* UNIVERSAL HOVER EFFECT FOR ALL HEADINGS */
h1, h2, h4, h5, h6, .text-item {
  position: relative;
  transition: transform 0.3s ease;
}

/* Text moves right */
h1:hover, h2:hover, h4:hover, h5:hover, h6:hover,
.text-item:hover {
  transform: translateX(6px);
}

/* --- ARROW (hidden initially) --- */
h1::before, h2::before, h4::before, h5::before, h6::before,
.text-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  width: 26px;
  height: 26px;
  background-image: url("arrow.svg") cross-fade(10);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s ease;
}

/* Arrow appears on hover */
h1:hover::before, h2:hover::before,
h4:hover::before, h5:hover::before, h6:hover::before,
.text-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- UNDERLINE --- */
h1::after, h2::after, h4::after, h5::after, h6::after,
.text-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff7300;
  transition: width 0.35s ease;
}

/* Underline expands */
h1:hover::after, h2:hover::after, 
h4:hover::after, h5:hover::after, h6:hover::after,
.text-item:hover::after {
  width: 100%;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}
/* FINAL PREMIUM MERGED SERVICE CARD */
.service-card {
    /* Layout & Structure */
    position: relative;
    overflow: hidden;
    text-align: center;

    /* Premium Background */
    background: linear-gradient(135deg, #d7ecff, #585a5c) !important;

    /* Asymmetric Rounded Corners */
    border-radius: 40px 80px 40px 80px;

    /* Spacing */
    padding: 40px 30px;

    /* Text Color */
    color: #000;

    /* Soft shadow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

    /* Before reveal (scroll reveal support) */
    opacity: 0;
    transform: translateY(40px) scale(1);

    /* Smooth transition */
    transition: 
        transform 0.55s ease,
        box-shadow 0.55s ease,
        opacity 0.55s ease;
}

/* DOT PATTERN BACKGROUND */
.service-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: url("https://itzadarsh.co.in/demo/dot.png");
    background-size: cover;
    opacity: 0.22;
    border-radius: 50%;
    pointer-events: none;
}

/* HOVER EFFECT – Lift + Soft Zoom + Glow */
.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

/* When .active is added by JS during scroll animation */
.service-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* Reduce Global Section Padding */
/* 🔥 Reduce padding for ALL sections EXCEPT Partners Section */
section:not(.partners-section,.india-hero, .hero-slider) {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}



/* Services Section spacing fix */
.services-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

/* Why Choose Us */
.why-choose-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}



/* FAQ */
.faq-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Gallery */
.gallery-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Testimonials */
.testimonials-section {
    padding-top: -60px !important;
    padding-bottom: 60px !important;
}

/* CTA */
.cta-section {
    padding-top: -60px !important;
    padding-bottom: -60px !important;
}

/* Contact Section */
.contact-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

footer {
    padding-top: 20px !important;
}
.container {
    padding-top: 0 !important;
}
/* ---------------------------------------------
   HOW IT WORKS : Premium Gradient Cards
---------------------------------------------- */
.how-it-works-section {
    padding: 9px 0;
    margin-top: -20px;
    margin-bottom: -20px;
    position: relative;
}

/* Title */
.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-top: -10px;
    color: #0b4a7a;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #ff7300;
    margin-bottom: 55px;
}

/* Grid layout */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Main card */
.step-card {
    background: linear-gradient(135deg, #ff7300, #ff7300);
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

/* Hover effect */
.step-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 22px 45px rgba(0,0,0,0.28);
}

/* EXACT Provided Image Style */
.step-number {
    position: absolute;
    bottom: 12px;
    left: 25px;

    font-size: 50px;             /* big number */
    font-weight: 700;
    line-height: 1;
    color: #006cb6;          /* no fill */
    
    font-family: 'Poppins', sans-serif;

    opacity: 0.8;
    pointer-events: none;
    user-select: none;
    
    transition: 0.3s ease;
}


/* Title inside card */
.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Description */
.step-description {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Scroll reveal animation */
.step-card.reveal {
    animation: fadeUpSteps 0.85s ease forwards;
}
.step-card.reveal-left {
    animation: fadeUpSteps 0.85s ease forwards;
}

@keyframes fadeUpSteps {
    0% { opacity: 0; transform: translateY(40px) scale(0.97); }
    60% { opacity: 1; transform: translateY(-5px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}


/* -----------------------------------------
   PREMIUM FOOTER HEADING (Auto-Underline + Hover Arrow)
----------------------------------------- */
.footer-column h3 {
    position: relative;
    padding-left: 28px;          /* arrow space */
    padding-bottom: 12px;        /* underline gap */
    font-size: 20px;
    font-weight: 600;
    color: #ff7300;
    display: inline-block;
    transition: transform 0.35s ease;
}

/* Arrow (hover par visible) */
.footer-column h3::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    font-size: 15px;
    color: #ff7300;
    opacity: 0;
    transition: 0.35s ease;
}

/* Underline (hidden initially — animate on scroll) */
.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: #ff7300;
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Footer visible = Underline animate for all h3 */
.footer.footer-visible .footer-column h3::after {
    width: 80px;
}

/* Hover effect: arrow slide-in + text right move */
.footer-column h3:hover {
    transform: translateX(6px);
}
.footer-column h3:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* -----------------------------------------
   FOOTER MAIN STYLING (Optimized + Clean)
----------------------------------------- */
.footer {
    background: #042b53 url('india-map.png') 
               center/cover no-repeat;
    color: #ffffff;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Footer grid layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Paragraph */
.footer-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ddd;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}
.footer-links a:hover {
    color: #ff7300;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: 0.3s ease;
}
.social-icon:hover {
    background: #ff7300;
    transform: translateY(-3px);
}

/* Footer bottom row */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #ddd;
    border-top: 1px solid rgba(255,255,255,0.1);
}


/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: rgb(255, 255, 255);
    
}
/* steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    
}

.step-card {
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.671);
    border-radius:   25px  25px  25px 25px ;
}
.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b4a7a;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #555;
}
/* ===============================
   iOS FORM BASE STYLE
================================ */
.form-group {
    position: relative;
    margin-bottom: 90px;
}

.form-control,
.form-message,
select.form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 16px;
    border: 1.8px solid #d5d5d5;
    background: rgba(255, 255, 255, 0.212);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    outline: none;
    transition: 0.25s ease;
}

.form-control:focus,
.form-message:focus,
select.form-control:focus {
    border-color: #ff7300;
    box-shadow: 0 0 0 4px rgba(247,147,30,0.25);
    background: #fff;
}

/* ========== FLOATING LABEL ========== */
.form-label {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 15px;
    color: #555;
    pointer-events: none;
    transition: 0.25s ease;
}
#popupForm input::placeholder,
#popupForm textarea::placeholder,
#popupForm select {
    color: #777 !important;   /* visible grey */
    opacity: 1 !important;
    font-size: 14px;
}


/* Input filled or focused */
.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label,
select.form-control:focus + .form-label,
select.form-control:not([value=""]) + .form-label,
.form-message:focus + .form-label,
.form-message:not(:placeholder-shown) + .form-label {
    top: -10px;
    left: 14px;
    font-size: 13px;
    color: #ff7300;
    background: #fff;
    border-radius: 15px;
    padding: 0 5px;
}

/* ========== SELECT DROPDOWN DESIGN ========== */
select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230b4a7a" height="20" width="20" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
}

/* Dropdown options */
select.form-control option {
    padding: 5px;
    background: #fff;
    font-size: 15px;
}


/* Option hover + selected */
select.form-control option:hover {
    background: #ffe0bf !important;
}
select.form-control option:checked {
    background: #ff7300 !important;
    color: #fff;
}

/* ========== ERROR MESSAGE ========== */
.error-message {
    font-size: 13px;
    color: #d90000;
    margin-top: 4px;
    display: block;
    padding-left: 4px;
    opacity: 0;
    transition: 0.3s ease;
}

/* Show Error */
.show-error .error-message {
    opacity: 1;
}

/* Red border error */
.show-error .form-control,
.show-error .form-message,
.show-error select.form-control {
    border-color: #d90000 !important;
    box-shadow: 0 0 0 4px rgba(217,0,0,0.18);
}

/* ========== SHAKE ANIMATION ========== */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.3s ease;
}
.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff7300, #FFA726);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
/* Popup Background */
.popup-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup-content {
    background: #fff;
    width: 420px;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Header */
.popup-header {
    background: #0b4a7a;
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-close i {
    cursor: pointer;
    font-size: 18px;
}

/* Body */
.popup-body {
    padding: 25px 25px 35px;
}

/* Floating Inputs */
.form-group {
    position: relative;
    margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 14px 12px;
    font-size: 15px;
    border: 1.8px solid #ddd;
    background: #fff;
    border-radius: 16px;
    outline: none;
    transition: 0.25s;
}

textarea { height: 80px; resize: none; }

/* Label */
.form-group label {
    position: absolute;
    top: 14px;
    left: 20px;
    color: #888;
    font-size: 15px;
    transition: 0.25s;
    pointer-events: none;
}

/* Floating effect when typing */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -6px;
    left: 10px;
    font-size: 12px;
    color: #ff7300;
    background: #fff;
    padding: 0 6px;
}

/* Focus effect */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff7300;
    box-shadow: 0 0 0 3px rgba(247,147,30,0.20);
}

/* Custom error text */
.error-text {
    font-size: 12px;
    color: #d00000;
    margin-top: 3px;
    display: block;
}

/* Submit Button */
.form-submit {
    width: 100%;
    background: #ff7300;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.form-submit:hover {
    background: #bd6500;
}

/* Shake error animation */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.error-shake {
    animation: shake 0.3s ease;
}
/* Hide scrollbar but keep scroll working */
.popup-content {
    scrollbar-width: none; /* Firefox */
}

.popup-content::-webkit-scrollbar {
    width: 0px;              /* Chrome */
    background: transparent; /* Chrome */
}

/* Base footer links */
.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding-left: 26px; /* left space for the arrow */
    transition: 0.3s ease;
}

/* Arrow ALWAYS visible */
.footer-links a::before {
    content: "\27A7";  /* → */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #ffbb00;      /* default orange arrow */
    transition: 0.35s cubic-bezier(.25,.8,.25,1);
}

/* Hover: text moves slightly right */
.footer-links a:hover {
    color: #ff7300;
    transform: translateX(4px);
}

/* Hover: arrow slides right smoothly + color change */
.footer-links a:hover::before {
    transform: translateY(-50%) translateX(6px);
    color: #ff7300;          /* arrow turns white */
}

/* FAQ Section */
.faq-section {
    padding-top: 60px 0;
    margin-top: -50px;
    margin-bottom: -50px;
    margin-top: -30px;
    background: #ffffff8e;
}

.faq-container {
    max-width: 800px;
    margin-top: -200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    margin-top: -10px;
    color: #0b4a7a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    color: #555;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
/* ==========================================================
   SECTION WRAPPER
========================================================== */
.cities-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.cities-contact-section .container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .cities-contact-section .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================
   TAG / TITLE
========================================================== */

.tag {
    background: #ff7b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.cities-title {
    margin: 15px 0 25px;
    font-size: 32px;
    line-height: 40px;
    color: #005792;
    font-weight: 800;
}

@media (max-width: 480px) {
    .cities-title {
        font-size: 26px;
        line-height: 34px;
    }
}

/* ==========================================================
   CITY GRID / CARDS
========================================================== */

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

.city-card {
    background: #005792;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

.city-card:hover {
    background: #ff7b00;
    transform: translateX(8px);
}

/* Arrow on hover */
.city-card::after {
    content: "→";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    color: #ffbe0b;
}

.city-card:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Animation when visible */
.city-card.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================
   FORM BOX
========================================================== */

.right-form {
    background: #ff7300;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
}

@media (max-width: 480px) {
    .right-form {
        padding: 30px 20px;
    }
}

.form-title {
    text-align: center;
    color: #005792;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 22px;
}

/* ----------------------------------------------------------
   INPUT GROUP
---------------------------------------------------------- */

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ff7300;
    border-radius: 10px;
    background: #ffffff9d;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #005792;
    box-shadow: 0 0 0 3px rgba(0, 87, 146, 0.15);
}

.input-group label {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 14px;
    color: #006cb6;
    transition: 0.3s ease;
    pointer-events: none;
    
}

/* Label animation */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 10px;
    background: #ff7300;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
}

/* Textarea */
.input-group.textarea textarea {
    height: 110px;
    resize: none;
}

/* ==========================================================
   SUBMIT BUTTON
========================================================== */

.submit-btn {
    width: 100%;
    background: #005792;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
    font-size: 15px;
}

.submit-btn:hover {
    background: #003d5c;
    transform: translateY(-2px);
}

/* Shake animation */
.shake {
    animation: shakeAnim 0.3s ease;
}

@keyframes shakeAnim {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}
/* ============================
   Wrapper
============================ */
.premium-services-section {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
}

.premium-title {
    font-size: 36px;
    font-weight: 800;
    color: #003d5c;
    margin-bottom: 10px;
}

.premium-subtitle {
    color: #ff7300;
    margin-bottom: 15px;
}

/* ============================
   Grid
============================ */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ============================
   Card
============================ */
.premium-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    margin-top: -20px;
    gap: 1px;
    border-bottom: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* Default State Animation */
    transform: scale(1) translateY(0);
    transition: 0.35s ease;
}

.premium-card:hover {
    transform: scale(1.05) translateY(-4px);
    border-bottom-color: #0b4a7a;
}

/* ============================
   Icon Circle + Rotation
============================ */

.premium-card:hover .icon-circle {
    animation: rotateIcon 1.2s linear infinite;
    background: #e3f2fd;
}


/* ============================
   Underline Motion
============================ */
.underline {
    position: absolute;
    bottom: 0;
    left: -100%;
    height: 3px;
    width: 100%;
    background: #006cb6;
    transition: 0.4s ease;
}

.premium-card:hover .underline {
    left: 0;
}

/* ============================
   Morphing Shadow (Premium Effect)
============================ */
.premium-card:hover {
    box-shadow: 0 12px 40px rgba(0, 90, 170, 0.18);
    border-radius: 20px;
}

/* Responsive Fix */
@media (max-width: 480px) {
    .premium-card {
        flex-direction: column;
        text-align: center;
    }
}
/* MAIN HERO */
.orb-hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f7ff;
}

/* Center Wrapper */
.orb-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px;
    z-index: 1;
}

/* Purple Orb */
.orb-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: orbPop 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(64, 131, 26, 0));
}

@keyframes orbPop {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 40px rgba(194, 255, 53, 0.5));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 70px rgba(193, 255, 50, 0.7));
    }
}

/* Person PNG (Floating) */
.orb-person {
    position: absolute;
    width: 500px;
    animation: floatPerson 5s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatPerson {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .orb-wrapper {
        width: 330px;
        height: 330px;
    }

    .orb-person {
        width: 450px;
    }

    .hero-content {
        margin-top: 300px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

/* DESKTOP NAV WRAPPER */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
}

.desktop-nav a,
.desktop-nav .drop-btn {
    color: #042B53;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

/* SERVICES DROPDOWN WRAPPER */
.desktop-nav .dropdown {
    position: relative;
}

/* Dropdown button */
.drop-btn {
    background: none;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Main dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-menu a,
.nested-menu a {
    display: block;
    padding: 10px 18px;
    color: #042B53;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Hover highlight */
.dropdown-menu a:hover,
.nested-menu a:hover {
    background: rgba(0,163,255,0.12);
    color: #ff7300;
}

/* NESTED B2B DROPDOWN */
.nested-dropdown {
    position: relative;
}

/* B2B BUTTON */
.nested-btn {
    padding: 10px 18px;
    width: 100%;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}
.desktop-nav .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.desktop-nav .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.desktop-nav .nested-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    left: 100%;
    top: 0;
    position: absolute;
}

.desktop-nav .nested-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Nested menu (right side) */
.nested-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.25s ease;
}

/* Show nested on hover */
.nested-dropdown:hover .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Arrow animation */
.dropdown:hover .drop-btn i {
    transform: rotate(180deg);
    transition: 0.3s ease;
}

.nested-dropdown:hover .nested-btn i {
    transform: rotate(90deg);
    transition: 0.2s ease;
}
/* CONTACT BOX WRAPPER */
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* INDIVIDUAL ITEM */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(6px);
    border-bottom: 3px solid #ff7300;
    transition: 0.3s ease;
}


/* DOTTED CIRCLE ICON */
.icon-circle {
    width: 65px;
    height: 65px;
    border: 2px dashed #ff7300;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 65px;
    transition: 0.4s ease;
}

.icon-circle i {
    font-size: 22px;
    color: #ff7300;
}

/* ROTATION ANIMATION ON HOVER */
.contact-item:hover .icon-circle {
    transform: rotate(360deg);
    border-color: #000000;
}

/* RIGHT CONTENT */
.contact-content h4 {
    margin: 0;
    font-size: 12px;
    color: #ff7300;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-content p {
    margin: 3px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .contact-item {
        padding: 15px;
        gap: 15px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .contact-content p {
        font-size: 13px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, #ff7300, #FFA726);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff7300;
    border: 2px solid #ff7300;
}

.btn-secondary:hover {
    background: #ff7300;
    color: white;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Popup Modal */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-modal.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-modal.active .popup-content {
    transform: scale(1);
}

.popup-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #0b4a7a, #0a3d6a);
    color: white;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-body {
    padding: 30px;
}



/* Header Styles */
.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 250px;
    margin-top: 0px;      /* 🚀 Image ko upar shift karega */
    margin-left: -20px;       /* left adjust if needed */
    margin-bottom: 0px;
    object-fit: contain;
    display: block;
}


.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7300;
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: #ff7300;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.drop-btn {
    background: #23a6f7;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.drop-btn:hover {
    background: #1a8fd7;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    top: 45px;
    width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* Mobile Panel */
.mobile-panel {
    position: fixed;
    top: 0;
    left: -300px;
    background: white;
    width: 300px;
    height: 100vh;
    padding: 25px;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-panel.open {
    left: 0;
}

.close-btn {
    text-align: right;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

.panel-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.panel-links a {
    font-size: 16px;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.panel-links h4 {
    margin-top: 20px;
    font-size: 16px;
    color: #ff7300;
    margin-bottom: 10px;
}

.panel-social {
    position: absolute;
    bottom: 20px;
    left: 25px;
    display: flex;
    gap: 15px;
}

.panel-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.panel-social a:hover {
    background: #ff7300;
    color: white;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}


.delivery-boy {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('https://itzadarsh.co.in/demo/h5-2.webp') center/contain no-repeat;
    z-index: 3;
    opacity: 0;
}

/* Animations for Hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes popInOut {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    20%, 80% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-images {
    width: 100%;
    max-width: 300px; /* adjust as per your layout */
    margin: 0 auto;
}

.about-images img {
    border-radius: 15px;
}
.about-image-main {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b4a7a;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Services Section - IMPROVED */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff, #dce4ea);

}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #ff7300;
    margin-bottom: 60px;
}

.partners-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;     /* Firefox */
}

.partners-carousel::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
}

.service-icon i {
    font-size: 40px;
    color: #830000;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 50%;
    color: #23a6f7;
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #23a6f7;
    color: white;
}

/* Service Card Animation */
@keyframes fadeUp {
    0% { opacity:0; transform:translateY(40px); }
    100% { opacity:1; transform:translateY(0); }
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.35s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.65s; }
.service-card:nth-child(5) { animation-delay: 0.8s; }
.service-card:nth-child(6) { animation-delay: 0.95s; }

/* Partners Section - NEW */
.partners-section {
    padding: 100px 0;
    /* Background Image + Fixed Parallax Effect */
    background-image:
        linear-gradient(135deg, rgba(11, 74, 122, 0), rgba(10, 61, 106, 0)),
        url(''); /* Replace with your image */

    background-attachment: fixed; /* FIXED IMAGE */
    background-size: cover;       /* Cover whole screen */
    background-position: center;  /* Center image nicely */
    background-repeat: no-repeat; /* No repeat */
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #ff7300;
    margin-bottom: 5px;
    margin-top: -90px;
}

.partners-subtitle {
    text-align: center;
    font-size: 18px;
    color: #006cb6;
    margin-bottom: 1px;
}

.partners-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.partners-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: -100px;
}

.partners-carousel:active {
    cursor: grabbing;
}

.partners-track {
    display: flex;
    gap: 5px;
    align-items: center;
    width: max-content;
}


.partners-track {
    display: flex;
    animation: scroll 15s linear infinite;
    width: fit-content;
    
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    filter: grayscale(10%);
    opacity: 0.9;
    transition: all 0.3s ease;
    
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-content {
    flex: 1;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b4a7a;
    margin-bottom: 20px;
}

.why-choose-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ff73008c;
    border-radius:   25px  25px  25px 25px;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0b4a7a;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
}

.why-choose-image {
    flex: 1;
    position: relative;
}

.why-choose-image-main {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-image-secondary {
    position: absolute;
    width: 60%;
    border-radius: 15px;
    bottom: -30px;
    right: -30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
/* Background like screenshot */
.stats-section {
    padding: 70px 0;
    background: #003b73; 
}

/* Grid */
.stats-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

/* Card */
.stat-box {
    background: #0000009c;
    border: 1px solid rgba(10, 10, 10, 0.315);
    border-radius: 22px;
    padding: 28px 20px 8px;
    margin-left: 28px;
    margin-right: 20px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: -2px;
}

/* Icon Circle */
.stat-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    left: auto;
    top: auto;
    
}

/* Number */
.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    position: absolute;
    left: 90px;
    top: 10px;
    margin-top: 5px;
}

/* + sign */
.plus {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    position: absolute;
    left: 115px;
    top: 40px;
}
.plus-data{
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    position: absolute;
    left: 140px;
    top: 40px;
}

/* Text Label */
.stat-text {
    font-size: 17px;
    color: #d3e6ff;
    margin-top: -20px;
    text-align: center;
    padding-left: 40%;
}
.footer .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.footer .contact-details i {
    font-size: 18px;
    color: #ff7300; /* highlight color */
}

.footer .contact-details a,
.footer .contact-details span {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}

.footer .contact-details a:hover {
    color: #fff;
}



/* Nested dropdown styling */
.nested-dropdown {
    padding-left: 15px;
}

.nested-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #333;
    padding: 10px 15px;
    font-size: 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
/* Main dropdown animation */
.dropdown-menu,
.nested-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* Inner B2B dropdown indent */
.nested-dropdown {
    padding-left: 15px;
}


.nested-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.03);
    margin-left: 10px;
    border-left: 2px solid #ff7300;
    transition: max-height 0.3s ease;
}

.nested-menu a {
    padding: 8px 15px;
    font-size: 14px;
    display: block;
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    margin-top: -20px;
    background: #f8f9fa;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding: 20px 0;
     scrollbar-width: none; /* Firefox */
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 0 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0b4a7a;
}
.author-info p {
    font-size: 14px;
    color: #666;
}
.testimonial-rating {
    color: #ff7300;
    margin-top: 10px;
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #ff7300;
}

/* CTA Section */
.cta-section {
    padding: 10px 0;
    color: white;
    text-align: center;
    margin-top: -20px;
    /* Background Image + Fixed Parallax Effect */
    background-image:
        linear-gradient(135deg, rgba(11, 74, 122, 0.205), rgba(10, 61, 106, 0.178)),
        url('https://itzadarsh.co.in/assets/trackship/img/way-to-India.jpg'); /* Replace with your image */

    background-attachment: fixed; /* FIXED IMAGE */
    background-size: cover;       /* Cover whole screen */
    background-position: center;  /* Center image nicely */
    background-repeat: no-repeat; /* No repeat */
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-cta {
    color: #fff;
}

.btn-cta:hover {
    background: #12a005;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline:hover {
    background: white;
    color: #0b4a7a;
}

/* REMOVE ALL GAPS / BORDERS */
.india-hero,
.road-layer,
.road-layer img {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* MAIN WRAPPER */
.india-hero {
    width: 100%;
    overflow: hidden;
}

/* ROAD BACKGROUND */
.road-layer {
    width: 100%;
    height: 228px;
    background: url("PNG/moving-bike-bg.png") center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* BIKES */
.bike {
    width: 100px;
    position: absolute;
    bottom: 0;
    z-index: 20;
}

/* LEFT → RIGHT */
.bike-left {
    animation: runRight 9s linear infinite;
}

/* RIGHT → LEFT */
.bike-right {
    animation: runLeft 11s linear infinite;
    transform: scaleX(-1);
    height: 100px;
}

/* ANIMATIONS */
@keyframes runRight {
    0% { left: -200px; }
    100% { left: 110%; }
}

@keyframes runLeft {
    0% { right: -200px; }
    100% { right: 110%; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .road-layer {
        height: 180px;
    }
    .bike {
        width: 80px;
    }
}
/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background: #006cb6;
}
.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-info {
    flex: 1;
}
.contact-form {
    flex: 1;
}
.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #ff7300;
    margin-bottom: 20px;
}
.contact-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 20px
    ;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.car {
  position: absolute;
  top: 90px; /* adjust height */
  left: -200px; /* start outside screen */
  width: 160px;
  opacity: 0;
  transition: transform 3s ease-out, opacity 0.8s ease-in;
}

/* Car drive animation */
.car.drive {
  opacity: 1;
  transform: translateX(120vw);
  animation-delay: 3.4s;
  
}


.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgb(247, 146, 30);
    
    border-radius:   25px  25px  25px 25px;
    color: #ff7300;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f16922;
    margin-bottom: 5px;
}

.contact-content p {
    font-size: 16px;
    color: #ff7300;
}

.call-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a630eb6;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.call-now:hover {
    background: #1a8fd7;
    transform: translateY(-3px);
}



.social-icons {
    display: flex;
    gap: 35px;
}
.social-icon img{
    height: auto;
    width: 25px;
    
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #b3a100;
    transform: translateY(-3px);
}



/* Reveal Animation - IMPROVED */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .why-choose-container {
        flex-direction: column;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 10px 15px;
    }
    .about-title, .why-choose-title, .cta-title, .contact-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Responsive Hamburger position & transition ---------- */
/* default hidden (desktop) */
.hamburger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1200;
    background: transparent;
    border: none;
    position: relative;
}

/* icon inside */
#hamburgerIcon {
    font-size: 22px;
    line-height: 1;
    transition: transform .35s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
    pointer-events: none;
    color: #333;
}

/* show cross using a separate element (avoid layout shift) */
.hamburger .cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
}

/* when active - hide bars icon and show cross */
.hamburger.active #hamburgerIcon {
    transform: rotate(-20deg) scale(.85);
    opacity: 0;
}
.hamburger.active .cross {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

/* mobile panel closing animation (cut-close) */
.mobile-panel {
    transform: translateX(-100%);
    transition: transform .42s cubic-bezier(.22,1,.36,1), opacity .25s ease;
    left: 0; /* will be controlled via transform rather than left */
    will-change: transform, opacity;
}

.mobile-panel.open {
    transform: translateX(0);
    opacity: 1;
}

.mobile-panel.closing {
    transform: translateX(-120%) scale(.98);
    opacity: 0;
}

/* overlay transitions */
.overlay {
    opacity: 0;
    transition: opacity .25s ease;
    display: block; /* keep it in DOM; visibility controlled via opacity */
    pointer-events: none;
}
.overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* place hamburger absolutely inside header on small screens so it doesn't shift */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    /* hide desktop nav in mobile */
    .desktop-nav { display: none; }
}



/* Icon Style */
.service-icon i {
    font-size: 42px;
    padding: 22px;
    background: radial-gradient(circle at 30% 30%, #ffd29f77, #ff323256);
    border-radius: 50%;
    color: #32b4ff;
    margin-bottom: 16px;
    z-index: 2;
    position: relative;
}

/* Title */
.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #083b74;
    position: relative;
    z-index: 2;
}

/* Description */
.service-description {
    color: #ffffff;
    font-size: 14.5px;
    margin-top: 10px;
    z-index: 2;
    position: relative;
    line-height: 1.5;
}

/* Arrow Button */
.service-link {
    margin-top: 20px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: #ff7300;
    border-radius: 50%;
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    background: #000000;
}

/* ========= SCROLL-IN ANIMATION ========= */
.reveal-service {
    opacity: 0;
    transform: translateY(10%);
    transition: 2.3s ease-out;
}

.reveal-service.active {
    opacity: 1;
    transform: translateY();
}
/* Mobile Dropdown */
.mobile-dropdown {
    margin-bottom: 10px;
    border-bottom: 1px solid #0575c0;
}

.drop-btn {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    color: #333;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.drop-btn i {
    transition: 0.3s;
}

.drop-btn.active i {
    transform: rotate(180deg);
}

/* Hidden Dropdown Menu */
.drop-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    display: flex;
    flex-direction: column;
}

.drop-menu a {
    padding: 10px 0 10px 10px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
}

.drop-menu a:hover {
    color: #ff7300;
}
.dropdown {
    margin-top: 10px;
}

.dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #ff7300;
    font-size: 16px;
    padding: 12px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle i {
    transition: 0.3s;
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: max-height 0.3s ease;
}

.dropdown-menu a {
    padding: 10px 15px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 1px;
}

.credit {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 15px;
    color: #ffffffcc;   /* light white */
    position: relative; /* safe for all layouts */
}

.credit a {
    font-weight: bold;
    text-decoration: none;
}

.credit a:hover {
    text-decoration: underline;
}
/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* White background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999; /* Sabse upar */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* WhatsApp Floater */
.whatsapp-floater {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
}

.whatsapp-floater:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-floater i {
    color: white;
    font-size: 28px;
}

/* Redirect Toast */
.redirect-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 15px;
}

.redirect-toast.active {
    display: flex;
}

.redirect-toast button {
    background-color: #ff7300;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.redirect-toast button:hover {
    background-color: #e6830d;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/*hero-section*/
		/* Reset and Base Styles */


