/* Body & Fonts */
body {
    background-color: #0d1b2a;
    color: #edf2f7;
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar-custom {
    background: linear-gradient(to right, #1b1464, #2e3a87);
    padding: 14px 0;
    transition: background-color 0.3s ease-in-out;
}

.navbar-custom .navbar-brand {
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-custom .nav-link {
    color: #f8f9fa;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #ffd700;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #00bfff, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #00bfff, #ff7a00);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.5);
}

/* Feature Cards */
.feature-card {
    background-color: #112240;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.5);
}

/* Footer Links Hover */
.hover-link:hover {
    color: #ff7a00 !important;
    text-decoration: underline;
}

/* Gradient Support Box */
.bg-gradient {
    background: linear-gradient(90deg, #00bfff, #ff7a00);
}

/* Newsletter Button */
.btn-send {
    background: #ff7a00;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-send:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.5);
}

/* Focus */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 191, 255, 0.5);
}

.destination-card {
    background-color: #112240;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.destination-card h5 {
    color: #00bfff;
    font-weight: 600;
}

.destination-card p {
    color: #edf2f7;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.5);
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

/* --- Service Spectrum Section --- */
#service-spectrum {
    background-color: #0d1b2a;
    /* Dark background */
    color: #edf2f7;
    font-family: 'Segoe UI', sans-serif;
}

#service-spectrum .gradient-text {
    background: linear-gradient(90deg, #00bfff, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#service-spectrum .grid>a {
    text-decoration: none;
}

#service-spectrum .grid div {
    background: linear-gradient(135deg, #1b263b, #112240);
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#service-spectrum .grid div:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.4);
}

#service-spectrum .grid div .flex {
    align-items: center;
}

#service-spectrum .grid div i {
    transition: transform 0.3s ease, color 0.3s ease;
}

#service-spectrum .grid div:hover i {
    transform: rotate(15deg) scale(1.1);
    color: #ffd700;
}

#service-spectrum .grid div h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

#service-spectrum .grid div p {
    color: #edf2f7b3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Call to Action Button */
#service-spectrum .text-center a button {
    background: linear-gradient(90deg, #00bfff, #ff7a00);
    color: #0d1b2a;
    font-weight: 700;
    border-radius: 1rem;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

#service-spectrum .text-center a button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.6);
}

#service-spectrum .text-center a button i {
    transition: transform 0.3s ease;
}

#service-spectrum .text-center a button:hover i {
    transform: rotate(15deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #service-spectrum .grid {
        grid-template-columns: 1fr;
    }
}

.connect-section {
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #0f3460);
    color: #fff;
    border-radius: 0 0 40px 40px;
}

.phone-icon {
    font-size: 2.8rem;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    animation: pulse 2s infinite;
}

.btn-call {
    background: #ffc107;
    color: #212529;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.35);
}

.btn-call:hover {
    background: #e0a800;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.45);
    color: #212529;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* About Us Section */
.about-us {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.about-us h2 {
    font-size: 2.5rem;
    color: #0E4D92;
    font-weight: bold;
}

.about-us h4 {
    color: #00BFA6;
    margin-top: 30px;
}

.about-us p,
.about-us li {
    font-size: 1rem;
    color: #444;
}

.about-us ul {
    padding-left: 0;
    list-style: none;
}

.about-us ul li {
    margin-bottom: 10px;
}

.about-us ul li i {
    color: #0E4D92;
    margin-right: 10px;
}