:root {
    --main-color: #ff7a00;
    --secondary-color: #288328;
    --secondary-color2: #bd6217;
    --white-color: #ffffff;
    --black-color: #000000;
}

.travel-explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 5px 11px;
    border-radius: 100px;
    text-decoration: none;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);
    transition: .5s ease;
    z-index: 1;
}

/* Animated Background Circle */

.travel-explore-btn::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--main-color);
    border-radius: 50%;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: .7s cubic-bezier(.23, 1, .32, 1);
    z-index: -1;
}

/* Rotating Border */

.travel-explore-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    padding: 2px;
    background: conic-gradient(from 0deg,
            #ff7a00,
            #ffd000,
            #00d4ff,
            #ff7a00);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.travel-explore-btn:hover,
.travel-explore-btn:hover .btn-text,
.travel-explore-btn:hover i {
    color: #fff !important;
}

/* Hover Expansion */

.travel-explore-btn:hover::before {
    width: 120%;
    height: 350%;
    left: -10%;
}

/* Text */

.travel-explore-btn .btn-text {
    position: relative;
    z-index: 2;
}

/* Plane Icon */

.travel-explore-btn .btn-icon {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    transition: .5s;
}

/* Hover Animation */

.travel-explore-btn:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(255, 122, 0, .25),
        0 0 40px rgba(255, 208, 0, .25);
}

/* Plane Takeoff */

.travel-explore-btn:hover .btn-icon {
    transform: translateX(10px) rotate(-20deg);
}

/* Floating Effect */

.travel-explore-btn {
    animation: floatTravel 3s ease-in-out infinite;
}

@keyframes floatTravel {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}


/* color-title */

.light-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    color: var(--secondary-color);
}

.light-btn .btn-text,
.light-btn i {
    color: var(--secondary-color);
}

.light-btn .btn-icon {
    background: rgba(0, 0, 0, 0.06);
}

.light-btn:hover,
.light-btn:hover .btn-text,
.light-btn:hover i {
    color: #fff !important;
}

/* subtitle */

.premium-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 5px 9px;

    background: rgba(245, 134, 52, 0.08);
    border: 1px solid rgba(245, 134, 52, 0.2);

    border-radius: 50px;

    position: relative;
    overflow: hidden;

    transition: all .4s ease;
}

.premium-subtitle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 134, 52, 0.15);
}

.premium-subtitle span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--main-color);
    position: relative;
    flex-shrink: 0;
}

.premium-subtitle span::before {
    content: '✈';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    animation: fly 2s infinite ease-in-out;
}

.animated-subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;

    background: linear-gradient(90deg,
            var(--main-color),
            #ffd700,
            var(--secondary-color),
            #ff8c00,
            var(--secondary-color2));

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

@keyframes fly {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    /* margin-left: 10px; */
    /* padding-left: 20px; */
}

/* bootstreap modal */
.tour-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.tour-modal .modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.tour-modal .modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.tour-modal .modal-header p {
    margin: 0;
    color: var(--main-color);
    font-weight: 500;
}

.tour-section {
    margin-bottom: 35px;
}

.tour-section h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-left: 15px;
}

.tour-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 22px;
    background: var(--main-color);
    border-radius: 10px;
}

.day-box {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
}

.day-box span {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    background: rgba(245, 134, 52, .1);
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.day-box h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.day-box p {
    margin: 0;
    color: #666;
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
}

.tour-table th {
    background: var(--main-color);
    color: #fff;
    padding: 14px;
}

.tour-table td {
    padding: 14px;
    border: 1px solid #eee;
}

.info-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

.info-box h4 {
    margin-bottom: 15px;
    color: #222;
}

.info-box ul {
    margin: 0;
    padding-left: 18px;
}

.info-box li {
    margin-bottom: 8px;
}

.align-justify {
    text-align: justify !important;
}

.service-title {
    position: relative;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: all .4s ease;
}

.service-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: var(--main-color);
    border-radius: 10px;
    transition: all .4s ease;
}

/* Card Hover Effects */

.trend-item {
    transition: all .4s ease;
}

.trend-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Animate title when hovering card */

.trend-item:hover .service-title {
    color: var(--main-color);
}

.trend-item:hover .service-title::after {
    width: 100%;
}

.service-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    text-align: justify;
    height: 83%;
    padding-left: 10px;
    border-left: 3px solid var(--main-color);
    transition: .4s ease;
}

.trend-content-main {
    padding: 10px 16px;
}

/* .trend-content {
    height: 315px;
} */

.trend-content{
    padding: 15px 12px;
}
.social-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    transition: .3s;
}

.social-links ul li a img {
    width: 30px;
    transition: .3s;
}

.social-links ul li a:hover {
    animation: pulse .8s infinite;
}

.social-links ul li a:hover img {
    transform: scale(1.15);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, .6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.traveler-img {
    padding-top: 108px;
}
/* Gallery Card */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

/* Image Wrapper */
.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image */
.gallery-img {
    width: 100%;
    aspect-ratio: 292 / 271;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

/* Overlay */
.gallery-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 10px;
}

/* Eye Button */
.gallery-overlay1 a {
    width: 55px;
    height: 55px;
    background: #fff;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transform: scale(0.7);
    transition: all 0.35s ease;
}

/* Hover Effect */
.gallery-item:hover .gallery-overlay1 {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay1 a {
    transform: scale(1);
}

/* Eye Icon Hover */
.gallery-overlay1 a:hover {
    background: var(--secondary-color);
    color: #fff;
}
.content-hero {
    /* display: inline-block; */
    background: rgb(118 114 114 / 51%);
    /* White transparent */
    backdrop-filter: blur(8px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin-bottom: 30px;
}


.content-hero p {
    color: #fff;
    width: 100% !important;
}

.banner-text {
    color: var(--main-color);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.footer-contact-list li {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-list li i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    font-size: 16px;
}

.footer-contact-list li a {
    color: #ddd;
    text-decoration: none;
    line-height: 1.6;
    transition: .4s;
}

.footer-contact-list li:hover i {
    background: #ff7b00;
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}

.footer-links ul li a {
    color: #ddd;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.footer-links ul li a i {
    color: #ff7b00;
    width: 18px;
    transition: .3s;
}

.footer-links ul li a:hover {
    color: #ff7b00;
    padding-left: 8px;
}

.footer-links ul li a:hover i {
    transform: rotate(-20deg) scale(1.2);
}

.footer-bg {
    position: relative;
    background: url("../images/home/footer-bg.jpg") center center/cover no-repeat;
    background-size: cover;
}

.footer-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* Dark overlay */
    z-index: 0;
}

.footer-bg>* {
    position: relative;
    z-index: 1;
}

.footer-about {
    text-align: left;
    align-items: center;
}

.footer-logo {
    display: inline-flex;
    padding: 18px 28px;
    border-radius: 15px;
    background: rgb(255 255 255 / 35%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
}

.footer-logo img {
    width: 140px;
}

.gallery-bg {
    background-image: url(../images/home/gallery-bg.png);
}

.hightlight {
    color: var(--main-color);
}

.floating-contact {
    position: fixed;
    left: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 99999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    position: relative;
    overflow: visible;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.call-btn {
    background: linear-gradient(135deg, #ff8a00, #ff4d00);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-6px) scale(1.08) rotate(8deg);
    color: #fff;
}

/* Pulse Ring */
.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    animation: ripple 2.2s infinite;
}

.float-btn:nth-child(2) .ripple {
    animation-delay: .7s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Floating Motion */
.float-btn {
    animation: float 3s ease-in-out infinite;
}

.call-btn {
    animation-delay: .2s;
}

.whatsapp-btn {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile */
@media(max-width:768px) {
    .floating-contact {
        left: 15px;
        bottom: 20px;
    }

    .float-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    .why-gap{
    gap:30px !important;
}
.ct-btn-group{
    display: grid !important;
}
.ct-submit-btn{
    width: 100% !important;
}
}

@media (max-width:768px) {
    .content-hero {
        padding: 5px 24px;
    }

    .footer-about {
        /* text-align: center; */
        /* align-items: center; */
        text-align: justify;
    }
    .rann-margine{
        margin:0 8px;
    }
    .navbar-flex{
        justify-content: space-between !important;
    }
}

/* navbar */
/* service-box */

/*==============================
        SERVICE CARD
==============================*/

.service-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.text-muted {
    padding-bottom: 10px;
}


/*==============================
        IMAGE
==============================*/

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* White Wave */

.service-image::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 100%;

    height: 55px;

    background: #fff;

    border-radius: 100% 100% 0 0;

}

/*==============================
      FLOATING ICON
==============================*/

.service-icon {

    position: absolute;

    top: 195px;

    left: 50%;

    transform: translateX(-50%);

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: var(--main-color);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 30px;

    border: 7px solid #fff;

    box-shadow: 0 10px 25px rgba(13, 110, 253, .25);

    z-index: 10;

    transition: .4s;

}

.service-card:hover .service-icon {

    transform: translateX(-50%) rotate(360deg);

}

/*==============================
        CONTENT
==============================*/

.service-content {

    flex: 1;

    padding: 45px 20px 35px;

    text-align: center;

    display: flex;

    flex-direction: column;

}

.service-content h3 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 5px;

}

.service-line {

    width: 60px;

    height: 3px;

    background: var(--secondary-color2);

    border-radius: 20px;

    margin: 0 auto 25px;

}

.service-content p {

    color: #666;
    font-size: 16px;
    /* line-height: 1.9; */
    /* margin-bottom: 30px; */
    flex-grow: 1;
    text-align: justify;

}


.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 3px 9px;
    font-size: 15px;
    color: #0c0c0c;
    text-transform: capitalize;
    letter-spacing: 0.3px;

    /* border-radius: 10px; */
    overflow: hidden;

    transition: all 0.35s ease;
    z-index: 1;
}

/* 🌫 Glass background feel */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 🎯 ICON BADGE STYLE */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a i {
    width: 28px;
    height: 28px;
    min-width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f5f5f5;
    color: #ff4d4d;

    font-size: 13px;
    transition: all 0.35s ease;
}

/* 🌈 GRADIENT HOVER BACKGROUND */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 120%;
    height: 100%;

    background: linear-gradient(120deg, #ff4d4d, #ffb400, #ff4d4d);
    opacity: 0.08;

    transition: all 0.5s ease;
    z-index: 0;
}

/* ⚡ LEFT ANIMATED DOT */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(0);

    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4d4d;

    transition: all 0.3s ease;
}

/* ✨ HOVER EFFECT */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a:hover {
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* 🌈 ACTIVATE GRADIENT */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a:hover::before {
    left: 0;
}

/* 🎯 DOT APPEAR */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a:hover::after {
    transform: translateY(-50%) scale(1);
}

/* 🎯 ICON POP */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a:hover i {
    transform: scale(1.15) rotate(10deg);
    background: #ff4d4d;
    color: #fff;
}

/* ⚡ TEXT SHIFT */
.header_menu .navbar.navbar-default .nav.navbar-nav li.submenu .dropdown-menu li a span {
    position: relative;
    z-index: 1;
}

.header-content {
    background-color: var(--main-color) !important;
}

.top-bar-ul {
    margin-bottom: 0;
}

.social-icons-nav {
    display: flex;
    gap: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons-nav li a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* hover effect */
.social-icons-nav li a:hover img {
    transform: translateY(-4px) scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.header_menu .navbar.navbar-default .nav.navbar-nav li {
    position: relative;
}

/* base link */
.header_menu .navbar.navbar-default .nav.navbar-nav li a {
    position: relative;
    display: inline-block;
    padding: 10px 8px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* 🔴 TOP line */
.header_menu .navbar.navbar-default .nav.navbar-nav li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;

    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #ffb400);

    transition: all 0.4s ease;
}

/* 🔵 BOTTOM line */
.header_menu .navbar.navbar-default .nav.navbar-nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #181a92, #ffb400);

    transition: all 0.4s ease;
}

/* ⚡ hover effect */
.header_menu .navbar.navbar-default .nav.navbar-nav li:hover a {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* expand TOP line */
.header_menu .navbar.navbar-default .nav.navbar-nav li:hover a::before {
    width: 100%;
}

/* expand BOTTOM line */
.header_menu .navbar.navbar-default .nav.navbar-nav li:hover a::after {
    width: 100%;
}

.info-icon {
    font-size: 40px;
    color: #288328;
}

.about-icion {
    font-size: 16px;
}

.about-icion i {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Icon */
.why-us-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/* .why-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.6s ease, filter 0.4s ease;
    transform-style: preserve-3d;
} */
.why-us-item .why-icon {
    width: 75px;
    height: 75px;
    object-fit: contain;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.why-us-item h3,
.why-us-item p {
    transition: color 0.4s ease;
    text-align: center;
}

/* Hover Effects */
.why-us-item:hover {
    background: #0077b6;
    /* Replace with your theme color */
}

/* Hover Effect */
.why-us-item {
    transition: all 0.4s ease;
}

.why-us-item:hover .why-icon {
    transform: rotateY(180deg);
    filter: brightness(0) invert(1);
    /* Makes icon white */
}

.why-us-item:hover h3,
.why-us-item:hover p {
    color: #fff !important;
}

.service-space {
    padding: 70px 0;
}

.why-desc {
    font-size: 20px;
}
.trend-image {
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 5;
}

.gallery-overlay a {
    width: 55px;
    height: 55px;
    background: #fff;
    color: var(--secondary-color2); /* Change to your theme color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transform: scale(.6);
    transition: all .4s ease;
    text-decoration: none;
}

.gallery-overlay a:hover {
    background: var(--secondary-color2);
    color: #fff;
}

.trend-item1:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.trend-item1:hover .gallery-overlay a {
    transform: scale(1);
}

.trend-item1:hover img {
    transform: scale(1.08);
}

.trend-image img {
    transition: transform .5s ease;
}
.ranutsav-content{
   color: var(--secondary-color);
    padding: 4px 5px;
    background-color: #ffffffc7;
    border-radius: 5px;
    font-size: 20px;
    place-content: center;
}
.testi-name{
    font-size: 20px !important;
}
.contact-btns{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.icon-btn{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
}

.whatsapp-btn{
    background: #25D366;
}

.call-btn{
    background: #ff7a00;
}

.icon-btn:hover{
    color: #fff;
    transform: translateY(-3px) scale(1.08);
}
.car-title{
    text-align: center;
}

.car-title a{
    color: #fff;
    font-size: 30px;
    display: inline-block;
}
.car-li{
    color: white;
}
.trans-box{
    background:#00000080 !important;
}

.gujarat-dropdown {
    max-height: 400px;
    overflow-y: auto;
}

.gujarat-dropdown::-webkit-scrollbar {
    width: 5px;
}

.gujarat-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gujarat-dropdown::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
}
.rann-margine{
    margin-bottom: 20px;
}
.trending2{
        position: relative;
    padding: 60px 0 !important;

}
/* table */

.tour-pricing-section{
    background:#f8fafc;
}

.pricing-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    /* box-shadow:0 18px 45px rgba(0,0,0,.08); */
}

.pricing-header{
      background: linear-gradient(135deg, #ff7a00, #fe7a0052);
    color: #fff;
    text-align: center;
    padding: 11px 16px;
}

.pricing-header h3{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.pricing-header span{
    display:block;
    margin-top:8px;
    font-size:15px;
    opacity:.9;
}

.tour-price-table{
    width:100%;
    border-collapse:collapse;
}

.tour-price-table thead{
    background:#1f2937;
}

.tour-price-table thead th{
    color:#fff;
    padding:10px 10px;
    text-align:center;
    font-size:18px;
    font-weight:500;
}

.tour-price-table tbody td{
    padding:13px 10px;
    text-align:center;
    font-size:16px;
    border-bottom:1px solid #edf2f7;
    transition:.3s;
}

.tour-price-table tbody tr:nth-child(even){
    background:#fafafa;
}

.tour-price-table tbody tr:hover{
    background:#eef8ff;
    /* transform:scale(1.01); */
}

.tour-price-table tbody td:first-child{
    font-weight:700;
    color:var(--secondary-color);
}

.extra-row{
    background:#fff6e5 !important;
}

.extra-row td{
    color:#e67e22;
    font-weight:700;
}
.cost-include-list li{
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.cost-include-list li:last-child{
    margin-bottom: 0;
}

.cost-include-list i{
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 5px;
    min-width: 16px;
}
.package-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:#fff7e8;
    color:#ff8c00;
    border:1px solid #ffd699;
    border-radius:30px;
    font-weight:600;
    font-size:16px;
    margin-bottom:25px !important;
}
.rate-notice{
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}
.rate-notice i{
    color: #ff9800;
}
.rate-notice span{
    font-weight: 600;
}


@media(max-width:768px){

.tour-price-table thead th,
.tour-price-table tbody td{
    padding:14px 10px;
    font-size:15px;
}

.pricing-header h3{
    font-size:24px;
}

}

/* sidebar */

.sidebar-title{
    position: relative;
    padding: 12px 16px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: center;
    
}

/* thin line above */
.sidebar-title::before{
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #ff6a00;
    margin: 0 auto 6px auto;
    border-radius: 2px;
}

/* thin line below */
.sidebar-title::after{
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #ddd;
    margin: 6px auto 0 auto;
}

/* =============================================
   CAR HIRE SECTION — SIMPLE & ELEGANT
============================================= */

.ch-section {
    padding: 80px 0 90px;
    background: #f9f9f9;
}

/* Header */
.ch-header {
    margin-bottom: 20px;
}

.ch-title-main {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 10px 0 10px;
    line-height: 1.2;
}

.ch-title-main span { color: var(--main-color); }

.ch-header-desc {
    color: #888;
    font-size: 16px;
    margin: 0 auto;
    max-width: 580px;
}

/* Notice bar */
.ch-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8f0;
    border: 1px solid #ffe0b2;
    border-left: 4px solid var(--main-color);
    border-radius: 10px;
    padding: 12px 20px;
    margin: 24px 0 45px;
    font-size: 14px;
    color: #555;
    flex-wrap: wrap;
}

.ch-notice i { color: var(--main-color); font-size: 16px; flex-shrink: 0; }

/* Card */
.ch-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.2);
}

/* Badge */
.ch-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: linear-gradient(135deg, var(--main-color), #ffd700);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ch-badge-green { background: linear-gradient(135deg, #288328, #56ab2f); }
.ch-badge-blue  { background: linear-gradient(135deg, #0077b6, #00b4d8); }

/* Image area */
.ch-img-wrap {
    background: linear-gradient(135deg, #f8f9ff, #fff5ee);
    padding: 28px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.ch-car-img {
    width: 100%;
    max-width: 240px;
    height: 140px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

.ch-card:hover .ch-car-img {
    transform: scale(1.06) translateY(-4px);
}

/* Body */
.ch-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ch-name {
      font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 10px 0 16px;
    text-align: center;
}

.ch-desc {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
    line-height: 1.6;
}

/* Specs grid */
.ch-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.ch-spec {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f8f9ff;
    border: 1px solid #eef0ff;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.ch-spec i {
    color: var(--main-color);
    font-size: 13px;
    width: 14px;
    text-align: center;
}

/* Buttons */
/* .ch-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.ch-btn-call,
.ch-btn-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ch-btn-call {
    background: linear-gradient(135deg, var(--main-color), #ffd700);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255,122,0,0.3);
}

.ch-btn-call:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.45);
} */

.ch-btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
}

.ch-btn-wa:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37,211,102,0.45);
}

.ch-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 12.5px;
}

.ch-info-table tr:nth-child(odd) { background: #f8f9ff; }
.ch-info-table tr:nth-child(even) { background: #fff; }

.ch-info-table td {
    padding: 10px 10px;
    border: 1px solid #eef0ff;
    color: #444;
}

.ch-info-table td:first-child {
    /* font-weight: 600; */
    color: #1a1a2e;
    width: 52%;
    font-size: 14px;
}

.ch-info-table td:last-child {
    color: var(--main-color);
    font-weight: 600;
    text-align: right;
    font-size: 14px;
}

@media (max-width: 576px) {
    .ch-title-main { font-size: 28px; }
    .ch-specs { grid-template-columns: 1fr 1fr; }
}

/* Review Stars */

/* =============================================
   REVIEW PAGE — SIMPLE & ELEGANT
============================================= */

.rv-section {
    padding: 80px 0 90px;
    background: #f9f9f9;
}

/* Header */
.rv-header {
    margin-bottom: 50px;
}

.rv-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 10px 0 10px;
    line-height: 1.2;
}

.rv-title span {
    color: var(--main-color);
}

.rv-subtitle {
    color: #888;
    font-size: 16px;
    margin: 0;
}

/* Stats Bar */
.rv-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 22px 40px;
    margin-bottom: 55px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.rv-stat-item {
    text-align: center;
}

.rv-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--main-color);
    line-height: 1;
}

.rv-stat-item span {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.rv-stat-divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

/* Card */
.rv-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px 26px;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,122,0,0.12);
    border-color: rgba(255,122,0,0.2);
}

/* Big decorative quote */
.rv-quote {
    font-size: 72px;
    line-height: 0.6;
    color: var(--main-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    margin-bottom: 0px;
    user-select: none;
}

/* Review text */
.rv-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 18px;
    text-align: justify;
}

/* Stars */
.rv-stars {
    margin-bottom: 20px;
}

.rv-stars i {
    color: #f5a623;
    font-size: 14px;
    margin-right: 2px;
}

/* Author row */
.rv-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* Avatar with initials */
.rv-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--av-color, var(--main-color));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.rv-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.rv-location {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

.rv-location i {
    color: var(--main-color);
    font-size: 11px;
    margin-right: 3px;
}

@media (max-width: 576px) {
    .rv-title { font-size: 28px; }
    .rv-stats { gap: 20px; padding: 18px 20px; }
    .rv-stat-divider { display: none; }
}

.navbar-flex{
    /* gap: 55px; */
}

.packege-desc{
        text-align: justify;
            line-height: 25px;
    letter-spacing: 0.01em;
    color: #74787D;
    font-size: 16px;
}
.ch-btns{
    display: flex;
    gap: 12px;
    justify-content: space-around;
}

.ch-btn-call,
.ch-btn-wa{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

.ch-btn-call{
    background: #ff6b35;
}

.ch-btn-wa{
    background: #25D366;
}

.ch-btn-call:hover,
.ch-btn-wa:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}



 
/*==============================
        FEEDBACK PAGE
==============================*/
 
.fb-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff8f2 0%, #f0faf0 100%);
    position: relative;
    overflow: hidden;
}
 
.fb-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,0,.08), transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}
 
.fb-wrapper {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.12);
    min-height: 600px;
}
 
/* Left Panel */
.fb-left {
    width: 38%;
    background: linear-gradient(160deg, var(--main-color) 0%, #e05500 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
 
.fb-left::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    bottom: -80px;
    left: -80px;
}
 
.fb-left-inner { position: relative; z-index: 1; }
 
.fb-brand-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 28px;
    border: 2px solid rgba(255,255,255,.3);
}
 
.fb-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}
 
.fb-left > .fb-left-inner > p {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}
 
.fb-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}
 
.fb-features li {
    color: rgba(255,255,255,.9);
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.fb-features li i {
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
 
.fb-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
.fb-contact-info a {
    color: rgba(255,255,255,.9);
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}
 
.fb-contact-info a:hover { color: #fff; padding-left: 5px; }
.fb-contact-info a i { font-size: 14px; }
 
/* Right Panel */
.fb-right {
    flex: 1;
    background: #fff;
    padding: 55px 50px;
}
 
.fb-form-header { margin-bottom: 30px; }
 
.fb-form-header h3 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}
 
.fb-form-header h3 span { color: var(--main-color); }
 
.fb-form-header p { color: #888; font-size: 15px; margin: 0; }
 
/* Star Rating */
.fb-star-group { margin-bottom: 24px; }
 
.fb-stars {
    display: flex;
    gap: 8px;
    margin: 8px 0 6px;
}
 
.fb-stars i {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color .2s, transform .2s;
}
 
.fb-stars i.active,
.fb-stars i:hover { color: #f5a623; }
 
.fb-stars i:hover { transform: scale(1.2); }
 
.fb-star-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    min-height: 18px;
}
 
/* Form Layout */
.fb-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
 
.fb-row .fb-field { flex: 1; margin-bottom: 0; }
 
.fb-field { margin-bottom: 20px; }
 
.fb-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 7px;
}
 
.fb-label .req { color: #e74c3c; margin-left: 2px; }
 
.fb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
 
.fb-input-wrap i {
    position: absolute;
    left: 14px;
    color: #bbb;
    font-size: 14px;
    transition: color .3s;
    pointer-events: none;
}
 
.fb-input-wrap.fb-textarea-wrap { align-items: flex-start; }
.fb-input-wrap.fb-textarea-wrap i { top: 14px; }
 
.fb-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    /* border: 1.5px solid #e8e8e8; */
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    /* background: #fafafa; */
    transition: border-color .3s, box-shadow .3s, background .3s;
    outline: none;
    resize: none;
}
 
.fb-input:focus {
    border-color: var(--main-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,122,0,.1);
}
 
.fb-input:focus + i,
.fb-input-wrap:focus-within i { color: var(--main-color); }
 
.fb-input.fb-valid { border-color: #28a745; }
.fb-input.fb-invalid { border-color: #e74c3c; }
 
.fb-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}
 
/* Submit Button */
.fb-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--main-color), #e05500);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .3s, box-shadow .3s;
    margin-top: 8px;
}
 
.fb-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,122,0,.35);
}
 
/* Success State */
.fb-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 300px;
}
 
.fb-success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 15px 40px rgba(40,167,69,.3);
    animation: successPop .5s cubic-bezier(.175,.885,.32,1.275);
}
 
@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
 
.fb-success h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}
 
.fb-success p { color: #888; font-size: 15px; }
 
/* Responsive */
@media (max-width: 991px) {
    .fb-wrapper { flex-direction: column; }
    .fb-left { width: 100%; padding: 40px 30px; }
    .fb-right { padding: 40px 30px; }
    .fb-left h2 { font-size: 24px; }
}
 
@media (max-width: 576px) {
    .fb-row { flex-direction: column; gap: 0; }
    .fb-right { padding: 30px 20px; }
    .fb-row { flex-direction: column; gap: 0; }
}
 
/* Rating Select */
.fb-select {
    appearance: auto;
    cursor: pointer;
    color: #777;
    font-size: 15px;
}
 
.fb-select option { color: #333; }
 
/*==============================
        CONTACT PAGE
==============================*/
 
.ct-section {
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fff8f2 0%, #f0faf0 50%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}
 
/* ---- Animated Background ---- */
.ct-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
 
.ct-plane {
    position: absolute;
    color: rgba(255, 122, 0, 0.12);
    font-size: 28px;
}
 
.ct-plane-1 {
    top: 10%;
    left: -60px;
    animation: flyAcross 14s linear infinite;
}
 
.ct-plane-2 {
    top: 55%;
    left: -60px;
    font-size: 18px;
    animation: flyAcross 20s linear infinite 5s;
}
 
.ct-plane-3 {
    top: 80%;
    left: -60px;
    font-size: 22px;
    animation: flyAcross 17s linear infinite 9s;
}
 
@keyframes flyAcross {
    0%   { left: -80px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}
 
.ct-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.1);
}
 
.ct-dot-1 { width: 300px; height: 300px; top: -100px; right: -80px; animation: pulseDot 6s ease-in-out infinite; }
.ct-dot-2 { width: 200px; height: 200px; bottom: -60px; left: -60px; animation: pulseDot 8s ease-in-out infinite 2s; }
.ct-dot-3 { width: 120px; height: 120px; top: 40%; right: 10%; animation: pulseDot 5s ease-in-out infinite 1s; }
.ct-dot-4 { width: 80px;  height: 80px;  top: 20%; left: 15%; animation: pulseDot 7s ease-in-out infinite 3s; }
 
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: .6; }
    50%       { transform: scale(1.2); opacity: 1; }
}
 
/* ---- Section Header ---- */
.ct-header {
    text-align: center;
    margin-bottom: 50px;
}
 
.ct-subtext {
    color: #777;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}
 
/* ---- Info Cards ---- */
.ct-cards-row {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}
 
.ct-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.07);
    position: relative;
    overflow: hidden;
    transition: transform .4s, box-shadow .4s;
}
 
.ct-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--main-color), #ffd320);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
 
.ct-card:hover { transform: translateY(-10px); box-shadow: 0 20px 55px rgba(0,0,0,.12); }
.ct-card:hover::before { transform: scaleX(1); }
 
.ct-card-icon {
    position: relative;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), #e05500);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: #fff; font-size: 26px;
}
 
.ct-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(255,122,0,.4);
    animation: spinRing 8s linear infinite;
}
 
@keyframes spinRing {
    to { transform: rotate(360deg); }
}
 
.ct-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
 
.ct-card a {
    display: block;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    text-decoration: none;
    transition: color .3s;
}
 
.ct-card a:hover { color: var(--main-color); }
 
/* ---- Map + Form Row ---- */
.ct-main-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
 
/* Map */
.ct-map-wrap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
}
 
.ct-map-header {
    background: linear-gradient(135deg, var(--main-color), #e05500);
    color: #fff;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.ct-map-wrap iframe {
    flex: 1;
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}
 
/* Form */
.ct-form-wrap {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 15px 50px rgba(0,0,0,.1);
}
 
.ct-form-header { margin-bottom: 28px; }
 
.ct-form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}
 
.ct-form-header h3 span { color: var(--main-color); }
.ct-form-header p { color: #888; font-size: 14px; margin: 0; }
 
.ct-field { margin-bottom: 18px; }
 
.ct-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
 
.ct-input-wrap i {
    position: absolute;
    left: 14px;
    color: #bbb;
    font-size: 14px;
    pointer-events: none;
    transition: color .3s;
}
 
.ct-input-wrap.ct-textarea-wrap { align-items: flex-start; }
.ct-input-wrap.ct-textarea-wrap i { top: 14px; }
 
.ct-input-wrap input,
.ct-input-wrap textarea {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    outline: none;
    resize: none;
    transition: border-color .3s, box-shadow .3s, background .3s;
    font-family: inherit;
}
 
.ct-input-wrap input:focus,
.ct-input-wrap textarea:focus {
    border-color: var(--main-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,122,0,.1);
}
 
.ct-input-wrap:focus-within i { color: var(--main-color); }
 
.ct-submit-btn {
    width: 50%;
    padding: 14px;
    background: linear-gradient(135deg, var(--main-color), #e05500);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .3s, box-shadow .3s;
    margin-top: 6px;
    font-family: inherit;
}
 
.ct-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,122,0,.35);
}
 
.ct-submit-btn i { animation: sendPulse 2s ease-in-out infinite; }
 
@keyframes sendPulse {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50%       { transform: translateX(4px) rotate(-15deg); }
}
 
/* ---- Responsive ---- */
@media (max-width: 991px) {
    .ct-cards-row { flex-wrap: wrap; }
    .ct-card { flex: 1 1 calc(50% - 12px); }
    .ct-main-row { flex-direction: column; }
    .ct-map-wrap iframe { min-height: 300px; }
}
 
@media (max-width: 576px) {
    .ct-card { flex: 1 1 100%; }
    .ct-form-wrap { padding: 28px 20px; }
    .ct-section { padding: 50px 0 60px; }
}
.ct-input-wrap{
    position: relative;
}

.input-icon{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-size: 16px;
    z-index: 2;
}

.ct-input-wrap input,
.ct-input-wrap textarea{
    width: 100%;
    padding: 15px 18px 15px 50px; /* Space for icon */
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: .3s;
}

.ct-input-wrap textarea{
    padding-top: 15px;
    min-height: 130px;
    resize: vertical;
}

.ct-input-wrap textarea + .input-icon{
    top: 20px;
    transform: none;
}

.ct-input-wrap:focus-within .input-icon{
    color: #ff8c42;
}

.ct-input-wrap input:focus,
.ct-input-wrap textarea:focus{
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}

.fb-input-wrap{
    position: relative;
}

.input-icon{
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.fb-input,
.fb-select{
    width: 100%;
    padding: 14px 16px 14px 48px;
}

.fb-textarea-wrap .textarea-icon{
    top: 18px;
    transform: none;
}

.fb-textarea-wrap textarea{
    padding-top: 14px;
    padding-left: 48px;
    min-height: 140px;
}

.fb-input-wrap:focus-within .input-icon{
    color: #ff8c42;
}
.align-center{
    text-align: center;
}

.navbar-flex{
    display: flex;
    align-items: center;
    width: 100%;
}

/* Logo */
.navbar-header{
    flex: 0 0 auto;
}

.navbar-brand{
    margin: 0;
    padding: 0;
}

.navbar-brand img{
    width: 180px; /* change as required */
    height: auto;
    display: block;
}

/* Menu */
.navbar-collapse1{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 40px;
}

/* Navbar items */
.home-navbar-nav{
    display: flex;
    align-items: center;
    margin: 0;
    gap: 18px; /* Adjust spacing between menu items */
}
.ct-btn-group{
    display:flex;
    gap:12px;
    align-items:center;
}

/* .ct-whatsapp-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.ct-whatsapp-btn:hover{
    background:#1ebe5d;
    transform:scale(1.05);
} */



.ct-whatsapp-btn {
    /* display: inline-flex; */
    align-items: center;
    margin-top: 10px;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    text-decoration: none;
    border-radius: 10px;
}

.ct-whatsapp-btn i {
    font-size: 22px;
    line-height: 1;
}

.ct-whatsapp-btn span {
    line-height: 1;
}

.ct-whatsapp-btn:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.ct-whatsapp-btn:active {
    transform: translateY(0);
}

.ct-whatsapp-btn:focus {
    outline: none;
}

@media (max-width: 576px) {
    .ct-whatsapp-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .ct-whatsapp-btn i {
        font-size: 20px;
    }
}





