/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    padding-top: 25px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* Navbar Styling */
.navbar {
    background-color: #ffffff !important; /* White background for navbar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
    padding: 10px 20px;
}

.navbar-brand .logo-circle {
    width: 120px; /* Size of the logo circle */
    height: 80px;
    border-radius: 30%; /* Make it a circle */
    overflow: hidden; /* Hide overflow for circular image */
    display: flex;
    justify-content: center;
    border: 2px solid #17a2b8; /* Border around the logo */
    transition: transform 0.3s ease;
}

.navbar-brand .logo-circle:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.navbar-brand .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the circle */
}

.navbar-nav .nav-link {
    color: #000000 !important; /* Black text color */
    font-weight: 700; /* Bold font weight */
    margin: 0 10px; /* Space between nav items */
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 8px 15px; /* Padding for hover highlight */
    border-radius: 5px; /* Rounded corners for highlight */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #17a2b8 !important; /* Blue on hover */
    background-color: rgba(23, 162, 184, 0.1); /* Light blue highlight */
}

.navbar-nav .dropdown-menu {
    background-color: #ffffff; /* White background for dropdown */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
    color: #000000; /* Black text for dropdown items */
    font-weight: normal;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #e0f7fa; /* Light blue on hover */
    color: #17a2b8; /* Blue text on hover */
}

.btn-outline-success {
    color: #17a2b8;
    border-color: #17a2b8;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #17a2b8;
    color: #ffffff;
    border-color: #17a2b8;
}


/* Destination Gallery */
.destination-gallery {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #074807;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    color: #074807;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
}

       /* Common Styles for Destination Pages */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: white;
            background-attachment: fixed;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .back-link {
            display: inline-block;
            margin: 2rem 0 1rem;
            color: #003366;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .back-link:hover {
            color: #0055a5;
            text-decoration: underline;
        }

        .destination-detail {
            padding: 2rem 0;
        }

        .main-image img {
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            margin: 0 auto;
        }

        .intro {
            margin: 2rem 0;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .highlights h2,
        .itinerary h2,
        .booking-cta h2 {
            color: #003366;
            margin: 2.5rem 0 1.5rem;
            font-size: 2rem;
            border-bottom: 3px solid #e67e22;
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            margin-top: 1.5rem;
        }

        .highlight-card {
            background: white;
            padding: 1.6rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #003366;
        }

        .highlight-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-top-color: #e67e22;
        }

        .highlight-card h3 {
            color: #003366;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        .itinerary table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
        }

        .itinerary table th {
            background: linear-gradient(to right, #003366, #0055a5);
            color: white;
            padding: 1.1rem;
            text-align: left;
        }

        .itinerary table td {
            padding: 1.1rem;
            border-bottom: 1px solid #eee;
        }

        .itinerary table tr:nth-child(even) {
            background-color: #f8fbff;
        }

        .itinerary table tr:last-child td {
            border-bottom: none;
        }

        .booking-cta {
            text-align: center;
            padding: 2.8rem;
            background: linear-gradient(135deg, #003366 0%, #0055a5 100%);
            color: white;
            margin: 3rem 0;
            border-radius: 18px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
        }

        .booking-cta h2 {
            color: white;
            border: none;
            margin-bottom: 1.2rem;
            font-size: 2.3rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .booking-cta p {
            font-size: 1.2rem;
            margin-bottom: 1.6rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .explore-btn {
            background-color: #ffd700;
            color: #003366;
            font-size: 1.15rem;
            font-weight: bold;
            padding: 14px 36px;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .detail-header{

            text-align: center;
            margin-bottom: 2rem;
        }
        .explore-btn:hover {
            background-color: white;
            transform: scale(1.08);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
            color: #003366;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .detail-header h1.coxsbazar {
                font-size: 2.2rem;
            }
            
            .detail-header h1.ahsanmanzil {
                font-size: 2.2rem;
                text-align: center;
            }

            .booking-cta h2 {
                font-size: 1.9rem;
            }

            .highlight-grid {
                grid-template-columns: 1fr;
            }

            .main-image img {
                height: 300px;
            }
        }

/* About us CSS */

        
        /* About Us Specific Styles */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/414612/pexels-photo-414612.jpeg?cs=srgb&dl=pexels-souvenirpixels-414612.jpg&fm=jpg') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

        }

        .hero-section p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
             text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin: 50px 0 30px;
            color: #074807;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #17a2b8;
            margin: 15px auto;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .mission-box, .vision-box {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            border-top: 4px solid #17a2b8;
        }

        .mission-box:hover, .vision-box:hover {
            transform: translateY(-10px);
        }

        .mission-box h3, .vision-box h3 {
            color: #17a2b8;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .values-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .value-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 2.5rem;
            color: #17a2b8;
            margin-bottom: 15px;
        }

        .value-card h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .team-section {
            padding: 60px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-img {
            height: 300px;
            overflow: hidden;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-member:hover .member-img img {
            transform: scale(1.05);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .member-info .position {
            color: #17a2b8;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .testimonials-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-card::before {
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(23, 162, 184, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
            position: absolute;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .why-us-section {
            padding: 60px 0;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .why-us-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #17a2b8;
        }

        .why-us-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .why-us-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .why-us-card h3 i {
            margin-right: 10px;
            color: #17a2b8;
        }

        .cta-section {
            background: linear-gradient(135deg, #17a2b8 0%, #0d6efd 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 10px;
            margin: 50px 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .btn-cta {
            background-color: white;
            color: #17a2b8;
            font-size: 1.1rem;
            font-weight: bold;
            padding: 14px 36px;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            display: inline-block;
            text-decoration: none;
        }

        .btn-cta:hover {
            background-color: #e6f7ff;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            color: #17a2b8;
        }

/* About us css end */

























/* Footer Styling */
.main-footer {
    background-color: #474c51; /* Dark background for the footer */
    color: #f8f9fa; /* Light text color */
    padding: 40px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); /* Shadow at the top of the footer */
}

.footer-heading {
    color: #17a2b8; /* Info blue for headings */
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #f8f9fa; /* Light text color for links */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #17a2b8; /* Hover color for links */
}

.footer-bottom {
    background-color: black;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    text-align: center;
    color: white;
    justify-content: center;
    padding:5px;
}

