/* General styling */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f7f7f7;
}

html {
    scroll-behavior: smooth;
}
.slide .content h4 {
    margin-bottom: -20px; /* Adjust this value to reduce spacing */
    font-size: 1.8em; /* Ensure this is the right size */
	Color: white;
}


/* Landing page style */
.landing-page {
    height: 56.5vh;
    position: relative;
    overflow: hidden;
    
}

.landing-page .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
}

.slides {
    height: 60%;
}

.slide {
    min-width: 100%;
    height: 63vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: none;
	background-color: #00a8f2;
}

.slide.active {
    opacity: 1;
    display: flex;
}

/* General styles for the 'About Us' section */
.modern-about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

/* Updated Advert Section Style */

.advert-page {
    height: 33vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #666566 100%); /* Gradient for modern look */
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px; /* Add space below the section */
}

.advert-page h1, .advert-page h5 {
    color: #333;
    line-height: 1.5;
    padding: 0 20px; /* Responsive padding */
}

.advert-page h1 {
    font-family: 'Roboto', sans-serif; /* Complementary sans-serif font for author's name */
    font-size: 2.5em;
    color: #1a1a1a; /* Dark color for contrast */
    font-weight: 700;
    margin-bottom: 20px; /* Space between quote and author */
    position: relative;
}
.advert-page h1::before, .advert-page h1::after {
    content: '"';
    font-size: 2em;
    color: #0077ff; /* Accent color for the quotes */
    position: absolute;
}

.advert-page h1::before {
    left: -0.2em;
    top: -0.4em;
}
.advert-page h1::after {
    right: -0.2em;
    bottom: -0.4em;
}

.advert-page h5 {
    font-family: 'Roboto', sans-serif; /* Complementary sans-serif font for author's name */
    font-size: 1.5em;
    font-weight: 500;
    font-style: italic; /* Italic for the author's name */
    color: #4a4a4a; /* Slightly darker color */
}
.about-header {
  font-size: 2.5em;
  color: #0077ff;
  text-align: center;
  font-weight: 600;
}

.about-intro {
  font-size: 1.2em;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: center;
}

.section-header {
  color: #333;
  font-size: 1.8em;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #00a8f2;
  padding-bottom: 8px;
}

.section-content {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.section-list {
  list-style: none;
  padding: 0;
}

.section-list li {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}
.section-list li::before {
  content: '•';
  color: #0077ff;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
}

.overview, .mission-objectives, .benefits, .promise {
  margin-bottom: 40px;
}

.overview-header, .mission-header, .benefits-header, .promise-header {
  color: #333333;
  font-size: 2em;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #00a8f2;
  padding-bottom: 8px;
}

.overview-text, .mission-text, .benefits-intro {
  font-size: 1.1em;
  color: #444444;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.objectives-list, .benefits-list, .promise-list {
  list-style: none;
  padding: 0;
}

.objectives-list li, .benefits-list li, .promise-list li {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}

.objectives-list li::before, .benefits-list li::before, .promise-list li::before {
  content: '•';
  color: #0077ff;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .about-header {
    font-size: 2em;
  }

  .about-intro, .overview-text, .mission-text, .benefits-intro {
    font-size: 1em;
  }

  .overview-header, .mission-header, .benefits-header, .promise-header {
    font-size: 1.6em;
  }

  .objectives-list li, .benefits-list li, .promise-list li {
    font-size: 1em;
  }
}




@media (max-width: 768px) {
    .content h1 {
        font-size: 2em;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    }

    .content p {
        font-size: 1.2em;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
   .course-block {
        flex: 0 0 100%; /* Full-width for smaller screens */
    }
}

.slide:nth-of-type(n) .content {
    /* Change n to the slide number for specific adjustments */
    color: #fff; /* Adjust as necessary */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); /* More shadow if needed */
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; 
}

/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-text {
    display: flex;
    align-items: center;
}

.separator {
    font-size: 1.65rem;
    color: #00a8f2;
    margin: 0 10px;
}

.academy-name {
    font-size: 1.2rem;
    color: #666566;
	
}

.logo {
    height: 90px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0077ff;
}


.content {
    text-align: center;
    z-index: 2;
    color: white;
    /*animation: fadeIn 2s; */
}

h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

button.prev, button.next {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    border-radius: 50%;
}

button.prev { left: 20px; }
button.next { right: 20px; }


.content-section {
    padding: 80px 20px; /* Align with other sections */
    background-color: #fff; /* Consistent background */
    color: #333; /* Consistent text color */
    margin: 40px 0; /* Similar spacing */
    border-radius: 8px; /* Consistent border radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Shadow */
}


.content-section h2, .content-section h3 {
    text-align: center; /* Center-align headings */
    color: #00a8f2; /* Brand color */
    margin-bottom: 30px; /* Consistent margin below headings */
}

/* General Styles for About Us Section */
.styled-about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.styled-about-section h2 {
  /*font-size: 2.5em;
  color: #00a8f2; /* Brand Color for Consistency */
 padding: 20px;
 
  /*text-align: center;
  font-weight: 600; */
} 

.styled-about-section p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: justify; /* Improve readability by justifying text */
}

.styled-about-section .container {
  text-align: center; /* Center-align all content in the container */
}










.content-section p, .content-section ul li {
    font-size: 1.1em; /* Consistent font size */
    line-height: 1.6; /* Line height for readability */
    text-align: justify; /* Justified alignment */
    color: #444; /* Text color consistency */
    margin-bottom: 20px; /* Space between paragraphs and list items */
}







/* Other Text Areas */
.other-text {
    color: #ffffff; /* Apply white color to other text areas as needed */
}

/* Paragraph Styling within Course Sections */
.course-category p {
    color: #ffffff; /* Ensure text is white for good contrast on dark backgrounds */
    margin-bottom: 20px; /* Additional space for readability */
    line-height: 1.6; /* Improved line spacing for readability */
}


section {
    scroll-margin-top: 5px;
}

/* Other Elements */
.content-section h2 {
    color: #00a8f2; /* Primary accent color for headings */
}


.content-section p {
    font-size: 1.1em;
    color: #666;
	text-align: left;
	line-height: 30px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 10px 20px;
    text-align: left;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #de8287;
}

.feature ul {
    padding-left: 20px;
    list-style: none;
}

.feature ul li {
    margin-bottom: 10px;
}

.features .feature ul {
    padding-left: 20px;
    list-style: disc;
    margin: 0;
}

.features .feature ul li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.other-certificates {
    background-color: #000006;
    padding: 20px; /* Adds some space inside the div */
    border-radius: 5px; /* Rounds the corners slightly */
    color: #ffffff; /* Sets the text color to white for better readability */
}

.other-certificates h2 {
    margin: 0; /* Removes the default margin */
    font-weight: normal; /* You can adjust the font weight if needed */
}

/* Course Category Section */
.course-category {
    background-color: #666566;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #c7e391; /* Use bright green for visibility */
}

.course-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Evenly distributes items in the row */
    margin-top: 15px; /* Space between heading and blocks */
}


.course-category h3 {
    color: #e8a170; /* Goldish color for heading */
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8a170;
    display: flex; /* To align the toggle symbol */
    justify-content: space-between; /* Spacing symbol to the right */
    align-items: center;
}


.course-category h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e8a170;
    text-align: center; /* Align the headings to the left */
    margin-top: 40px; /* Space between sections */
}

.course-block:nth-child(3n + 1) {
    margin-right: auto; /* Ensure the first element in every row starts at the left */
}


.course-block {
    background-color: #f7f9fc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    color: #333;
    flex: 0 0 30%; /* Each block takes up approximately a third of the row */
    box-sizing: border-box;
    text-align: center;
    min-width: 200px; /* Maintain minimum size */
}

.course-block:nth-child(odd) {
    margin-right: 10%; /* Space between blocks */
}




.course-categories {
    list-style-type: none; /* Remove list bullet points */
    padding: 0;
    margin: 0 0 20px 0; 
}

.course-categories li {
    font-size: 1em; /* Appropriate size for readability */
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.course-categories li::before {
    content: "- "; /* Custom bullet */
    position: absolute;
    left: 0;
}

.expandable-heading {
    cursor: pointer;
    user-select: none;
    color: #0077ff; 
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: left;
}

.toggle-symbol {
    font-weight: bold;
    font-size: 1em;
    margin-left: 10px;
}

/* Course Content */
.course-category .course-content {
    margin-top: 20px;
    padding-top: 20px;
    color: #ffffff; /* Ensure white text for high contrast on dark background */
    background-color: #E0E0E0; /* Use the same background for content to maintain contrast */
    border-radius: 5px;
    padding: 10px; /* Add padding for comfortable reading */
}

/* Tables within Course Sections */
.course-category table.courses-table {
    margin-top: 20px;
    background-color: #ffffff; 
    color: #333; 
}


.expandable-heading .toggle-symbol {
    color: #c7e391; /* Bright green for toggle visibility */
}


.courses-description {
    font-size: 1.1em;
}

.content-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #0077ff; /* Consistent heading color */
}



.courses-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.courses-table th, .courses-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 1em;
}

.courses-table th {
    background-color: #e8a170; /* Highlight headers with an accent color */
    color: #fff;
}

.courses-table td a {
    color: #00a8f2; /* Primary brand color for links */
}


.courses-table td a:hover {
    text-decoration: underline;
}


/* Buttons and Links */
button, a {
    color: #00a8f2; /* Primary Brand Color */
}

button:hover, a:hover {
    color: #de8287; /* Secondary accent color on hover */
}



.schedule-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-table th, .schedule-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 1em;
    background-color: #fff;
}

.schedule-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.schedule-table td a {
    color: #0077ff;
    text-decoration: none;
}

.schedule-table td a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.enrolment-collapse {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.enrolment-collapse h3 {
    font-size: 1.6em;
    cursor: pointer;
    margin: 0;
    color: #0077ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enrolment-details {
    padding: 10px 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.enrolment-details ul {
    list-style: none;
    padding-left: 0;
}

.enrolment-details ul li {
    padding-left: 20px;
    position: relative;
}

.enrolment-details ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #0077ff;
}


.more-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #00a8f2;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.more-button:hover {
  background-color: #005bb5;
}


.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #00a8f2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #005bb5;
}

/* Popup Styles */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Black background with opacity */
    z-index: 20; /* Ensure it appears above other content */
    text-align: left;
}

.popup-content {
    position: relative;
    margin: auto;
    padding: 30px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: white;
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.popup-content h3 {
	font-weight: bold;
	color: #00a8f2;
	text-align: Center;

}


.popup-image {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.popup-title {
    margin-top: 20px;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: black;
}

#bookingPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 20;
    text-align: left;
}

#bookingPopup .popup-content {
    position: relative;
    margin: auto;
    padding: 5px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #fefefe;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-51%);
    z-index: 21;
    text-align: left;
    box-sizing: border-box;
}

#bookingPopup .close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 25px;
	text-align: center;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}

#bookingPopup .close:hover {
    color: #000;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5px;
    /* font-weight: bold; */
    color: #000;
}

.booking-column input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
}


.booking-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

.booking-form input:focus {
    border-color: #0077ff;
    outline: none;
}

.booking-form button {
    width: 100%;
    padding: 5px;
    background-color: #00a8f2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
	
	align-self: flex-end; /* Align the submit button to the right */
    margin-top: 20px;
}

* Ensure all form elements have consistent spacing */
.booking-form input,
.booking-form textarea {
    background-color: #fafafa;
    transition: border-color 0.3s;
    width: 100%;
    margin-bottom: 10px;
}

.booking-form textarea {
    width: 96%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    resize: vertical;
}

/* Enhance button for hover state */
.booking-form button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}


/* Specific size styling for each group box to achieve the desired layout */
.course-info {
    flex: 1; /* Takes up more space */
}

.delegate-details {
    flex: 2; /* Takes up more space */
}

/* Group Box (Fieldset) styling */
.group-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.group-box-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: space-between; /* Align the children with space between */
}

.group-box legend {
    font-size: 1.1em;
    font-weight: bold;
    color: #e8a170;
    padding: 0 10px;
    margin-left: 10px;
}

/* Booking form styling adjustments */
.booking-form {
    display: flex;
    flex-direction: column;
}




/*.booking-form button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
} */


.booking-form button:hover {
    background-color: #005bb5;
}

.booking-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.booking-column {
    flex: 1;
}


.footer-modern {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    border-top: 5px solid #0077ff;
}

.footer-modern .container {
    max-width: 1200px;
    margin: 0 auto;
}



.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 1.6em; /* Bigger font size for "Training Academy" */
    color: #666566; /* Different color, goldish accent for visibility */
/*	color: #e0a800; /* Different color, goldish accent for visibility */
    font-weight: bold; /* Make the text bold */
    margin-bottom: 1px;
}

.footer-subtext {
    font-size: 1.2em; /* Standard font size for additional description text */
    color: #666566; /* Lighter color for differentiation */
}


.footer-section h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #666566;
}

.footer-links,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
	font-size: 1.1em;
}


.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: center; /* Center align the icons under the heading */
    gap: 15px;
    padding: 0;
    margin: 0;
}



.footer-social a {
    color: #4CAF50; /* Green color for icons */
    font-size: 1.8em; /* Larger size for emphasis */
    transition: color 0.3s ease;
}


.footer-social a:hover {
    color: #81C784; /* Slightly lighter green on hover for effect */
}

.footer-bottom {
    padding-top: 20px;
    font-size: 1.1em;
    color: #ccc;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom a {
    color: #0077ff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #00a8f2;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-section ul li a:hover {
    color: #fff;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
    margin-top: 40px;
    border-top: 4px solid #0077ff;
}

.return-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00a8f2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    z-index: 5;
}

.return-home:hover {
    background-color: #005bb5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.content h1 {
    font-size: 3.45em; /* Increased by 15% */
    margin-bottom: 0.2em;
    color: #f44336; /* Default color for headings */
    /*animation: slideIn 1.5s ease-out; */
}

.content p {
    font-size: 1.88em; /* Increased by 15% */
    color: #fff; /* Default paragraph color */
    /* animation: fadeIn 1.5s ease-out 0.5s;
}

.slide:first-of-type .content p {
    color: #FFEB3B; /* Different color for paragraph */
    /* animation: slideFromBottom 1.5s ease-out 1s; /* Further delay for sequential flow */
}


@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes slideFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.contact-info {
    text-align: left;
    margin-bottom: 30px;
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.map-view {
    margin-top: 40px;
}

.map-view h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #0077ff;
}

.map-view iframe {
    width: 100%;
}


/* Mobile-specific styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the toggle button on small screens */
        background: none;
        border: none;
        color: #333;
        font-size: 2em; /* Icon size */
        cursor: pointer;
    }

    nav ul {
        display: none; /* Hide the menu by default */
        flex-direction: column; /* Stack menu items vertically */
        align-items: flex-start; /* Align items to the left */
        background-color: #ffffff; /* Background color for the dropdown */
        position: absolute;
        top: 100%; /* Position below the navbar */
        left: 0;
        right: 0; /* Full-width menu */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex; /* Show the menu when active */
    }

    .nav-list li {
        width: 100%;
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-list li a {
        font-size: 18px;
        width: 100%;
        display: block;
        padding: 10px 0;
    }
}

/* Ensure the toggle button is only displayed on smaller screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Hide menu toggle button on larger screens */
    }

    nav {
        display: block;
    }
}


@media (max-width: 768px) {
    .landing-page {
        height: 70vh; /* Slightly larger height for visibility on smaller screens */
        margin-top: 50px; /* Adjusted margin for mobile */
    }

    .slides {
        height: 100%; /* Full height for slides on smaller screens */
    }

    .slide .content {
        padding: 20px; /* Reduce padding on smaller screens */
        text-align: center;
    }

    .slide .content h1 {
        font-size: 2em; /* Smaller font size for headings on mobile */
        margin-bottom: 1em; /* Consistent margin */
    }

    .slide .content p {
        font-size: 1.2em; /* Smaller font size for text */
        margin: 0; /* Consistent margin */
    }
    .slide {
        justify-content: center; /* Center content on smaller screens */
    }
}

@media (max-width: 480px) {
    .slides {
        flex-direction: column; /* Stack slides vertically for smaller devices */
    }

    .slide .content h1 {
        font-size: 1.8em; /* Further adjust font size for very small screens */
    }

    .slide .content p {
        font-size: 1em; /* Further reduction of font size */
    }
}