.elementor-3748 .elementor-element.elementor-element-521beb0{--display:flex;}.elementor-3748 .elementor-element.elementor-element-3c48023{width:100%;max-width:100%;top:2px;}body:not(.rtl) .elementor-3748 .elementor-element.elementor-element-3c48023{left:-1px;}body.rtl .elementor-3748 .elementor-element.elementor-element-3c48023{right:-1px;}/* Start custom CSS for html, class: .elementor-element-3c48023 *//* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    background-color: #FFFFFF;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .brand-name, .nav-link, .cta-button, .card-title {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A3C6E;
    margin-bottom: 2rem;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
}

/* ==================== HEADER BASE ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #1A3C6E;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Brand */
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    font-weight: 700;
    font-size: 21px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* Hamburger */
.menu-toggle-input {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
}

.hamburger-label span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

input#services-toggle,
input#destinations-toggle,
input#company-toggle {
    display: none;
}

.nav-link {
    font-weight: 500;
    font-size: 14.5px;
    color: #FFFFFF;
    padding: 8px 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

.dropdown-label {
    cursor: pointer;
}

.chevron {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease;
    margin-left: 2px;
    transform: rotate(90deg);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    min-width: 230px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .chevron {
    transform: rotate(-90deg);
}

.dropdown-section-label {
    font-size: 10px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 10px 20px 4px;
    pointer-events: none;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: #EEF2FF;
    color: #2563EB;
    border-left-color: #F97316;
    padding-left: 23px;
}

.cta-button {
    background: #F97316;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.25s;
    display: inline-block;
}

.cta-button:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.nav-cta {
    margin-left: 10px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    color: #F97316;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F97316;
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #e05f0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249,115,22,0.3);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-image {
    background: linear-gradient(135deg, #F97316, #FF8C42);
    border-radius: 32px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image i {
    font-size: 80px;
    color: white;
    opacity: 0.9;
}

/* ==================== STATS STRIP ==================== */
.stats-strip {
    background: linear-gradient(135deg, #0f2b4f, #1A3C6E);
    padding: 50px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 180px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #F97316;
}

.stat-label {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

/* ==================== WHO WE ARE ==================== */
.who-we-are {
    padding: 80px 0;
    background: white;
}

.who-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.story-card {
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-icon i {
    font-size: 50px;
    color: #F97316;
    margin-bottom: 15px;
}

.story-card span {
    font-size: 13px;
    color: #F97316;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(249,115,22,0.1);
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
}

.story-card h3 {
    font-size: 28px;
    margin: 20px 0;
    color: #1A3C6E;
}

.story-quote {
    font-style: italic;
    color: #6B7280;
    font-size: 15px;
}

.who-right h2 {
    text-align: left;
    margin-bottom: 20px;
}

.who-right h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #F97316;
    margin-top: 8px;
}

.who-right p {
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ==================== MISSION & VISION ==================== */
.mission-vision {
    padding: 80px 0;
    background: #F8F9FA;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-top: 4px solid #F97316;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mv-card h3 {
    font-size: 28px;
    color: #1A3C6E;
    margin-bottom: 15px;
}

.mv-card p {
    color: #374151;
    line-height: 1.7;
    font-size: 15px;
}

/* ==================== CORE VALUES SECTION ==================== */
.core-values {
    padding: 80px 0;
    background: white;
}

.core-values h2 {
    margin-bottom: 15px;
}

.values-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #E5E7EB;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #F97316;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A3C6E, #2563EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #F97316, #e05f0a);
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-card h4 {
    font-size: 18px;
    color: #1A3C6E;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-section {
    padding: 80px 0;
    background: #F8F9FA;
    position: relative;
}

.timeline-section h2 {
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #F97316, #FF8C42, #F97316);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #F97316;
    border-radius: 50%;
    top: 20px;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(249,115,22,0.7);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
    100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.timeline-item.left .timeline-content {
    margin-right: auto;
}

.timeline-item.right .timeline-content {
    margin-left: auto;
}

.timeline-year {
    font-weight: 800;
    font-size: 20px;
    color: #F97316;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(249,115,22,0.1);
    padding: 4px 15px;
    border-radius: 30px;
}

.timeline-title {
    font-weight: 700;
    font-size: 18px;
    color: #1A3C6E;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

/* Arrow indicators */
.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 18px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 18px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

/* ==================== AWARDS SECTION ==================== */
.awards {
    padding: 80px 0;
    background: white;
}

.awards h2 {
    margin-bottom: 50px;
}

.awards-scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-bottom: 20px;
}

.awards-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.awards-scroll-container::-webkit-scrollbar-track {
    background: #E5E7EB;
    border-radius: 10px;
}

.awards-scroll-container::-webkit-scrollbar-thumb {
    background: #F97316;
    border-radius: 10px;
}

.awards-grid {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: min-content;
}

.award-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    min-width: 250px;
    flex-shrink: 0;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.award-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #F97316;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-name {
    font-weight: 700;
    font-size: 16px;
    color: #1A3C6E;
    margin-bottom: 8px;
}

.award-year {
    color: #F97316;
    font-weight: 600;
    font-size: 14px;
}

/* ==================== CTA BANNER ==================== */
.cta-banner-about {
    background: linear-gradient(135deg, #1A3C6E, #2563EB);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
    animation: shimmer 15s infinite linear;
}

@keyframes shimmer {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(30%, 30%) rotate(360deg); }
}

.cta-banner-about h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-banner-about p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-button-about {
    background: #F97316;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-about:hover {
    background: #e05f0a;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0F172A;
    padding: 50px 20px 30px;
    color: #6B7280;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #F97316;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    color: #6B7280;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #F97316;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 40px;
    font-size: 13px;
}

/* ==================== FLOATING WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 24px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hamburger-label { display: flex; }
    
    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #1A3C6E;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    input#main-menu-toggle:checked ~ .main-nav { max-height: 100vh; }
    
    .nav-list { flex-direction: column; padding: 20px; gap: 0; }
    .nav-list li { width: 100%; }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s;
    }
    
    input#services-toggle:checked ~ .dropdown-menu,
    input#destinations-toggle:checked ~ .dropdown-menu,
    input#company-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-left h1 { font-size: 36px; }
    .hero-image { height: 300px; }
    
    .who-layout { grid-template-columns: 1fr; }
    .who-right h2 { text-align: center; }
    .who-right h2::after { margin: 8px auto 0; }
    
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    
    .timeline::before { left: 20px; }
    .timeline-dot { left: 20px; transform: translateX(0); }
    .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; }
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after { left: -10px; border-left: none; border-right: 10px solid white; }
    
    .stats-container { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 15px; }
    .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    h2 { font-size: 28px; }
    
    .hero-left h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    
    .values-grid { grid-template-columns: 1fr; }
    
    .stat-number { font-size: 32px; }
    
    .story-card h3 { font-size: 24px; }
    .story-card { padding: 30px; }
    
    .mv-card h3 { font-size: 24px; }
    .mv-card { padding: 25px; }
    
    .cta-banner-about h2 { font-size: 28px; }
    .cta-banner-about p { font-size: 16px; }
    
    .whatsapp-float { padding: 10px 18px; font-size: 14px; }
}

@media (max-width: 480px) {
    .brand-name { font-size: 14px; }
    .brand-tagline { display: none; }
    
    .hero-image { height: 200px; }
    .hero-image i { font-size: 50px; }
    
    .stat-number { font-size: 28px; }
    
    .timeline-year { font-size: 16px; }
    .timeline-title { font-size: 15px; }
}/* End custom CSS */