/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Header */
header {
  background-color: #FFFFFF;
  color: #110101;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: 1000;
}

header img.header-logo {
  width: 100px;
  border-radius: 50%;
}


header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

header nav ul li a {
  text-decoration: none;
  color: #0e0101;
  padding: 5px 10px;
}

header nav ul li a:hover {
  background-color: #ff69b4;
  border-radius: 5px;
}

/* General Navigation Styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  position: relative;
  padding: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
}

nav ul li a:hover {
  color: #18030d;
}

/* Ensure navigation is scrollable on small screens */
nav {
  overflow-x: auto;
  white-space: nowrap;
  overflow: visible !important;
}

/* Allow items to wrap instead of being cut off */
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/* Improve mobile view */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
  }

  nav ul li {
    width: 100%; /* Full width for each item */
    text-align: center;
  }
}


/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 9999; /* Very high to ensure it displays over everything */
  min-width: 180px;
}

.dropdown-menu li {
  padding: 10px 20px;
  white-space: nowrap;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown-menu li a:hover {
  color: #0f0e0f;
}

.dropdown-menu {
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}





/* Hero Section */
#hero {
  position: relative;
  background-image: url("IMG_1100.JPG"); /* Use your image */
  background-size: cover;
  background-position: center;
  height: 500px;
  color: white;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: adds contrast */
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #fff;
}

.hero-content p {
  margin-bottom: 20px;
  color: #fff;
}

.hero-content .button {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin: 5px;
  display: inline-block;
}

.hero-content .button.whatsapp {
  background-color: #25d366;
}

.hero-content .button.email {
  background-color: #0072c6;
}

.hero-content .button:hover {
  opacity: 0.8;
}

/* Motto        */

#flexible-support {
    background: linear-gradient(to right, #ffe4ec, #fff);
    padding: 60px 20px;
    text-align: center;
    border-top: 2px solid #f0c6d1;
    border-bottom: 2px solid #f0c6d1;
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

#flexible-support h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #cc2b5e; /* Hot pink/red for visibility */
}

#flexible-support p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

#flexible-support strong {
    color: #000;
}

.book-button {
    display: inline-block;
    background-color: #cc2b5e;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.book-button:hover {
    background-color: #a02045;
}











/* Founder's Profile */
#founder-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f0f0f0;
}

#founder-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-container {
  text-align: center;
  max-width: fit-content;
}

.profile-description h2 {
  font-size: 1.8em;
  color: #ff69b4;
  margin-bottom: 10px;
}

.profile-description p {
  font-size: 1em;
  color: #555;
}

/* Job Seekers Page */
.job-seekers {
  padding: 20px;
}

.candidate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.candidate-card {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 250px;
  text-align: center;
  background-color: #f9f9f9;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* About Section */
#about {
  padding: 20px;
  background-color: #f0f0f0;
  margin-top: 20px;
}

#about h2, #about h3 {
  color: #333;
}

#about p {
  line-height: 1.6;
}

.hidden {
  display: none;
}


/* Services */
#services {
  padding: 40px 20px;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  text-decoration: none !important;
}

.service img {
  max-width: 100%;
  height: 60%;
  margin-bottom: 15px;
}

.service h3 {
  margin-bottom: 10px;
  color: #ff69b4;
}

.service a:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
  color: #ff69b4; /* Changes text color to pink on hover */
}

/* Opportunities */
#opportunities .content-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  background-color: #f9f9f9;
  padding: 40px;
}

#opportunities h2 {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Page-Specific Styles */

/* Web Development Page */
#web-development .service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

#web-development .service img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Au Pair Training Page */
#au-pair-training .container {
  background-color: #f3f3f3;
}

#au-pair-training h2 {
  text-align: center;
  color: #444;
}

#au-pair-training ul {
  margin-top: 10px;
}

#au-pair-training .service {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Elderly Care Page */
#elderly-care .container {
  background-color: #f9f9f9;
}

#elderly-care h2 {
  color: #555;
}

#elderly-care ul {
  margin-top: 15px;
}

#elderly-care .service {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Introduction to Computers Page */
#introduction-to-computers .container {
  background-color: #f7f7f7;
}

#introduction-to-computers h2 {
  color: #222;
}

#introduction-to-computers ul {
  margin-top: 15px;

}

#introduction-to-computers .service {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Miscellaneous */
ul li {
  font-size: 16px;
  color: #444;
}

ul li:hover {
  color: #ff69b4;
}

.image {
  display: inline-block;
}

/* Courses Offered Section */
#courses {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#courses h2 {
  font-size: 2em;
  color: #ff69b4;
  margin-bottom: 20px;
}

#courses p {
  font-size: 1em;
  color: #555;
  margin-bottom: 30px;
}

.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course h3 {
  font-size: 1.5em;
  color: #ff69b4;
  margin-bottom: 10px;
}

.course p {
  font-size: 0.9em;
  color: #444;
  margin-bottom: 15px;
}

.course .button {
  padding: 10px 20px;
  background-color: #ff69b4;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.course .button:hover {
  opacity: 0.8;
}

/* Pricing Details */
#courses .pricing {
  margin-top: 20px;
  list-style: none;
}

#courses .pricing li {
  font-size: 1em;
  color: #444;
  margin-bottom: 10px;
}









.accreditation-logos {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.accreditation-logos img {
  height: 60px; /* Adjust height */
  width: auto;  /* Maintains aspect ratio */
}

.departments {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.department {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  width: 200px;
  border-radius: 8px;
}
.department img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}
.course-list {
  margin: 10px auto;
  padding: 10px;
  max-width: 400px;
  background: #f7f7f7;
  border-radius: 6px;
}
.course-item {
  padding: 5px;
  background: #fff;
  margin-bottom: 5px;
  border-radius: 4px;
  cursor: pointer;
}
.modal {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal.show {
  display: flex;
}
.modal-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  padding: 30px;
  z-index: 2;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.hidden {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #000;
}




#photo-gallery {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
}

.gallery-wrapper {
    overflow: hidden;
    position: relative;
    height: 280px;
}

.gallery-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.gallery-row img {
    width: 30%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}






#gallery-bulletin {
    overflow: hidden;
    width: 100%;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin-top: 20px;
    height: 50px;
    background-color: #ff69b4;
    position: relative;
}

#ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 100s linear infinite;
}

.bulletin-message {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    margin-right: 80px; /* Space between messages */
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}









#testimonials {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.testimonial-videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

video {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

