* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* =========================
   NAVIGATION BAR
========================= */

.navbar {
    position: relative;
    height: 50px;
    background: #087cf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
}

.nav-links a:hover {
    color: #dbeaff;
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 20px 25px;
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
        margin-left: auto;
        z-index: 2;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: #087cf5;
        padding: 15px 20px 20px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 18px;
    }

    .menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }

    .menu-toggle:checked + .hamburger {
        color: #dbeaff;
    }
}




/* GENERAL PAGE */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #111827;
}


/* SERVICES TITLE */
.services {
    text-align: center;
    padding: 50px 30px;
}

.services h1 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 70px;
    text-decoration: underline;
    text-underline-offset: 12px;
}


/* SECTION TITLES */
.services h2 {
    font-size: 40px;
    margin-bottom: 45px;
    font-weight: 700;
}


/* FLIGHT / HOTEL CONTAINER */
.service-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}


/* SERVICE CARD */
.service-card {
    width: 330px;
    background-color: #eeeeee;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.3s ease;
}


/* CARD IMAGE */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}


/* CARD TEXT */
.service-card h3 {
    font-size: 25px;
    margin: 25px 0 5px;
    font-weight: 700;
    text-transform: capitalize;
}


/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* HOTEL BOOKING */
.hotel-booking {
   margin-top: 10px;
}

.hotel-booking h2 {
    margin-bottom: 30px;
}

* {
  
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.tour-section {
    margin-top: 0px;
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

/* Image Grid */
.image-grid {
   
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Image Cards */
.image-card {
    background-color: #eef2f8;
    padding: 25px;
    height: 290px;
 
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tour Packages Heading */
.tour-section h1 {
    text-align: center;
    margin-top: 65px;
    font-weight: bold;
    font-size: 45px;
    
    color:#333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
}


/* =========================
   TRAVEL CATEGORIES
========================= */

.travel-categories {
    width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.category {
    width: 30%;
}

.category img {
    width: 200px;
    height: 140px;
    object-fit: cover;

    /* Rounded shape like the image */
    border-radius: 70px 70px 45px 45px;
}

.category p {
    margin-top: 15px;
    font-size: 22px;
    color: #555;
}


/* =========================
   VISA ASSISTANCE
========================= */

.visa-section {
    width: 95%;
    margin: 15px auto;
    
}

.visa-section h2,
.other-services h2 {
    font-size: 40px;
    margin-bottom: 45px;
    font-weight: 700
}


/* Dark Visa Box */

.visa-box {
    width: 100%;
    min-height: 330px;

    background: linear-gradient(
        135deg,
        #1d2938,
        #3d4b60
    );

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 40px 60px;
}


/* Visa heading */

.visa-content h3 {
    color: white;
    font-size: 36px;
    margin-bottom: 25px;
}


/* List */

.visa-content ul {
    list-style-position: outside;
    padding-left: 40px;
    text-align: left;
}

.visa-content li {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}


/* Register button */

.register-btn {
    margin-top: 200px;
    background: #08b9d7;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    font-size: 22px;
    cursor: pointer;
    margin-right: 70px;
}

.register-btn:hover {
    background: #079bb5;
}


/* =========================
   OTHER SERVICES
========================= */

.other-services {
    width: 90%;
    margin: 25px auto;
}

.services-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;

    margin-top: 20px;
}

.service {
    width: 22%;
}


/* Circular icons */

.service-icon {
    width: 110px;
    height: 110px;

    margin: auto;

    border-radius: 50%;

    background: #111827;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 48px;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {

    .travel-categories {
        width: 95%;
        gap: 10px;
    }

    .category img {
        width: 110px;
        height: 80px;
    }

    .category p {
        font-size: 15px;
    }


    .visa-section {
        width: 94%;
    }

    .visa-section h2,
    .other-services h2 {
        font-size: 27px;
    }

    .visa-box {
        min-height: 280px;
        padding: 25px 20px;
    }

    .visa-content h3 {
        font-size: 24px;
    }

    .visa-content li {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .register-btn {
        font-size: 16px;
        padding: 10px 16px;
        margin-right: 5px;
    }


    .services-container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .service {
        width: 45%;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .service p {
        font-size: 14px;
    }
}


/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {

    .services {
        padding: 35px 15px;
    }

    .services h1 {
        font-size: 45px;
        margin-bottom: 50px;
    }

    .services h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .service-container {
        gap: 25px;
        margin-bottom: 60px;
    }

    .service-card {
        width: 90%;
        max-width: 330px;
    }

    .service-card img {
        height: 180px;
    }

    .service-card h3 {
        font-size: 22px;
    }
}


/* SMALL PHONES */
@media screen and (max-width: 480px) {

    .services h1 {
        font-size: 38px;
    }

    .services h2 {
        font-size: 27px;
    }

    .service-card {
        width: 100%;
    }

    .service-card img {
        height: 160px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        padding: 20px 25px;
        flex-wrap: wrap;
    }

    .logo {
        margin-right: auto;
    }
}

