/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;

    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* LOGO */
.logo {
  height: 40px;
  width: auto;
}
.logo-img{
  height: 50px;
  width: auto; 
  border-radius: 10px;
}

/* LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

/* HOVER UNDERLINE EFFECT */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #00b4ff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        right: 20px;

        background: rgba(10, 37, 64, 0.95);
        backdrop-filter: blur(10px);

        flex-direction: column;
        width: 220px;
        padding: 25px;
        border-radius: 10px;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;

        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: block;
    }
}


/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;

    background: linear-gradient(
        rgba(10, 37, 64, 0.7),
        rgba(10, 37, 64, 0.7)
    ),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644');

    background-size: cover;
    background-position: center;

    color: white;
}

/* CONTENT */
.hero-content {
    max-width: 700px;
    animation: fadeIn 1s ease-in-out;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY CTA BUTTON */
.primary-btn {
    padding: 18px 36px;
    background: linear-gradient(90deg, #007bff, #00b4ff);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.6);
}

/* FLOATING SHINE ANIMATION */
.primary-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.15);
    transform: rotate(25deg) translateX(-100%);
    transition: all 0.7s ease;
}

.primary-btn:hover::after {
    transform: rotate(25deg) translateX(200%);
}

.primary-btn:hover {
    background: #0056b3;
}

.secondary-btn {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: white;
    color: #0a2540;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}


/*apply section

/* FORM HERO PAGE */
.form-hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(10,37,64,0.7), rgba(10,37,64,0.7)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.form-container {
    max-width: 500px;
    width: 100%;
    background: rgba(255,255,255,0.95);
    color: #0a2540;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-container h1 {
    margin-bottom: 15px;
}

.form-container p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

/* INPUTS */
#applyForm input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* BUTTON */
#applyForm .primary-btn {
    width: 100%;
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-hero {
        padding: 20px;
    }

    .form-container {
        padding: 30px 20px;
    }
}


/*services

/* SERVICES HERO */
.services-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(10,37,64,0.8), rgba(10,37,64,0.8)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
    background-size: cover;
    background-position: center;
    color: white;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* SERVICES CARDS */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin: 20px 0 10px;
    color: #0a2540;
}

.card p {
    padding: 0 15px 20px;
    font-size: 16px;
    color: #555;
}

/* CARD HOVER EFFECT */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }
}

/*destinations

/* DESTINATIONS HERO */
.destinations-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(10,37,64,0.8), rgba(10,37,64,0.8)), url('https://images.unsplash.com/photo-1522199710521-72d69614c702');
    background-size: cover;
    background-position: center;
    color: white;
}

.destinations-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.destinations-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* DESTINATIONS CARDS */
.destinations-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dest-card h3 {
    margin: 20px 0 10px;
    color: #0a2540;
}

.dest-card p {
    padding: 0 15px 20px;
    font-size: 16px;
    color: #555;
}

.dest-card .primary-btn {
    margin: 0 0 20px 0;
    align-self: center;
    width: 80%;
    text-decoration: none;
}

/* CARD HOVER EFFECT */
.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .destinations-hero h1 {
        font-size: 32px;
    }

    .destinations-hero p {
        font-size: 16px;
    }
}


/*About Page

/* ABOUT HERO */
.about-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(10,37,64,0.8), rgba(10,37,64,0.8)),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644');
    background-size: cover;
    color: white;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
}

/* CEO SECTION */
.ceo-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.ceo-card {
    display: flex;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-card img {
    width: 300px;
    object-fit: cover;
}

.ceo-info {
    padding: 30px;
}

.ceo-info h2 {
    color: #0a2540;
}

.ceo-info h4 {
    color: #007bff;
    margin-bottom: 15px;
}

/* ABOUT CONTENT */
.about-content {
    padding: 60px 20px;
    background: #f5f7fa;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #0a2540;
    margin-top: 20px;
}

.about-text p {
    margin-top: 10px;
    line-height: 1.6;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ceo-card {
        flex-direction: column;
    }

    .ceo-card img {
        width: 100%;
        height: 250px;
    }
}

/* FOOTER */
.footer {
    background: #0a2540;
    color: white;
    padding-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 40px 40px;
}

.footer-section h2,
.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section p,
.footer-section li,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

/* HOVER EFFECT */
.footer-section a:hover {
    color: #00b4ff;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #007bff;
    color: white;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #081c33;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        padding: 20px;
    }
}