 /* Premium Homepage Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-color: #ff6b6b;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Modern Hero */
.modern-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 50px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.typed-text {
    color: var(--accent-color);
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-chip {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Image Stack */
.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
}

.stack-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.stack-main {
    width: 80%;
    height: 70%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.stack-secondary {
    width: 70%;
    height: 60%;
    left: 0;
    top: 10%;
    z-index: 2;
    opacity: 0.8;
}

.stack-tertiary {
    width: 60%;
    height: 50%;
    right: 10%;
    bottom: 0;
    z-index: 1;
    opacity: 0.6;
}

.image-stack:hover .stack-main {
    transform: translateY(-50%) rotate(5deg);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-gradient);
    filter: blur(40px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.fe1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.fe2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.fe3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Features Section */
.features-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a1a2e' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,128C672,107,768,117,864,138.7C960,160,1056,192,1152,181.3C1248,171,1344,117,1392,90.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-wrapper {
    perspective: 1000px;
}

.feature-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover {
    transform: translateY(-20px) rotateX(5deg);
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.feature-card:hover .card-glow {
    opacity: 0.5;
}

.card-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #667eea;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Masonry Grid for Packages */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 60px);
    gap: 20px;
    margin-top: 50px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.masonry-large {
    grid-column: 1 / span 6;
    grid-row: 1 / span 8;
}

.masonry-item:not(.masonry-large) {
    grid-column: span 3;
    grid-row: span 4;
}

.package-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    z-index: 1;
}

.package-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.package-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.tour-count {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Enquiry Section */
.enquiry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.enquiry-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.enquiry-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: white;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #4cd964;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Glass Form */
.glass-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.glass-form h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.floating-input {
    position: relative;
}

.floating-input input {
    width: 100%;
    padding: 20px 50px 20px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-input label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-input input:focus + label,
.floating-input input:valid + label {
    top: 0;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 10px;
    color: #667eea;
}

.floating-input i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

.input-group label i {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.message-alert {
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 217, 100, 0.2);
    border: 1px solid rgba(76, 217, 100, 0.4);
    border-radius: 10px;
    color: #4cd964;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.newsletter-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    padding: 18px 40px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-left h1 {
        font-size: 3.5rem;
    }
    
    .masonry-grid {
        grid-template-rows: repeat(8, 50px);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enquiry-container {
        grid-template-columns: 1fr;
    }
    
    .masonry-large {
        grid-column: 1 / span 12;
    }
    
    .masonry-item:not(.masonry-large) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .masonry-item:not(.masonry-large) {
        grid-column: span 12;
    }
}

@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .glass-form {
        padding: 25px;
    }
}
 

/* premium.css - Premium Styles for GoTrip */

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 15s infinite linear;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 60%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 30s;
}

.bg-circle-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    bottom: 40%;
    right: 5%;
    animation-delay: 15s;
    animation-duration: 35s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

/* Footer Premium Styles */
.footer-premium {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-right: 15px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.footer-services li i {
    color: #4cd964;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #667eea;
    font-size: 20px;
    margin-top: 5px;
}

.contact-item h6 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

/* Newsletter */
.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 15px 25px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    box-shadow: none;
    background: transparent;
    color: white;
}

.btn-subscribe {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Copyright */
.copyright {
    color: rgba(255, 255, 255, 0.6);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .newsletter-form input {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .btn-subscribe {
        width: 100%;
    }
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 .hero-section {
        height: 100vh;
        
        background-color: transparent;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.5);
        padding: 100px;
        border-radius: 10px;
    }
 .logo{
    width: 120px;          
    height: auto;
    object-fit: contain;
    cursor: pointer;
}
.trip{
    background-color: white;
    background-size: cover;
    display: flex;
    animation: 0s;
}
.go{
            background-color: #f8f9fa;
        }
        .card:hover {
            transform: scale(1.05);
            transition: 0.3s;
        }
        .navbar-brand {
            font-weight: bold;
        }





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 25px;   /* adjust based on navbar height */
}

/* ================ ABOUT ===============*/
.about-section {
    padding: 80px 50px;
    background: #f5f5f5;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6600;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.about-content .btn:hover {
    background: #e65c00;
}

/* ================= NAVBAR ================= */
.navbar{
    background-color: #000;
}

.transparent-navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3) ;
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 8px;
}
#p1{
 color:#d47222;
 letter-spacing: 4px;
}
#hh{
    color: #d47222;
}
.navbar {
    padding: 15px 0;
    background: rgb(13 159 208) ; /* modern dark */
}

.logo {
    height:57px;
}

.navbar-nav .nav-link {
    color: #fff;
    margin: 0 10px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107; /* yellow highlight */
}

/* Dropdown */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dropdown-item:hover {
    background-color:#1eb2ddd1;
    color: #000;
}

/* Buttons */
.navbar .btn-warning {
    border-radius: 25px;
    padding: 6px 18px;
    font-weight: 600;
}
.hero-section-img {
    height: 90vh;
    object-fit: cover;
}

.carousel-caption {
    bottom: 40%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* =============ADVENTURE ===============*/
/* HERO */
.sa-hero {
    height: 70vh;
    background: url("images/south-adventure-bg.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.sa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.sa-hero-content {
    position: relative;
    color: #fff;
    padding-left: 60px;
}

.sa-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.sa-hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* PACKAGES */
.sa-packages {
    padding: 60px 0;
}

.sa-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.sa-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
    );
}

.sa-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.sa-overlay h4 {
    font-size: 20px;
    font-weight: 600;
}

.sa-overlay p {
    font-size: 14px;
    margin-bottom: 8px;
}
/* =============BUDGET ===================*/
.budget-hotels {
    padding: 50px;
    text-align: center;
}
.budget-hotels h3{
    color: white;
}

.sub-text {
    color: #666;
    margin-bottom: 30px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hotel-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: scale(1.05);
}

.hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 Makes image fit properly */
    object-position: center;
    display: block;
}

.hotel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hotel-overlay h3 {
    font-size: 18px;
    font-weight: bold;
}

.hotel-overlay p {
    font-size: 14px;
    opacity: 0.9;
}


/* ================= CARDS ================= */

.card {
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-body h5 {
    font-weight: 600;
}
#one{
    color: black;
}

.main_heading2{
    color: #38404F !important;
    font-weight: 700px;
    font-size: 52px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* ===============WEEKEND===============*/
.popular-packages {
    padding: 50px;
    text-align: center;
}

.sub-text {
    color: #666;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.package-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}
.package-card h3{
    color: white;
}

.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ===============LUXURY=============*/
.luxury-section {
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.luxury-card {
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

.luxury-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     object-position: center;
    transition: transform 0.5s ease;
}

.luxury-card:hover img {
    transform: scale(1.12);
}

.luxury-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;

}

.luxury-overlay h3 {
    font-size: 22px;
    font-weight: bold;
}

.luxury-overlay p {
    font-size: 15px;
    opacity: 0.9;
}
/*=================popular================*/
.gt-popular-packages {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.gt-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    width: 100%;
    


}
.gt-card-large {
    height: 350px;

}

.gt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.gt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2)
    );
    z-index: 1;
}

.gt-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: #fff;
    
   
  
}
.gt-overlay h3{
    color: white;
}
.gt-overlay h3,
.gt-overlay h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.gt-btn {
    background: #ffcc00;
    color: #000;
    font-weight: 700;
    padding: 8px 16px;
    font-size: 13px;
    display: inline-block;
    letter-spacing: 1px;
    
}
/* ============== ENQUIRY ==============*/
.enquiry-form-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: sticky;
            top: 100px;
        }
        
        .enquiry-form-container h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .enquiry-form-container h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #667eea, #764ba2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        
        /* Why Choose Section */
        .why-choose {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .benefit-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        /* Package Grid */
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .package-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
        }
        
        .package-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .package-info {
            padding: 20px;
        }
        
        .package-price {
            color: #e74c3c;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 10px 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .enquiry-sidebar {
                width: 100%;
                position: static;
                margin-top: 40px;
            }
            
            .enquiry-form-container {
                position: static;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .delhi-hero {
                padding: 60px 20px;
            }
            
            .delhi-hero h1 {
                font-size: 2.5rem;
            }
            
            .content-wrapper {
                padding: 0 15px;
            }
            
            .place-card-content {
                padding: 20px;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }


/* ================= TN ================= */

/* HERO SECTION */
.tn-hero {
    height: 70vh;
    background: url("images/tamilnadu.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.tn-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.tn-hero-content {
    position: relative;
    color: #fff;
    padding-left: 60px;
}

.tn-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.tn-hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* PACKAGES */
.tn-packages {
    padding: 60px 0;
}

.package-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
}

.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
    );
}

.package-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.package-overlay h4 {
    font-size: 20px;
    font-weight: 600;
}

.package-overlay p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ============ BANGALORE ================ */
.bangalore-tours {
    padding: 60px 50px;
    text-align: center;
    background: #f8f8f8;
}

.bangalore-tours h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.sub-text {
    color: #666;
    margin-bottom: 30px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tour-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: scale(1.05);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 Makes image fit properly */
    object-position: center;
    display: block;
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.tour-overlay h3 {
    font-size: 18px;
    font-weight: bold;
}

.tour-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

/* =============KERALA ====================*/

.kerala-tours {
    padding: 60px 50px;
    text-align: center;
    background: #f0f8f5;
}

.kerala-tours h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.sub-text {
    color: #666;
    margin-bottom: 30px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tour-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.tour-card h3{
    color: white;
}
.tour-card:hover {
    transform: scale(1.05);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 Fits image properly */
    object-position: center;
    display: block;
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.tour-overlay h3 {
    font-size: 18px;
    font-weight: bold;
}

.tour-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}
/* ============== NORTH INDIA ==============*/

.north-india-tours {
    padding: 60px 50px;
    text-align: center;
    background: #fef9f4;
}

.north-india-tours h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.north-india-tours .sub-text {
    color: #666;
    margin-bottom: 30px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tour-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: scale(1.05);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.tour-overlay h3 {
    font-size: 18px;
    font-weight: bold;
}

.tour-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

/* ============= EDUCATION ==============*/

.educational-tours {
    padding: 60px 50px;
    text-align: center;
    background: #f3f9ff;
}

.educational-tours h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.educational-tours .sub-text {
    color: #666;
    margin-bottom: 30px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tour-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: scale(1.05);
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 Fits image properly */
    object-position: center;
    display: block;
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.tour-overlay h3 {
    font-size: 18px;
    font-weight: bold;
}

.tour-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}
 
/* ============= NONVEG ==================*/

.non-veg-section {
    padding: 60px 50px;
    text-align: center;
    background: #fff0f0;
}

.non-veg-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.non-veg-section .sub-text {
    color: #666;
    margin-bottom: 30px;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.food-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: scale(1.05);
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 Makes image fit properly */
    object-position: center;
    display: block;
}

.food-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.food-overlay h3 {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.food-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}




/* ================= FOOTER ================= */


.footer {
    background: black;
    color: #ccc;
    padding: 60px 0 20px;
    margin-top: 60px; 
}

.footer-logo {
    height: 45px;
}

.footer h5 {
    color: white;
    font-weight: 100px;
    margin-bottom : 20px;
    font-weight: 600;
}

.footer p {
    color: rgb(182, 177, 177)    ;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgb(182, 177, 177);
    font-weight: 60px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #058394d7;
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
}

.footer .copyright {
    font-size: 14px;
    color: #aaa;
}
