﻿/* Logo Styling */
.logo img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

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

/* Header Navigation Fix */
.main-header {
    background: #0C2D57 !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin-left: 30px;
    position: relative;
}

/* Cool Animated Menu Effects */
.navbar ul li a {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Underline animation on hover */
.navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #FC6736, #EFECEC);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* Glow effect on hover */
.navbar ul li a:hover {
    color: #FC6736 !important;
    text-shadow: 0 0 10px rgba(252, 103, 54, 0.5);
    transform: translateY(-2px);
}

/* Scale animation */
.navbar ul li {
    transition: transform 0.3s ease;
}

.navbar ul li:hover {
    transform: scale(1.05);
}

/* Contact button special styling */
.btn-contact {
    background: linear-gradient(135deg, #FC6736, #e55a2b) !important;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(252, 103, 54, 0.4);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #e55a2b, #FC6736) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 103, 54, 0.6);
}

/* Logo styling for dark background */
.logo h1 {
    margin: 0;
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Logo image filter for better visibility */
.logo img {
    filter: brightness(1.1);
}

/* Top Bar Black Background */
.top-bar {
    background-color: #000000 !important;
}

/* Popular Destinations Section */
.popular-destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 45, 87, 0.3), rgba(12, 45, 87, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    color: white;
}

.destination-overlay h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Who We Are Section - Enhanced */
.who-we-are {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 103, 54, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.who-we-are-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.who-we-are-text h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.who-we-are-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    animation: expandWidth 1.5s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.who-we-are-text .subtitle {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.who-we-are-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.who-we-are-text .btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    box-shadow: 0 10px 30px rgba(252, 103, 54, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.who-we-are-text .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(252, 103, 54, 0.5);
}

.who-we-are-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.who-we-are-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.who-we-are-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

/* CEO Message Section - Enhanced */
.ceo-message {
    padding: 120px 0;
    background: linear-gradient(135deg, #0C2D57 0%, #1a4d8f 50%, #0C2D57 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.ceo-message-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ceo-image {
    position: relative;
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ceo-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.ceo-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.ceo-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.ceo-text {
    animation: slideInRight 1s ease-out;
}

.ceo-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #e55a2b);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(252, 103, 54, 0.4);
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ceo-text h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.ceo-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.ceo-quote {
    font-size: 1.25rem;
    line-height: 2;
    font-style: italic;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--secondary-color);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.ceo-quote::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.ceo-text .btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ceo-text .btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    .who-we-are-content,
    .ceo-message-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-we-are-text h2,
    .ceo-text h2 {
        font-size: 2.2rem;
    }

    .ceo-message-content {
        grid-template-columns: 1fr;
    }

    .ceo-image {
        max-width: 350px;
        margin: 0 auto;
    }
}
/* Testimonials Carousel */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.testimonial-card .content {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #333;
    font-style: italic;
    margin-bottom: 40px;
    min-height: 120px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-card .author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.testimonial-card .author .info {
    text-align: left;
}

.testimonial-card .author h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-card .author span {
    color: #666;
    font-size: 0.95rem;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-controls button {
    pointer-events: auto;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-controls button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(12,45,87,0.3);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 20px 40px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-card .content {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .testimonial-card .author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card .author .info {
        text-align: center;
    }
    
    .carousel-controls button {
        width: 40px;
        height: 40px;
    }
}
