@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

/* Headings */
h1 {
  font-size: 2.5rem; /* Fixed typo here */
  font-weight: 700;
  color: rgb(35, 35, 85);
}

h2 {
  color: #f1eeee;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  color: #a0e7ff;
  margin-top: 1.2rem;
}

h6 {
  font-size: 1.1rem;
  color: rgb(24, 24, 49);
}

span {
  font-size: 0.9rem;
  color: #757373;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 8vw;
  box-shadow: 2px 2px 10px rgba(250, 244, 244, 0.15);
  z-index: 1000;
}

.logo {
    width: 200%;
    height: auto;
  }

nav img {
  width: 150px;  /* Increased from 100px to 200px */
  height: auto;  /* Maintain aspect ratio */
  cursor: pointer;
}

nav .navigation {
  display: flex;
}

nav .navigation ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

nav .navigation ul li {
  margin-left: 30px;
}

nav .navigation ul li a {
  text-decoration: none;
  color: rgb(21, 21, 100);
  font-weight: 500;
  transition: 0.3s ease;
  padding: 10px 15px;
  border-radius: 5px;
}

nav .navigation ul li a.active,
nav .navigation ul li a:hover {
  color: #FDC93B;
  background-color: rgba(253, 201, 59, 0.15);
}

/* Responsive Navigation (menu button styles placeholders) */
#menu-btn,
#menu-close {
  display: none;
}

/* Return to Main Menu Button */
.return-button {
  position: fixed;
  top: 80px;
  left: 20px;
  background: #FDC93B;
  color: rgb(21, 21, 100);
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 999;
  display: inline-block;
  border: 2px solid rgb(21, 21, 100);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.return-button:hover {
  background: rgb(21, 21, 100);
  color: #FDC93B;
  transform: translateY(-3px);
}

/* Home Button */
.home-btn {
  background-color: #FDC93B;
  color: rgb(21, 21, 100);
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid rgb(21, 21, 100);
}

.home-btn:hover {
  background-color: rgb(21, 21, 100);
  color: #FDC93B;
  transform: scale(1.05);
}

/* Home Section */
#home {
  background: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("smit.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  color: #fff;
}

#home h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

#home p {
  width: 50%;
  font-size: 0.9rem;
  line-height: 25px;
  margin-top: 20px;
}

#home .btn {
  margin-top: 30px;
}

#home a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  font-weight: 600;
  border-radius: 5px;
  margin: 10px;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#home a.blue {
  background: rgb(21, 21, 100);
  color: #fff;
}

#home a.blue:hover {
  background: #fff;
  color: rgb(21, 21, 100);
}

#home a.yellow {
  background: #FDC93B;
  color: #fff;
}

#home a.yellow:hover {
  background: #fff;
  color: #FDC93B;
}

/* Features Section */
#features {
  padding: 5vw 8vw;
  text-align: center;
}

.fea-base {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 50px;
}

.fea-box {
  background: #f9f9ff;
  text-align: start;
  padding: 20px;
  border-radius: 8px;
}

.fea-box i {
  font-size: 2.3rem;
  color: rgb(44, 44, 80);
}

.fea-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 13px 0 7px 0;
  color: rgb(46, 46, 59);
}

.fea-box p {
  font-size: 1rem;
  color: rgb(70, 70, 87);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}


/* Experts Section */
#experts {
  background: #f4f6f8;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.experts-container h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #f9f9f9;
  margin-bottom: 30px;
}

.expert-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.expert-scroll::-webkit-scrollbar {
  height: 8px;
}

.expert-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 20px;
}

.profile {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.profile:hover {
  transform: translateY(-5px);
}

.profile img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #2e2c2c;
}

.profile h6 {
  font-size: 1.1rem;
  margin: 8px 0 4px;
  color: #2c3e50;
}

.profile p {
  font-size: 0.9rem;
  color: #777;
}

.pro-links a {
  margin: 0 5px;
  color: #0077b6;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.pro-links a:hover {
  color: #023e8a;
}

/* Contact Section */
#contact {
  position: relative;
  padding: 60px 20px;
  background: url('your-background-image.jpg') no-repeat center center/cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
}

.contact-left, .contact-right {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f9f9f9;
  color: #222;
  border-radius: 10px;
}

.contact-left {
  background: url('mo.jpg') no-repeat center center/cover;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(252, 245, 245, 0.7);
}

.contact-left p,
.contact-left h2,
.contact-left a {
  color: white;
}

.contact-left h2, .contact-right h2 {
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1em;
  margin: 5px 0;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #023e8a;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

form button {
  background: #0077b6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #023e8a;
}

/* Map Section */
#map iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Footer */
footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Courses Section */
#course {
  padding: 8vw;
  text-align: center;
}

.course-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course-item {
  width: 220px;
}

.course-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.details {
  text-align: center;
  margin-top: 8
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.top-images {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.img-small {
  width: 100px;
  height: auto;
}

.img-medium {
  width: 150px;
  height: auto;
}

.main-image {
  text-align: center;
  margin-bottom: 30px;
}

.img-large {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.text-section h1 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.highlight {
  color: #007bff;
  font-weight: bold;
}

.text-section p {
  font-size: 16px;
  margin: 10px 0;
}

.course-boxes {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.course {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  background-color: #f9f9f9;
}

.course-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.course h3 {
  margin: 10px 0;
}

.course h3.blue {
  color: #007bff;
}


/* Basic Reset and Typography */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #005792;
}
.event {
    margin-bottom: 40px;
}



.event-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.event-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.event-description p {
    font-size: 1rem;
    color: #444;
}

.subject-list,
.job-list {
    list-style-type: disc;
    padding-left: 20px;
}

.subject-list li,
.job-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}


/* Container for multiple event images */
.event-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

/* Style for each event image */
.event-image {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .event-image {
        width: 100%;
        height: auto;
    }
}


