:root {
    --primary-color: #002D70;
    --primary-light: #0d469b;
    --primary-dark: #001a42;
    --secondary-color: #FE7402;
    --secondary-hover: #e06500;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.text-primary-color { color: var(--primary-color) !important; }
.text-secondary-color { color: var(--secondary-color) !important; }
.bg-primary-color { background-color: rgba(0, 45, 112, var(--bs-bg-opacity, 1)) !important; }
.bg-secondary-color { background-color: rgba(254, 116, 2, var(--bs-bg-opacity, 1)) !important; }

.bg-gradient-brand {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}
.tracking-wide { letter-spacing: 0.1em; }
.max-w-700 { max-width: 700px; }

/* Custom CSS */
.page-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 45, 112, 0.9) 0%, rgba(0, 45, 112, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FE7402; /* Secondary brand color for title as per image */
}

.hero-subtitle {
    max-width: 600px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 116, 2, 0.3);
}
.btn-secondary-brand {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}
.btn-secondary-brand:hover {
    background-color: white;
    border-color: white;
    color: var(--secondary-color);
}
.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.navbar.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.navbar-brand .brand-text {
    line-height: 1.2;
    color: var(--primary-color);
}
.navbar-brand .tagline {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}
.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInDropdown 0.3s ease-in-out;
}
.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background-color: #fff5ec;
    color: var(--secondary-color);
    padding-left: 2rem;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown Hover for Desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        margin-top: 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
}
.hero-bg {
    background: linear-gradient(rgba(0, 45, 112, 0.8), rgba(0, 45, 112, 0.5)), url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?q=80&w=1920&auto=format&fit=crop') no-repeat center center / cover;
}
.hero-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Service Card */
.service-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 45, 112, 0.15) !important;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}
.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(254, 116, 2, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0 auto 1.5rem;
}
.service-card:hover .icon-wrapper {
    background-color: var(--secondary-color);
    transform: rotateY(180deg);
}
.service-card i {
    transition: var(--transition);
}
.service-card:hover i {
    color: white !important;
    transform: rotateY(180deg) scale(1.1);
}

/* Package Card */
.package-card {
    transition: var(--transition);
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.package-card .img-wrapper {
    overflow: hidden;
}
.package-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover img {
    transform: scale(1.1);
}
.package-badge {
    z-index: 10;
}

/* Feature Box */
.feature-box {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}
.feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.feature-box i {
    transition: var(--transition);
}
.feature-box:hover i {
    transform: scale(1.2);
    color: var(--secondary-color) !important;
}

/* Animations */
.hover-scale {
    transition: var(--transition);
}
.hover-scale:hover {
    transform: scale(1.05);
}
.hover-up {
    transition: var(--transition);
}
.hover-up:hover {
    transform: translateY(-5px);
}

/* Steps Styling */
.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 45, 112, 0.05);
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.step-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 45, 112, 0.2);
}

.step-icon i {
    transition: var(--transition);
}

.step-icon:hover i {
    transform: rotateY(180deg);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    border: 3px solid white;
    transition: var(--transition);
    z-index: 2;
}

.step-icon:hover .step-number {
    background: white;
    color: var(--secondary-color);
    transform: rotateY(180deg) scale(1.1);
}

/* Decorative Divider */
.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: var(--transition);
}

section:hover .divider {
    width: 100px;
}

/* Responsive Adjusments */
@media (max-width: 768px) {
    .display-3 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
    .hero-section { min-height: 60vh; }
    .dropdown-menu { border: none; box-shadow: none; background: #f8f9fa; }
}

/* Scroll Animation Initial States */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.animate-on-scroll.scrolled {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Abstract Shapes */
.blur-xl { filter: blur(50px); }

/* Top Bar */
.top-bar {
    font-size: 0.85rem;
}
.top-bar a:hover {
    color: var(--secondary-color) !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.1);
}

/* Route Slider Marquee */
.route-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}
.route-slider-track {
    display: flex;
    width: max-content;
    animation: scroll-routes 35s linear infinite;
}
.route-slider-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-routes {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.route-badge {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid rgba(0, 45, 112, 0.2);
    font-weight: 500;
    transition: var(--transition);
}
.route-badge i {
    color: var(--secondary-color);
    transition: var(--transition);
}
.route-badge:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.route-badge:hover i {
    color: white;
}



/* .....................cust css.................... */

/* header start  */

.nav-item a.nav-link {
    font-size: 15px !important;
}

.navbar a.btn.btn-primary.rounded-pill.px-4.btn-nav {
    width: 130px !important;
    padding: 10px 0px !important;
}

.navbar img.me-2 {
    margin: 0px !important;
    width: 100%;
    height: 100%;
}

.hero-section h1.display-3.fw-bold.mb-4.hero-title {
    color: #fe732b;
}

.Journey h2 {
    color: #fd7126 !important;
    font-size: 40px;
    font-family: revert-rule;
    text-shadow: 1px 1px #acacac;
}


.Journey    p.lead.text-white {
    font-size: 16px;
    padding: 10px 0px;
}

footer .social-links a i {
    color: #fe7025 !important;
}

@media (max-width: 768px) {
    
.navbar img.me-2 {
    margin: 0px !important;
    width: 150px;
    height: 100%; } 

.top-bar .col-md-6.text-center.text-md-end {
    display: flex;
    justify-content: space-between;
}

section {

    overflow: hidden !important;
}

}