


.FirstNav p {
    color: white;
}



/* Second Nav */

.SecondNav{
    position: fixed; /* Initially positioned below the first nav */
    height: 75px; /* Fixes the height of the nav to 75 pixels */
    width: 85%;
    background-color: #0ecc9d; /* Changes the background color to light blue with high priority */
    display: flex; /* in a horzontal line */
    gap:25rem;
    justify-content: center;
    padding: 0.5vw 6.81vw; /* Adds spacing inside the nav: smaller padding top and bottom, larger on left and right */
    align-items: center; /* Centers items vertically in the nav */
    box-shadow: 2px 2px 16px rgba(248, 89, 89, 0.15); /* Adds a shadow for depth with a light opacity */
    z-index: 1000; /* Nothing will be overlapped */
    top: 0px;
    border-radius: 1rem; 
}
    

    
   
.SecondNav img {
    width: 60px; /* Force this width to be applied */
    height:auto; /* Maintain aspect ratio */
}

.SecondNav .items ul {
    display: flex;
    gap: 1rem;
   
}

.SecondNav .items ul li {
    list-style: none;
    
}

.SecondNav .items ul li a {
    display: inline-block; /* Allows padding and border to be added around text */
    padding: 8px 18px; /* Adds padding inside the box */
    text-decoration: none;
    color: rgb(1, 1, 14); /* Text color */
    font-size: 20px; /* Font size */
    font-weight: 600;
    transition: all 0.3s ease; /* Smooth transition */
    border: 2px solid transparent; /* Initially transparent border */
    border-radius: 8px; /* Rounds the corners */
}

.SecondNav .items ul li a.active, 
.SecondNav .items ul li a:hover {
    color: rgb(33, 34, 28); /* Hover text color */
    background-color: rgba(68, 0, 255, 0.1); /* Light background color on hover */
    border: 2px solid rgb(66, 59, 129); /* Border on hover */
}


/* Home */


#Section01 {
    background-image: url("Images/gyu.jpeg");
    width: 100%;
    height: 100vh;
    background-size: cover; /* 4 to 1 image */
    background-position: top;
    display: flex; /* h2 and p will be in one row */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

#Section01  h1{
    font-family: 'Playfair Display', serif; /* Applies the new font */
    font-size: 4em; /* Makes the text larger */
    color: #ffffff; /* Keeps the text white */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Adds a soft shadow for depth */
    letter-spacing: 2px; /* Adds space between letters */
    margin-top: 55px;
    padding: 0;
    animation: fadeIn 2s ease-out; /* Adds a fade-in animation */
}


/* Adding a small animation for the text */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}



#Section01 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 20px 50px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}

#Section01 a.blue{
    color: white;
    background: rgb(5, 116, 73);
    transition: 0.3s ease;
}

#Section01 a.blue:hover{
    color:rgb(72, 18, 158) ;
    background: rgb(136, 136, 3);
}

/* Cards */

/* Container for the cards */
.cards-container {
    display: flex;            /* Arrange cards in a row */
    gap: 20px;                /* Space between each card */
    justify-content: center;  /* Center the cards */
    flex-wrap: wrap;          /* Wrap to new lines if needed */
    padding: 20px;
    
}

/* Individual card styling */
.card {
    width: 300px;                         /* Fixed width for each card */
    border-radius: 1rem;                   /* Rounds the corners */
    overflow: hidden;                     /* Ensures rounded image corners */
    transition: transform 0.3s ease;  
    box-shadow: 0 4px 8px rgba(5, 14, 133, 0.2);
    background: linear-gradient(135deg, rgb(199, 196, 25), #1e2503);
}

/* Card hover effect */
.card:hover {
    transform: translateY(-10px);         /* Moves the card up on hover */
}

/* Image styling */
.card img {
    width: 100%;                          /* Full width of card */
    height: 200px;                        /* Fixed height for images */
    object-fit: cover;                    /* Crops the image if too large */
}

/* Content area inside card */
.card-content {
    padding: 15px;
    text-align: center;
}

/* Title inside card */
.card-content h3 {
    font-size: 1.5em;
    color: #fff9f9;
    margin: 10px 0;
}

/* Description text inside card */
.card-content p {
    font-size: 1em;
    color: #aaa0a0;
    margin-bottom: 15px;
}

/* Button styling */
.card-content button {
    background-color: #4CAF50;            /* Green button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.card-content button:hover {
    background-color: #45a049;            /* Darker green on hover */
}

#Head1{
    text-align: center;
    font-size: 60px;
}
/*Features*/


.marquee {
    background-color: #e0e0e0;
    padding: 10px;
    font-size: 16px;
    font-weight: bold; 
    color: #071274; 
    font-size: 1.2rem;
}



/*  Registration */

#Section04 {
    background-image: linear-gradient(rgba(9,5,54,0.3), rgba(5,4,46,0.7)),url("Images/plane-desktop-yms31u8wyuke7ari.jpg");
    width: 100%;
    height: 150vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row; /* as default it is in row */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    gap:5rem; 
    margin-top: 40px; /* Adjust the gab between card and time */
}

#Section04  .reminder {
    color: white;
    margin-left: 180px;
    margin-bottom: 40%;
}

#Section04  .reminder .time {
    display: flex;
    margin-top: -1px;
}

#Section04  .reminder .time .date {
    text-align: center;
    padding: 13px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgab(31, 38, 135, 0.37);
    border-radius: 5px;
    margin: 0 5px 10px 5px;
    border: 1px solid rgb(255, 255, 255);
    font-size: 1.1rem;
    font-weight: 600;
    
}

/* Form Container */
.form-container {
    max-width: 500px;
    margin: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

/* Form Heading */
.form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
}

/* Form Elements */
.form-container label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    color: #555;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container input[type="date"],
.form-container input[type="number"],
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container input[type="tel"]:focus,
.form-container input[type="date"]:focus,
.form-container input[type="number"]:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
    outline: none;
}

/* Textarea Styling */
.form-container textarea {
    resize: vertical;
    height: 80px;
}

/* Submit Button */
.form-container button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.form-container button[type="submit"]:hover {
    background-color: #45a049;
}

/* Footer */

footer {
    padding: 6vw;
    background-color: #002753;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

footer .footer-col {
    padding-bottom: 40px;
    
}

footer h3 {
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li{
    list-style: none;
    color: gray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 00.3s ease;
}


footer li:hover{
    color: white;
}

.Copyright {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 10px; /* Adjust this value to control how far down it goes */
    color: white;
}


.prolinks i {
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

footer .Subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: rgb(91, 91, 201);
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 40px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.yellow{
    color: rgb(0, 0, 0);
    background: rgb(177, 177, 40);
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(255, 94, 0);
    background: white;
}

.footer-col p{
    color:gray;
}

.subscribe input::placeholder {
    color: rgb(229, 229, 243);
    font-weight: 500;
    font-size: 0.9rem;
}


/* Footer */

footer {
    padding: 6vw;
    background-color: rgb(39, 57, 59);
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
}

footer .footer-col {
    padding-bottom: 40px;
    
}

footer h3 {
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

footer li, .Anchor{
    list-style: none;
    color: gray;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 00.3s ease;
    text-decoration: none;
}


footer li:hover , .Anchor:hover {
    color: white;
}

.Copyright {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 10px; /* Adjust this value to control how far down it goes */
    color: white;
}


.prolinks i {
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

footer .Subscribe {
    margin-top: 20px;
}

footer input {
    width: 220px;
    padding: 15px 12px;
    background: rgb(91, 91, 201);
    border: none;
    outline: none;
    color: white;
}

footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 40px;
    background-color:white;
    font-weight: 600;
    border-radius: 5px;
}


footer .subscribe a.yellow{
    color: rgb(0, 0, 0);
    background: rgb(177, 177, 40);
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(255, 94, 0);
    background: white;
}

.footer-col p{
    color:gray;
}


.subscribe input::placeholder {
    color: rgb(229, 229, 243);
    font-weight: 500;
    font-size: 0.9rem;
}
