 .saeed-faqs-dev-hero {
           background: linear-gradient(135deg, rgb(44 85 48 / 61%), rgb(26 58 29 / 44%)), url(/wp-content/uploads/2025/08/Ucak-Bileti-Alimlarinda-Acente-Fonksiyonu.jpg?w=1200&h=800&fit=crop&crop=center) center / cover;
            background-attachment: fixed;
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .saeed-faqs-dev-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .saeed-faqs-dev-hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: #f8f8f8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .saeed-faqs-dev-search-container {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            max-width: 500px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .saeed-faqs-dev-search-box {
            width: 100%;
            padding: 15px 20px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            outline: none;
            color: #333;
            background: transparent;
        }
        
        .saeed-faqs-dev-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        .saeed-faqs-dev-main-content {
            padding: 80px 20px;
            background: white;
        }
        
        .saeed-faqs-dev-section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #2c5530;
            font-weight: bold;
        }
        
        .saeed-faqs-dev-section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 60px;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .saeed-faqs-dev-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .saeed-faqs-dev-category-card {
            background: #f8f9fa;
            padding: 30px 25px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .saeed-faqs-dev-category-card:hover,
        .saeed-faqs-dev-category-card.active {
            background: #2c5530;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(44, 85, 48, 0.3);
            border-color: #ff6b35;
        }
        
        .saeed-faqs-dev-category-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #ff6b35;
        }
        
        .saeed-faqs-dev-category-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .saeed-faqs-dev-category-desc {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .saeed-faqs-dev-faq-section {
            margin-bottom: 50px;
        }
        
        .saeed-faqs-dev-faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .saeed-faqs-dev-faq-item:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .saeed-faqs-dev-faq-question {
            padding: 25px 30px;
            background: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: bold;
            color: #2c5530;
        }
        
        .saeed-faqs-dev-faq-question:hover {
            background: #2c5530;
            color: white;
        }
        
        .saeed-faqs-dev-faq-question.active {
            background: #2c5530;
            color: white;
        }
        
        .saeed-faqs-dev-faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #ff6b35;
        }
        
        .saeed-faqs-dev-faq-question.active .saeed-faqs-dev-faq-icon {
            transform: rotate(180deg);
            color: #ff6b35;
        }
        
        .saeed-faqs-dev-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: white;
        }
        
        .saeed-faqs-dev-faq-answer.active {
            max-height: 300px;
        }
        
        .saeed-faqs-dev-faq-content {
            padding: 25px 30px;
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
        }
        
        .saeed-faqs-dev-highlight {
            color: #ff6b35;
            font-weight: bold;
        }
        
        .saeed-faqs-dev-contact-section {
           background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 80px 20px;
    text-align: center;
        }
        
        .saeed-faqs-dev-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .saeed-faqs-dev-contact-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .saeed-faqs-dev-contact-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .saeed-faqs-dev-contact-icon {
            font-size: 2.5rem;
            color: #ff6b35;
            margin-bottom: 20px;
        }
        
        .saeed-faqs-dev-contact-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .saeed-faqs-dev-contact-info {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .saeed-faqs-dev-contact-highlight {
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .saeed-faqs-dev-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #e55a2b);
            color: white;
            padding: 18px 35px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 15px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .saeed-faqs-dev-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        
        /* Mobile Devices (up to 576px) */
        @media (max-width: 576px) {
            .saeed-faqs-dev-hero {
                padding: 60px 15px;
                min-height: 50vh;
            }
            
            .saeed-faqs-dev-hero-content h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }
            
            .saeed-faqs-dev-hero-subtitle {
                font-size: 1.2rem;
                padding: 0 10px;
            }
            
            .saeed-faqs-dev-search-container {
                padding: 20px;
                margin: 0 15px;
            }
            
            .saeed-faqs-dev-section-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .saeed-faqs-dev-section-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .saeed-faqs-dev-categories {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .saeed-faqs-dev-category-card {
                padding: 25px 20px;
            }
            
            .saeed-faqs-dev-faq-question {
                padding: 20px;
                font-size: 1rem;
            }
            
            .saeed-faqs-dev-faq-content {
                padding: 20px;
                font-size: 0.95rem;
            }
            
            .saeed-faqs-dev-contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .saeed-faqs-dev-container {
                padding: 0 15px;
            }
        }
        
        /* Tablets (577px to 768px) */
        @media (min-width: 577px) and (max-width: 768px) {
            .saeed-faqs-dev-hero-content h1 {
                font-size: 3rem;
            }
            
            .saeed-faqs-dev-categories {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .saeed-faqs-dev-contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Large Tablets (769px to 992px) */
        @media (min-width: 769px) and (max-width: 992px) {
            .saeed-faqs-dev-categories {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Desktops (993px+) */
        @media (min-width: 993px) {
            .saeed-faqs-dev-categories {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-faqs-dev-contact-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Large Desktops (1200px+) */
        @media (min-width: 1200px) {
            .saeed-faqs-dev-hero-content h1 {
                font-size: 4rem;
            }
        }
        
        /* Landscape mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .saeed-faqs-dev-hero {
                min-height: 40vh;
                padding: 40px 15px;
            }
        }
        
        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .saeed-faqs-dev-faq-item,
            .saeed-faqs-dev-contact-card {
                box-shadow: 0 3px 10px rgba(0,0,0,0.12);
            }
        }
        
        /* Focus states for accessibility */
        .saeed-faqs-dev-faq-question:focus,
        .saeed-faqs-dev-cta-button:focus,
        .saeed-faqs-dev-search-box:focus {
            outline: 3px solid #ff6b35;
            outline-offset: 2px;
        }
        
        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        
        
        
        
        /*Faq's End*/
        /*==================================*/
        
        
        
        
        /*About su start*/
        
        
        
        
          .saeed-about-dev-hero {
            background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(26, 58, 29, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f4b942" width="1200" height="600"/><polygon fill="%23c89021" points="0,600 1200,300 1200,600"/><polygon fill="%238b6914" points="0,400 800,200 1200,400 1200,600 0,600"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .saeed-about-dev-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .saeed-about-dev-hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: #f8f8f8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .saeed-about-dev-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        .saeed-about-dev-story-section {
            padding: 80px 20px;
            background: white;
        }
        
        .saeed-about-dev-section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #2c5530;
            font-weight: bold;
        }
        
        .saeed-about-dev-section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 50px;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .saeed-about-dev-story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .saeed-about-dev-story-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .saeed-about-dev-story-text p {
            margin-bottom: 20px;
        }
        
        .saeed-about-dev-highlight {
            color: #ff6b35;
            font-weight: bold;
        }
        
        .saeed-about-dev-story-visual {
            background: linear-gradient(135deg, #2c5530, #1a3a1d);
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .saeed-about-dev-story-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }
        
        .saeed-about-dev-visual-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #ff6b35;
            position: relative;
            z-index: 2;
        }
        
        .saeed-about-dev-visual-text {
            font-size: 1.3rem;
            font-weight: bold;
            position: relative;
            z-index: 2;
        }
        
        .saeed-about-dev-values-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }
        
        .saeed-about-dev-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .saeed-about-dev-value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .saeed-about-dev-value-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b35;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .saeed-about-dev-value-icon {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 25px;
        }
        
        .saeed-about-dev-value-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 15px;
        }
        
        .saeed-about-dev-value-desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
        }
        
        .saeed-about-dev-stats-section {
            background: linear-gradient(135deg, #2c5530, #1a3a1d);
            color: white;
            padding: 70px 20px;
            text-align: center;
        }
        
        .saeed-about-dev-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .saeed-about-dev-stat {
            padding: 20px;
        }
        
        .saeed-about-dev-stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }
        
        .saeed-about-dev-stat-label {
            font-size: 1.1rem;
            color: #f0f0f0;
            font-weight: 500;
        }
        
        .saeed-about-dev-team-section {
            padding: 80px 20px;
            background: white;
        }
        
        .saeed-about-dev-team-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .saeed-about-dev-team-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }
        
        .saeed-about-dev-credentials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .saeed-about-dev-credential {
            background: #f8f9fa;
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .saeed-about-dev-credential:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .saeed-about-dev-credential-icon {
            font-size: 2.5rem;
            color: #ff6b35;
            margin-bottom: 15px;
        }
        
        .saeed-about-dev-credential-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 10px;
        }
        
        .saeed-about-dev-credential-desc {
            font-size: 1rem;
            color: #666;
        }
        
        .saeed-about-dev-contact-section {
            background: #f8f9fa;
            padding: 80px 20px;
            text-align: center;
        }
        
        .saeed-about-dev-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .saeed-about-dev-contact-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .saeed-about-dev-contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .saeed-about-dev-contact-icon {
            font-size: 2.5rem;
            color: #ff6b35;
            margin-bottom: 20px;
        }
        
        .saeed-about-dev-contact-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 15px;
        }
        
        .saeed-about-dev-contact-info {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }
        
        .saeed-about-dev-contact-highlight {
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .saeed-about-dev-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #e55a2b);
            color: white;
            padding: 18px 35px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 15px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .saeed-about-dev-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes shimmer {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }
        
        /* Responsive Design */
        
        /* Mobile Devices (up to 576px) */
        @media (max-width: 576px) {
            .saeed-about-dev-hero {
                padding: 60px 15px;
                min-height: 50vh;
            }
            
            .saeed-about-dev-hero-content h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }
            
            .saeed-about-dev-hero-subtitle {
                font-size: 1.2rem;
                padding: 0 10px;
            }
            
            .saeed-about-dev-section-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .saeed-about-dev-section-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .saeed-about-dev-story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .saeed-about-dev-story-visual {
                padding: 30px 20px;
            }
            
            .saeed-about-dev-values-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .saeed-about-dev-value-card {
                padding: 30px 20px;
            }
            
            .saeed-about-dev-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .saeed-about-dev-stat-number {
                font-size: 2.5rem;
            }
            
            .saeed-about-dev-credentials {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .saeed-about-dev-contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .saeed-about-dev-container {
                padding: 0 15px;
            }
        }
        
        /* Tablets (577px to 768px) */
        @media (min-width: 577px) and (max-width: 768px) {
            .saeed-about-dev-hero-content h1 {
                font-size: 3rem;
            }
            
            .saeed-about-dev-story-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .saeed-about-dev-values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .saeed-about-dev-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .saeed-about-dev-credentials {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .saeed-about-dev-contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Large Tablets (769px to 992px) */
        @media (min-width: 769px) and (max-width: 992px) {
            .saeed-about-dev-values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-about-dev-credentials {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Desktops (993px+) */
        @media (min-width: 993px) {
            .saeed-about-dev-values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-about-dev-stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Large Desktops (1200px+) */
        @media (min-width: 1200px) {
            .saeed-about-dev-hero-content h1 {
                font-size: 4rem;
            }
        }
        
        /* Landscape mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .saeed-about-dev-hero {
                min-height: 40vh;
                padding: 40px 15px;
            }
        }
        
        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .saeed-about-dev-value-card,
            .saeed-about-dev-contact-card {
                box-shadow: 0 5px 15px rgba(0,0,0,0.12);
            }
        }
        
        /* Focus states for accessibility */
        .saeed-about-dev-cta-button:focus {
            outline: 3px solid #ff6b35;
            outline-offset: 2px;
        }
        
        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /*About us End*/
        
        /*==================================*/
        
        
        /*home page start*/
        
        
        
        
        
        
          .saeed-dev-section-hero {
            background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
            color: white;
           padding: 50px 20px;
            text-align: center;
            min-height: 42vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .saeed-dev-section-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: bold;
            animation: fadeInUp 1s ease-out;
        }
        
        .saeed-dev-section-hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: #f0f0f0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .saeed-dev-section-cta-button {
            background: #ff6b35;
            color: white;
            padding: 18px 35px;
            font-size: 1.2rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 10px;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .saeed-dev-section-cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        
        .saeed-dev-section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        .saeed-dev-section-destinations {
            padding: 80px 20px;
            background: #f8f9fa;
        }
        
        .saeed-dev-section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #2c5530;
            font-weight: bold;
        }
        
        .saeed-dev-section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 60px;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .saeed-dev-section-destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .saeed-dev-section-destination-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .saeed-dev-section-destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: #ff6b35;
        }
        
        .saeed-dev-section-destination-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c5530;
            font-weight: bold;
        }
        
        .saeed-dev-section-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }
        
        .saeed-dev-section-price-note {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }
        
        .saeed-dev-section-book-now {
            background: #2c5530;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: bold;
            font-size: 1rem;
        }
        
        .saeed-dev-section-book-now:hover {
            background: #e4e4e4;
            transform: scale(1.05);
        }
        
        .saeed-dev-section-why-choose {
            padding: 80px 20px;
            background: white;
        }
        
        .saeed-dev-section-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        
        .saeed-dev-section-feature {
            text-align: center;
            padding: 40px 25px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .saeed-dev-section-feature:hover {
            background: #f8f9fa;
            transform: translateY(-5px);
        }
        
        .saeed-dev-section-feature-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            color: #ff6b35;
        }
        
        .saeed-dev-section-feature h3 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            color: #2c5530;
            font-weight: bold;
        }
        
        .saeed-dev-section-feature p {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }
        
        .saeed-dev-section-stats {
            background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
            color: white;
            padding: 70px 20px;
            text-align: center;
        }
        
        .saeed-dev-section-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .saeed-dev-section-stat h3 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ff6b35;
            font-weight: bold;
        }
        
        .saeed-dev-section-stat p {
            font-size: 1.2rem;
            color: #f0f0f0;
        }
        
        .saeed-dev-section-all-destinations {
            padding: 80px 20px;
            background: #f8f9fa;
        }
        
        .saeed-dev-section-dest-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .saeed-dev-section-dest-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .saeed-dev-section-dest-item:hover {
            transform: translateX(5px);
            border-left-color: #ff6b35;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        
        .saeed-dev-section-dest-name {
            font-weight: bold;
            color: #2c5530;
            font-size: 1.1rem;
        }
        
        .saeed-dev-section-dest-price {
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .saeed-dev-section-cta-final {
            background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
            color: white;
            padding: 70px 20px;
            text-align: center;
        }
        
        .saeed-dev-section-cta-final h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .saeed-dev-section-cta-buttons {
            margin-top: 30px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile Devices (up to 576px) */
        @media (max-width: 576px) {
            .saeed-dev-section-hero {
                padding: 60px 15px;
                min-height: 60vh;
            }
            
            .saeed-dev-section-hero-content h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .saeed-dev-section-hero-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .saeed-dev-section-cta-button {
                padding: 15px 25px;
                font-size: 1rem;
                display: block;
                margin: 15px auto;
                width: 90%;
                max-width: 280px;
            }
            
            .saeed-dev-section-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .saeed-dev-section-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .saeed-dev-section-destinations-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .saeed-dev-section-destination-card {
                padding: 25px 20px;
            }
            
            .saeed-dev-section-price {
                font-size: 2.2rem;
            }
            
            .saeed-dev-section-features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .saeed-dev-section-feature {
                padding: 30px 20px;
            }
            
            .saeed-dev-section-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .saeed-dev-section-stat h3 {
                font-size: 2.5rem;
            }
            
            .saeed-dev-section-dest-list {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .saeed-dev-section-dest-item {
                padding: 18px;
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .saeed-dev-section-cta-final h2 {
                font-size: 2rem;
            }
            
            .saeed-dev-section-container {
                padding: 0 15px;
            }
        }
        
        /* Tablets (577px to 768px) */
        @media (min-width: 577px) and (max-width: 768px) {
            .saeed-dev-section-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .saeed-dev-section-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .saeed-dev-section-destinations-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .saeed-dev-section-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }
            
            .saeed-dev-section-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .saeed-dev-section-dest-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Large Tablets/Small Desktops (769px to 992px) */
        @media (min-width: 769px) and (max-width: 992px) {
            .saeed-dev-section-destinations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-dev-section-features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-dev-section-dest-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Medium Desktops (993px to 1200px) */
        @media (min-width: 993px) and (max-width: 1200px) {
            .saeed-dev-section-destinations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-dev-section-features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Large Desktops (1201px and up) */
        @media (min-width: 1201px) {
            .saeed-dev-section-hero-content h1 {
                font-size: 4rem;
            }
            
            .saeed-dev-section-hero-subtitle {
                font-size: 1.5rem;
            }
            
            .saeed-dev-section-destinations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .saeed-dev-section-container {
                max-width: 1400px;
            }
        }
        
        /* Ultra-wide screens (1400px and up) */
        @media (min-width: 1400px) {
            .saeed-dev-section-destinations-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .saeed-dev-section-dest-list {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Landscape orientation adjustments for mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .saeed-dev-section-hero {
                min-height: 50vh;
                padding: 40px 15px;
            }
            
            .saeed-dev-section-hero-content h1 {
                font-size: 2rem;
            }
        }
        
        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .saeed-dev-section-destination-card,
            .saeed-dev-section-dest-item {
                box-shadow: 0 4px 8px rgba(0,0,0,0.12);
            }
        }
        
        /* Hover effects only on devices that support hover */
        @media (hover: hover) {
            .saeed-dev-section-destination-card:hover,
            .saeed-dev-section-feature:hover,
            .saeed-dev-section-dest-item:hover {
                cursor: pointer;
            }
        }
        
        /* Focus states for accessibility */
        .saeed-dev-section-cta-button:focus,
        .saeed-dev-section-book-now:focus {
            outline: 3px solid #ff6b35;
            outline-offset: 2px;
        }
        
        
        /*home End*/
        
        
        
        
        
        
        
   /*New card grid     */
   
    /* Card Grid Styles Only */
        .saeed-card-grid-destination {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .saeed-card-grid-destination__title {
            font-size: 32px;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 35px;
            text-align: left;
            position: relative;
            letter-spacing: -0.03em;
        }

        .saeed-card-grid-destination__title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

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

        .saeed-card-grid-destination__card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.2s ease;
        }

        .saeed-card-grid-destination__card-link:hover {
            text-decoration: none;
        }

        .saeed-card-grid-destination__card {
           background: #fff;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 0px solid rgba(255, 255, 255, 0.3);
            position: relative;
            cursor: pointer;
        }

        .saeed-card-grid-destination__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .saeed-card-grid-destination__card-link:hover .saeed-card-grid-destination__card {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .saeed-card-grid-destination__card-link:hover .saeed-card-grid-destination__card::before {
            opacity: 1;
        }

        .saeed-card-grid-destination__image {
            width: 100%;
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .saeed-card-grid-destination__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .saeed-card-grid-destination__card-link:hover .saeed-card-grid-destination__img {
            transform: scale(1.08);
        }

        .saeed-card-grid-destination__image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .saeed-card-grid-destination__card-link:hover .saeed-card-grid-destination__image::before {
            opacity: 0.7;
        }

        .saeed-card-grid-destination__content {
            padding: 15px 15px 15px;
            position: relative;
        }

        .saeed-card-grid-destination__route {
            font-size: 24px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 5px;
            letter-spacing: -0.02em;
        }

        .saeed-card-grid-destination__details {
            font-size: 14px;
            color: #718096;
            margin-bottom: 4px;
            line-height: 1.5;
            font-weight: 500;
        }

        .saeed-card-grid-destination__footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .saeed-card-grid-destination__price {
            font-size: 20px;
            font-weight: 800;
            color: #e53e3e;
            text-shadow: 0 1px 3px rgba(229, 62, 62, 0.2);
        }

        .saeed-card-grid-destination__price-currency {
            font-size: 22px;
            color: #e53e3e;
            margin-left: 4px;
            font-weight: 800;
        }

        .saeed-card-grid-destination__book-btn {
            background: linear-gradient(135deg, #FFA500, #FF7F50);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            position: relative;
            overflow: hidden;
        }

        .saeed-card-grid-destination__book-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .saeed-card-grid-destination__book-btn:hover {
            background: linear-gradient(135deg, #5a67d8, #6b46c1);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
        }

        .saeed-card-grid-destination__book-btn:hover::before {
            left: 100%;
        }

        .saeed-card-grid-destination__book-btn:active {
            transform: translateY(-1px);
        }

        .saeed-card-grid-destination__book-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
        }

        /* Enhanced animations for cards on load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

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

        .saeed-card-grid-destination__card {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .saeed-card-grid-destination__card:nth-child(2) {
            animation-delay: 0.3s;
        }

        .saeed-card-grid-destination__card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .saeed-card-grid-destination {
                margin: 20px;
                padding: 20px;
            }

            .saeed-card-grid-destination__title {
                font-size: 24px;
                text-align: center;
            }

            .saeed-card-grid-destination__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .saeed-card-grid-destination__footer {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }

            .saeed-card-grid-destination__book-btn {
                width: 100%;
                justify-self: stretch;
            }
        }
        
        
        /*End card*/
        
        
        
        /*Fact css*/
        
        

        
        
        
        /*fact css end*/
        
        
        
        
        
        
        /*google*/

        .saeed-google-verified {
            background: #337ab7;
            color: white;
            padding: 40px 20px;
            text-align: center;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .saeed-google-verified::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            backdrop-filter: blur(1px);
        }

        .saeed-google-verified * {
            position: relative;
            z-index: 2;
        }

        .saeed-google-verified h1 {
            font-size: 3.8rem;
            font-weight: 700;
            margin: 0 0 25px 0;
            letter-spacing: 3px;
            text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #ffffff, #f0f8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .saeed-google-verified .subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 400;
            text-shadow: 1px 2px 10px rgba(0,0,0,0.2);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .saeed-google-verified .trust-indicators {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 15px 30px;
            margin: 0 auto 10px auto;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 30px;
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.15),
                0 0 0 1px rgba(255,255,255,0.3),
                inset 0 1px 0 rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .saeed-google-verified .trust-indicators:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 35px 70px rgba(0,0,0,0.2),
                0 0 0 1px rgba(255,255,255,0.4),
                inset 0 1px 0 rgba(255,255,255,0.7);
        }

        .saeed-google-verified .trust-item {
            text-align: center;
            color: #2d3748;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 160px;
            padding: 20px 15px;
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .saeed-google-verified .trust-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .saeed-google-verified .trust-item:hover::before {
            opacity: 1;
        }

        .saeed-google-verified .trust-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
        }

        .saeed-google-verified .trust-logo {
            height: 60px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .saeed-google-verified .iata-logo {
            background: linear-gradient(135deg, #4299e1, #3182ce);
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
        }

        .saeed-google-verified .cert-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #48bb78, #38a169);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
        }

        .saeed-google-verified .trustpilot-logo {
            background: linear-gradient(135deg, #00b67a, #00a85a);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
        }

        .saeed-google-verified .google-logo {
            font-size: 28px;
            font-weight: 700;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .saeed-google-verified .google-g { color: #4285f4; }
        .saeed-google-verified .google-o1 { color: #ea4335; }
        .saeed-google-verified .google-o2 { color: #fbbc05; }
        .saeed-google-verified .google-g2 { color: #4285f4; }
        .saeed-google-verified .google-l { color: #34a853; }
        .saeed-google-verified .google-e { color: #ea4335; }

        .saeed-google-verified .facebook-logo {
            background: linear-gradient(135deg, #4267b2, #365899);
            color: white;
            padding: 8px 16px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
        }

        .saeed-google-verified .stars {
            color: #fbbf24;
            font-size: 18px;
            margin: 10px 0;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
        }

        .saeed-google-verified .trust-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: #2d3748;
            margin-top: 10px;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .saeed-google-verified .reviews-text {
            font-size: 0.75rem;
            color: #718096;
            margin-top: 4px;
            font-weight: 500;
        }

        .saeed-google-verified .bottom-text {
            font-size: 2.8rem;
            font-weight: 700;
            margin-top: 50px;
            letter-spacing: 2px;
            text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #ffffff, #f0f8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 768px) {
            .saeed-google-verified {
                padding: 60px 15px;
            }

            .saeed-google-verified h1 {
                font-size: 2.8rem;
                letter-spacing: 2px;
            }
            
            .saeed-google-verified .trust-indicators {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 1fr 1fr;
                padding: 35px 20px;
                gap: 20px;
                border-radius: 25px;
            }
            
            .saeed-google-verified .trust-item {
                min-height: 160px;
                padding: 20px 12px;
            }
            
            .saeed-google-verified .trust-text {
                font-size: 0.9rem;
            }
            
            .saeed-google-verified .reviews-text {
                font-size: 0.8rem;
            }
            
            .saeed-google-verified .bottom-text {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 480px) {
            .saeed-google-verified h1 {
                font-size: 2.2rem;
            }

            .saeed-google-verified .subtitle {
                font-size: 1.2rem;
                margin-bottom: 40px;
            }

            .saeed-google-verified .trust-indicators {
                padding: 25px 15px;
                gap: 15px;
                border-radius: 20px;
                grid-template-columns: 1fr 1fr;
            }
            
            .saeed-google-verified .trust-item {
                min-height: 140px;
                padding: 15px 8px;
            }
            
            .saeed-google-verified .trust-text {
                font-size: 0.8rem;
                line-height: 1.2;
            }
            
            .saeed-google-verified .trust-logo {
                height: 50px;
                margin-bottom: 8px;
            }
            
            .saeed-google-verified .stars {
                font-size: 16px;
                height: 18px;
                margin: 6px 0;
            }

            .saeed-google-verified .bottom-text {
                font-size: 1.8rem;
                margin-top: 40px;
            }

            .saeed-google-verified .iata-logo {
                padding: 6px 10px;
                font-size: 11px;
            }

            .saeed-google-verified .trustpilot-logo {
                padding: 6px 12px;
                font-size: 13px;
            }

            .saeed-google-verified .google-logo {
                font-size: 24px;
            }

            .saeed-google-verified .facebook-logo {
                padding: 6px 12px;
                font-size: 13px;
            }

            .saeed-google-verified .cert-logo {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        @media (max-width: 360px) {
            .saeed-google-verified h1 {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            .saeed-google-verified .subtitle {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .saeed-google-verified .trust-indicators {
                padding: 20px 10px;
                gap: 12px;
                margin-bottom: 40px;
            }
            
            .saeed-google-verified .trust-item {
                min-height: 120px;
                padding: 12px 6px;
            }
            
            .saeed-google-verified .trust-text {
                font-size: 0.75rem;
                line-height: 1.1;
            }

            .saeed-google-verified .reviews-text {
                font-size: 0.7rem;
            }

            .saeed-google-verified .bottom-text {
                font-size: 1.5rem;
            }
        }
        
        
        
        
        
        
        .transparent-menu {
    transition: all 0.3s ease;
}

.transparent-menu.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Optional: Add padding to body to prevent content jump */
body.header-sticky {
    padding-top: 80px; /* Adjust based on your header height */
}