/* ------------------------------
   GLOBAL STYLES
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ------------------------------
   NAVBAR
------------------------------ */
.agentimg{
  
    width: 3rem;
    border-radius: 50%;
}
.navbar {
    width: 100%;
    background: black;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 5rem;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* space-between se hatakar */
    gap: 27px;
    /* moderate spacing between logo, links, and user-info */
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    transition: all 0.4s ease;
    gap: 25px;
    margin-left: auto;

}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

.call-btn {
    background: #00bcd4;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.call-btn:hover {
    background: #0097a7;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}


/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
    background: linear-gradient(135deg, #00bcd4, #007bff);
    color: #fff;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.hero-text h1 {
    /* font-size: 44px; */
    line-height: 1.2;
    margin-bottom: 20px;
    color: black;
}


.hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
    color: black;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #007bff;
}

.btn-primary:hover {
    background: #f2f2f2;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-image img {
    width: 450px;
    max-width: 100%;
    border-radius: 1rem;
}

/* ------------------------------
   STATS SECTION
------------------------------ */
/* .stats {
    background: #f8f9fa;
    padding: 60px 0;
} */

/* .stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
} */

.stat {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 260px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h2 {
    color: #007bff;
    font-size: 32px;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 15px;
}

/* ------------------------------
   SIGN UP / LOGIN SECTION start
------------------------------ */
/* WRAPPER */
.tm-auth-wrapper {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #eef3ff, #dfe7ff);
}

/* CARD */
.tm-auth-card {
    width: 100%;
    max-width: 1100px;
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* LEFT IMAGE */
.tm-auth-left {
    width: 40%;
}

.tm-auth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE */
.tm-auth-right {
    width: 60%;
    padding: 50px;
}

.tm-auth-heading {
    font-size: 32px;
    font-weight: 700;
}

.tm-auth-text {
    color:black;
    margin-bottom: 25px;
}

/* ROWS */
.tm-auth-row2 {
    display: flex;
    gap: 20px;
}

/* FORM GROUP */
.tm-auth-group {
    flex: 1;
    margin-bottom: 18px;
}

.tm-auth-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.tm-auth-group input,
.tm-auth-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    border: 1px solid #ccd1dd;
    background: #f8faff;
    transition: .2s;
}

.tm-auth-group input:focus,
.tm-auth-group select:focus {
    border-color: #2d6cff;
    box-shadow: 0 0 5px rgba(45, 108, 255, 0.4);
}

/* TERMS */
.tm-auth-terms {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* BUTTON */
.tm-auth-btn {
    width: 100%;
    padding: 14px;
    background: #2d6cff;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s;
}

.tm-auth-btn:hover {
    background: #1c55e6;
}

/* BOTTOM LINK */
.tm-auth-bottom {
    text-align: center;
    margin-top: 15px;
}

.tm-auth-bottom a {
    color: #2d6cff;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tm-auth-left {
        width: 35%;
    }

    .tm-auth-right {
        width: 65%;
    }
}

@media (max-width: 768px) {
    .tm-auth-card {
        flex-direction: column;
    }

    .tm-auth-left {
        display: none;
    }

    .tm-auth-right {
        width: 100%;
        padding: 30px;
    }

    .tm-auth-row2 {
        flex-direction: column;
    }
}


/* signup login end */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        gap: 20px;
        transform: translateY(-300px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .call-btn {
        display: none;
    }

    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 25px;
    }

    .stat {
        width: 80%;
    }

    .signup-form-box {
        box-shadow: none;
        padding: 20px;
        margin-top: 3rem;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}



/* dashboard css */




/* ---------- CALL BUTTON ---------- */
.call-btn {
    background: #00bcd4;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.call-btn:hover {
    background: #0097a7;
}

/* ---------- USER INFO ---------- */
.user-info {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-avatar {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #333;
    padding: 7px;
}

.user-avatar i {
    font-size: 22px;
    color: #007bff;
}

.user-dropdown {
    position: absolute;
    top: 40px;
    right: -4px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    display: none;
    flex-direction: column;
    width: 100px;
}

.user-dropdown a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    display: block;
}

.user-dropdown a:hover {
    background: #f5f5f5;
}

.user-info.active .user-dropdown {
    display: flex;
}

/* ---------- MENU TOGGLE (MOBILE) ---------- */

/* ---------- RESPONSIVE ---------- */

.user-name {
    color: white;
}

@media (max-width: 991px) {
    .nav-inner {
        flex-wrap: wrap;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: black;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 15px 0;
        transform: translateY(-300px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        box-shadow: 0 0 17px #007bff;
        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        border: 1px solid black;
        border-radius: 5px;
    }

    .user-info {
        margin-left: auto;
        order: 3;
    }

    .logo {
        order: 1;
    }

    .menu-toggle {
        order: 0;
    }

    .call-btn {
        display: none;
    }
}


/* customize leader sections css home page  */

/* Stats Section */
.stats {
    background: #f9f9f9;
    padding: 25px 0;
}

.stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    /* max-width: 1200px; */
    margin: 0 auto;
    margin-top: 2rem;
}

.stat {
    height: 10rem;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
    text-align: center;
    padding: 20px;
    width: 15%;
    /* ✅ 6 items per row roughly */
    min-width: 150px;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.stat img {
    display: block;
    margin: 0 auto 10px;
}

/* .cus {
    font-size: 14px;
    color: white;
    font-weight: 500;
    margin-top: 20px;
} */

/* Hover effect */
.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ✅ Mobile View: 2 per row */
@media (max-width: 768px) {
    .stats-inner {
        gap: 15px;
        flex-direction: row;
    }

    .stat {
        width: 45%;
        /* Two per row */
    }
}

/* ✅ Extra Small Devices (like phones under 480px) */
@media (max-width: 480px) {
    .stat {
        width: 100%;
        /* One per row */
    }
}

.heneymoon-head {
    padding: 9px 43px;
    position: relative;

    /* border: 1px solid #f5f2ff; */
    color: #ff0000;
    text-shadow: 0px 1px 1px #000000;
}

.heading-tour {
    margin-top: -2rem;
    display: table;
    width: auto;
    text-align: center;
    margin: 0 auto;
}

.black {
    color: #000;
    font-size: var(--fs-5xl);
}

.orange {
    color: #e94500;
}




/* partner csss */

.partners-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 30px auto;
    padding: 10px 0;
    background-color: white;
    border-radius: 10px;
    border: 2px solid #007bff;
    box-shadow: 0 0 17px #007bff;
}

.partnerstats-inner {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    scrollbar-width: none;
}

.partnerstats-inner::-webkit-scrollbar {
    display: none;
}

.partnerstat {
    flex: 0 0 calc(20% - 20px);
    /* 5 images per row */
    padding: 10px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    background-color: white;
    border-radius: 10px;
    border: 2px solid #007bff;
    box-shadow: 0 0 17px #007bff;
    margin-left: 3.5px;

}

.partnerstat:hover {
    transform: scale(1.05);
}

.partnerstat img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

/* Arrow Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0062d9;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-btn:hover {
    background-color: #ff7b00;
    color: #fff;
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}

/* Mobile: show 2 per row */
@media (max-width: 768px) {
    .partnerstat {
        flex: 0 0 calc(50% - 10px);
    }

    .scroll-btn {
        padding: 8px;
    }
}




/*  group packages css by anurag start */



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.body-top {
    background-color: #d9dbe4;
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

.chardham-group-heading {
    margin-top: 60px;
    color: black;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.row-notes-group {
    border-radius: 5px;
    background-color: blue;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.column-notes-group {
    color: white;
    padding: 15px;
    text-align: center;
    /* flex: 1; */
    flex: auto;
    min-width: 200px;
}

.dep-heading {
    margin-top: 15px;
    text-align: left;
    font-size: 20px;
}

.group-date {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: black;
    color: white;
    margin: 25px 0;
    padding: 15px;
    border-radius: 4px;
}

.date-container {
    cursor: pointer;
    /* padding: 10px 15px; */
    margin: 5px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.date-container:hover {
    background-color: #555;
}

.avroom {
    background-color: green;
    color: yellow;
    border-radius: 2px;
    padding: 2px 4px;
    margin-top: 5px;
    /* display: inline-block; */
}

.package-info {
    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
}

.package-info.active {
    display: block;
    background-color: white;
}

.package-info h4 {
    color: #333;
    margin-bottom: 10px;
}

.pdate {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

.package-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.package-info th,
.package-info td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.package-info th {
    background-color: black;
    color: white;
}

.package-info tr:nth-child(even) {
    background-color: #f9f9f9;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.control-buttons button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.control-buttons button:hover {
    background-color: #0056b3;
}

.control-buttons span {
    min-width: 30px;
    font-weight: bold;
}

.button-pay-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info-summary {
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
}

.button-pay-summary button,
.payonline {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.button-pay-summary button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.button-pay-summary button:hover:not(:disabled),
.payonline:hover {
    background-color: #45a049;
}

/* Modal Styles */
.modal-group {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.modal-group.show {
    display: flex;
}

.modal-content-group {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid green;
    padding-bottom: 10px;
}

.modal-header-group h4 {
    color: green;
    font-size: 24px;
    margin: 0;
}

.close-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.close-btn:hover {
    background-color: #ff1a1a;
}

.booking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.booking-table th,
.booking-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.booking-table th {
    background-color: green;
    color: white;
}

.booking-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1001;
    overflow-y: auto;
}

.payment-modal.show {
    display: flex;
}

.payment-modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.payment-modal-header {
    background-color: green;
    color: white;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.payment-modal-body {
    padding: 20px;
}

.input-group {
    margin-bottom: 15px;
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.input-group-prepend {
    background-color: #0c63af;
    color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    min-width: 50px;
    justify-content: center;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

.input-group input:focus {
    outline: none;
}

.input-group-text {
    margin: 0;
    font-size: 12px;
}

.form-control {
    width: 100%;
}

.bg-success {
    background-color: #28a745 !important;
}

.text-light {
    color: white !important;
}

input[type="submit"] {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #218838 !important;
}

.grp-itn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.grp-itn:hover {
    background-color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chardham-group-heading {
        font-size: 24px;
        margin-top: 30px;
    }

    .column-notes-group {
        width: 100%;
        padding: 10px;
    }

    .modal-header-group h4 {
        font-size: 18px;
    }

    .package-info th,
    .package-info td {
        padding: 8px;
        font-size: 12px;
    }

    .button-pay-summary {
        flex-direction: column;
    }

    .contact-info-summary {
        width: 100%;
        text-align: center;
    }
}



/*  group packages css by anurag end */

/* home group[ backage blocs section */

.home-gpackage {
    height: 9rem;
    /* background: #fff; */
    /* background: linear-gradient(to top right, #975af4, #2f7cf8 40%, #78aafa 65%, #934cff 100%); */
    /* background: linear-gradient(to top right, #7844c7, #2159b3 40%, #446daf 65%, #6a33bf 100%); */
    background: linear-gradient(to top right, #ccc2db, #6989bb 40%, #0f1a2c 65%, #261a38 100%);
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    width: 15%;
    min-width: 150px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid #007bff;
    /* box-shadow: 0 0 17px #007bff; */

}


.stat.home-gpackage .cus {
    /*width: 160px;*/
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*padding: 20px;*/
    color: black;
    font-size: 15px;
    background: linear-gradient(45deg, green, red, yellow, blue);
    background-size: 400% 400%;
    animation: colorShift 5s linear infinite, blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin-top: 0rem;
}



/* Each circle */


/* Hover effect */
.stat.home-gpackage .cus:hover {
    transform: scale(1.1);
}

/* Gradient color animation */
@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }


    100% {
        background-position: 0% 50%;
    }
}

/* Blink animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Remove underline and style links */
.stat.home-gpackage a {
    text-decoration: none;
}


/* 🔹 Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .stat.home-gpackage .cus {
        width: 140px;
        height: 90px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .stats-inner {
        gap: 15px;
    }

    .stat.home-gpackage .cus {
        width: 120px;
        height: 80px;
        font-size: 13px;
        padding: 10px;
        margin-top: 1rem;
        margin-left: -7px;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        flex-direction: row;
        gap: 10px;
    }

}


/* home page end Popular B2B Packages */

a {
    text-decoration: none;
    /* removes underline */
    color: inherit;
    /* inherits color from parent */
}

a:hover {
    text-decoration: none;
    /* still no underline on hover */
}

/* footer css */

/* ===== FOOTER BASE ===== */
.site-footer {
    background: #2c2c2c;
    color: #fd7e14;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    padding: 14px 12px;
    box-sizing: border-box;
    width: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== SECTIONS ===== */
.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Center always centered */
.footer-center {
    justify-content: center;
    text-align: center;
    color: white;
}

/* Right aligned on desktop */
.footer-right {
    justify-content: flex-end;
}

/* ===== LINKS ===== */
.footer-link,
.brand-link {
    color: #fd7e14;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    color: white;
}

.footer-link:hover,
.brand-link:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* ===== SOCIAL ICONS ===== */
.social {
    color: white;
    font-size: 18px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social:hover {
    color: #fff;
    transform: scale(1.1);
}

.follow-label {
    font-weight: 600;
    color: white;
}

/* ===== WHATSAPP BUTTON ===== */
.wtp-chat {
    position: fixed;
    bottom: 42px;
    right: 18px;
    background: #25d366;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 8px 14px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wtp-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wtp-chat a {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.wtp-chat i {
    font-size: 22px;
    background: #fff;
    color: #25d366;
    border-radius: 50%;
    padding: 4px;
}

.wtp-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
    }

    .footer-link {
        font-size: 14px;
    }

    .follow-label {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Phones */
@media (max-width: 480px) {
    .footer-link span.link-text {
        display: none;
    }

    .footer-link i {
        font-size: 18px;
    }

    .wtp-chat {
        bottom: 12px;
        right: 12px;
        padding: 6px 10px;
    }

    .wtp-chat i {
        font-size: 18px;
        padding: 3px;
    }

    .wtp-text {
        font-size: 13px;
    }
}



/* signup css */

.terms-group {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.terms-label {
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.terms-label input {
    margin-top: 3px;
    accent-color: #007bff;
}

.terms-label strong {
    color: #ff6600;
}

/* terms and condition css start */



body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.tc-wrapper {
    max-width: 900px;
    margin: auto;
    background: #ffffffcc;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

h1,
h2,
h3,
h2 {
    font-size: 22px;
    margin-top: 25px;
    color: #d81b60;
    border-left: 5px solid #ff4081;
    padding-left: 10px;
    font-weight: 600;
}

h1 {
    font-size: 32px;
    margin-bottom: 5px;
    color: #1565c0;
    font-weight: 700;
    text-align: center;
}

.updated-date {
    font-size: 14px;
    color: #ff4081;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

h2 {
    font-size: 20px;
    margin-top: 25px;
}

p,
li {
    font-size: 16px;
    margin-bottom: 12px;
    color: black;
    position: relative;
}


ul {
    padding-left: 25px;
    list-style: none;
}

ul li::before {
    content: "➤";
    color: #43a047;
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .tc-wrapper {
        padding: 18px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    p,
    li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tc-wrapper {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 17px;
    }

    p,
    li {
        font-size: 14px;
    }
}


/* terma and condition  css end */


/* about us css start */
/* ABOUT SECTION */
.about-section {
    padding: 50px 0;
    background: #f9f9ff;
}

.about-container {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 40px;
    align-items: center;
}

/* Image style */
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Text */
.about-content {
    color: #333;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-list li {
    padding: 6px 0;
    font-size: 16px;
    font-weight: 500;
}

/* Tablet (Side by Side but smaller) */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

/* Mobile (Image Hide) */
@media (max-width: 768px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Hide image completely on mobile */
    .about-image {
        display: none !important;
    }

    .about-content {
        padding: 0 15px;
    }
}

@media(max-width:768px) {
    .about-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }
}

/* about us css end */

/* contact-us css start */
.contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    margin: 15px 0;
    font-size: 28px;
    color: #000;

}

.contact-card p {
    margin: 15px 0;
    line-height: 1.6;
    font-size: 15px;
}

.contact-card a {
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-top: 6px;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media(max-width:768px) {
    .contact-title {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 15px;
    }
}

.icon-box {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-box i {
    font-size: 24px;
    color: #000;
}

/* Responsive */
@media(max-width: 900px) {
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 20px;
    }
}


/* contact -us css end */