/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.7;
    font-size: 16px;
}
:root {
  --kumbh: "Kumbh Sans", sans-serif;
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #ffffff;
  --sub-bg: #f3f7fb;
  --heading-color: #0f0d1d;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
  --border-1px: 1px solid #eaecf0;
  --border-2px: 2px solid #eaecf0;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header & Navigation */
header {
    background: #ffffff;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed */
    margin-right: 15px;
}

.brand-name {
    font-size: 1.8em;
    font-weight: bold;
    color: #000; /* Primary color */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #343a40;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.current {
    color: #0056b3; /* Darker primary color */
    border-bottom-color: #0056b3;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #343a40;
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/placeholder-hero-egypt.jpg') no-repeat center center/cover; /* Replace with actual hero image */
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

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

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: #007bff;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* General Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #343a40;
    position: relative;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Featured Tours / Tour Grid */
.tour-grid, .features-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-package, .feature-item, .testimonial-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-package:hover, .feature-item:hover, .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.tour-package img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.tour-package h3, .feature-item h4, .testimonial-item h4 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.testimonial-item h4 {
    font-size: 1.1em;
    color: #6c757d;
    margin-top: 15px;
    font-style: italic;
}

.tour-package p, .feature-item p, .testimonial-item p {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 20px;
}

.cta-button-secondary {
    background: #28a745; /* Green for secondary actions */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-secondary:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

/* Why Us Section - Feature Item Icons */
.feature-item i {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #343a40;
    color: #f8f9fa;
    padding: 50px 0 20px;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h3, .footer-section h4 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-section p, .footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.95em;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-icons a {
    color: #adb5bd;
    margin-right: 15px;
    font-size: 1.4em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #495057;
    font-size: 0.9em;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #e7e7e7;
    }
    .nav-links a:hover, .nav-links a.current {
        background-color: #f8f9fa;
        border-bottom-color: #0056b3;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .tour-grid, .features-grid, .testimonial-grid, .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Existing Sections */
.confidence-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.confidence-list li {
    display: flex;
    align-items: center;
    color: #343a40;
}

.confidence-list i {
    margin-right: 10px;
    color: #007bff;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
}

.testimonial-item {
    min-width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.partner-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #e5e9ed;
    cursor: pointer;
}

.faq-item p {
    display: none;
    margin-top: 10px;
}

.custom-tour-form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-tour-form .form-group {
    display: flex;
    flex-direction: column;
}

.custom-tour-form select[multiple] {
    height: 100px;
}

.gallery-filter {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

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

.recommended-tour-item {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.recommended-tour-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

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

.success-element {
    text-align: center;
    padding: 15px;
}

.success-element img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.build-tour-form {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.tour-preview {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #e5e9ed;
    cursor: pointer;
}

.faq-item p {
    margin-top: 10px;
    display: block; /* Show by default for simplicity */
}

/* Enhanced Book With Confidence Section */
.confidence-section {
    position: relative;
    background: url('../images/confidence-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.confidence-overlay {
    background: rgba(0, 0, 0, 0.5); /* Overlay for better text readability */
    padding: 40px;
    border-radius: 15px;
}

.confidence-content {
    max-width: 1200px;
    margin: 0 auto;
}

.confidence-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.confidence-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confidence-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.confidence-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #333;
    transition: transform 0.3s ease;
}

.confidence-feature:hover {
    transform: translateY(-5px);
}

.confidence-feature i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
}

.confidence-feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.confidence-feature p {
    font-size: 1em;
    line-height: 1.5;
}

/* Enhanced Book Your Dream Egypt Tour by Category Section */
.dream-tour-section {
    position: relative;
    background: url('../images/dream-tour-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.dream-tour-overlay {
    background: rgba(46, 100, 170, 0.6);
    padding: 40px;
    border-radius: 15px;
}

.dream-tour-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dream-tour-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.dream-tour-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.tour-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.filter-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #28a745;
}

/* Enhanced Recommended Egypt Tours by Experts Section */
.recommended-tours-section {
    position: relative;
    background: url('../images/recommended-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.recommended-tours-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
}

.recommended-tours-content {
    max-width: 1200px;
    margin: 0 auto;
}

.recommended-tours-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.recommended-tours-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.recommended-tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recommended-tour-item {
    position: relative;
    text-align: center;
}

.tour-image {
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.recommended-tour-item:hover .tour-image img {
    transform: scale(1.05);
}

.recommended-tour-item:hover .tour-overlay {
    opacity: 1;
}

.recommended-tour-item h3 {
    font-size: 1.5em;
    color: #fff;
    margin: 15px 0 10px;
}

.recommended-tour-item p {
    font-size: 1em;
    color: #ddd;
}

/* Enhanced Elements of Our Success Section */
.elements-success-section {
    position: relative;
    background: url('../images/success-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.elements-success-overlay {
    background: rgba(46, 100, 170, 0.6);
    padding: 40px;
    border-radius: 15px;
}

.elements-success-content {
    max-width: 1200px;
    margin: 0 auto;
}

.elements-success-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.elements-success-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.success-elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.success-element {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: transform 0.3s ease;
}

.success-element:hover {
    transform: scale(1.05);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.success-icon i {
    font-size: 1.5em;
    color: #fff;
}

.success-element h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.success-element p {
    font-size: 0.9em;
}

/* Enhanced Customers Gallery Section */
/* .gallery-section {
    position: relative;
    background: url('../images/gallery-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
} */

/* .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
} */
.gallery-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f4f4f4, #e9ecef);
    text-align: center;
}
.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.gallery-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
}

.gallery-image {
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
	z-index:-1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1em;
    color: #fff;
}

/* Enhanced FAQ Section */
.faq-section {
    position: relative;
    background: url('../images/faq-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.faq-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.faq-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333;
}

.faq-item h3 {
    font-size: 1.2em;
    padding: 15px;
    margin: 0;
    cursor: pointer;
    background: #007bff;
    color: #fff;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #0056b3;
}

.faq-item p {
    padding: 15px;
    margin: 0;
    display: none;
    background: #fff;
    color: #333;
}

/* Enhanced Build Your Egypt Tour Section */
.build-tour-section {
    position: relative;
    background: url('../images/build-tour-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.build-tour-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
}

.build-tour-content {
    max-width: 1200px;
    margin: 0 auto;
}

.build-tour-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.build-tour-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.build-tour-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group select {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 1em;
    background: #fff;
    color: #333;
    cursor: pointer;
    width: 200px;
}

.form-group select[multiple] {
    height: 120px;
}

.tour-preview {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.tour-preview h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.tour-preview p {
    font-size: 1em;
    margin: 5px 0;
}

/* Enhanced Our Partners Section */
.partners-section {
    position: relative;
    background: url('../images/partners-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.partners-overlay {
    background: rgba(46, 100, 170, 0.6);
    padding: 40px;
    border-radius: 15px;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.partners-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-item {
    position: relative;
    text-align: center;
}

.partner-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.partner-item p {
    font-size: 1em;
    color: #fff;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.partner-item:hover img {
    transform: scale(1.1);
}

.partner-item:hover .partner-overlay {
    opacity: 1;
}

.partner-overlay p {
    font-size: 0.9em;
    color: #fff;
    padding: 10px;
}

/* Enhanced What Our Travelers Say Section */
.testimonials-section {
    position: relative;
    background: url('../images/testimonials-bg.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.testimonials-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.testimonials-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.testimonial-slider {
    position: relative;
    display: flex;
    overflow: hidden;
}

.testimonial-item {
    min-width: 100%;
    transition: transform 0.5s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    color: #333;
}

.testimonial-image {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-item h4 {
    font-size: 1em;
    color: #555;
}

.slider-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-prev, .slider-next {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .confidence-section, .dream-tour-section, .recommended-tours-section, .elements-success-section, .gallery-section, .faq-section, .build-tour-section, .partners-section, .testimonials-section {
        padding: 40px 10px;
    }
    .confidence-features, .tour-grid, .recommended-tour-grid, .success-elements-grid, .gallery-grid, .partners-grid {
        grid-template-columns: 1fr;
    }
    .confidence-content h2, .dream-tour-content h2, .recommended-tours-content h2, .elements-success-content h2, .gallery-content h2, .faq-content h2, .build-tour-content h2, .partners-content h2, .testimonials-content h2 {
        font-size: 2em;
    }
    .tour-filter-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .success-element {
        border-radius: 10px;
        aspect-ratio: auto;
        padding: 30px;
    }
    .build-tour-form {
        flex-direction: column;
        align-items: center;
    }
    .form-group select {
        width: 100%;
    }
}




/* blog */

.blog__image {
  position: relative;
  overflow: hidden;
}
.blog__image img {
  transition: var(--transition);
}
.blog__image .blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-bg);
  padding: 10px 22px;
}
.blog__image .blog-tag h3 {
  line-height: 22px;
  font-weight: 700;
}
.blog__image .blog-tag span {
  font-size: 12px;
  line-height: 22px;
}
.blog__content {
  padding: 30px;
}
.blog__content .blog-info {
  display: flex;
  align-items: center;
  gap: 22px;
}
.blog__content .blog-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog__content .blog-info li a {
  color: var(--paragraph);
  font-size: 14px;
  line-height: 22px;
}
.blog__content .blog-info li a:hover {
  color: var(--primary-color);
}
.blog__item, .blog-two__grid-item, .blog-two__list-item {
  box-shadow: var(--shadow);
}
.blog__item .read-more-btn, .blog-two__grid-item .read-more-btn, .blog-two__list-item .read-more-btn {
  color: var(--paragraph);
}
.blog__item:hover .read-more-btn, .blog-two__grid-item:hover .read-more-btn, .blog-two__list-item:hover .read-more-btn {
  color: var(--primary-color);
}
.blog__item:hover .read-more-btn i, .blog-two__grid-item:hover .read-more-btn i, .blog-two__list-item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}
.blog__item:hover .blog__image img, .blog-two__grid-item:hover .blog__image img, .blog-two__list-item:hover .blog__image img {
  transform: scale(1.1) rotate(3deg);
  filter: brightness(70%);
}
.blog-two-area {
  overflow: hidden;
}
.blog-two__grid-item, .blog-two__list-item {
  border: 1px solid var(--border);
  padding: 20px;
}
.blog-two__grid-item .blog__content, .blog-two__list-item .blog__content {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.blog-two__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .blog-two__list-item {
    flex-direction: column;
  }
}
.blog-two__list-item .blog__content {
  padding: 10px;
  flex-basis: 50%;
}
@media (max-width: 575px) {
  .blog-two__list-item .blog__content {
    flex-basis: 100%;
  }
}
.blog-single__title {
  font-size: 30px;
}
.blog-single__left-item:hover .image img {
  transform: scale(1) rotate(0deg);
}
.blog-single__left-item .fs-30 {
  font-size: 30px;
}
.blog-single__left-item .hilight-text {
  border-left: 4px solid var(--primary-color);
  padding: 40px;
}
.blog-single__left-item .hilight-text p {
  max-width: 650px;
  color: var(--heading-color);
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.blog-single__left-item .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.blog-single__left-item .tags-share {
  padding: 20px 0;
  border-top: var(--border-1px);
  border-bottom: var(--border-1px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.blog-single__left-item .tags-share .tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-single__left-item .tags-share .tags strong {
  color: var(--heading-color);
}
.blog-single__left-item .tags-share .tags a {
  padding: 2px 15px;
  font-size: 14px;
  font-weight: 600;
  border: var(--border-1px);
  text-transform: capitalize;
}
.blog-single__left-item .tags-share .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.blog-single__left-item .tags-share .share {
  display: flex;
  align-items: center;
}
.blog-single__left-item .tags-share .share strong {
  color: var(--heading-color);
}
.blog-single__left-item .tags-share .share a {
  font-size: 20px;
  color: var(--paragraph);
  margin-left: 20px;
}
.blog-single__left-item .tags-share .share a:hover {
  color: var(--primary-color);
}
.blog-single__left-item .tags-share .share a.active {
  color: var(--primary-color);
}
.blog-single__right-item .item, .service-single__right-item .item {
  padding: 30px;
}
.blog-single__right-item .item .title, .service-single__right-item .item .title {
  position: relative;
  margin-bottom: 35px;
  font-weight: 700;
}
.blog-single__right-item .item .title::after, .service-single__right-item .item .title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: var(--primary-color);
}
.blog-single__right-item .item .serach-bar, .service-single__right-item .item .serach-bar {
  position: relative;
}
.blog-single__right-item .item .serach-bar input, .service-single__right-item .item .serach-bar input {
  width: 100%;
  border: var(--border-1px);
  padding: 16px;
}
.blog-single__right-item .item .serach-bar input:focus, .service-single__right-item .item .serach-bar input:focus {
  border: 1px solid rgba(13, 110, 253, 0.5);
}
.blog-single__right-item .item .serach-bar button, .service-single__right-item .item .serach-bar button {
  position: absolute;
  right: 15px;
  top: 18px;
  color: var(--span);
  background-color: var(--white);
}
.blog-single__right-item .item .category li, .service-single__right-item .item .category li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  transition: var(--transition);
}
.blog-single__right-item .item .category li span, .service-single__right-item .item .category li span {
  transition: var(--transition);
}
.blog-single__right-item .item .category li:hover a, .service-single__right-item .item .category li:hover a {
  color: var(--primary-color);
}
.blog-single__right-item .item .category li:hover span, .service-single__right-item .item .category li:hover span {
  color: var(--primary-color);
}
.blog-single__right-item .item .category li:not(:last-child), .service-single__right-item .item .category li:not(:last-child) {
  margin-bottom: 10px;
}
.blog-single__right-item .item .single-post li, .service-single__right-item .item .single-post li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-single__right-item .item .single-post li:not(:last-child), .service-single__right-item .item .single-post li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-single__right-item .item .single-post li span, .service-single__right-item .item .single-post li span {
  font-size: 14px;
}
.blog-single__right-item .item .tags, .service-single__right-item .item .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-single__right-item .item .tags a, .service-single__right-item .item .tags a {
  padding: 5px 14px;
  font-weight: 500;
  border: var(--border-1px);
  text-transform: capitalize;
  background-color: var(--white);
  font-size: 14px;
}
.blog-single__right-item .item .tags a:hover, .service-single__right-item .item .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.blog-single__review .image {
  max-width: 96px;
  width: 100%;
}
.blog-single__review .reply {
  border-radius: 30px;
  padding: 0px 12px;
  font-weight: 500;
}
a {
    text-decoration: none;
    display: inline-block;
    color: var(--heading-color);
    transition: var(--transition);
}
.btn-one {
    padding: 15px 25px;
    background: var(--gradient-bg);
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn-one:hover {
    color: var(--white);
}

.btn-one::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--secondary-color);
    z-index: -1;
    transition: var(--transition);
}
.btn-one::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--secondary-color);
    z-index: -1;
    transition: var(--transition);
}
.btn-one i {
    margin-left: 8px;
    transition: var(--transition);
}
.btn-one:hover::after {
    height: 100%;
}
.btn-one:hover::before {
    height: 100%;
}
.sub-bg {
    background-color: var(--sub-bg);
}

.star i {
  color: var(--primary-color);
}
.star i.disable {
  color: var(--span);
  opacity: 40%;
}

.pegi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pegi a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--sub-bg);
  color: var(--heading-color);
  font-weight: 700;
  border-radius: 0;
}
.pegi a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.pegi a:hover i {
  color: var(--white) !important;
}
.pegi a.active {
  background-color: var(--primary-color);
  color: var(--white);
}
.about__info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-60 {
    margin-top: 60px;
}
ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
button {
    border: none;
    background-color: transparent;
}
/* End blog */

/* contact */

.contact__left-item {
  padding: 50px;
}
.contact__left-item ul li {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact__left-item ul li i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  display: block;
  position: relative;
}
.contact__left-item ul li i::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px dashed var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact__left-item .social a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--heading-color);
  margin-right: 5px;
}
.contact__left-item .social a:hover {
  color: var(--primary-color);
}
.contact__right-item {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .contact__right-item {
    padding-left: 0;
  }
}
.contact__form form .nice-select {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border: none;
  background-color: var(--sub-bg);
  margin-bottom: 30px;
  padding: 18px 20px;
  height: 70px;
  border-radius: 5px;
}
.contact__form form .nice-select .list {
  width: 100%;
}
.contact__form form label {
  font-family: var(--quicksand);
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 700;
}
.contact__form form input,
.contact__form form textarea {
  width: 100%;
  padding: 18px 20px;
  background-color: var(--sub-bg);
  border-radius: 4px;
  margin-bottom: 30px;
}
.contact__form form textarea {
  height: 200px;
}
.contact__map {
  margin-bottom: -10px;
}
.contact__map iframe {
  width: 100%;
  height: 600px;
}
.primary-bg {
    background-color: var(--primary-color) !important;
}
/* End contact */


/* Existing Sections */
.confidence-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.confidence-list li {
    display: flex;
    align-items: center;
    color: #343a40;
}

.confidence-list i {
    margin-right: 10px;
    color: #007bff;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
}

.testimonial-item {
    min-width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.partner-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
}



.faq-item p {
    display: none;
    margin-top: 10px;
}

.custom-tour-form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-tour-form .form-group {
    display: flex;
    flex-direction: column;
}

.custom-tour-form select[multiple] {
    height: 100px;
}

/* Enhanced Gallery Styles with CSS Grid */
.gallery-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f4f4f4, #e9ecef);
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5em;
    color: #343a40;
    margin-bottom: 20px;
}

.gallery-section p {
    font-size: 1.2em;
    color: #6c757d;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-prev {
    left: 10px;
}

.modal-next {
    right: 10px;
}

.modal-prev:hover, .modal-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #bbb;
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1em;
}

/* Responsive Adjustments for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0;
        width: 100%;
    }

    .gallery-item {
        flex: 0 0 80%;
        scroll-snap-align: center;
        max-width: 80%;
        height: 250px;
    }

    .gallery-item img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 10px;
    }

    .gallery-item {
        flex: 0 0 90%;
        max-width: 90%;
        height: 200px;
    }

    .gallery-item img {
        height: 100%;
    }
}

/* Custom Tour Form Styles */
.custom-tour-form-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.custom-tour-form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.custom-tour-form .form-group {
    display: flex;
    flex-direction: column;
}

.custom-tour-form input[type="text"],
.custom-tour-form input[type="email"],
.custom-tour-form input[type="date"],
.custom-tour-form input[type="tel"],
.custom-tour-form select,
.custom-tour-form textarea {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    margin-top: 5px;
    width:100%
}

.custom-tour-form select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23333"><path d="M7 10l5-5-5-5v10z"/></svg>') no-repeat right 10px center;
    background-color: #fff;
    cursor: pointer;
}

.custom-tour-form .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.custom-tour-form .counter input {
    width: 60px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.custom-tour-form .counter button {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-tour-form .counter button:hover {
    background: #c82333;
}

.custom-tour-form label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #343a40;
}

.custom-tour-form textarea {
    height: 100px;
    resize: vertical;
}

.custom-tour-form .submit-btn {
    background: #dc3545;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-tour-form .submit-btn:hover {
    background: #c82333;
}
.gallery-overlay2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay2 {
    opacity: 1;
}
.customchecked .btn-check{
    z-index: 100;
    pointer-events: unset;
    clip: unset;
    top: 25px;
    left: 10px;
}
.customchecked .btn-check:checked+.btn,
.customchecked .btn.active,.customchecked .btn.show,
.customchecked .btn:first-child:active,
.customchecked :not(.btn-check)+.btn:active {
    background-color: transparent;
    color: #000;
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.125rem;
    }
}
@media (max-width: 600px) {
	.brand-name{
		    font-size: 1.2em;
	}
}


