* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5ede1;
    /* warm sand base */
    color: #1e3a2b;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

:root {
    --forest: #1d3e2c;
    --forest-deep: #0f2b1c;
    --sand: #eadbc4;
    --sand-light: #f8f0e2;
    --brown: #674f38;
    --gold: #b8864b;
    --gold-soft: #dab27c;
    --shadow: 0 20px 35px -10px rgba(20, 40, 20, 0.25);
}

/* textured bg (subtle leaf) */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%231f3b2c' fill-opacity='0.02' d='M40 8c-15 0-27 12-27 27 0 11 7 20 18 25-7 5-12 13-12 22 0 12 9 18 21 18s21-6 21-18c0-9-5-17-12-22 11-5 18-14 18-25 0-15-12-27-27-27z'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ----- HEADER (sticky, improved) ----- */
.navbar-custom {
    background: rgba(25, 45, 30, 0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px);
    padding: 5px 1.7rem;
    border-bottom: 1px solid rgba(184, 134, 75, 0.35);
    transition: 0.2s;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    height: 55px;
    filter: none;
    transition: 0.2s;
}

.navbar-nav .nav-link {
    color: #f0eadc;
    font-weight: 450;
    margin: 0 0.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: 0.2s;
}

.navbar-nav .nav-link:hover {
    background: rgba(184, 134, 75, 0.2);
    color: #ffefd5;
}

.btn-plan-header {
    background: transparent;
    border: 1.8px solid var(--gold);
    border-radius: 40px;
    color: #fff5e6;
    font-weight: 600;
    padding: 0.5rem 1.8rem;
    margin-left: 0.5rem;
    transition: 0.25s;
    white-space: nowrap;
}

.btn-plan-header:hover {
    background: var(--gold);
    color: #0f2b1c;
    border-color: var(--gold);
    transform: scale(1.02);
}

/* popup form modal – fully responsive, elegant */
.popup-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 20, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-card {
    background: rgba(255, 248, 235, 0.98);
    backdrop-filter: blur(15px);
    max-width: 480px;
    width: 100%;
    border-radius: 48px;
    padding: 1.5rem 2rem;
    box-shadow: 0 35px 60px -15px #0b1f12;
    border: 1px solid rgba(184, 134, 75, 0.4);
    position: relative;
    animation: fadePop 0.3s ease;
}

@keyframes fadePop {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-card .close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--brown);
    line-height: 1;
    transition: 0.2s;
}

.popup-card .close-popup:hover {
    color: #b33;
    transform: rotate(90deg);
}

.popup-card h3 {
    font-size: 2.3rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.popup-card .form-control,
.popup-card .form-select {
    background: #fffcf0;
    border: 1px solid #d4bb9f;
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.popup-card .btn-gold {
    background: var(--gold);
    border: none;
    color: #1d2a1a;
    font-weight: 700;
    padding: 0.9rem;
    border-radius: 50px;
    width: 100%;
    font-size: 1.2rem;
    transition: 0.2s;
}

.popup-card .btn-gold:hover {
    background: #9f6e3a;
    color: white;
}

/* ----- HERO (perfected for mobile) ----- */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(115deg, rgba(20, 45, 30, 0.8) 0%, rgba(40, 55, 35, 0.5) 70%),
        url('https://bigcatsindia.com/wp-content/uploads/2021/01/Tigers-in-India.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 5rem 1.5rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    color: white;
    text-shadow: 0 5px 15px #1f2e1b;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    margin: 1.5rem 0 2rem;
    opacity: 0.95;
}

.btn-hero {
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    border: none;
    transition: 0.2s;
    display: inline-block;
}

.btn-hero.btn-gold {
    background: var(--gold);
    color: #142814;
    box-shadow: 0 10px 18px #00000033;
}

.btn-hero.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 235, 200, 0.9);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-hero:hover {
    transform: translateY(-5px);
}

/* ----- PACKAGES (premium cards, fully responsive) ----- */
.packages-section {
    padding: 4rem 6rem;
    background: linear-gradient(145deg, #f3e9db, #e7d9c4);
}

.section-title {
    font-size: clamp(2.8rem, 9vw, 4rem);
    color: var(--forest-deep);
    text-align: center;
    margin-bottom: 3rem;
}

.package-card {
    background: #fffcf2;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(184, 134, 75, 0.2);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 45px -12px #1f3b2c;
}

.card-img-wrap {
    height: 300px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.package-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-body {
    padding: 2rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #17331f;
    line-height: 1.2;
}

.duration {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.highlights {
    list-style: none;
    padding: 0;
}

.highlights li {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    color: #2a412a;
}

.highlights i {
    color: var(--gold);
    width: 24px;
}

.btn-card {
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    transition: 0.2s;
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--forest);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.btn-card:hover {
    background: var(--gold);
    color: #0e2a14;
    border-color: var(--gold);
}

.btn-card-wa {
    background: #25d36620;
    border: 1.5px solid #25d366;
    color: #075e1b;
}

.btn-card-wa:hover {
    background: #075725;
    border: 1.5px solid #075725;
    color: white;
}

/* ----- CONTACT / ENQUIRY (responsive, card style) ----- */
.contact-section {
    padding: 5rem 1.2rem;
    background: var(--sand-light);
    position: relative;
}

.contact-card {
    background: rgba(255, 250, 235, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 60px;
    padding: 2.8rem 2rem;
    box-shadow: 0 35px 55px -15px #1f3b1f;
    border: 1px solid rgba(184, 134, 75, 0.3);
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?q=80&w=1470&auto=format');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.contact-card h2 {
    font-size: clamp(2.5rem, 8vw, 3.6rem);
    color: #05200e;
}

.contact-card .form-control,
.contact-card .form-select {
    background: rgba(255, 250, 240, 0.9);
    border: 1.5px solid #bc9f7c;
    border-radius: 60px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.contact-card .btn-gold {
    background: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    width: 100%;
    transition: 0.2s;
}

.contact-card .btn-gold:hover {
    background: #755531;
    color: white;
}

/* minor responsive */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 36px;
    }

    .btn-plan-header {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .popup-card {
        padding: 2rem 1.2rem;
    }

    .popup-card h3 {
        font-size: 2rem;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }
}




/* Founder Section */

.founder-section {
    background-color: #1d3927;
    color: #ddccb0;
    padding: 30px 0;
}

.founder-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.founder-image p {
    text-align: justify;
}

.founder-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.founder-badge {
    /* position: absolute; */
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info {
    flex: 1;
    min-width: 300px;
}

.founder-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0px;
    color: white;
    text-align: center;
}

.founder-info .position {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-align-last: center;
}

.founder-info p {
    margin-bottom: 20px;
}

.founder-social {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    justify-content: center;
}

.founder-social a {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Team Members Section */
.team-section {
    padding: 30px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-location {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-family: serif;
}

.team-info .position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    margin-bottom: 20px;
}

/* CTA Section */
.team-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?jungle,path');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 25px 20px;
}

.team-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2.2rem;
    }

    .founder-info h2,
    .section-title h2,
    .team-cta h2 {
        font-size: 2rem;
    }

    .founder-container,
    .founder-image,
    .founder-info {
        flex: 100%;
    }
}

/* Highlights Section */
.highlights-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 15px;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
}

.highlight-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: serif;
    font-size: 21px;
}

.highlight-content p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .highlight-card {
        flex-direction: column;
        gap: 15px;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}



/* Footer Styles */

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ddccb0;
}

footer li {
    margin-bottom: 12px;
    display: flex;
}

footer a:hover {
    color: #e67e22 !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e67e22;
    color: #fff !important;
    transform: translateY(-3px);
}

.logo-slider-section {
    padding: 26px 0;
    background-color: white;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.slider-container {
    /* position: relative; */
    width: 100%;
    margin: 18px auto;
}

.slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    /* animation: scroll 30s linear infinite; */
    padding: 20px 0;
}

.logo-item {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--light); */
    border-radius: 8px;
    padding: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
            opacity: 0.8; */
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Gradient fade effect on sides */
.slider-container:before,
.slider-container:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 10 - 40px * 9));
        /* Adjust based on logo count */
    }
}

/* Pause animation on hover */
.slider-track:hover {
    animation-play-state: paused;
}





/* Mobile Responsive CSS for all devices */
@media screen and (max-width: 768px) {

    /* Header */
    .navbar-custom {
        padding: 8px 15px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        padding: 4px 8px;
        border: 1px solid rgba(184, 134, 75, 0.5);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: rgba(25, 45, 30, 0.98);
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        border: 1px solid rgba(184, 134, 75, 0.3);
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 5px 0;
        padding: 12px;
        font-size: 1.1rem;
    }

    .btn-plan-header {
        display: block;
        text-align: center;
        margin: 10px 0 0;
        padding: 12px;
        width: 100%;
    }

    /* Popup Form */
    .popup-card {
        padding: 1.8rem 1.2rem;
        border-radius: 35px;
        margin: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-card h3 {
        font-size: 2rem;
        padding-right: 30px;
    }

    .popup-card .close-popup {
        top: 1.2rem;
        right: 1.5rem;
        font-size: 1.8rem;
    }

    .popup-card .form-control,
    .popup-card .form-select {
        padding: 0.5rem 1.2rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
        margin-bottom: 0.8rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 4rem 1.2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-content p {
        font-size: 1.1rem;
        margin: 1rem 0 1.5rem;
    }

    .btn-hero {
        padding: 0.8rem 1.5rem;
        margin-right: 0.5rem;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        display: inline-block;
        width: auto;
        min-width: 140px;
    }

    /* Packages Section */
    .packages-section {
        padding: 3rem 1.2rem;
    }

    .section-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }

    .package-card {
        border-radius: 28px;
        margin-bottom: 20px;
    }

    .card-img-wrap {
        height: 220px;
    }

    .card-body {
        padding: 1.5rem 1.2rem;
    }

    .card-title {
        font-size: 1.9rem;
    }

    .highlights li {
        font-size: 0.9rem;
    }

    .btn-card {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin-right: 0.3rem;
                width: 100%!important;
    }

    /* Contact Section */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-card {
        padding: 2rem 1.2rem;
        border-radius: 40px;
    }

    .contact-card h2 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.8rem 1.2rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
        margin-bottom: 1rem;
    }

    .contact-card .btn-gold {
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
    }

    /* Founder Section */
    .founder-container {
        flex-direction: column;
        gap: 30px;
    }

    .founder-image,
    .founder-info {
        min-width: 100%;
    }

    .founder-info h2 {
        font-size: 1.8rem;
    }

    .founder-info .position {
        font-size: 1.1rem;
        text-align: center;
    }

    .founder-info p {
        text-align: justify;
        padding: 0 10px;
    }

    .founder-social {
        gap: 15px;
    }

    .founder-social a {
        width: 45px;
        height: 45px;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .team-card {
        max-width: 100%;
    }

    .team-image {
        height: 300px;
    }

    .team-info {
        padding: 20px;
    }

    .team-info h3 {
        font-size: 1.3rem;
    }

    /* Highlights Section */
    .highlights-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .highlight-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .highlight-content h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .highlight-content p {
        text-align: center;
        font-size: 0.9rem;
    }

    /* Logo Slider */
    .logo-slider-section {
        padding: 30px 0;
    }

    .slider-container {
        margin: 10px auto;
    }

    .slider-track {
        gap: 20px;
        animation: scroll 25s linear infinite;
    }

    .logo-item {
        flex: 0 0 140px;
        height: 80px;
        padding: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Footer */
    footer {
        padding: 30px 15px !important;
    }

    footer .row {
        text-align: center;
    }

    footer h5 {
        margin-top: 20px;
        margin-bottom: 15px !important;
        font-size: 1.2rem;
    }

    footer ul {
        padding-left: 0;
    }

    footer li {
        justify-content: center;
        margin-bottom: 10px;
    }

    footer .col-md-4:first-child h5 {
        margin-top: 0;
    }

    footer .text-md-end {
        text-align: center !important;
        margin-top: 25px;
    }

    .social-icons {
        justify-content: center;
        margin: 20px 0 15px;
    }

    .social-icons a {
        margin: 0 8px;
    }

    /* Team CTA Section */
    .team-cta {
        padding: 40px 20px;
    }

    .team-cta h2 {
        font-size: 2rem;
    }

    .team-cta p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* General Utility Classes */
    .container {
        padding: 0 15px;
    }

    .text-center-mobile {
        text-align: center;
    }

    .mt-mobile-3 {
        margin-top: 1rem;
    }

    .mb-mobile-3 {
        margin-bottom: 1rem;
    }
}

/* Small phones (up to 375px) */
@media screen and (max-width: 375px) {
    .popup-card .btn-gold {
        padding: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.7rem 1.2rem;
        min-width: 120px;
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 1.7rem;
    }

    .card-img-wrap {
        height: 180px;
    }

    .btn-card {
        padding: 0.35rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-card i {
        margin-right: 3px;
    }

    .popup-card h3 {
        font-size: 1.8rem;
    }

    .popup-card .form-control,
    .popup-card .form-select {
        padding: 0.5rem 1rem;
        font-size: 15px;
    }

    .popup-card {
        padding: 1.2rem 1.2rem;
    }

    .logo-item {
        flex: 0 0 120px;
        height: 70px;
    }

    .team-image {
        height: 250px;
    }

    .founder-image img {
        height: 300px;
        object-fit: cover;
    }

    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.5rem 1.2rem;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
}

/* Medium phones (376px to 425px) */
@media screen and (min-width: 376px) and (max-width: 425px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .card-img-wrap {
        height: 200px;
    }

    .logo-item {
        flex: 0 0 130px;
    }

    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.5rem 1.2rem;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Landscape mode */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem;
    }

    .popup-card {
        max-height: 85vh;
        overflow-y: auto;
    }

    .package-card {
        margin-bottom: 20px;
    }

    .team-image {
        height: 250px;
    }
}

/* Tablet devices */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .packages-section {
        padding: 4rem 2rem;
    }

    .card-img-wrap {
        height: 250px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-container {
        gap: 30px;
    }

    .logo-item {
        flex: 0 0 160px;
    }
}

/* Fix for notched phones */
@supports (padding: max(0px)) {
    @media screen and (max-width: 768px) {
        .popup-form-modal {
            padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
        }

        .navbar-custom {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    @media screen and (max-width: 768px) {
        .navbar-collapse {
            background: rgba(20, 35, 25, 0.98);
        }
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {

    .btn-card,
    .btn-plan-header,
    .btn-hero {
        border-width: 2px;
    }

    .popup-card .form-control,
    .popup-card .form-select {
        border-width: 2px;
    }
}

/* Smooth transitions for mobile */
@media (hover: none) and (pointer: coarse) {
    .package-card:hover {
        transform: none;
    }

    .package-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    .btn-card:hover,
    .btn-gold:hover {
        transform: none;
    }

    .btn-card:active,
    .btn-gold:active {
        opacity: 0.8;
    }
}

/* Fix for foldable devices */
@media screen and (max-width: 280px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-hero {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .logo-item {
        flex: 0 0 100px;
    }

    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.3rem 0.8rem;
        font-size: 16px;
        margin-bottom: 0rem;
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 5px 0;
        padding: 2px 12px;
        font-size: 1.1rem;
    }
}

/* Make all popup trigger buttons visually consistent */
.open-popup-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

.open-popup-trigger:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Ensure the popup appears above everything */
.popup-form-modal {
    z-index: 99999;
}

/* Mobile responsive adjustments for trigger buttons */
@media (max-width: 768px) {
    .open-popup-trigger {
        display: inline-block;
        text-align: center;
        width: 100%;
        margin: 5px 0;
    }

    /* Specific fix for hero section buttons */
    .hero-content .open-popup-trigger {
        width: auto;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero-content .open-popup-trigger {
        min-width: 140px;
        padding: 12px 15px;
        font-size: 14px;
    }
}

































/* Video Slider Section Styles */
.video-slider-section {
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1a2a 100%);
  color: var(--white);
}

.video-slider-section .section-title h2 {
  color: var(--white);
}

.video-slider-section .section-title p {
  color: rgba(255,255,255,0.8);
}

.video-slider-container {
  position: relative;
  padding: 20px 0 60px;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding: 20px 10px 40px;
}

.swiper-slide {
  height: auto;
  transition: all 0.3s ease;
}

/* Video Card */
.video-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: var(--primary);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #b3891f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #b3891f;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  z-index: 2;
}

.video-info {
  padding: 14px;
}

.video-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
  line-height: 1.5;
}

.video-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-meta i {
  color: var(--primary);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: rgba(255,255,255,0.2);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: var(--white) !important;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 1000px;
  background: var(--dark);
  border-radius: 15px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.show .modal-content {
  transform: scale(1);
  margin-top: 365px;
}

.modal-header {
  padding: 20px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
}

.close-modal {
  background: #fff;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.421);
  color: var(--primary);
}

.modal-body {
  padding: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  .video-thumbnail {
    height: 180px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .video-info {
    padding: 15px;
  }
  
  .video-info h3 {
    font-size: 1rem;
  }
  
  .video-info p {
    font-size: 0.85rem;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  .modal-header h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
    
    
    
  .video-thumbnail {
    height: 160px;
  }
  
  .video-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .modal-content {
    width: 95%;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .video-card:hover {
    transform: none;
  }
  
  .video-card:hover .video-thumbnail img {
    transform: none;
  }
  
  .video-card:hover .play-button {
    transform: translate(-50%, -50%);
  }
}



.swiper-button-prev{
    background-color: #b3891f;
    font-weight: 700;
    left: 0px;
}

.swiper-button-next{
    background-color: #b3891f;
    font-weight: 700;
    right: 0px;
}


.video-wrapper{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
}

.video-wrapper video{
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 10px;
}
.swiper-pagination{
        padding-top: 35px!important;
    position: relative!important;
}