    :root {
        --primary: #00833F;
        --secondary: #FF6600;
        --accent1: #006FD6;
        --accent2: #E63946;
        --accent3: #FFB81C;
        --dark: #1A3B2A;
        --light: #F8F9FA;
    }

    body {
      
        min-height: 100vh;
      
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

 

    .section-subtitle {
        color: var(--secondary);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 15px;
    }

    .section-subtitle:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent1), var(--primary));
        border-radius: 2px;
    }

    .service-card {
        height: 320px;
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        background: transparent;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .card-body {
        position: relative;
        padding: 25px;
        height: 100%;
        display: flex;
        flex-direction: column;
        z-index: 2;
        color: white;
    }

    /* Dark overlay for background images */
    .card-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }

    /* Background with overlay */
    .flightboking::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(./img/flight.jpg);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .cancalation::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(./img/cancels.png);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .refunds::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(./img/refund.jpg);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .baggages::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(./img/baggage.jpg);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .petts::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(./img/pets.jpg);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .support::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(./img/support.png);
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    /* Content styling */
    .service-icon {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .booking-card .service-icon {
        color: var(--primary);
        background-color: rgba(0, 131, 63, 0.2);
        border: 2px solid var(--primary);
    }

    .cancellation-card .service-icon {
        color: var(--accent2);
        background-color: rgba(230, 57, 70, 0.2);
        border: 2px solid var(--accent2);
    }

    .refund-card .service-icon {
        color: var(--accent3);
        background-color: rgba(255, 184, 28, 0.2);
        border: 2px solid var(--accent3);
    }

    .baggage-card .service-icon {
        color: var(--accent1);
        background-color: rgba(0, 111, 214, 0.2);
        border: 2px solid var(--accent1);
    }

    .pet-card .service-icon {
        color: var(--secondary);
        background-color: rgba(255, 102, 0, 0.2);
        border: 2px solid var(--secondary);
    }

    .support-card .service-icon {
        color: var(--light);
        background-color: rgba(26, 59, 42, 0.2);
        border: 2px solid var(--light);
    }

    .card-body .card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: white;
    }

    .service-description {
        flex-grow: 1;
        font-weight: 500;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }

    .service-link {
        color: white;
        text-decoration: none;
        font-weight: 600;
        margin-top: auto;
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 30px;
        width: 130px;
        text-align: end;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .service-link:hover {
        color: var(--dark);
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .service-link i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .service-link:hover i {
        transform: translateX(4px);
    }

    /* Header styling */
    .page-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .page-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .service-card {
            height: 300px;
        }

        .page-title {
            font-size: 2.2rem;
        }

        .service-icon {
            font-size: 2.2rem;
            width: 70px;
            height: 70px;
        }
    }







    :root {
        --primary: #00833F;
        --secondary: #FF6600;
        --light: #F5F9F7;
        --dark: #1A3B2A;
        --accent1: #006FD6;
        --accent2: #E63946;
        --accent3: #FFB81C;
    }



    .travel-section {
        background: linear-gradient(135deg, rgba(0, 131, 63, 0.05) 0%, rgba(255, 102, 0, 0.05) 100%);
        border-radius: 16px;
        padding: 3rem;
        margin: 2rem 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .section-title {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 700;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }

    .info-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
        border: none;
        display: flex;
        flex-direction: column;
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 131, 63, 0.15);
        background-color: lightsalmon;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--light);
    }

    .flexibility-card .card-icon {
        color: var(--primary);
        background-color: rgba(0, 131, 63, 0.1);
    }

    .baggage-card .card-icon {
        color: var(--accent1);
        background-color: rgba(0, 111, 214, 0.1);
    }

    .documents-card .card-icon {
        color: var(--secondary);
        background-color: rgba(255, 102, 0, 0.1);
    }

    .loyalty-card .card-icon {
        color: var(--accent3);
        background-color: rgba(255, 184, 28, 0.1);
    }

    .card-title {
        font-weight: 500;
        margin-bottom: 1rem;

        font-size: 22px;
        color: #FF6600;
    }

    .card-subtitle {
        color: #FF6600;
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.1rem;

    }

    .card-text {
        color: #FF6600;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
        margin-top: 20px;
    }

    .card-action {
        background-color: #FF6600 !important;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        margin-top: auto;
        padding: 0.5rem 0;
    }

    .card-action:hover {
        color: var(--secondary);
    }

    .card-action i {
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .card-action:hover i {
        transform: translateX(4px);
    }



    @media (max-width: 768px) {
        .travel-section {
            padding: 2rem 1.5rem;
        }
    }














    :root {
        --primary: #00833F;
        --primary-light: #4CAF50;
        --secondary: #FF6600;
        --light: #F5F9F7;
        --dark: #1A3B2A;
        --accent1: #006FD6;
        --accent2: #E63946;
        --accent3: #FFB81C;
    }

    .contactsd {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .contact-container {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        max-width: 1000px;
        width: 100%;
        height: 480px;
        display: flex;
    }

    .contact-info {
        background: linear-gradient(to right, #ff9933, #993300);
        color: white;
        padding: 40px;
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .contact-info::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;

    }

    .contact-info h2 {
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
    }

    .contact-info h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary);
        border-radius: 3px;
    }

    .contact-info p {
        margin-bottom: 30px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .contact-details {
        background: white;
        padding: 40px;
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        padding: 15px 20px;
        border-radius: 12px;
        background: var(--light);
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .contact-item:hover {
        transform: translateX(5px);
        box-shadow: 0 6px 15px rgba(0, 131, 63, 0.15);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .icon-location {
        background: rgba(0, 111, 214, 0.15);
        color: #FF6600;
    }

    .icon-phone {
        background: rgba(0, 131, 63, 0.15);
        color: #FF6600;
    }

    .icon-website {
        background: rgba(255, 184, 28, 0.15);
        color: #FF6600;
    }

    .icon-email {
        background: rgba(230, 57, 70, 0.15);
        color: #FF6600;
    }

    .contact-text {
        flex-grow: 1;
        color: #FF6600;
    }

    .contact-text strong {
        display: block;
        margin-bottom: 5px;
        color: #FF6600;
        font-weight: 600;
    }

    .contact-link {
        color: #FF6600;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .contact-link:hover {
        color: var(--secondary);
        text-decoration: underline;
    }

    .action-buttons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .btn-call {

        color: white;
        border: none;
        padding: 10px 10px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
    }

    .btn-call:hover {
        background: var(--dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 131, 63, 0.3);
        color: white;
    }

    .btn-email {

        color: var(--primary);
        border: 2px solid var(--primary);
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .btn-email:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 131, 63, 0.2);
    }

    @media (max-width: 992px) {
        .contact-container {
            flex-direction: column;
            height: auto;
        }

        .contact-info,
        .contact-details {
            width: 100%;
        }

        .contact-info::after {
            display: none;
        }
    }

    @media (max-width: 600px) {
        .contact-item {
            flex-direction: column;
            text-align: center;
        }

        .contact-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }

        .action-buttons {
            flex-direction: column;
        }

        /* Hero Section */


        .call-button {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(to right, #ff9933, #993300);
            color: white;
            text-decoration: none;
            font-size: 14px;
            margin: 20px 0;
            margin-top: 100px;
            border-radius: 25px;
            font-family: sans-serif;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .myabout {
            margin-top: 60px;
        }


    }