/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-title p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* Header Styles */
header {
    background:white;
    box-shadow: 0 2px 10px rgba(233, 248, 229, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 28px;
    color: #2c3e50;
}

.logo span {
    color: #3498db;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #3498db;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    height: 100vh;
    /*background: linear-gradient(rgba(0, 0, 0, 0.5)), url('img/domestics-slide.jpg') no-repeat center center/cover;*/
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/domestics-slide.jpg');
    display: flex; 
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgb(248, 245, 245);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgb(247, 245, 245);
}

/* Featured Tours */
.featured-tours {
    padding: 80px 0;
    background: white;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
    gap: 30px;
}

.tour-card {
    background: white;
    
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img img {
    transform: scale(1.1);
}

.tour-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tour-meta {
    display: flex;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

.tour-meta span {
    margin-right: 15px;
    
}

.tour-meta i {
    margin-right: 5px;
}

.tour-info p {
    margin-bottom: 20px;
    color: #7f8c8d;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature p {
    color: #7f8c8d;
}

/* Testimonials 
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.testimonial-author p {
    font-size: 14px;
    color: #7f8c8d;
}*/





/* Newsletter 
.newsletter {
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9)), url('../images/newsletter.jpg') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
}*/

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

.footer-col p {
    margin-bottom: 20px;
    color: #bdc3c7;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #3498db;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 15px;
    color: #bdc3c7;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 10px;
    margin-top: 5px;
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
}

/* Page Header */
.page-header {
   background: url('../img/package2.jpg') no-repeat center center/cover;
    width: 100%;
    height: auto;
    padding: 400px 40px 90px;
    text-align: center;
    color: white;
    display: block;
    object-fit: cover;
    
}


.img{
    width: 100%;
    height: 100%;
    
    
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tours Filter */
.tours-filter {
    background: white;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: #3498db;
}

/* Tours List */
.tours-list {
    padding: 60px 0;
}

.tour-card {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.tour-img {
    height: 300px;
}

.tour-includes {
    margin: 20px 0;
}

.tour-includes h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tour-includes ul {
    list-style-type: none;
    padding-left: 0;
}

.tour-includes ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #7f8c8d;
}

.tour-includes ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

.tour-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #3498db;
    color: white;
}

/* About Page */
.about-story {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-vision-box {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-vision-box:hover {
    transform: translateY(-10px);
}

.mission-vision-box .icon {
    width: 70px;
    height: 70px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.mission-vision-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.mission-vision-box p {
    color: #7f8c8d;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    
    height: 500px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.member-info p {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p:last-of-type {
    color: #7f8c8d;
    font-weight: normal;
    margin-bottom: 20px;
}

.member-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #3498db;
    color: white;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.achievements {
    padding: 80px 0;
    background: #f9f9f9;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.achievement:hover {
    transform: translateY(-10px);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.achievement h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.achievement p {
    color: #7f8c8d;
}

/* Contact Page */

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-title h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-title p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border: 1px solid #3498db;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #2980b9;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #7f8c8d;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-title h2 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form-container {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    
    .info-icon {
        margin-bottom: 10px;
    }
}

.map-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f1f1;
}

.faq-question h3 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #7f8c8d;
    line-height: 1.6;
}




/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
    
        font-size: 40px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        z-index: 999;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        left: 0;
        nav-down: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 15px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .tour-card {
        flex-direction: column;
      
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-col h3::after {
        left: 10%;
        transform: translateX(-80%);
        
    }
    
    .contact-info {
        flex-direction: column;
        

    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    .container{
        padding: 0 15px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    
    .tours-grid,
    .features-grid,
    .team-grid,
    .achievements-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/* Tour Detail Page Styles */

/* Tour Gallery */
.tour-gallery {
    padding: 30px 0;
    background: #f9f9f9;
}

.tour-slider {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(255, 255, 255, 0.9);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    color: #333;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

/* Tour Overview */
.tour-overview {
    padding: 60px 0;
    background: white;
}

.tour-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.tour-details {
    flex: 2;
}

.tour-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.tour-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.tour-highlights h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.tour-highlights ul {
    list-style: none;
}

.tour-highlights ul li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.tour-highlights ul li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #27ae60;
}

.tour-booking-box {
    flex: 1;
    position: sticky;
    top: 100px;
}

.price-box {
   
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tour-price {
    text-align: center;
    margin-bottom: 20px;
}

.tour-price span {
    display: block;
    font-size: 16px;
    color: #7f8c8d;
}

.tour-price h3 {
    font-size: 36px;
    color: #3498db;
    margin: 10px 0;
}

.tour-meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
}

.tour-meta p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.tour-meta p:last-child {
    margin-bottom: 0;
}

.tour-meta i {
    margin-right: 10px;
    color: #3498db;
    width: 20px;
    text-align: center;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.booking-actions .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tour-contact {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tour-contact p:first-child {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.tour-contact p:last-child {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.tour-contact i {
    color: #3498db;
    margin-right: 8px;
}

/* Tour Includes */
.tour-includes {
    padding: 60px 0;
    background: #f9f9f9;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.includes-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.includes-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.includes-header i {
    font-size: 24px;
    margin-right: 15px;
}

.includes-box .includes-header i {
    color: #27ae60;
}

.not-included .includes-header i {
    color: #e74c3c;
}

.includes-header h3 {
    font-size: 22px;
    color: #2c3e50;
}

.includes-box ul {
    list-style: none;
}

.includes-box ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.includes-box ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

.not-included ul li:before {
    content: '\f00d';
    color: #e74c3c;
}

/* Tour Itinerary */
.tour-itinerary {
    padding: 60px 0;
    background: white;
}

.itinerary-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.itinerary-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 3px;
    background: #3498db;
    z-index: 1;
}

.day-box {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.day-number {
    width: 100px;
    height: 100px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.day-content {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    flex: 1;
}

.day-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.day-content p {
    color: #555;
    line-height: 1.6;
}

/* What We Provide */
.what-we-provide {
    padding: 60px 0;
    background: #f9f9f9;
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.provide-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.provide-item:hover {
    transform: translateY(-10px);
}

.provide-icon {
    width: 70px;
    height: 70px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.provide-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.provide-item p {
    color: #7f8c8d;
}

/* Tour Points Information */
.tour-points {
    padding: 60px 0;
    background: white;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.point-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.point-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.point-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.point-card p {
    color: #555;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.reviews-summary {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-overview {
    flex: 1;
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid #eee;
}

.rating-score {
    font-size: 60px;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.rating-stars {
    margin: 15px 0;
    color: #f39c12;
    font-size: 20px;
}

.rating-count {
    color: #7f8c8d;
}

.rating-breakdown {
    flex: 2;
}

.rating-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-item span {
    width: 20px;
    margin-right: 10px;
    color: #7f8c8d;
}

.rating-bar {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #f39c12;
}

.rating-item i {
    margin-left: 10px;
    color: #f39c12;
}

.reviews-list {
    margin-bottom: 30px;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.review-date {
    font-size: 14px;
    color: #7f8c8d;
}

.review-rating {
    color: #f39c12;
}

.review-content {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.review-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.review-images img:hover {
    transform: scale(1.05);
}

.review-helpful {
    text-align: right;
}

.review-helpful button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    color: #7f8c8d;
    transition: all 0.3s ease;
}

.review-helpful button:hover {
    background: #f9f9f9;
    border-color: #3498db;
    color: #3498db;
}

.load-more {
    text-align: center;
}
/* Write a Review Section */
.write-review-section {
    padding: 40px 0;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 40px;
}

.review-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-form .form-group {
    margin-bottom: 15px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form textarea:focus {
    border-color: #3498db;
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #f39c12;
}

/* Photo Upload */
.photo-upload {
    margin-top: 10px;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.upload-area i {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 15px;
}

.upload-area p {
    color: #7f8c8d;
    margin: 0;
}

#photoInput {
    display: none;
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.photo-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #eee;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: #555;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cancel-review-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #7f8c8d;
}

.cancel-review-btn:hover {
    background: #f9f9f9;
    border-color: #bbb;
    color: #555;
}

/* Responsive Styles for Write a Review Section */
@media (max-width: 768px) {
    .review-form-container {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .photo-preview img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .write-review-section {
        padding: 20px 0;
    }
    
    .review-form-container {
        padding: 15px;
    }
    
    .rating-input label {
        font-size: 20px;
    }
    
    .upload-area {
        padding: 20px;
    }
    
    .upload-area i {
        font-size: 28px;
    }
}

/* Related Packages */
.related-packages {
    padding: 60px 0;
    background: white;
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-tour-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-tour-card:hover {
    transform: translateY(-10px);
}

.related-tour-card .tour-img {
    height: 200px;
    position: relative;
}

.related-tour-card .tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-tour-card .tour-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.related-tour-card .tour-info {
    padding: 20px;
}

.related-tour-card .tour-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.related-tour-card .tour-meta {
    display: flex;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

.related-tour-card .tour-meta span {
    margin-right: 15px;
}

.related-tour-card .tour-meta i {
    margin-right: 5px;
}

.related-tour-card .tour-info p {
    margin-bottom: 20px;
    color: #7f8c8d;
}

/* Terms and Conditions */
.terms-conditions {
    padding: 60px 0;
    background: #f9f9f9;
}

.terms-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 0;
}

.terms-section ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.terms-section ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 12px;
    top: 6px;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal-header {
    background: #3498db;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #f1f1f1;
}

.modal-body {
    padding: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    margin: 0;
    line-height: 1.5;
}

.terms-link {
    color: #3498db;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive Styles for Tour Detail Page */
@media (max-width: 992px) {
    .tour-content {
        flex-direction: column;
    }
    
    .tour-booking-box {
        position: static;
        width: 100%;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .rating-overview {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
    
    .slider-item img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .slider-item img {
        height: 300px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-timeline:before {
        left: 30px;
    }
    
    .day-number {
        width: 60px;
        height: 60px;
        font-size: 16px;
        margin-right: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        margin-top: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .slider-item img {
        height: 200px;
    }
    
    .tour-details h2 {
        font-size: 24px;
    }
    
    .tour-price h3 {
        font-size: 28px;
    }
    
    .provide-grid,
    .points-grid,
    .related-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-section h3 {
        font-size: 18px;
    }
}

/* Reviews Page Styles */
.reviews-page {
    padding: 60px 0;
    background: #f9f9f9;
}

.reviews-tabs {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.tab-btn.active {
    color: #3498db;
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3498db;
}

.tabs-content {
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Write Review Container */
.write-review-container {
    max-width: 800px;
    margin: 0 auto;
}

/* My Reviews Container */
.my-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.user-reviews .review-card {
    margin-bottom: 30px;
}

.review-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.edit-review-btn,
.delete-review-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edit-review-btn {
    background: #3498db;
    color: white;
}

.edit-review-btn:hover {
    background: #2980b9;
}

.delete-review-btn {
    background: #e74c3c;
    color: white;
}

.delete-review-btn:hover {
    background: #c0392b;
}

/* All Reviews Container */
.all-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 8px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.filter-group select:focus {
    border-color: #3498db;
}

.all-reviews-list {
    margin-bottom: 30px;
}

.load-more {
    text-align: center;
    margin-top: 30px;
}

/* Review Form Styles (already defined in tour-detail.css but included here for completeness) */
.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form input[type="date"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form input[type="date"]:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: #3498db;
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #f39c12;
}

/* Photo Upload */
.photo-upload {
    margin-top: 10px;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.upload-area i {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 15px;
}

.upload-area p {
    color: #7f8c8d;
    margin: 0;
}

#photoInput {
    display: none;
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.photo-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #eee;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: #555;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cancel-review-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #7f8c8d;
}

.cancel-review-btn:hover {
    background: #f9f9f9;
    border-color: #bbb;
    color: #555;
}

/* No Reviews Message */
.no-reviews {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.no-reviews i {
    font-size: 48px;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-reviews h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.no-reviews p {
    color: #7f8c8d;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Review Card Styles (already defined in tour-detail.css but included here for completeness) */
.review-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.review-date {
    font-size: 14px;
    color: #7f8c8d;
}

.review-rating {
    color: #f39c12;
}

.review-content {
    margin-bottom: 20px;
}

.review-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.review-content p {
    color: #555;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.review-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #7f8c8d;
}

.review-meta i {
    color: #3498db;
}

.review-helpful {
    text-align: right;
}

.review-helpful button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    color: #7f8c8d;
    transition: all 0.3s ease;
}

.review-helpful button:hover {
    background: #f9f9f9;
    border-color: #3498db;
    color: #3498db;
}

/* Responsive Styles for Reviews Page */
@media (max-width: 992px) {
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid #ddd;
    }
    
    .tab-btn:last-child {
        border-bottom: none;
    }
    
    .tab-btn.active::after {
        height: 0;
        width: 0;
    }
    
    .reviews-filter {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tabs-content {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        margin-top: 10px;
    }
    
    .review-actions {
        flex-direction: column;
    }
    
    .photo-preview img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .reviews-page {
        padding: 30px 0;
    }
    
    .tabs-content {
        padding: 15px;
    }
    
    .rating-input label {
        font-size: 20px;
    }
    
    .upload-area {
        padding: 20px;
    }
    
    .upload-area i {
        font-size: 28px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 8px;
    }
}


/* our client says testinomial start */

        .slider-container {
            max-width: 900px;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px #3498db;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 50px;
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            position: relative;
        }

        .slide::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 120px;
            color: #3498db;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial {
            position: relative;
            z-index: 1;
            margin-bottom: 30px;
        }

        .testimonial p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #3498db;
        }

        .client-details h3 {
            font-size: 1.2rem;
            color: #1a2a6c;
            margin-bottom: 5px;
        }

        .client-details p {
            font-size: 0.95rem;
            color: #666;
            font-style: normal;
        }

        .rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .star {
            color: #f39c12;
            font-size: 1.2rem;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 10;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .nav-btn:hover {
            background: #3498db;
            color: white;
            transform: scale(1.1);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #3498db;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .slide {
                padding: 30px 20px;
            }
            
            .testimonial p {
                font-size: 1.1rem;
            }
            
            .client-info {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .slide {
                padding: 20px;
            }
            
            .testimonial p {
                font-size: 1rem;
            }
            
            .client-avatar {
                width: 50px;
                height: 50px;
            }
        }


        /* search bar */
        /* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #0066cc;
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-container input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-container input:focus {
    border-color: #0066cc;
}

.search-container i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Filter Buttons */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #0066cc;
    background-color: white;
    color: #0066cc;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #0066cc;
    color: white;
}

/* Tour Packages Grid */
.tour-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.tour-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0066cc;
}

.tour-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.tour-meta span {
    display: flex;
    align-items: center;
}

.tour-meta i {
    margin-right: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #ff9900;
    margin-bottom: 15px;
}

.book-btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #0052a3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .tour-packages {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .filter-container {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .tour-packages {
        grid-template-columns: 1fr;
    }
}



/* About Us Section Styles index.html */
.about-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #ff9900;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}
/* about us index.html section end

/* Back To Top Button Start
/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: #0052a3;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
} 
/* Back TO Top Button End 

/* Whatsapp Chat Boot Button Start
/* WhatsApp Chat Styles */
/* WhatsApp Inquiry Button */
/* WhatsApp Inquiry Button */
/* WhatsApp Enquiry Button */

/* Whatsapp Chat Boot Button End 


/* testinomial start new 
/* footer responsive 
/* active link colors */


.reviews-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 40px;
    background-color: lightblue;
    border-radius: 15px;
    text-align: center;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-details h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.client-details p {
    color: #7f8c8d;
    font-size: 1rem;
}

.trip-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star {
    color: #f39c12;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    font-style: italic;
    margin-bottom: 20px;
}

.review-date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
}

.nav-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.nav-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
    position: inherit;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    color: #7f8c8d;
    font-size: 1rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 40px 20px;
    }

    .reviews-header h1 {
        font-size: 2rem;
    }

    .reviews-header p {
        font-size: 1rem;
    }

    .review-card {
        padding: 30px 20px;
    }

    .client-info {
        flex-direction: column;
        gap: 15px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
}


/* whatsapp button*/
/* Basic styles */

/* Basic styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    margin-bottom: 15px;
}

/* Quick Tour Inquiry Button */
.quick-inquiry-btn {
    position: fixed;
    right: 30px;
    bottom: 90px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.quick-inquiry-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-icon {
    font-size: 20px;
}

.btn-text {
    white-space: nowrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #128C7E;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Success Message */
.success-message {
    display: none;
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quick-inquiry-btn {
        right: 90px;
        bottom: 90x;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-icon {
        font-size: 18px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .quick-inquiry-btn {
        right: 10px;
        bottom: 70px;
        padding: 10px 15px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .modal-content {
        margin: 30% auto;
        padding: 15px;
    }
}


/* Review Form About us Start */

/* Travel Review Slider Styles */

.slider-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.review-content {
    max-width: 800px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #b21f1f;
    margin-bottom: 20px;
    opacity: 0.2;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #b21f1f;
    box-shadow: white;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 5px;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating {
    color: #fdbb2d;
    font-size: 1.1rem;
}

/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.nav-button i {
    font-size: 1.5rem;
    color: #1a2a6c;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(178, 31, 31, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b21f1f;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        padding: 20px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
    
    .nav-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        padding: 15px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .review-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
    }
    
    .nav-button i {
        font-size: 1rem;
    }
}
/* Review Form About us End*/


