/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff4444;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --gold-color: #d4af37;
    --gold-text: #d4af37;
    --red-btn: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgb(232 220 220 / 9%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgb(232 220 220 / 9%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color) !important;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}



.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}


/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-in-out;
}

.slide.active .slide-image img {
    transform: scale(1.1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.hero-visa-letters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    z-index: 1;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.visa-letter {
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-top: 100px;
    animation: fadeInUp 1s ease-out;
}

.title-line-1 {
    color: #fff;
    display: block;
}

.title-line-2 {
    color: #ffa500;
    display: block;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    font-weight: bold;
    user-select: none;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

/* Thumbnail Navigation */
.slider-thumbnails {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 13px;
    z-index: 10;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
}

.slider-thumbnails::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
    position: relative;
    z-index: 1;
    margin: 0 5px;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: #fff;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    border-width: 4px;
}

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

/* Carousel Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Discover Section */
.discover-section {
    padding: 80px 0;
    background-color: #fff;
}

.discover-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.discover-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.discover-image-top,
.discover-image-bottom {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.discover-image-top img,
.discover-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-text {
    flex: 1;
}

.discover-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.discover-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-read-more {
    background-color: #dc143c;
    color: #fff;
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-read-more:hover {
    background-color: #b8122f;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cityscape-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(0, 0, 0, 0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234a90e2" width="1200" height="600"/><rect fill="%232c5aa0" x="0" y="400" width="1200" height="200"/></svg>');
    background-size: cover;
    background-position: center;
    animation: cityscapeMove 20s infinite linear;
}

@keyframes cityscapeMove {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.skil-letters-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.letter {
    position: relative;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 220px;
    transform-style: preserve-3d;
    animation: floatLetter 4s ease-in-out infinite;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3),
                 8px 8px 0 rgba(0, 0, 0, 0.2),
                 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.5s; }
.letter:nth-child(3) { animation-delay: 1s; }
.letter:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatLetter {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(5deg);
    }
}

.letter-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.85;
    z-index: -1;
}

.burj-khalifa {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mosque {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.big-ben {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.letter-text {
    position: relative;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Hourglass in K Letter */
.hourglass-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 180px;
    z-index: 0;
}

.hourglass {
    width: 100%;
    height: 100%;
    position: relative;
}

.hourglass-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hourglass-sand {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #d4af37 0%, #ffd700 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    animation: sandFlow 3s infinite;
}

@keyframes sandFlow {
    0% {
        height: 60px;
        opacity: 1;
    }
    50% {
        height: 30px;
        opacity: 0.8;
    }
    100% {
        height: 60px;
        opacity: 1;
    }
}

.hourglass-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    margin-top: 2rem;
}

.gold-text {
    color: var(--gold-text) !important;
    text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background: var(--light-color);
    padding: 100px 0;
}

.about-images-wrapper {
    position: relative;
    height: 500px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    z-index: 2;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 1;
    transform: translate(20px, 20px);
}

.businessman-image,
.map-hands-image {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #2c3e50, #34495e); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    font-size: 3rem;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.map-hands-image {
    /* background: linear-gradient(135deg, #34495e, #2c3e50); */
}

.about-content {
    padding-left: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.btn-read-more {
    background: var(--red-btn);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    color: #fff;
}

/* Services Section */
.services-section {
    background: #fff;
    padding: 100px 0;
}

.services-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 300px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.visa-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.artist-service {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.air-ticket-service {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.global-service {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: #fff;
}

.prev-nav {
    left: 0;
}

.next-nav {    
    right: 0;
}

/* People Walking Section */
.people-walking-section {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.walking-image-placeholder {
    text-align: center;
    color: #fff;
}

.walking-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.walking-image-placeholder p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Distinction Section */
.distinction-section {
    background: #fff;
    padding: 100px 0;
}

.distinction-image {
    position: relative;
}

.laptop-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.distinction-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.2rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.distinction-list li:last-child {
    border-bottom: none;
}

.distinction-list li:hover {
    padding-left: 1rem;
    color: var(--primary-color);
}

.distinction-list li strong {
    font-weight: 600;
}

/* Statistics Section */
.stats-section {
    background: #fff;
    padding: 100px 0;
}

.stat-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    display: inline-block;
    color: var(--primary-color);
}

.stat-plus {
    font-size: 2rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--dark-color);
}

/* Revolution Section */
.revolution-section {
    background: var(--light-color);
    padding: 100px 0;
}

.revolution-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.revolution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.revolution-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.custom-booking-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.electric-car-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.global-reach-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.revolution-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
}

.revolution-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 100px 0;
}

.testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    color: var(--dark-color);
    font-weight: 600;
}

.testimonial-indicators {
    position: relative;
    margin-top: 2rem;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
}

.testimonial-indicators button.active {
    background: var(--primary-color);
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.logo-item {
    padding: 2rem;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 100px;
}

.logo-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

/* Awards Section */
.awards-section {
    background: var(--light-color);
    padding: 100px 0;
}

.awards-display {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.award-trophy {
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.award-trophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.award-trophy:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

.award-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.award-year {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.award-type {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffd700;
}

/* News Section */
.news-section {
    background: #fff;
    padding: 100px 0;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    height: 100%;
}

.news-image,
.image-placeholder-news {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #4facfe);
}

.image-placeholder-news-small {
    width: 150px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #4facfe);
    border-radius: 10px;
}

.news-card.small {
    display: flex;
    padding: 1rem;
    align-items: center;
}

.news-image-small {
    margin-right: 1rem;
}

.news-content {
    padding: 2rem;
}

.news-content-small {
    flex: 1;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h4,
.news-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.5;
}

.news-card h5 {
    font-size: 1.1rem;
}

.btn-view-all {
    background: var(--red-btn);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    color: #fff;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
    padding: 100px 0;
}

.contact-form .form-control {
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
    outline: none;
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.footer-links-section {
    margin-top: 2rem;
}

.footer-link-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
}

.footer-logo .logo-text {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background: #0052a3;
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-title {
        font-size: 24px;
        gap: 5px;
        margin-top: 50px;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 24px;
    }
    
    .hero-visa-letters {
        font-size: 80px;
        letter-spacing: 5px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
    
    .slider-thumbnails {
        bottom: 60px;
        gap: 10px;
        padding: 8px 15px;
    }
    
    .thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .skil-letters-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .letter {
        font-size: 5rem;
        width: 100px;
        height: 120px;
    }
    
    .hourglass-container {
        width: 80px;
        height: 120px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .news-card.small {
        flex-direction: column;
    }
    
    .news-image-small {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .awards-display {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .client-logos-grid {
        grid-template-columns: 1fr;
    }
    
    .services-carousel-wrapper {
        padding: 0 20px;
    }
}

/* Success Section */
.success-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.success-slider-container {
    position: relative;
    min-height: 400px;
}

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

.success-slide.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.success-logos-left,
.success-logos-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.success-testimonial {
    flex: 1;
    text-align: center;
}

.success-testimonial h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonial-subtitle {
    font-size: 18px;
    color: #cc0000;
    font-weight: bold;
    margin-bottom: 30px;
}

.testimonial-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-author {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    text-align: left;
}

/* Success Stories Navigation Arrows */
.success-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.success-arrow:hover {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateY(-50%) scale(1.1);
}

.success-arrow-left {
    left: 20px;
}

.success-arrow-right {
    right: 20px;
}

/* Success Stories Navigation Dots */
.success-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.success-dot.active {
    background-color: #0066cc;
    transform: scale(1.2);
}

.success-dot:hover {
    background-color: #0066cc;
    transform: scale(1.1);
}



/* Corporate Images Slider Section */
.corporate-images-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.corporate-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.corporate-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    animation: fadeInCorporate 0.8s ease-in-out;
}

.corporate-slide.active {
    display: block;
    opacity: 1;
}

@keyframes fadeInCorporate {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.corporate-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.corporate-slide.active .corporate-image {
    transform: scale(1);
}

.corporate-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    padding: 40px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.corporate-image-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.corporate-image-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Corporate Images Navigation Arrows */
.corporate-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.corporate-arrow:hover {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.corporate-arrow-left {
    left: 30px;
}

.corporate-arrow-right {
    right: 30px;
}

/* Corporate Images Navigation Dots */
.corporate-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

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

.corporate-dot.active {
    background-color: #0066cc;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4);
}

.corporate-dot:hover {
    background-color: #0066cc;
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 20px;
    color: #333;
    margin: 20px 20px 10px;
    font-weight: bold;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-arrow {
    background-color: #0066cc;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-arrow:hover {
    background-color: #0052a3;
}

.people-walking-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

.people-walking-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image cover full screen */
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect center */
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
}


/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}



.btn-book-now {
    background-color: #cc0000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-now:hover {
    background-color: #aa0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Trusted Banner */
.trusted-banner {
    background-color: #8b0000;
    padding: 40px 0;
    color: #fff;
}

.trusted-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.partner-logos-slider {
    overflow: hidden;
    position: relative;
}

.partner-logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
}

.partner-logo {
    min-width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Why Love Section */
.why-love-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.love-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.love-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.love-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.love-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.love-card h3 {
    font-size: 20px;
    color: #333;
}

/* Priorities Section */
.priorities-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.priority-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.priority-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.priority-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.priority-card p {
    color: #666;
    font-size: 14px;
}

/* Feature Sections */
.feature-section {
    padding: 80px 0;
}

.feature-section.feature-left {
    background-color: #fff;
}

.feature-section.feature-right {
    background-color: #f8f9fa;
}

.feature-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.feature-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.feature-right .feature-content {
    flex-direction: row-reverse;
}

/* Support Team Section */
.support-team-section {
    padding: 80px 0;
    background-color: #fff;
}

.support-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.support-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.rating {
    font-size: 24px;
    color: #ffa500;
    margin-bottom: 15px;
}

.support-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.support-card p {
    color: #666;
}

/* Corporate Logos Carousel */
.corporate-logos-carousel {
    margin-top: 60px;
    position: relative;
}

.logos-slider-container {
    position: relative;
    min-height: 200px;
}

.logos-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    animation: fadeInLogos 0.8s ease-in-out;
}

.logos-slide.active {
    display: flex;
    opacity: 1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

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

.logo-item {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Magic Section */
.magic-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.magic-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.magic-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Adventures Section */
.adventures-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.adventures-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.highlight-red {
    color: #cc0000;
}

.subtitle {
    font-size: 18px;
    color: #666;
}

/* Customer Stories Carousel */
.customer-stories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stories-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.stories-slider-container {
    position: relative;
    min-height: 400px;
}

.story-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    animation: fadeInStory 0.8s ease-in-out;
}

.story-slide.active {
    display: block;
    opacity: 1;
}

@keyframes fadeInStory {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-logos-left,
.story-logos-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.story-testimonial {
    flex: 1;
}

.story-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-text {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.story-company {
    font-size: 16px;
    color: #666;
}

/* Story Navigation */
.story-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    color: #333;
}

.story-arrow:hover {
    background-color: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

.story-arrow-left {
    left: -60px;
}

.story-arrow-right {
    right: -60px;
}

.story-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.story-dot.active {
    background-color: #cc0000;
    transform: scale(1.2);
}

.story-dot:hover {
    background-color: #cc0000;
}

/* VIP Section */
.vip-section {
    padding: 0;
    position: relative;
}

.vip-background {
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.vip-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-overlay h2 {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Blogs Section */
.blogs-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #cc0000;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cc0000;
}

.btn-submit {
    background-color: #cc0000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #aa0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}


.social-icon {
    width: 40px;
    height: 40px;
    background-color: #555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .feature-content {
        flex-direction: column !important;
    }
    
    .love-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .support-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .story-arrow-left {
        left: 10px;
    }
    
    .story-arrow-right {
        right: 10px;
    }
    
    .logos-slide.active {
        gap: 20px;
    }
    
    .logo-item {
        width: 120px;
        height: 80px;
    }
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}


        /* About Page Specific Styles */
        .about-page {
            font-family: 'Arial', sans-serif;
        }

        .page-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 18px;
            color: #666;
            font-weight: bold;
        }

        /* Leaders Section */
        .leaders-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .leaders-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .leaders-image {
            position: relative;
        }

        .leaders-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .leaders-text h2 {
            font-size: 42px;
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .leaders-text p {
            font-size: 18px;
            color: #333;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .leaders-text .highlight {
            color: #0066cc;
            font-weight: bold;
        }

        .vehicles-image {
            margin-top: 40px;
        }

        .vehicles-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* Founder Section */
        .founder-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .founder-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .founder-image {
            position: relative;
        }

        .founder-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .founder-text {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .founder-text h2 {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .founder-text p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Vision Mission Section */
        .vision-mission-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .vision-card,
        .mission-card {
            position: relative;
        }

        .vision-image,
        .mission-image {
            position: relative;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
        }

        .vision-image img,
        .mission-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .vision-text,
        .mission-text {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
        }

        .vision-text h3,
        .mission-text h3 {
            font-size: 32px;
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 20px;
        }

        .vision-text p,
        .mission-text p {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
        }

        /* Creative Minds Section */
        .creative-minds-section {
            padding: 100px 0;
            background-color: #f8f9fa;
            text-align: center;
        }

        .creative-minds-section h2 {
            font-size: 42px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid #0066cc;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

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

        .team-member h3 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .team-member p {
            font-size: 16px;
            color: #666;
        }

        /* Whispers Section */
        .whispers-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .whispers-section h2 {
            font-size: 42px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 15px;
        }

        .whispers-subtitle {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 60px;
        }

        .whispers-content {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }

        .whispers-logos {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .whispers-logo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #e0e0e0;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .whispers-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 15px;
        }

        .whispers-testimonial {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
        }

        .whispers-testimonial p {
            font-size: 18px;
            color: #333;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 20px;
        }

        .whispers-testimonial .author {
            font-size: 20px;
            font-weight: bold;
            color: #0066cc;
        }

        .whispers-testimonial .company {
            font-size: 16px;
            color: #666;
        }

        /* Excellence Section */
        .excellence-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .excellence-section h2 {
            font-size: 42px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 60px;
        }

        .excellence-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .excellence-card {
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .excellence-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .excellence-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .excellence-card h3 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .excellence-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Video Section */
        .video-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .video-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .video-player {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .video-player img {
            width: 100%;
            height: auto;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(204, 0, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .play-button:hover {
            background-color: rgba(204, 0, 0, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid #fff;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        /* Group Companies Section */
        .group-companies {
            padding: 40px;
            background-color: #f8f9fa;
            border-radius: 10px;
        }

        .group-companies h3 {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }

        .company-list {
            list-style: none;
            padding: 0;
        }

        .company-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #fff;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .company-list li:hover {
            transform: translateX(5px);
        }

        .company-logo {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background-color: #0066cc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            font-size: 14px;
        }

        .company-list li span {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .leaders-content,
            .founder-content,
            .vision-mission-grid,
            .whispers-content,
            .video-content {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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