* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 0 40px;
  min-height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  border-bottom: 3px solid red;
}

/* LOGO */
.logo img {
  height: 95px;
  display: block;
}

/* MENU */
.menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.menu li {
  position: relative;
}

.menu a {
  color: #000;
  text-decoration: none;
  padding: 20px 15px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: red;
}

/* ARROW */
.arrow {
  font-size: 12px;
  color: red;
  margin-left: 5px;
  position: relative;
  top: -1px;
}

/* DROPDOWN */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 290px;
  padding: 10px 0;
  border: 3px solid red;
  border-radius: 8px;
  z-index: 1000;
  box-shadow: 0 8px 18px rgba(219, 25, 25, 0.25);
}

.submenu li a {
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.submenu li a:hover {
  background-color: #fff5f5;
  color: red;
}

.dropdown:hover .submenu {
  display: block;
}

.dropdown-right .submenu {
  left: auto;
  right: 0;
}

/* PARALLAX */
.parallax {
  height: 600px;
  background-image: url("../images/girl-in-college.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* RED BOX SECTION */
.container-redbox {
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px;
}

.redbox {
  background-color: #fff;
  min-height: 150px;
  width: 280px;
  border: 2px solid red;
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
}

.redbox h2 {
  text-align: center;
  width: 100%;
  color: white;
  padding: 12px;
  background-color: red;
}

.redbox a {
  display: inline-block;
  border: 3px solid black;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 15px;
  margin-top: 35px;
  margin-bottom: 10px;
  color: black;
  font-size: 23px;
  text-decoration: none;
  transition: all 0.5s ease;
}

.redbox a:hover {
  border-color: red;
  color: white;
  background-color: red;
}

/* WELCOME SECTION 1 */
.container-welcome1,
.container-welcome2 {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 30px;
  align-items: center;
}

.welcomebox1 {
  flex: 1.2;
  font-size: 34px;
  padding: 15px;
  line-height: 1.4;
}

.welcomebox2 {
  flex: 1;
  padding: 15px;
  text-align: justify;
}

.welcomebox2 h2 {
  color: red;
  padding-bottom: 14px;
}

.welcomebox2 p {
  font-size: 18px;
  padding: 15px 0;
  line-height: 1.7;
}

/* WELCOME SECTION 2 */
.welcomebox3 {
  flex: 1.4;
  min-height: 320px;
  background-image: url("../images/fs-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
}

.welcomebox4 {
  flex: 1;
  padding: 25px;
}

.welcomebox4 span {
  display: inline-block;
  margin-bottom: 15px;
  color: red;
  font-size: 28px;
  font-weight: 700;
}

.welcomebox4 ul {
  padding-left: 20px;
  
}

.welcomebox4 ul li {
  padding: 6px 0;
  line-height: 1;
  list-style-type: none;
  padding-left: 22px;
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.9;
  color: #6a7380;
}

.welcomebox4 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  background-color: red;
  border-radius: 50%;
}

.welcomebox4 li:hover {
  color: #333;
  transform: translateX(4px);
  transition: 0.3s ease;
}

/* FOOTER */
.footer {
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 30px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  text-decoration: none;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-icons a .fa-youtube {
  color: red;
}

.social-icons a .fa-whatsapp {
  color: #25D366;
}

.social-icons a .fa-instagram {
  color: #E0137A;
  /* color: radial-gradient(circle, rgba(80, 62, 62, 0.18) 0%, rgba(71, 172, 31, 0) 70%); */
  /* color: ; */
}
.social-icons a .fa-facebook-f{
    color: blue;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.info-slider-section {
  width: 100%;
  padding: 40px 30px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.info-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.info-card {
  width: 240px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.info-card-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.info-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.info-card-content {
  padding: 12px 10px 14px;
}

.info-card-content h3 {
  color: red;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-card-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: white;
  color: red;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: red;
  color: white;
}

@media (max-width: 768px) {
  .info-slider-section {
    padding: 25px 16px;
    gap: 10px;
  }

  .info-slider-track {
    gap: 18px;
  }

  .info-card {
    width: 200px;
  }

  .info-card-image {
    height: 170px;
  }

  .info-card-content h3 {
    font-size: 15px;
  }

  .info-card-content p {
    font-size: 14px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}


.president-section {
  width: 100%;
  padding: 50px 30px;
  background-color: fff;
}

.president-intro {
  max-width: 760px;
  margin-bottom: 35px;
}

.president-intro h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #111;
}

.president-image {
  width: 100%;
  margin-bottom: 35px;
  
}

.president-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.president-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.president-text {
  flex: 1;
}

.president-text h3 {
  font-size: 26px;
  font-weight: 500;
  color: #111;
  margin-bottom: 12px;
}

.president-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  text-align: justify;
}

.president-signature {
  min-width: 220px;
  text-align: left;
  align-self: flex-end;
}

.president-signature p {
  font-size: 18px;
  color: red;
  margin-bottom: 6px;
}

.president-signature span {
  font-size: 16px;
  color: red;
}

.latest-section {
  display: flex;
  gap: 40px;
  padding: 50px 30px;
  background: #f3f3f3;
}

.latest-column {
  flex: 1;
}

.latest-title {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  margin-bottom: 20px;
}

.latest-content {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.latest-image {
  width: 250px;
  flex-shrink: 0;
}

.latest-image img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  display: block;
}

.latest-list-slider {
  height: 264px;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.latest-list-track {
  display: flex;
  flex-direction: column;
  animation: latestVerticalScroll 14s linear infinite;
}

.latest-list-slider:hover .latest-list-track {
  animation-play-state: paused;
}

.latest-item {
  padding: 0 0 18px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid #222;
}

.latest-item h4 {
  font-size: 18px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
  margin-bottom: 10px;
}

.latest-item span {
  font-size: 14px;
  color: #b8b8b8;
}

@keyframes latestVerticalScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}


/* Tablet */
@media (max-width: 1200px) {
  .latest-section {
    flex-direction: column;
    gap: 50px;
  }

  .latest-content {
    flex-direction: row;
  }

  .latest-image {
    width: 220px;
  }

  .latest-image img,
  .latest-list-slider {
    height: 240px;
  }


  .parallax {
    height: 500px;
    background-attachment: scroll;
    background-position: center center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .latest-section {
    padding: 35px 16px;
  }

  .latest-title {
    font-size: 24px;
  }

  .latest-content {
    flex-direction: column;
  }

  .latest-image {
    width: 100%;
  }

  .latest-image img {
    height: 240px;
  }

  .latest-list-slider {
    height: 230px;
    width: 100%;
  }

  .latest-item h4 {
    font-size: 16px;
  }

  .latest-item span {
    font-size: 13px;
  }


  .parallax {
    height: 320px;
    background-attachment: scroll;
    background-position: center top;
  }
}


/*  Tablet  President by fari
@media (max-width: 1200px) {
  .president-intro h2 {
    font-size: 28px;
  }

  .president-content {
    flex-direction: column;
  }

  .president-signature {
    align-self: flex-start;
    min-width: auto;
  }
}

 
@media (max-width: 900px) {
  .president-section {
    padding: 35px 16px;
  }

  .president-intro h2 {
    font-size: 24px;
  }

  .president-text h3 {
    font-size: 22px;
  }

  .president-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .president-signature p,
  .president-signature span {
    font-size: 15px;
  }
}
 */


/* TABLET */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 20px ;
    min-height: 100px;
    
  }

  .logo img {
    height: 75px;
  }

  .menu a {
    font-size: 14px;
    padding: 16px 10px;
  }

  .submenu {
    min-width: 240px;
  }

  .container-welcome1,
  .container-welcome2 {
    flex-direction: column;
  }

  .welcomebox1,
  .welcomebox2,
  .welcomebox3,
  .welcomebox4 {
    width: 100%;
  }

  .welcomebox3 {
    min-height: 260px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .logo {
    margin-bottom: 10px;
  }

  .logo img {
    height: 70px;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    width: 100%;
    padding: 14px 10px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    white-space: normal;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 100%;
    border: 2px solid red;
    border-radius: 6px;
    box-shadow: none;
    margin-top: 4px;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .dropdown-right .submenu {
    right: auto;
    left: 0;
  }

  .parallax {
    height: 320px;
    background-attachment: scroll;
  }

  .welcomebox1 {
    font-size: 28px;
  }

  .welcomebox2 p {
    font-size: 16px;
  }

  .welcomebox4 span {
    font-size: 24px;
  }

  .social-icons {
    gap: 20px;
  }
}
/* ===== Professional Global Fixes ===== */

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 120px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.active-link {
  color: red !important;
}

/* ===== Hamburger Button ===== */

.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: red;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Desktop Navbar Improvement ===== */

.navbar {
  min-height: 120px;
}

.submenu {
  max-width: 360px;
}

.submenu a {
  white-space: normal;
}

/* ===== Tablet ===== */

@media (max-width: 1200px) {
  body {
    padding-top: 100px;
  }

  .navbar {
    min-height: 100px;
    padding: 0 20px;
  }

  .logo img {
    height: 72px;
  }

  .menu a {
    font-size: 13px;
    padding: 15px 8px;
  }

  .submenu {
    min-width: 230px;
  }
}

/* ===== Mobile Menu ===== */

@media (max-width: 900px) {
  body {
    padding-top: 86px;
  }

  .navbar {
    min-height: 86px;
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo img {
    height: 62px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .menu {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    flex-direction: column;
    background: #fff;
    border-bottom: 3px solid red;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    margin-left: 0;
    z-index: 3000;
  }

  .menu.menu-open {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    white-space: normal;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: #fff7f7;
  }

  .dropdown:hover .submenu {
    display: none;
  }

  .dropdown.active .submenu {
    display: block;
  }

  .submenu li a {
    padding-left: 36px;
    font-size: 14px;
  }

  .dropdown-right .submenu {
    left: auto;
    right: auto;
  }
}

/* ===== Home Page Responsive Polish ===== */

@media (max-width: 900px) {
  .parallax {
    height: 300px;
    background-attachment: scroll;
  }

  .container-redbox {
    padding: 25px 16px;
  }

  .redbox {
    width: 100%;
    max-width: 360px;
  }

  .container-welcome1,
  .container-welcome2 {
    padding: 25px 16px;
    gap: 20px;
  }

  .welcomebox1 {
    font-size: 26px;
  }

  .welcomebox2 p {
    font-size: 16px;
    text-align: left;
  }

  .welcomebox3 {
    min-height: 230px;
  }

  .president-section {
    padding: 35px 16px;
  }

  .president-intro h2 {
    font-size: 24px;
  }

  .president-content {
    flex-direction: column;
  }

  .president-signature {
    align-self: flex-start;
  }
}