
        :root {
           --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background-color: #f9f9f9;
            padding: 0;
            margin: 0;
        }
        

       /* Navbar brand container */
.navbar-brand {
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo image */
#nav-logo {
  height: 8vh;          
  max-height: 60px;     
  width: auto;          
  object-fit: contain;  
  object-position: center;
  display: block;
}

/*Mobile adjustments */
@media (max-width: 768px) {
  #nav-logo {
    height: 6vh;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  #nav-logo {
    height: 5vh;
    max-height: 35px;
  }
}


        
        .chardham-hero {
            min-height: 100vh;
            background: linear-gradient(180deg,#ecf0f1,#3498db), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%232c3e50" x="0" y="0" width="100" height="100"/><path fill="%233498db" fill-opacity="0.2" d="M0,0 L100,100 M100,0 L0,100"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            border-radius: 15px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hero-title {
            font-family: 'Noto Sans', sans-serif;
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-title span {
            color: var(--gold);
        }
        
        .hero-description {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 800px;
        }
        
        .cta-button {
            background: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 15px;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
        }
        
        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: white;
            color: var(--secondary);
        }
        
        .temple-icons {
            display: flex;
            justify-content: space-between;
            max-width: 800px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .temple-item {
            text-align: center;
            margin: 15px;
            flex: 1;
            min-width: 150px;
        }
        
        .temple-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--gold);
            display: block;
        }
        
        .temple-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .features {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .feature {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            flex: 1;
            min-width: 200px;
        }
        
        .feature-icon {
            display: block;
            margin: auto;
            font-size: 1.8rem;
            margin-right: 15px;
            color: var(--gold);
        }
        
        .feature-text {
            font-size: 0.9rem;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 3rem;
        }
        
        .element-1 {
            top: 15%;
            left: 10%;
            animation: float 15s infinite ease-in-out;
        }
        
        .element-2 {
            top: 25%;
            right: 15%;
            animation: float 18s infinite ease-in-out;
            animation-delay: 1s;
        }
        
        .element-3 {
            bottom: 20%;
            left: 20%;
            animation: float 20s infinite ease-in-out;
            animation-delay: 2s;
        }
        
        .element-4 {
            bottom: 30%;
            right: 10%;
            animation: float 17s infinite ease-in-out;
            animation-delay: 3s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .temple-item {
                min-width: 120px;
            }
            
            /* .features {
                flex-direction: column;
            } */
             .features{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
             }
             .feature-icon{
                margin: 0;
             }
        }
   


       
       /* chardham-info-section  */
        .chardham-info-section {
            padding: 80px 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .intro-content {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
        }
        
        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 30px;
        }
        
        .intro-text strong {
            color: var(--secondary);
        }
        
        .service-highlight {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            font-style: italic;
        }
        
        .temples-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .temple-items {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .temple-items:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .temple-image {
            height: 350px;
            /* background: linear-gradient(135deg, var(--secondary), var(--primary)); */
            /* display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem; */
            background-position: bottom;
            background-size: cover;
            position: relative;
            overflow: hidden;
        }
        
       #temp-img {
            background-position: center;
            background-size: contain;  /* Makes sure the whole image fits */
            background-repeat: no-repeat;
            width: 100%;
            height: 100%;
        }

        @media (max-width: 576px) {
            #temp-img{
                max-width: 100vw;
                max-height: 40vh;
            }
            .temple-names{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
            }
            /* .temple-description{
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            } */
            .temple-details li{
                margin-top: 10px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 5px;
            }
        }


        .temple-content {
            padding: 25px;
        }
        
        .temple-names {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            max-height: 50px;
        }
        
        .temple-icons {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .temple-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .temple-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .temple-details li {
            padding: 8px 0;
            color: #666;
            display: flex;
            align-items: center;
            border-bottom: 1.5px solid #f0f0f0;
        }

        .temple-details li strong{
            color: #2c3e50;
        }
        
        .temple-details li:last-child {
            border-bottom: none;
        }
        
        .temple-details li i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
        }
        
        .significance-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            border-radius: 12px;
            padding: 40px;
            color: white;
            margin-top: 60px;
        }
        
        .significance-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .significance-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .significance-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .significance-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--gold);
        }
        
        .significance-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .temples-container {
                grid-template-columns: 1fr;
            }
            
            .significance-content {
                grid-template-columns: 1fr;
            }
        }
   








        
        /* Why choose cityCab Section */
        .benefits-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f0f8ff);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover:before {
            opacity: 1;
        }
        
        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
        }
        
        .benefit-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 1.3rem;
            position: relative;
            z-index: 2;
        }
        
        .benefit-description {
            color: #555;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }
        
        .vehicles-showcase {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            border-radius: 12px;
            padding: 40px;
            color: white;
            margin-top: 60px;
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
        }
        
        .vehicles-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .vehicles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .vehicle-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        @media (max-width: 576px) {
            .vehicle-item{
                padding: 3px 5px;
            }
        }
        
        .vehicle-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .vehicle-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--gold);
        }
        
        .vehicle-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .vehicle-capacity {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .cta-container {
            text-align: center;
            margin-top: 60px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--secondary);
        }
        
        .cta-button {
            background: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 15px;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
        }
        
        .cta-button.secondary {
            background: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .cta-button.secondary:hover {
            background: transparent;
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .benefits-container {
                grid-template-columns: 1fr;
            }
            
            .vehicles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    
   






       
       /* Our Taxi Packages  */
        .packages-section {
            padding: 80px 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .packages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 30px;
        }
        
        .package-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border-top: 5px solid var(--primary);
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .package-header {
            padding: 25px;
            text-align: center;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            position: relative;
        }
        
        .package-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .package-name {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .package-location {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .package-body {
            padding: 25px;
        }
        
        .package-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        @media (max-width: 576px) {
            .package-features{
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .package-features li{
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .package-features li i{
                margin-top: 10px;
                margin-bottom: 5px;
            }
        }

        .package-features li {
            padding: 8px 0;
            color: #666;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .package-features li:last-child {
            border-bottom: none;
        }
        
        .package-features li i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
        }
        
        .package-price {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .price-from {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 5px;
        }
        
        .price-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .price-note {
            font-size: 0.8rem;
            color: #999;
        }
        
        .package-cta {
            text-align: center;
        }
        
        .btn-package {
            background: var(--accent);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            width: 100%;
        }
        
        .btn-package:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        .info-container {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            border-radius: 12px;
            padding: 40px;
            color: white;
            margin-top: 60px;
        }
        
        .info-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .info-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .info-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--gold);
        }
        
        .info-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .packages-container {
                grid-template-columns: 1fr;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }
    



/* Floating action buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }
        
        .floating-btn:hover::after {
            transform: translateY(0);
        }
        
        .floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
        }
        
        .call-btn {
            background-color: var(--accent);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .btn-text {
            position: absolute;
            right: 70px;
            background: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .floating-btn:hover .btn-text {
            opacity: 1;
            right: 75px;
        }
        
        /* For mobile devices */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
            
            .btn-text {
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .floating-btn:hover .btn-text {
                right: 65px;
            }
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }
        
        .call-btn {
            animation: pulse 2s infinite;
        }
























       