* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* Header */
.top-header {
  width: 100%;
  min-height: 155px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 55px;
}

.logo img {
  width: 230px;
  max-width: 100%;
}

.title {
  text-align: center;
}

.title h1 {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 4px;
}

.title p {
  font-size: 25px;
  font-weight: 600;
  margin-top: 8px;
}

.sebi {
  display: flex;
  align-items: center;
  gap: 18px;
}

.accessibility {
  width: 75px;
  height: 75px;
  background: #0757ff;
  border: 4px solid #74a4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  flex-shrink: 0;
}

.sebi h3 {
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

/* Navbar */
.navbar {
  width: 100%;
  min-height: 70px;
  background: #f7f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.navbar ul li {
  position: relative;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 21px;
  letter-spacing: 1px;
  display: block;
  padding: 22px 0;
}

.navbar a:hover {
  color: #0b57ff;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 68px;
  left: 0;
  width: 230px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
  z-index: 999;
}

.dropdown-menu li a {
  padding: 18px 22px;
  font-size: 18px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

.menu-toggle {
  display: none;
}

/* About Section */
.about-section {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 95px 45px;
}

.about-section h2 {
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 45px;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.about-img {
  width: 30%;
}

.about-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.about-text {
  width: 70%;
}

.about-text p {
  font-size: 19px;
  line-height: 1.65;
  font-weight: 700;
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1200px) {
  .top-header {
    padding: 20px 30px;
  }

  .logo img {
    width: 190px;
  }

  .title h1 {
    font-size: 48px;
  }

  .title p {
    font-size: 21px;
  }

  .sebi h3 {
    font-size: 17px;
  }

  .about-section {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 900px) {
  .top-header {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .sebi {
    justify-content: center;
  }

  .about-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-img,
  .about-text {
    width: 100%;
  }

  .about-img img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    font-size: 32px;
    cursor: pointer;
    color: #000;
    padding: 12px 0;
  }

  .navbar ul {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #f7f7fb;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 20px;
    z-index: 9999;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    width: 100%;
    text-align: left;
  }

  .navbar a {
    padding: 13px 0;
    font-size: 17px;
  }

  .dropdown-menu {
    position: static !important;
    width: 100%;
    box-shadow: none;
    background: #fff;
    padding-left: 15px;
    display: none !important;
  }

  .dropdown:hover .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li a {
    padding: 12px 15px;
    font-size: 16px;
  }

  .about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .top-header {
    padding: 20px 15px;
  }

  .logo img {
    width: 160px;
  }

  .title h1 {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .title p {
    font-size: 16px;
  }

  .sebi {
    flex-direction: column;
    gap: 10px;
  }

  .accessibility {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .sebi h3 {
    font-size: 15px;
    white-space: normal;
  }

  .about-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-section h2 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 15px;
  }
}
.about-extra-section {
  width: 100%;
  background: #fff;
}

.about-extra-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 10px 95px 45px;
}

.top-text p,
.philosophy-text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 26px;
}

.about-extra-container h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 25px 0 35px;
}

.philosophy-content {
  display: flex;
  align-items: flex-start;
  gap: 55px;
}

.philosophy-text {
  width: 65%;
}

.philosophy-img {
  width: 35%;
}

.philosophy-img img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 1200px) {
  .about-extra-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .philosophy-content {
    gap: 35px;
  }

  .top-text p,
  .philosophy-text p {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .about-extra-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .philosophy-content {
    flex-direction: column;
  }

  .philosophy-text,
  .philosophy-img {
    width: 100%;
  }

  .philosophy-img img {
    height: auto;
  }

  .about-extra-container h2 {
    font-size: 36px;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .about-extra-container {
    padding: 10px 15px 35px;
  }

  .top-text p,
  .philosophy-text p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .about-extra-container h2 {
    font-size: 31px;
    margin: 20px 0 25px;
  }
}
.management-section {
  width: 100%;
  background: #fff;
}

.management-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 25px 95px 45px;
}

.management-container h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 38px;
}

.management-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.management-profile {
  width: 32%;
  text-align: center;
}

.management-profile img {
  width: 100%;
  max-width: 390px;
  height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
}

.management-profile h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.management-profile h4,
.management-profile p {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 18px;
}

.management-text {
  width: 68%;
  padding-top: 25px;
}

.management-text p {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 55px;
}

/* Tablet */
@media (max-width: 1200px) {
  .management-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .management-content {
    gap: 35px;
  }

  .management-container h2 {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .management-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .management-content {
    flex-direction: column;
  }

  .management-profile,
  .management-text {
    width: 100%;
  }

  .management-text {
    padding-top: 0;
  }

  .management-profile img {
    height: auto;
  }

  .management-text p {
    margin-bottom: 25px;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .management-container {
    padding: 20px 15px 35px;
  }

  .management-container h2 {
    font-size: 31px;
    margin-bottom: 25px;
  }

  .management-profile h3 {
    font-size: 21px;
  }

  .management-profile h4,
  .management-profile p {
    font-size: 16px;
  }

  .management-text p {
    font-size: 15px;
    line-height: 1.55;
  }
}