body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
}

/* Header Top Section */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    padding: 10px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.site-title {
    color: white;
    margin: 0;
    font-size: 2rem;
}


footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

.container {
    padding: 20px;
}
/* Slider*/

/* Slider Container
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

/* Slider Track
.slider .slides {
    position: relative;
    height: 400px;
}

/* Slider Images
.slider .slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: none;
}

/* Show first slide explicitly (optional)
.slider .slides img:first-child {
    display: block;
}

/* Keyframes for Looping Slider */
@keyframes slideLoop {
    0% { transform: translateX(0%); }
    33.33% { transform: translateX(-100%); }
    66.66% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}


/* Header */
header {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Navigation Bar */
nav {
    background-color: #003366;
    padding: 10px 0;
}

.navbar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar > li {
    position: relative;
    margin-right: 20px;
}

.navbar > li:last-child {
    margin-right: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.navbar li:hover > a {
    background-color: #0059b3;
}

/* Dropdown Styles */
.dropdown {
    display: none;
    position: absolute;
    background-color: #0059b3;
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 999;
    padding: 0;
    list-style: none;
}

.navbar li:hover > .dropdown {
    display: block;
}

.dropdown li {
    position: relative;
}

.dropdown li a {
    padding: 10px 15px;
    color: white;
    white-space: nowrap;
}

.dropdown li a:hover {
    background-color: #0073e6;
}

/* Submenu of dropdown (2nd level) */
.dropdown .dropdown {
    top: 0;
    left: 100%;
    background-color: #0066cc;
    display: none;
}

.dropdown li:hover > .dropdown {
    display: block;
}

main {
    padding: 30px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 400%; /* 3 slides + 1 clone = 4 */
}

.slide {
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    
}

@keyframes slide {
    0% { transform: translateX(0%); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}

.package-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.package {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 300px;
    text-align: center;
}

form input,
form textarea,
form select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    background-color: #FF6B6B;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}


/* Scoped to Index Page Only */
.welcome-section {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.welcome-section h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    background: linear-gradient(to right, #e0f7fa, #ffffff);
    padding: 20px;
    border-left: 6px solid #0077cc;
    border-radius: 8px;
}

/* Scoped to Services We Offer - index page only*/
.services-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
    background: #f4f9ff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.services-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    width: 250px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card p {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0077cc;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/*Scoped to Footer Only*/
footer {
    background-color: #003366;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 6px;
}

.footer-column p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: right;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Combined marquee and logo line */
.marquee-with-logo {
    background-color: #003360;
    color: white;
    display: flex;
    align-items: center;
    padding: 4px 10px;
    overflow: hidden;
    white-space: nowrap;
    gap: 10px;
}

.logo-inline .logo-video {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}


/* Moving marquee text beside logo */
.marquee-text {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-text p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Header layout */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #003366;
    padding: 10px 20px;
    flex-wrap: wrap;
}


/* Centered navbar */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar > li {
    position: relative;
    margin: 0 15px;
}

/* Navigation Bar links (Home, Services, Contact Us) */
.navbar a {
    color: white;
    text-decoration: none;
    padding: 6px 6px; /* Reduced from 12px 20px */
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 0.2; /* Compact vertical height */
}

/* Dropdown styles remain the same */
.dropdown {
    display: none;
    position: absolute;
    background-color: #0059b3;
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 999;
    list-style: none;
    padding: 0;
}

.navbar li:hover > .dropdown {
    display: block;
}

.dropdown li {
    position: relative;
}

/* Dropdown Items */
.dropdown li a {
    padding: 6px 12px; /* Reduced from 10px 15px */
    font-size: 1rem;
    line-height: 1.2;
}
.dropdown li a:hover {
    background-color: #0073e6;
}

.dropdown .dropdown {
    top: 0;
    left: 100%;
    background-color: #0066cc;
    display: none;
}

/* Second level dropdown */
.dropdown .dropdown li a {
    padding: 6px 12px;
}

.dropdown li:hover > .dropdown {
    display: block;
}
