/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    margin-top: 120px;
    padding: 0;
    box-sizing: border-box;
    text-align: center; 
    transition: all 0.3s ease-in-out;
    background-color: white;
}


/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between; /* ✅ Fix: Change this to center the links */
    align-items: center;
    background-color: white;
    padding: 17px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.5s ease;
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Don't let the body content overlap the Navigation Bar */
body {
    padding-top: 80px;
    margin: 0;
}


nav .logo {
    display:flex;
    height: 65px;
    padding-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 20px;
    padding-left: 160px;
    padding-right: 80px;
    margin: 0 auto;
    flex: 2; /* It can help to push the content links toward center */
    justify-content: right; /* Centers the links */
}

/* Font styling */
nav ul li a {
    color: #002b5c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

/* Effects */
nav ul li a:hover {
    color: #007BFF;
}
/* This is the end of the navigation bar */


/* Home Page (index.html)*/
/* Home Section */ 
.home-banner {
    position: relative;
    width: 100%;
    height: 90vh;
}

.home-image img {
    width: 100%; /* This is to adjust the picture to left or right*/
    height: 100vh; /* This is to adjust the picture to zoom in or out*/
    object-fit: cover;
    display: block;
}

.home-intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9); /* Add slight transparency to improve the visuals */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    width: 50%;
    text-align: center;
}


.blue-box {
    position: relative;
    top: 10px;
    background: #007BFF;
    color: white;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
}

.home-intro h2 {
    background: #002b5c;
    color: white;
    display: inline-block;
    padding: 10px;
    font-size: 35px;
    font-weight: 900;
    text-align: center;
}

.home-intro h1 {
    color: #0099ff;
    font-size: 40px;
    font-weight: 700;
    text-align: center; 
    padding: 15px;
    padding-top: -10px;
    margin: 10px;
    margin-top: 5px;
    line-height: 1.4;
}

.buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    background-color: white;
    color: #002b5c;
    border: 2px solid #002b5c;
    padding: 12px 22px;
    cursor: pointer;
    margin: 5px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
    border-radius: 10px;
}

.btn:hover {
    background-color: #002b5c;
    color: white;
}

/* Who We Are Section - Continue page after home-intro */
.who-we-are {
    padding: 90px;
    padding-top: 120px;
    padding-bottom: 110px;
    background: linear-gradient(to bottom, #002b5c, white); /* Smooth gradient */
    text-align: center;
    box-shadow: inset 1px -3px 5px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.3s ease-in;
}

.who-we-are h2 {
    color: white;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    text-align:center
}

.who-we-are p {
    font-size: 20px;
    font-weight: 300;
    color: black;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* Certifications - Box Style */
.certifications {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin: 40px 0;
}

.cert-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 1px -2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-box p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

.cert-box:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
}

/* Certification Images */
.cert-box img {
    width: 110px;
    height: auto;
    margin-bottom: 10px;
}

.read-more {
    background-color: white;
    border: 2px solid #002b5c;
    padding: 12px 22px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #002b5c;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.read-more:hover {
    background-color: #002b5c;
    color: white;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

/* Adding Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* This is the end of the home page section */


/* About us page */
/* About us content */
#about {
    text-align: center;
    padding: 80px 5%;
    padding-bottom: 15px;
    background: linear-gradient(to bottom, #002b5c, white); /* Smooth gradient */
    animation: fadeIn 1.2s ease-in-out;
}

#about h2 {
    font-size: 50px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

#about p {
    font-size: 20px;
    color: black;
    max-width: 900px;
    margin: 20px auto;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

/* Sports List Section - To let users know what we do */
.sports-list {
    background-color: #002b5c;
    padding: 30px;
    border-radius: 30px;
    margin: 50px auto;
    width: 75%;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.sports-list h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.sports-container {
    display: flex;
    justify-content: space-around;
    text-align: left;
    background: white;
    padding: 10px 15px;
    margin: 35px auto;
    border-radius: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    width: 90%;
}

.sports-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sports-container ul li {
    font-size: 16px;
    padding: 5px 0;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.sports-container ul li::before {
    content: "\2014"; /* En Dash */
    color: #0099ff;
    position: absolute;
    left: 0;
}

.products-button {
    margin: 30px auto;
    text-align: center;
}

.products-button .btn {
    background-color: white;
    border: 2px solid #002b5c;
    cursor: pointer;
    color: #002b5c;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    margin: 5px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.products-button .btn:hover {
    background-color: #0099ff;
    color: white;
}

/* Our Team Section */
.our-team {
    text-align: center;
    padding: 50px;
    width: 80%;
    margin: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-in-out 0.5s forwards;
}

.our-team h2 {
    font-size: 38px;
    color: #002b5c;
    font-weight: 900;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.team-member {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.team-member img:hover {
    transform: scale(1.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: center;
    padding: 50px;
    width: 85%;
    margin: auto;
    margin-bottom: 80px;
}

.team-member h3 {
    font-size: 20px;
    margin: 10px 0;
}

.team-member a {
    color: #002b5c;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

.team-member a:hover {
    text-decoration: underline;
    color: #007BFF;
}

/* Adding Animations in about us page*/
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp { /* This sets when users clicked to about us page it will show fade in animation on the page*/
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* This is the end of about us section */


/* Package Section */
/* Package Introduction */
.package-intro {
    padding: 60px 10px 20px;
    background: linear-gradient(to bottom, #002b5c, white); /* Smooth gradient */
    text-align: center;
}

.package-intro h2 {
    font-size: 50px;
    font-weight: 900;
    color: white;
}

.package-intro p {
    font-size: 20px;
    color: black;
    width: 70%;
    margin: auto;
    padding-bottom: 10px;
    text-align: justify;
    font-family: Arial, sans-serif; 
    font-weight: 550;
}

/* Package Table */
.package-table {
    margin: 40px auto;
    width: 90%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.package-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 25px;
    table-layout: fixed; /* Ensures columns are evenly spaced */
}

.package-table th {
    background: #002b5c;
    color: white;
    font-size: 20px;
    font-weight: 900;
    padding: 20px;
    text-align: left;
    border-bottom: 3px solid white;
}

.package-table td {
    background: #f8f8f8;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    text-align: left;
    vertical-align: top;
    transition: background 0.3s ease-in-out;
}

.package-table tr:hover td {
    background: rgba(0, 43, 92, 0.08);
}

/* Feature Column */
.package-table ul { 
    padding-left: 5px;
    margin: 0; /* Ensures proper spacing */
}

.package-table ul li {
    margin: 5px 0;
    list-style: none;
    position: relative;
    padding-left: 17px;
    text-align: left;
    line-height: 1.5;
}

.package-table ul li::before { /* Setting buller point*/
    content: '\2022'; /* Bullet point */
    color: #002b5c;
    font-size: 18px;
    position: absolute;
    left: 0;
}

.package-table td:first-child { /* First Column */
    width: 20%;
    font-size: 17px;
    font-weight: bold;
    padding: 20px;
    vertical-align: middle; 
}

.package-table td:nth-child(2) { /* Second Column */
    font-size: 15px;
    width: 50%;
    vertical-align: top;
}

.package-table td:last-child { /* Third Column */
    font-size: 15px;
    width: 30%;
    vertical-align: middle; /* Centers text in the 'Best For' column */
    text-align: justify; /* Ensures text remains centered */
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-table {
        width: 95%;
    }

    .package-table th, .package-table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* Package Section Hover Effects */
.package-table tbody tr {
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.package-table tbody tr:hover {
    transform: scale(1.02);
    background: rgba(0, 123, 255, 0.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}

/* Package Booking Button */
.package-booking {
    margin-top: 30px;
    margin-bottom: 125px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.package-booking p {
    font-size: 18px;
    color: black;
}

.package-booking .btn {
    display: inline-block;
    background: #002b5c;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.5s;
    margin-top: 5px;
}

/* Package Booking Button Animation */
.package-booking .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.package-booking .btn:hover {
    background: #0056b3;
    color: white;
    transform: scale(1.05);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}
/* This is the end of the package section */


/* This is the product-service section */
/* Product Carousel */
.product-carousel {
    text-align: center;
    padding: 40px;
    padding-top: 50px;
    font-size: 50px;
    background: linear-gradient(to bottom, #002b5c, white); /* Smooth gradient */
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 85%;
    margin: auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 280px;
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    white-space: normal;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

.product-carousel h2 {
    font-family: 'Arial', sans-serif; /* Use any font you prefer */
    font-size: 50px;
    font-weight: 900;
    color: white;
    text-align: center;
}

.product-card h3 {
    color: #002b5c;
    font-size: 18px;
    margin-top: 10px;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

.btn-download {
    display: inline-block;
    background-color: #002b5c;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-download:hover {
    background-color: #004080;
}

/* Product Card Hover Effects */
.product-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.25);
}

/* Navigation Buttons - Settings for the grid to scroll */ 
.prev-btn, .next-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

/* Direction for scrolling */
.prev-btn { left: 10px; }
.next-btn { right: 10px; }


/* Services Section */
.services {
    padding: 50px;
    margin-bottom: 72px;
}

.services h2 {
    font-size: 50px;
    color: #002b5c;
    font-weight: 800;
    text-shadow: 1px 1px 1px rgba(0, 91, 187, 0.2);
    padding-bottom: 10px;
    animation: fadeIn 1.2s ease-in-out;
}

.service-item p {
    font-size: 16px;
    color: white;
    line-height: 1.5;
    text-align: justify;
}

.service-item {
    flex: 0 0 320px; /* Fixed width for each item */
    background: #002b5c;
    color: sandybrown;
    font-weight: 100;
    padding: 40px;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 6px 9px 7px rgba(13, 18, 13, 0.1);
    margin-right: 15px; /* Spacing between items */
    white-space: normal;
    text-align: left;
}

/* Responsive Grid for Larger Screens */
@media (min-width: 1024px) {
    .service-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        overflow-x: hidden; /* Prevent horizontal scroll on larger screens */
        white-space: normal;
    }
}
/* This is the end of Product and Service  */


/* Contact Section */
.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    background: linear-gradient(to bottom, #002b5c, #f8f8f8, white); /* Smooth gradient */
}

.contact-heading {
    text-align: center;
    padding: 20px 10px 10px;
    background: linear-gradient(to bottom, black, #002b5c); /* Smooth gradient */
}

.contact-heading h1 {
    font-size: 50px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

/* Contact Information Section */
.contact-info {
    width: 45%;
    text-align: left;
    color: #002b5c;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 20px;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {
    width: 40%;
    background: #002b5c;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensures form fields are centered inside */
#contact-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers input fields and button */
}

/* Adjust input fields width */
.contact-form input,
.contact-form textarea {
    width: 90%; /* Now takes up the full container width */
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

/* Center the Submit Button */
.contact-form button {
    width: 60%;
    background-color: white;
    color: #002b5c;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 12px;
    transition: background 0.3s ease;
    text-align: center;
}

.contact-form button:hover {
    background-color: #007BFF;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .contact {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        width: 90%; /* Expands width on smaller screens */
    }

    #contact-container {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .contact-form button {
        width: 100%;
    }
}

/* Booking Form */
.booking-container {
    width: 50%;
    margin: 100px auto;
    background: #002b5c;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.booking-container h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    color: white; 
    margin-bottom: 35px;
}

label {
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-top:5px;
    margin-bottom: 5px;
    margin-left: 150px;
    padding: 2px;
    color: ghostwhite;
}

.terms-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures center alignment */
    gap: 8px; /* Adds spacing between checkbox and text */
    margin-top: 15px;
}

/* Checkbox Alignment */
.terms-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: 12px;
    vertical-align: middle; /* Ensures the checkbox aligns with text */
}

/* Label Alignment */
.terms-label {
    font-size: 16px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Input area */
form input, form select, form textarea { 
    width: 65%;
    font-size: 15px;
    padding: 10px;
    padding-left: -2px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 30%;
    padding: 12px;
    margin-top: 15px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}

form button:hover {
    background: #0056b3;
}
/* This is the end of booking section */


/* General Footer Styling */
.footer {
    text-align: center;
    background-color: #002b5c;
    color: white;
    padding: 15px 0;
    position: relative; /* This ensures the footer stays at bottom if page has content */
    width: 100%;
    bottom: 0;
    margin-top: 50px; 
    font-size: 14px;
}

/* If page content is short, push footer to bottom */
html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
}

.footer {
    margin-top: auto; /* Pushes footer down if content is short */
}

/* Prevent the footer is getting overlapped */
.booking-page .footer {
    position: relative;
}
/* This is the end of footer section */
/* This is the end for CSS for this website */
