




/* ==========================================
   1. COLOR PALETTE & GLOBAL STYLES
   ========================================== */
:root {
    --dark-navy: #0a192f;
    --navy-panel: #112240;
    --electric-blue: #00f2fe;
    --accent-blue: #0077ff;
    --text-white: #ffffff;
    --text-muted: #8892b0;
}

body {
    background-color: var(--dark-navy);
    color: var(--text-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* ==========================================================================
   NAVIGATION BAR STYLING (PERFECT SLIM & CLEAN LAYOUT)
   ========================================================================== */


.navbar {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 242, 254, 0.1);
    
    padding-top: 6px !important;   
    padding-bottom: 6px !important; 
}


.navbar .container {
    display: flex;
    align-items: center; 
    justify-content: space-between;
}


.navbar-logo {
    height: 100px !important; 
    width: auto !important;
    display: block;
    position: static !important; 
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}


.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 0px; 
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
    line-height: 1.1;
}

.brand-accent {
    color: var(--electric-blue);
}

.brand-subtext {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5); /* text-white-50 style */
    margin-top: 2px;
    line-height: 1;
    display: block;
}

/* 5. Menu Links (Home, Packages, etc.) Styling */
.navbar-nav {
    display: flex;
    align-items: center;
    margin-top: 0px !important; 
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    opacity: 0.8;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-size: 15px;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    opacity: 1;
    color: var(--electric-blue) !important;
}


.navbar .btn-electric {
    margin-top: 0px !important;
}
/* ==========================================
   3. BUTTON STYLING
   ========================================== */
.btn-electric {
    background-color: transparent;
    color: var(--electric-blue) !important;
    border: 2px solid var(--electric-blue);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.btn-electric:hover {
    background-color: var(--electric-blue);
    color: var(--dark-navy) !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* ==========================================
   4. NEW FULL SCREEN HERO SECTION STYLING
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed; 
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 30%, rgba(10, 25, 47, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.bg-soft-blue {
    background-color: rgba(0, 242, 254, 0.1);
}
.text-electric {
    color: var(--electric-blue);
}

/* ==========================================
   5. SERVICES OFFERED SECTION STYLING
   ========================================== */
.services-section {
    background-color: rgba(17, 34, 64, 0.5);
}
.service-card {
    background-color: var(--navy-panel);
    border: 1px solid rgba(0, 242, 254, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-blue);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.05);
}
.icon-box {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

/* ==========================================
   FEATURED TOUR PACKAGES STYLING
   ========================================== */
.packages-section {
    background-color: var(--dark-navy);
}
.package-card {
    background-color: var(--navy-panel);
    border: 1px solid rgba(0, 242, 254, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--electric-blue);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.08);
}
.package-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-img {
    transform: scale(1.1); 
}
.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-blue);
    color: var(--text-white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.package-details p {
    color: var(--text-muted);
    line-height: 1.6;
}



/* ==========================================
   6. FOOTER STYLING
   ========================================== */
.footer-area {
    background-color: #020c1b;
    border-top: 1px solid rgba(0, 242, 254, 0.1);
}
.footer-contacts li {
    margin-bottom: 10px;
}
.social-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--navy-panel);
    color: var(--text-white);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}
.social-link:hover {
    color: var(--dark-navy);
    background: var(--electric-blue);
    box-shadow: 0 0 10px var(--electric-blue);
}

/* Styling for full brand name in navbar */
.lead-brand {
    vertical-align: middle;
}
/* Custom Alignment for Aruna Global Corporate Identity */
.brand-text-wrapper {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    justify-content: center;
}

.brand-main-text {
    font-size: 26px; 
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
    line-height: 1.1;
}

.brand-accent {
    color: var(--electric-blue);
}

.brand-subtext {
    font-size: 11px; 
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px; 
    line-height: 1;
    display: block;
}



@media (max-width: 991.98px) {
    .navbar {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .navbar-collapse {
        background-color: rgba(10, 25, 47, 0.98);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        border: 1px solid rgba(0, 242, 254, 0.1);
    }
    .navbar-nav {
        align-items: flex-start !important;
    }
    .navbar-nav .nav-link {
        padding: 8px 0 !important;
    }
}


.text-electric {
    color: var(--electric-blue) !important;
}

.btn-electric {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: #0a192f !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-electric:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}


.form-control:focus {
    background-color: #112240 !important;
    border-color: var(--electric-blue) !important;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.2);
    color: #fff;
}


.destination-card {
    perspective: 1000px;
}

.destination-img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.destination-card:hover .destination-img {
    transform: scale(1.1);
}


.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.4s ease;
}

.text-electric {
    color: #00f2fe !important;
}


.card-desc {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.1s;
}

.destination-card:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}


.hero-title {
    line-height: 1.2;
    letter-spacing: -1px;
}

.text-electric {
    color: #00f2fe !important;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.hero-badge {
    font-size: 12px;
    font-weight: 600;
}


.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}


.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: #0a192f !important;
    border-color: #fff;
}


.css-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.css-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: cssSliderAnim 15s infinite ease-in-out;
}


.css-slide:nth-child(1) {
    animation-delay: 0s;
}
.css-slide:nth-child(2) {
    animation-delay: 5s;
}
.css-slide:nth-child(3) {
    animation-delay: 10s;
}


@keyframes cssSliderAnim {
    0% { opacity: 0; transform: scale(1); }
    8% { opacity: 1; }
    33% { opacity: 1; }
    41% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 0; }
}
/* Tour Packages Custom CSS */
.package-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.package-img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.package-card:hover {
    transform: translateY(-10px);
    border-color: #00f2fe !important;
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.15);
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.card-pkg-title {
    transition: color 0.3s ease;
}
.package-card:hover .card-pkg-title {
    color: #00f2fe !important;
}


.bg-electric {
    background-color: #00f2fe !important;
}

.btn-outline-electric {
    border: 2px solid #00f2fe;
    color: #00f2fe;
    transition: all 0.3s ease;
}

.btn-outline-electric:hover {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: #0a192f !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}


.gallery-item {
    height: 280px; 
    cursor: pointer;
}

.gallery-img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85); 
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px); 
}

/* Hover Effects */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .text-center {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay .text-center {
    transform: translateY(0);
}

/* Experiences Custom CSS */
.experience-item {
    transition: all 0.3s ease;
}


.experience-item:hover {
    background: #0a192f !important;
    border-color: rgba(0, 242, 254, 0.2) !important;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.05);
}

.experience-item:hover .item-title {
    color: #00f2fe !important;
}

.experience-item:hover .icon-box {
    background: #00f2fe !important;
}

.experience-item:hover .icon-box i {
    color: #0a192f !important;
}


.experience-banner-wrapper {
    padding: 10px;
}

.banner-border-glow {
    position: absolute;
    top: 20px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 242, 254, 0.3);
    border-radius: 1rem;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.experience-banner-wrapper:hover .banner-border-glow {
    top: 10px;
    left: -5px;
    border-color: #00f2fe;
}

.experience-main-img {
    transition: transform 0.5s ease;
}

.experience-banner-wrapper:hover .experience-main-img {
    transform: scale(1.02);
}


.exp-tabs .nav-link {
    background-color: #0a192f;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    transition: all 0.3s ease;
}


.exp-tabs .nav-link:hover {
    color: #00f2fe;
    border-color: rgba(0, 242, 254, 0.3);
}

.exp-tabs .nav-link.active {
    background: linear-gradient(45deg, #00f2fe, #4facfe) !important;
    color: #0a192f !important;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.3);
}


.exp-tab-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    z-index: 2;
    position: relative;
    transition: transform 0.5s ease;
}

.exp-img-wrapper:hover .exp-tab-img {
    transform: scale(1.03);
}


.exp-glow-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}


#expInquiryForm .form-control {
    background-color: #0b1e36 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

#expInquiryForm .form-control:focus {
    border-color: #00f2fe !important;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2) !important;
    outline: none;
}

/* ==========================================================================
   ARUNA GLOBAL TOURS - ABOUT & STATS SECTION STYLES
   ========================================================================== */
.about-stat-card {
    background: #0b1e36;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-stat-card:hover {
    border-color: #00f2fe !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.1);
}

.text-electric {
    color: #00f2fe !important;
}

.tracking-wider {
    letter-spacing: 1px;
}


/* ==========================================================================
   ARUNA GLOBAL TOURS - DESTINATIONS PAGE STYLES
   ========================================================================== */
.dest-header-section {
    padding: 120px 0 50px 0;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.98)), url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?q=80&w=1200') no-repeat center center/cover;
}

.filter-btn {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #00f2fe;
    color: #0a192f !important;
    border-color: #00f2fe;
    font-weight: 600;
}

.dest-grid-card {
    background: #0b1e36;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.dest-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dest-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-grid-card:hover {
    transform: translateY(-8px);
    border-color: #00f2fe !important;
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.15);
}

.dest-grid-card:hover .dest-img-container img {
    transform: scale(1.1);
}

/* ==========================================================================
   ARUNA GLOBAL TOURS - PROFESSIONAL FOOTER STYLES
   ========================================================================== */
.main-footer {
    background-color: #050e1a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-link:hover {
    color: #00f2fe !important;
    transform: translateX(5px);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: #00f2fe;
    color: #0a192f;
    transform: translateY(-3px);
}

/* 🟢 FLOATING WHATSAPP BUTTON WITH GLOW EFFECT */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    color: #fff;
    background-color: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.6);
}


/* FAQ Accordion Custom Dark Styling */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f2fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-button:not(.collapsed) {
    color: #00f2fe !important;
}



/* Itinerary & Gallery Custom Styles */
.nav-pills .nav-link.active {
    background-color: #00f2fe !important;
    color: #0a192f !important;
    border-color: #00f2fe !important;
}
.nav-pills .nav-link.active .badge {
    background-color: #0a192f !important;
    color: #00f2fe !important;
}
.nav-pills .nav-link:hover:not(.active) {
    background-color: rgba(255,255,255,0.05) !important;
}
.gallery-card {
    cursor: pointer;
    transition: transform 0.4s ease;
}
.gallery-card:hover {
    transform: scale(1.03);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1 !important;
}
.transition-all {
    transition: all 0.3s ease-in-out;
}


.btn-outline-info:hover {
    background-color: #00f2fe !important;
    color: #0a192f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.3);
}