@charset "UTF-8";
.hamburguer-menu {
  width: 3rem;
  height: 3rem;
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  transition: right 0.7s;
}
.hamburguer-menu .line {
  width: 100%;
  height: 0.3rem;
  background-color: rgb(164, 163, 163);
}

.change .line:nth-child(1) {
  transform: rotate(45deg) translate(0.9rem, 0.5rem);
}

.change .line:nth-child(2) {
  opacity: 0;
}

.change .line:nth-child(3) {
  transform: rotate(-45deg) translate(0.9rem, -0.5rem);
}

.change .hamburguer-menu {
  right: 37rem;
}
@media (min-width: 768px) {
  .change .hamburguer-menu {
    right: 42rem;
  }
}

.header {
  width: 100%;
  height: 100vh;
  position: relative;
  perspective: 100rem;
  overflow: hidden;
}
.header .img-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.header .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  animation: scale 20s;
}

.sidebar {
  width: 40rem;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -40rem;
  background-color: #1f4388;
  z-index: 1000;
  transition: right 0.5s;
}
.sidebar .menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sidebar .menu .menu-item {
  font-size: 3rem;
  font-family: "Mulish", sans-serif;
  color: white;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  text-align: center;
  transition: all ease 0.3s;
}
.sidebar .menu .menu-item:hover {
  color: #2451a5;
}
.sidebar .menu .menu-item .menu-link {
  text-decoration: none;
  color: white;
  transition: all ease 0.3s;
}
.sidebar .menu .menu-item .menu-link:hover {
  color: #5482d8;
}
.sidebar .social-media {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  width: 100%;
  text-decoration: none;
}
.sidebar .social-media .social-media-icon {
  font-size: 2.5rem;
  cursor: pointer;
  transition: all ease 0.3s;
  background-color: white;
  color: #1f4388;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 2rem;
}
.sidebar .social-media .social-media-icon:hover {
  color: white;
  background-color: #5482d8;
}
.sidebar .social-media .social-media-icon i {
  transition: all ease 0.3s;
}

.about-us {
  width: 100%;
}
.about-us .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 0;
}
.about-us .section-header .section-heading {
  font-family: "Mulish", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #1f4388;
  margin-bottom: 2rem;
  text-align: center;
}
.about-us .section-header .underline {
  width: 15rem;
  height: 0.5rem;
  background-color: #1f4388;
}

.team {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5rem 20rem 5rem;
}
.team .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 0;
}
.team .section-header .section-heading {
  font-family: "Mulish", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1f4388;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .team .section-header .section-heading {
    font-size: 5rem;
  }
}
.team .section-header .underline {
  width: 15rem;
  height: 0.5rem;
  background-color: #1f4388;
}
.team .cards-wrapper {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.team .cards-wrapper .card {
  width: 37rem;
  height: 45rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  position: relative;
}
.team .cards-wrapper .card .card-image-wrapper {
  width: 100%;
  height: 100%;
  background-color: #1f4388;
  border-radius: 0.5rem;
}
.team .cards-wrapper .card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  border-radius: 0.5rem;
  transition: opacity 0.3s;
}
.team .cards-wrapper .card .card-info {
  position: absolute;
  bottom: 0rem;
  padding: 2rem;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.team .cards-wrapper .card .card-info h2 {
  font-family: "Baloo 2", cursive;
  font-size: 2.5rem;
  color: #eee;
  margin: 0;
  font-weight: 300;
}
.team .cards-wrapper .card .card-info p {
  font-family: "Mulish", sans-serif;
  font-size: 1.6rem;
  color: #eee;
  font-weight: 300;
  width: 80%;
  margin-bottom: 2rem;
}
.team .cards-wrapper .card .card-info button {
  width: 10rem;
  height: 3rem;
  background-color: #1f4388;
  border: none;
  font-family: "Mulish", sans-serif;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
  border-radius: 0.3rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
}
.team .cards-wrapper .card:hover .card-info {
  opacity: 1;
  visibility: visible;
  bottom: 2rem;
}
.team .cards-wrapper .card:hover .card-image-wrapper img {
  opacity: 0.5;
}

.contact {
  width: 100%;
  height: auto;
  background-color: #1f4388;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}
.contact .contact-wrapper {
  width: 60%;
  height: 75rem;
  display: flex;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
}
.contact .contact-left {
  width: 50%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://images.pexels.com/photos/3184351/pexels-photo-3184351.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  background-size: cover;
}
.contact .contact-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  background-color: #ccc;
}
.contact .contact-right .contact-heading {
  font-family: "Baloo 2", cursive;
  font-size: 4rem;
  color: #1f4388;
  margin-bottom: 2rem;
}
.contact .contact-right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact .contact-right form .field,
.contact .contact-right form .message {
  font-size: 1.8rem;
  font-family: "Courier New", Courier, monospace;
}
.contact .contact-right form input,
.contact .contact-right form textarea {
  font-size: 1.5rem;
  width: 100%;
  border: none;
  border-bottom: 0.2rem solid #1f4388;
  font-family: "Mulish", sans-serif;
  padding: 1rem;
  background-color: transparent;
  max-height: 7rem;
}
.contact .contact-right form input:focus,
.contact .contact-right form textarea:focus {
  outline: none;
  border-bottom: 0.2rem solid #2451a5;
}
.contact .contact-right form input .textArea,
.contact .contact-right form textarea .textArea {
  height: 7rem !important;
}
.contact .contact-right form button {
  width: 10rem;
  height: 4rem;
  background-color: #1f4388;
  border: none;
  font-family: "Mulish", sans-serif;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  border-radius: 0.3rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
  transition: all ease 0.3s;
}
.contact .contact-right form button:hover {
  background-color: #2451a5;
  scale: 1.1;
}

.services {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(8, 6rem);
  grid-gap: 3rem;
}
.services .service {
  width: 100%;
}
.services .service .service-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.services .service .service-header h3 {
  font-size: 2.7rem;
  color: #1f4388;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  margin: 0;
}
.services .service .service-header i {
  font-size: 2rem;
  color: #1f4388;
}
.services .service div .service-text {
  font-size: 1.5rem;
  color: #1f4388;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-align: justify;
  max-width: 300px;
}
.services .service:nth-child(1) {
  grid-column: 7/9;
  grid-row: 1/2;
}
.services .service:nth-child(2) {
  grid-column: 4/6;
  grid-row: 2/3;
}
.services .service:nth-child(3) {
  grid-column: 2/4;
  grid-row: 4/5;
}
.services .service:nth-child(4) {
  grid-column: 3/5;
  grid-row: 6/7;
}
.services .service:nth-child(5) {
  grid-column: 5/7;
  grid-row: 7/8;
}
.services .service:nth-child(6) {
  grid-column: 7/9;
  grid-row: 8/9;
}
.services .service:nth-child(7) {
  grid-column: 10/12;
  grid-row: 7/8;
}
.services .service:nth-child(8) {
  grid-column: 12/14;
  grid-row: 6/7;
}
.services .service:nth-child(9) {
  grid-column: 13/15;
  grid-row: 4/5;
}
.services .service:nth-child(10) {
  grid-column: 11/13;
  grid-row: 2/3;
}
.services .service:nth-child(11) {
  grid-column: 9/11;
  grid-row: 1/2;
}
.services .about-us-image-wrapper {
  grid-column: 7/11;
  grid-row: 3/7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .about-us-image-wrapper img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}

.change .sidebar {
  right: 0;
}

@keyframes scale {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.banner {
  position: absolute;
  top: 30%;
  left: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: moveBanner 1s 0.7s forwards;
}
.banner img {
  width: 500px;
}
.banner button {
  width: 25rem;
  height: 7rem;
  background-color: #1f4388;
  border: none;
  font-family: "Mulish", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  border-radius: 30%;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all ease 0.3s;
  margin-top: 1rem;
}
.banner button:hover {
  background-color: #2451a5;
  width: 26rem;
}

@keyframes moveBanner {
  0% {
    opacity: 0;
    transform: translateY(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.input-group {
  position: relative;
  margin-bottom: 2rem;
}
.input-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #1f4388;
  font-family: "Mulish", sans-serif;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem 10px;
  font-size: 1.6rem;
  border: none;
  border-bottom: 2px solid #1f4388;
  font-family: "Mulish", sans-serif;
  background-color: transparent;
  outline: none;
  transition: border 0.3s ease-in-out;
}
.input-group input:focus,
.input-group textarea:focus {
  border-bottom: 2px solid #2451a5;
}
.input-group input:not(:-moz-placeholder-shown) + label, .input-group textarea:not(:-moz-placeholder-shown) + label {
  top: 0;
  left: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2451a5;
}
.input-group input:focus + label, .input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: 0;
  left: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2451a5;
}
.input-group textarea {
  resize: none;
  min-height: 7rem;
}

.footer {
  width: 100%;
  height: 15rem;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-content {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-content div .footer-logo {
  width: 10rem;
  margin: auto;
}
.footer .footer-content div .copyright {
  font-family: "Mulish", sans-serif;
  font-size: 1.3rem;
  color: #1f4388;
}
.footer .footer-content .social-list {
  display: flex;
  gap: 1rem;
}
.footer .footer-content .social-list a i {
  font-size: 3rem;
  color: #1f4388;
  transition: all ease 0.3s;
}
.footer .footer-content .social-list a i:hover {
  color: #2451a5;
}

.scroll-btn {
  position: fixed;
  right: 3rem;
  height: 5rem;
  bottom: 5rem;
  width: 4.5rem;
  background-color: #1f4388;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
}
.scroll-btn i {
  font-size: 3rem;
}

/* Ajustes generales para mobile-first */
body {
  font-size: 16px;
}

/* Botón de cierre del menú hamburguesa */
.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1500;
  display: block;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
  .hamburguer-menu {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 1600;
  }
  .hamburguer-menu .line {
    height: 0.2rem;
  }
  .sidebar {
    width: 100%;
    right: -100%;
    position: fixed;
    transition: right 0.5s;
    z-index: 1400;
  }
  .sidebar .menu .menu-item {
    font-size: 2rem;
  }
  .sidebar .close-menu {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 1700;
  }
  .change .sidebar {
    right: 0;
  }
  .header {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .header .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: auto;
    left: auto;
  }
  .header .banner img {
    width: 250px;
  }
  .header .banner button {
    width: 18rem;
    height: 4.5rem;
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .about-us .section-header {
    padding: 4rem 0;
  }
  .about-us .section-header .section-heading {
    font-size: 3rem;
  }
  .services {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .services .service {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .team {
    padding: 2rem;
  }
  .team .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .team .cards-wrapper .card {
    width: 100%;
    max-width: 30rem;
    margin-bottom: 2rem;
  }
  .contact .contact-wrapper {
    width: 100%;
    flex-direction: column;
    height: auto;
  }
  .contact .contact-wrapper .contact-left {
    width: 100%;
    height: 300px;
  }
  .contact .contact-wrapper .contact-right {
    width: 100%;
    padding: 3rem;
  }
  .footer {
    height: auto;
  }
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-content .social-list {
    margin-top: 1rem;
  }
}
/* Estilos para tabletas */
@media (min-width: 769px) and (max-width: 1024px) {
  .sidebar {
    width: 30rem;
    right: -30rem;
  }
  .change .sidebar {
    right: 0;
  }
  .header .banner {
    left: 10%;
  }
  .header .banner img {
    width: 400px;
  }
  .services {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  .services .service {
    max-width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .team .cards-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .team .cards-wrapper .card {
    width: 45%;
    margin-bottom: 2rem;
  }
}
/* Estilos generales */
body {
  font-family: "Mulish", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1f4388;
  margin: 2rem 0;
}

/* Sección de introducción */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
}
.about-section .content {
  max-width: 50%;
}
.about-section img {
  width: 300px;
  display: block;
  margin: auto;
}
@media (min-width: 768px) {
  .about-section img {
    width: 400px;
  }
}

/* ==== Slider tipo carrusel ==== */
.slider-carousel {
  text-align: center;
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.slider-carousel .slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.slider-carousel .slides {
  display: flex;
  gap: 2.5rem;
  animation: slideCarousel 30s linear infinite;
}
.slider-carousel .slides img {
  width: 250px;
  min-width: 250px;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.slider-carousel .slides img:hover {
  transform: scale(1.05);
}

@keyframes slideCarousel {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Responsive para móviles */
@media (max-width: 768px) {
  .slider-carousel .slides {
    gap: 1.5rem;
  }
  .slider-carousel .slides img {
    width: 180px;
    min-width: 180px;
  }
}
/* Pausar animación al pasar el mouse */
.slider-carousel .slider:hover .slides {
  animation-play-state: paused;
}

/* Misión y Visión */
.mission-vision {
  display: flex;
  justify-content: space-around;
  padding: 3rem;
}
.mission-vision .mission,
.mission-vision .vision {
  max-width: 40%;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-section .content {
    max-width: 100%;
  }
  .mission-vision {
    flex-direction: column;
    text-align: center;
  }
  .mission-vision .mission,
  .mission-vision .vision {
    max-width: 100%;
  }
}
/* Áreas Académicas */
.info-section {
  background-color: #0033a0;
  padding: 4rem 2rem;
  text-align: center;
}
.info-section .section-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.info-section .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.info-section .cards .card {
  background-color: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 280px;
  transition: transform 0.3s ease;
}
.info-section .cards .card:hover {
  transform: translateY(-5px);
}
.info-section .cards .card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}
.info-section .cards .card .card-title {
  font-weight: 600;
  color: #0033a0;
}
.info-section .cards .card .card-title .subtitle {
  display: block;
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .info-section .cards {
    flex-direction: column;
    align-items: center;
  }
}

/* ==== CERTIFICACIÓN ==== */
.certification-section {
  background-color: #f2f2f2;
  text-align: center;
  padding: 4rem 2rem;
}
.certification-section .subtitle {
  color: #999;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.certification-section .section-title {
  color: #1f4388;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.certification-section .cert-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.certification-section .certification-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.certification-section .cert-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .certification-section .cert-img {
    max-width: 250px;
  }
  .certification-section .section-title {
    font-size: 1.6rem;
  }
  .certification-section .cert-text {
    font-size: 1rem;
  }
}
.mision-vision-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.mision-vision-section .mision,
.mision-vision-section .vision {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
}
.mision-vision-section .mision img,
.mision-vision-section .vision img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.mision-vision-section .mision img:hover,
.mision-vision-section .vision img:hover {
  transform: scale(1.03);
}
.mision-vision-section .mision .mision-texto,
.mision-vision-section .mision .vision-texto,
.mision-vision-section .vision .mision-texto,
.mision-vision-section .vision .vision-texto {
  max-width: 600px;
}
.mision-vision-section .mision .mision-texto .mv-titulo,
.mision-vision-section .mision .vision-texto .mv-titulo,
.mision-vision-section .vision .mision-texto .mv-titulo,
.mision-vision-section .vision .vision-texto .mv-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #1f4388;
  margin-bottom: 1rem;
  position: relative;
}
.mision-vision-section .mision .mision-texto .mv-titulo::after,
.mision-vision-section .mision .vision-texto .mv-titulo::after,
.mision-vision-section .vision .mision-texto .mv-titulo::after,
.mision-vision-section .vision .vision-texto .mv-titulo::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1f4388;
  margin-top: 0.5rem;
}
.mision-vision-section .mision .mision-texto p,
.mision-vision-section .mision .vision-texto p,
.mision-vision-section .vision .mision-texto p,
.mision-vision-section .vision .vision-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.mision-vision-section .vision {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .mision-vision-section .mision,
  .mision-vision-section .vision {
    flex-direction: column;
  }
  .mision-vision-section .mision img,
  .mision-vision-section .vision img {
    max-width: 100%;
  }
}
.services-section {
  background-color: #0038a8;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.services-section .subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.services-section .section-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 3rem;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.services-section .service-card {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  color: #0038a8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
}
.services-section .service-card:hover {
  transform: translateY(-10px) scale(1.05) rotateZ(-1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.services-section .service-card img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  margin-bottom: 0.5rem;
}
.services-section .service-card p {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .services-section .service-card img {
    height: 120px;
  }
}
.gallery-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
  /* Modal */
}
.gallery-section .subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.gallery-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 3px solid #1f4388;
  display: inline-block;
  padding-bottom: 0.5rem;
  color: #1f4388;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-section .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-grid .gallery-item:hover {
  transform: scale(1.03);
}
.gallery-section .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-section .modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.gallery-section .modal.show {
  opacity: 1;
  pointer-events: auto;
}
.gallery-section .modal.hide {
  opacity: 0;
  pointer-events: none;
}
.gallery-section .modal img {
  max-width: 90%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: fadeZoom 0.3s ease-in-out;
}
.gallery-section .modal .close-btn {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: #1f4388;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s;
}
.gallery-section .modal .close-btn:hover {
  background: #1f4388;
  color: #fff;
}
@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 1.5rem;
  }
  .gallery-section .section-title {
    font-size: 1.6rem;
  }
  .gallery-section .gallery-grid {
    gap: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */