


        
        
        /* Hero Section Styling */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(var(--hero-overlayy), var(--hero-overlayy)),
                        url('images/safari-cover.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        /* Desert background simulation using gradients and pseudo-elements */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(160, 82, 45, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, 
                    #c8860d 0%, 
                    #daa520 25%, 
                    #cd853f 50%, 
                    #d2b48c 75%, 
                    #f4a460 100%
                );
            z-index: -1;
        }
        
        /* Hero Content */
        .hero-content {
            text-align: center;
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 2;
            margin: auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* Button Styling */
        .btn-primary-orange {
            background-color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .btn-primary-orange:hover {
            background-color: var(--primary-orange-hover);
            border-color: var(--primary-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
            color: white;
        }
        
        .btn-outline-white {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .btn-outline-white:hover {
            background-color: white;
            border-color: white;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }
        
        /* Action Buttons Container */
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .btn-primary-orange,
            .btn-outline-white {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
                width: 100%;
                text-align: center;
                margin: 0.5rem 0;
            }
            
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-content {
                padding: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
        }
        
        /* Scroll indicator (optional enhancement) */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        /* Accessibility improvements */
        .btn-primary-orange:focus,
        .btn-outline-white:focus {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        /* Destinations Grid Section */
        .destinations-section {
            padding: 5rem 0;
        }
        
        /* Destination Card Styling */
        .destination-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            cursor: pointer;
            height: 100%;
            min-height: 300px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }
        
        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.3) 60%,
                rgba(0, 0, 0, 0.7) 100%
            );
            transition: all 0.4s ease;
            z-index: 1;
        }
        
        .destination-card:hover::before {
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.4) 60%,
                rgba(0, 0, 0, 0.8) 100%
            );
        }
        
        /* Card Content */
        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            color: white;
            z-index: 2;
        }
        
        .card-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .card-tours {
            display: flex;
            align-items: center;
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        .card-tours i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* Large Card (Namibia) */
        .card-large {
            min-height: 620px;
        }
        
        /* Medium Cards (Morocco, Dubai) */
        .card-medium {
            min-height: 300px;
        }
        
        /* Wide Card (Jordan) */
        .card-wide {
            min-height: 300px;
        }
        
        /* Background Images for Cards */
        .card-namibia {
            background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                            url('images/gallery.webp');
        }
        
        .card-morocco {
            background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                            url('images/culture.webp');
        }
        
        .card-dubai {
            background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                            url('images/2guyssafari1.jpg');

        }
        
        .card-jordan {
            background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                            url('images/buggy.jpg');
            background-position: center;
            background-size: cover;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .card-large,
            .card-medium,
            .card-wide {
                min-height: 300px;
                margin-bottom: 1.5rem;
            }
            
            .card-title {
                font-size: 1.75rem;
            }
            
            .card-content {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .card-title {
                font-size: 1.5rem;
            }
            
            .card-content {
                padding: 1.25rem;
            }
            
            .destinations-section {
                padding: 3rem 0;
            }
        }
        
        /* Hover Effects */
        .destination-card:hover .card-title {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        
        .destination-card:hover .card-tours {
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        /* Focus states for accessibility */
        .destination-card:focus {
            outline: 3px solid var(--primary-orange);
            outline-offset: 2px;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Safari Packages Section */
        .safari-packages-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, 
                #d2b48c 0%, 
                #ddbf94 25%, 
                #e6ccb2 50%, 
                #f0d9c4 75%, 
                #f4e4bc 100%
            );
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .safari-packages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(210, 180, 140, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 164, 96, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        
        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: white;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .section-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        /* Package Cards */
        .packages-container {
            position: relative;
            z-index: 2;
        }
        
        .package-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 1rem;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }
        
        .package-image {
            height: 210px;
            background-size: cover;
            background-position: center;
            /* border-radius: 15px;
            margin: 1.5rem 1.5rem 0; */
            position: relative;
            color: #fff;
        }
        
        .explorer-image {
            background: url('p1.jpg') center/cover no-repeat;
        }
        
        .thrill-image {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/dune-buggy.webp') center/cover no-repeat;
        }
        .thrill-imagee {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/premium-safari.webp') center/cover no-repeat;
        }

        .thrill-image3 {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/evening-safari.jpg') center/cover no-repeat;
        }
        .thrill-image4 {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/morning-safari.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        .thrill-image5 {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/night-safari.png') center/cover no-repeat;
        }
        
        .package-content {
            padding: 1rem;
        }
        
        .package-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--card-bg);
            margin-bottom: 1.5rem;
            position: absolute;
            left: 20px;
            bottom: -7px;
        }
        
        /* Features List */
        .features-list {
            margin-bottom: 1rem;
        }
        
        .features-row {
            display: flex;
            margin-bottom: 0.75rem;
        }
        
        .feature-item {
            flex: 1;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: var(--text-medium);
        }
        
        .feature-item i {
            color: var(--primary-orange);
            margin-right: 0.5rem;
            font-size: 0.8rem;
        }
        
        /* Package Description */
        .package-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-medium);
            margin-bottom: 1rem;
        }
        
        /* Price and Book Section */
        .price-book-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        
        .price {
            display: flex;
            align-items: baseline;
        }
        
        .price-amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-right: 0.5rem;
        }
        
        .price-period {
            font-size: 1rem;
            color: var(--text-light);
        }
        
        .btn-book {
            background-color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-book:hover {
            background-color: var(--primary-orange-hover);
            border-color: var(--primary-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-description {
                font-size: 1.1rem;
            }
            
            .safari-packages-section {
                padding: 4rem 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }
            
            .package-image {
                height: 200px;
            }
            
            .price-book-section {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .price {
                justify-content: center;
            }
            
            .btn-book {
                width: 100%;
                text-align: center;
            }
        }
        
        /* Focus states for accessibility */
        .btn-book:focus {
            outline: 3px solid rgba(230, 126, 34, 0.5);
            outline-offset: 2px;
        }

/* team style */
.section-badge {
            color: #d4a574;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.1rem;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .guide-card {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .guide-image {
            width: 280px;
            height: 320px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .guide-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #d4a574;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .social-icon:hover {
            background-color: #b8945f;
            color: white;
            transform: translateY(-2px);
        }
        
        .guide-name {
            font-size: 1.4rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 0.8rem;
        }
        
        .guide-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .guides-section {
            padding: 5rem 0;
            background-color: #fafafa;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .guide-image {
                width: 250px;
                height: 280px;
            }
            
            .section-description {
                font-size: 1rem;
                margin-bottom: 3rem;
            }
        }


/* Main Heading */
        .about-section {
            padding: 6rem 0;
            
        }
        .about-heading {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 2rem;
        }
        
        /* Description Text */
        .about-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }
        
        
        
        /* Desert Image */
        .desert-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/about1.webp') center/cover no-repeat;
            position: relative;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .about-section {
                padding: 4rem 0;
            }
            
            .about-heading {
                font-size: 2.5rem;
            }
            
            .desert-image {
                height: 300px;
                margin-bottom: 3rem;
            }
            
            .section-label::before {
                display: none;
            }
        }
        
        @media (max-width: 767.98px) {
            .about-heading {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .about-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
        }


/* why choose us  */
.why-section {
            padding: 3rem 1rem;
        }
.section-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold-primary);
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .description-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .feature-number {
            font-size: 10rem;
            font-weight: 700;
            color: var(--gold-primary);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .feature-card {
            margin-bottom: 2rem;
        }
        .feature-grid {
                display: flex;
                gap: 2rem;
                flex-wrap: wrap;
                justify-content: space-between; 
            }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            .feature-number {
                font-size: 7rem;
            }

            .feature-title {
                font-size: 2rem;
            }

        }

        @media (max-width: 992px) {
            .main-title {
                font-size: 2rem;
            }
            .feature-card {
                margin-bottom: 0;
            }
        }
