
        html,
        body {
            overflow-x: hidden;
            font-family: 'Cairo', sans-serif;
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #ffffff;
            color: #ffffff;
            overflow-x: hidden;
        }

        a,
        li,
        p,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {

            font-family: 'Cairo', sans-serif;


        }

        html {
            scroll-behavior: smooth;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes backgroundShift {
            0% {
                opacity: 0.5;
            }

            50% {
                opacity: 0.6;
            }

            100% {
                opacity: 0.5;
            }
        }

        .animate-slide-in-up {
            animation: slideInUp 0.6s ease-out forwards;
        }

        .animate-fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        .animate-slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        .bg-animate {
            animation: backgroundShift 8s ease-in-out infinite;
        }

        /* Card hover effect */
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-hover:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
        }

        /* Smooth transitions */
        .smooth-transition {
            transition: all 0.3s ease;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0f172a;
        }

        ::-webkit-scrollbar-thumb {
            background: #06b6d4;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #0891b2;
        }

        /* Header scroll effect */
        header.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        }

        /* Background image transition */
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: opacity 1s ease-in-out;
            z-index: 0;
        }

        .hero-bg.active {
            opacity: 0.5;
        }

        .hero-bg.inactive {
            opacity: 0;
        }


        /* animate start */
        
  
        /* أنيميشن CSS - كلاسات مخصصة */
        .tourden-animate {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* أنواع الحركات */
        .tourden-slide-up {
            transform: translateY(40px);
        }

        .tourden-slide-left {
            transform: translateX(-40px);
        }

        .tourden-slide-right {
            transform: translateX(40px);
        }

        .tourden-scale {
            transform: scale(0.9);
        }

        .tourden-rotate {
            transform: rotate(-5deg) translateY(20px);
        }

        .tourden-float {
            transform: translateY(30px);
        }

        .tourden-pop {
            transform: scale(0.8) translateY(20px);
        }

        /* حالة الأنيميشن النشطة */
        .tourden-animate.tourden-active {
            opacity: 1;
            transform: translate(0) scale(1) rotate(0);
        }

        /* تأثيرات هامر خاصة */
        .tourden-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tourden-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

/* animate end */
/* navbar start */

  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        /* Header */



        nav a {
            color: #475569;
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #e69a17;
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {

            font-size: 60px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #e69a17 0%, #e69a17 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 18px;
            color: #64748b;
            margin-bottom: 30px;
            max-width: 600px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e69a17;
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
        }

        .cta-button:hover {
            background: #e69a17;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        /* Grid Container */
        .packages-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Card Styles */
        .package-card {
            position: relative;
            height: 500px;
            border-radius: 30px;
            overflow: hidden;
            cursor: pointer;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .package-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .package-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .package-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .package-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .package-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .package-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .package-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .package-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .package-card:hover .card-image {
            transform: scale(1.12);
        }

        /* Overlay */
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        .package-card:hover .card-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
        }

        /* Discount Badge */
        .discount-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #e69a17;
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .package-card:hover .discount-badge {
            transform: scale(1.1);
        }

        /* Card Content */
        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            color: white;
            z-index: 5;
        }

        .card-destination {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 8px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .card-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.95;
            line-height: 1.4;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

        .card-price {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 15px;
        }

        .card-price-current {
            font-size: 24px;
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .card-price-original {
            font-size: 14px;
            text-decoration: line-through;
            opacity: 0.7;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .card-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .star {
            color: #fbbf24;
            font-size: 16px;
        }

        .card-duration {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #e69a17;
            color: white;
            padding: 50px 20px 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {

            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-section p,
        .footer-section a {
            color: #cbd5e1;
            font-size: 14px;
            line-height: 1.8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        .star:hover {
            animation: shimmer 0.6s ease-in-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 40px;
            }

            .packages-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .package-card {
                height: 400px;
            }

            .card-content {
                padding: 20px;
            }

            .card-destination {
                font-size: 24px;
            }

            nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .package-card {
                height: 350px;
            }
        }
    

              body {
            font-family: 'Cairo', sans-serif;
        }



        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes pulse-scale {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .hover:pulse-scale:hover {
            animation: pulse-scale 0.6s ease-in-out;
        }

                body {
            font-family: 'Cairo', sans-serif;
        }



        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-slide-in-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .animate-slide-in-right {
            animation: slideInRight 0.8s ease-out;
        }

        .feature-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #e5e7eb;
            line-height: 1;
        }



  /* contant section start */

        /* Contact Section Styles */
        .contact-bg {
            background:
                linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('../../img/qf367QfrPR76Sti3ABzF.webp') center / cover no-repeat;
            background-attachment: fixed;
            position: relative;
        }


        .form-input {
            background-color: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.2);
            color: white;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            background-color: rgba(30, 41, 59, 0.85);
            border-color: rgba(16, 185, 129, 0.4);
            outline: none;
        }

        .form-input::placeholder {
            color: rgba(148, 163, 184, 0.6);
        }

        .contact-icon {
            background: linear-gradient(135deg, #e69a17 0%, #e69a17 100%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .btn-gradient {
            background: linear-gradient(135deg, #e69a17 0%, #e69a17 100%);
            transition: all 0.3s ease;
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
        }

        .play-btn {
            background: linear-gradient(135deg, #e69a17 0%, #e69a17 100%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        .label-tag {
            background-color: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.2);
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Footer Specific Styles */
        .footer-bg {
            background-color: #003333;
            /* Dark Teal from image */
        }

        .footer-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .heading-line {
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 24px;
        }

        .heading-line::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background-color: white;
        }

        .heading-dots {
            color: #14b8a6;
            margin-right: 8px;
        }
/*  contant section end*/
/*  fq section start*/
    

        /* FAQ Section Styles */
        .faq-bg {
            background-color: #f3f8f7;
        }

        .faq-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .faq-header {
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            background: white;
            color: #111;
        }

        .faq-header.active {
            background: #e69a17;
            color: white;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #f9fbfb;
        }

        .faq-content.active {
            max-height: 200px;
            border-bottom: 1px solid #eee;
        }

        .faq-content p {
            padding: 20px 24px;
            color: #666;
            font-size: 15px;
        }

        .faq-toggle {
            transition: transform 0.3s;
        }

        .faq-header.active .faq-toggle {
            transform: rotate(180deg);
        }
/* fq section end */