@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color:#1F2A44;
  --secondary-color:#1F2A44;
  --light-backgroud:#F2F2F2;
  --text-color:#1A1A1A;
  --hover-color:#2E3B5B;
  --boder:#E5E7EB;
}

body, html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

:root {
  --primary-color:#1F2A44;
  --accent-color:#E63946; /* red accent */
  --text-color:#1A1A1A;
  --border-color:#E5E7EB;
}

/* RESET */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-padding-top: 80px;
}

/* ================= NAVBAR ================= */
nav {
  position: sticky;
  top: 0;
  height: 100px;
  background: #ffffff;
  padding: 12px 70px; /* smaller height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
}

/* LOGO */
nav .logo img {
  width: 150px; /* smaller logo */
}

/* MENU */
nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Hover Effect */
nav ul li a:hover {
  color: var(--accent-color);
}

/* Red underline animation */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.bar {
  font-size: 35px;
  color: #0d2153;
  position: absolute;
  right: 40px;
  display: none;
}

.xmark {
  font-size: 45px;
  color: #ffffff;
  display: none;
}

nav ul li a.active {
  color: var(--accent-color);
}

nav ul li a.active::after {
  width: 100%;
}

@media (max-width: 813px) {
  nav ul li a.active::after {
    width: 0%;
  }
  .logo img {
    margin-left: -60px;
  }
  .list ul.adds {
    display: flex; /* show the menu */
    flex-direction: column;
  }
  .bar {
    display: block;
  }
  .xmark {
    display: block;
    position: absolute;
    left: 85%;
    top: 0px;
    z-index: 22223235698684;
  }
  .list ul {
    display: none;
    position: absolute;
    left: 0px;
    top: 100px;
    background-color: #0d2153;
    flex-direction: column;
    width: 40%;
    height: 55vh;
    border-radius: 0px 15px 15px 0px;
    border: 2px solid #fff;
    gap: 25px;
    align-items: center;
    justify-content: center;
  }
  .list ul li {
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
  }
}
@media (max-width: 545px) {
  .list ul {
    width: 60%;
  }
}
@media (max-width: 381px) {
  .list ul {
    width: 70%;
  }
  .logo img {
    margin-left: -80px;
  }
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 70px;
  height: 55vh;
  background-color: #424242;
  color: #fff;
  gap: 20px;
  position: relative;
}
.hero div {
  max-width: 700px;
  text-align: left;
}
.hero div h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero div h1 span {
  border-bottom: 3px solid #fff;
  font-size: 2rem;
}
.hero div p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}
.hero div button {
  padding: 12px 25px;
  background-color: #1f2a44;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero div button a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.hero div button:hover {
  background-color: #fff;
}
.hero div button:hover a {
  color: #1f2a44;
}
.hero img {
  width: 500px;
  max-width: 100%;
  position: absolute;
  right: 70px;
  bottom: 0;
}
@media (max-width: 1024px) {
  .hero {
    padding: 40px 50px;
  }
  .hero h1 {
    font-size: 1rem;
  }
  .hero h1 span {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero img {
    width: 400px;
    right: 40px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 30px;
    /* text stays left-aligned */
  }
  .hero div {
    max-width: 100%;
    text-align: left;
  }
  .hero h1 {
    font-size: 1.5rem !important;
  }
  .hero h1 span {
    font-size: 1.7rem !important;
  }
  .hero p {
    font-size: 0.8rem !important;
  }
  .hero img {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 50px 15px;
  }
  .hero h1 {
    font-size: 1.4rem !important;
  }
  .hero h1 span {
    font-size: 1.5rem !important;
  }
  .hero p {
    font-size: 0.7rem !important;
  }
}

.happy {
  text-align: center;
  padding: 60px 20px;
  line-height: 1.5;
}
.happy h1 {
  color: #0d2153;
  font-size: 2rem;
  margin-bottom: 10px;
}
.happy p {
  color: #585858;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.happy > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 20px 0;
}
.happy > div div a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.happy > div div a img {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.happy hr {
  margin-top: 60px;
  border: none;
  height: 2px;
  background-color: #ccc;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.happy {
  /* Responsive Styles */
}
@media (max-width: 1024px) {
  .happy h1 {
    font-size: 2.2rem;
  }
  .happy p {
    font-size: 1rem;
  }
  .happy > div {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .happy h1 {
    font-size: 1.9rem;
  }
  .happy p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  .happy > div {
    flex-direction: column;
    gap: 25px;
  }
  .happy hr {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .happy h1 {
    font-size: 1.6rem;
  }
  .happy p {
    font-size: 0.9rem;
  }
}

.h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0d2153;
}

.p {
  margin: 10px 0 40px;
  font-size: 1rem;
  color: #646464;
}

.services {
  padding: 60px 20px;
  text-align: center;
}
.services .serv {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.services .serv div {
  height: 250px;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  width: 300px;
  transition: all 0.4s ease-in-out;
  background-color: #fff;
}
.services .serv div .h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: color 0.4s ease-in-out;
}
.services .serv div .p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  transition: color 0.4s ease-in-out;
}
.services .serv div:hover {
  background-color: #36466d;
  transform: translateY(-10px);
}
.services .serv div:hover h2,
.services .serv div:hover p {
  color: #fff;
}
.services {
  /* Responsive */
}
@media (max-width: 1024px) {
  .services .serv {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .services .h1 {
    font-size: 2rem;
  }
  .services .p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .services .serv {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .services .serv div {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .services .h1 {
    font-size: 1.7rem;
  }
  .services .p {
    font-size: 0.95rem;
  }
  .services .serv div {
    padding: 20px 15px;
  }
}

.divider {
  width: 100px;
  height: 3px;
  background-color: red;
  position: relative;
  top: 10px;
  left: -85px;
}

.div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.why-choose-us {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.why-choose-us .section-title {
  font-size: 2.5rem;
  margin-bottom: 0px;
  color: #1e1e1e;
  line-height: 0.9;
}
.why-choose-us .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.why-choose-us .cards .card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: center;
}
.why-choose-us .cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.why-choose-us .cards .card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.why-choose-us .cards .card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e1e1e;
}
.why-choose-us .cards .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 15px;
  }
  .why-choose-us .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.small {
  text-transform: lowercase;
}

.email {
  text-transform: lowercase;
}

.email:-moz-placeholder {
  text-transform: capitalize;
}

.email:placeholder-shown {
  text-transform: capitalize;
}

.contact-cta {
  padding: 80px 20px;
  background-color: #1f2a44;
  color: #fff;
  text-align: center;
}
.contact-cta .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.contact-cta .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #cfd8e0;
}
.contact-cta .contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}
.contact-cta .contact-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 350px;
}
.contact-cta .contact-content form input,
.contact-cta .contact-content form textarea {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}
.contact-cta .contact-content form button {
  padding: 12px;
  background-color: #fff;
  color: #1f2a44;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-cta .contact-content form button:hover {
  background-color: #36466d;
  color: #fff;
}
.contact-cta .contact-content .contact-info {
  background-color: #ffffff;
  padding: 20px 30px;
  display: flex;
  border-radius: 5px;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  text-align: left;
}
.contact-cta .contact-content .contact-info a {
  color: #0c0c0c;
  text-decoration: none;
  transition: 0.3s;
}
.contact-cta .contact-content .contact-info a:hover {
  color: red;
}
.contact-cta .contact-content .contact-info p {
  color: black;
}
@media (max-width: 768px) {
  .contact-cta .contact-content {
    flex-direction: column;
    align-items: center;
  }
  .contact-cta .contact-content form,
  .contact-cta .contact-content .contact-info {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  .contact-cta .contact-content form .contact-info,
  .contact-cta .contact-content .contact-info .contact-info {
    text-align: center;
  }
}

.footer {
  background-color: #1f2a44;
  color: #cfd8e0;
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer .footer-top .brand {
  flex: 1 1 250px;
}
.footer .footer-top .brand h2 a {
  color: #fff;
  font-size: 2rem;
}
.footer .footer-top .brand h2 {
  margin-bottom: 10px;
}
.footer .footer-top .brand p {
  font-size: 1rem;
  line-height: 1.5;
}
.footer .footer-top .footer-links {
  flex: 1 1 200px;
}
.footer .footer-top .footer-links h3 {
  color: #fff;
  margin-bottom: 10px;
}
.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
}
.footer .footer-top .footer-links ul li {
  margin-bottom: 8px;
}
.footer .footer-top .footer-links ul li a {
  color: #cfd8e0;
  text-decoration: none;
  transition: 0.3s;
}
.footer .footer-top .footer-links ul li a:hover {
  color: #fff;
}
.footer .footer-top .social-newsletter {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-top .social-newsletter .social h3 {
  color: #fff;
  margin-bottom: 10px;
}
.footer .footer-top .social-newsletter .social .icons {
  display: flex;
  gap: 15px;
}
.footer .footer-top .social-newsletter .social .icons a {
  font-size: 1.5rem;
  transition: 0.3s;
  color: #cfd8e0;
}
.footer .footer-top .social-newsletter .social .icons a:hover {
  color: #fff;
}
.footer .footer-top .social-newsletter .newsletter h3 {
  color: #fff;
  margin-bottom: 10px;
}
.footer .footer-top .social-newsletter .newsletter p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.footer .footer-top .social-newsletter .newsletter form {
  display: flex;
  gap: 10px;
}
.footer .footer-top .social-newsletter .newsletter form input {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.footer .footer-top .social-newsletter .newsletter form button {
  padding: 10px 15px;
  background-color: #fff;
  color: #1f2a44;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.footer .footer-top .social-newsletter .newsletter form button:hover {
  background-color: #36466d;
  color: #fff;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
}
.footer {
  /* Responsive */
}
@media (max-width: 1024px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer .social-newsletter {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer .footer-top {
    gap: 20px;
  }
  .footer .brand h2 {
    font-size: 1.5rem;
  }
  .footer .footer-links ul li a,
  .footer .social-newsletter .newsletter p {
    font-size: 0.9rem;
  }
}

.abt-home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.699)), url(ab.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  height: 50vh;
  text-align: center;
}
.abt-home h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.abt-home p {
  text-align: center;
}
@media (max-width: 503px) {
  .abt-home h1 {
    font-size: 25px;
  }
}

.who {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 60px;
  gap: 60px;
  font-size: 18px;
  justify-content: center;
}
.who > div > h1 {
  margin-top: 20px;
  color: #1F2A44;
}
.who > div p {
  color: #4d4d4d;
  width: 700px;
  font-size: 17px;
  margin-top: 20px;
}
.who > div .mission {
  background-color: red;
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
}
.who > div .mission h1 {
  font-size: 20px;
}
.who > div .mission p {
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .who {
    padding: 40px 30px;
  }
  .who > div p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .who {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
  }
  .who > div {
    width: 100%;
  }
  .who > div p {
    width: 100%;
    font-size: 16px;
  }
  .who > div .mission {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .who > div p {
    font-size: 15px;
  }
  .who > div > h1 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .who div img {
    width: 400px;
    max-width: 100%;
  }
}
/* ============================== */
/* RESPONSIVE - WHY CHOOSE US */
/* ============================== */
@media (max-width: 1024px) {
  .why-choose-us .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .why-choose-us .cards {
    grid-template-columns: 1fr;
  }
  .why-choose-us .section-title {
    font-size: 22px;
  }
  .why-choose-us .p {
    font-size: 14px;
  }
  .why-choose-us .card {
    padding: 20px;
  }
}
.red {
  color: red;
}

.team {
  padding: 80px 20px;
  background: #f8f9fc;
  text-align: center;
}
.team h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.team .team-intro {
  max-width: 600px;
  margin: 0 auto 50px;
  margin-top: 20px;
  line-height: 1.6;
  color: #555;
}
.team .team-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.team .team-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.team .team-card:hover {
  transform: translateY(-8px);
}
.team .team-card .avatar {
  width: 80px;
  height: 80px;
  background: #1f2a44;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}
.team .team-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.team .team-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.stats {
  padding: 80px 20px;
  background: #f8f9fc;
  text-align: center;
}
.stats h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #1f2a44;
}
.stats p {
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.stats .stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
.stats .stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: center;
}
.stats .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stats .stat-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}
.stats .stat-card h3 {
  font-size: 28px;
  color: #1f2a44;
  margin-bottom: 10px;
}
.stats .stat-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .stats {
    padding: 60px 20px;
  }
  .stats h2 {
    font-size: 22px;
  }
  .stats p {
    font-size: 14px;
  }
  .stats .stat-card {
    padding: 25px 15px;
  }
  .stats .stat-card h3 {
    font-size: 24px;
  }
  .stats .stat-card .icon {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .stats {
    padding: 40px 15px;
  }
  .stats-cards {
    grid-template-columns: 1fr;
  }
}
.final-cta {
  padding: 100px 20px;
  background-color: #1F2A44;
  color: #fff;
  text-align: center;
  position: relative;
}
.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.final-cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}
.final-cta .cta-button {
  background-color: #ff6b00;
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.3s ease;
}
.final-cta .cta-button:hover {
  background-color: #e55a00;
  transform: translateY(-3px);
}

/* ========================= */
/* RESPONSIVE FINAL CTA */
/* ========================= */
@media (max-width: 768px) {
  .final-cta {
    padding: 70px 20px;
  }
  .final-cta h2 {
    font-size: 2rem;
  }
  .final-cta p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .final-cta .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .final-cta {
    padding: 50px 15px;
  }
  .final-cta h2 {
    font-size: 1.6rem;
  }
  .final-cta p {
    font-size: 0.95rem;
  }
  .final-cta .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
.services-page {
  padding: 80px 20px;
  text-align: center;
}
.services-page h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1F2A44;
}
.services-page p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #666;
}
.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}
.services-page .service-card {
  height: 200px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.services-page .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.services-page .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1F2A44;
}
.services-page .service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* ========================= */
/* RESPONSIVE SERVICES PAGE */
/* ========================= */
@media (max-width: 768px) {
  .services-page {
    padding: 60px 15px;
  }
  .services-page h1 {
    font-size: 2rem;
  }
  .services-page p {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .services-page .service-card {
    padding: 20px 15px;
  }
  .services-page .service-card h3 {
    font-size: 18px;
  }
  .services-page .service-card p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .services-page {
    padding: 40px 10px;
  }
  .services-page h1 {
    font-size: 1.8rem;
  }
  .services-page p {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.teaching {
  padding: 80px 20px;
  text-align: center;
  background-color: #f4f6fb;
}
.teaching h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1F2A44;
}
.teaching p {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.teaching .teaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.teaching .teaching-card {
  background: #fff;
  padding: 30px 20px;
  height: 250px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: center;
}
.teaching .teaching-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.teaching .teaching-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}
.teaching .teaching-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1F2A44;
}
.teaching .teaching-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .teaching h1 {
    font-size: 2rem;
  }
  .teaching p {
    font-size: 14px;
  }
  .teaching-card {
    padding: 25px 18px;
  }
  .teaching-card h3 {
    font-size: 18px;
  }
  .teaching-card p {
    font-size: 14px;
  }
  .teaching-card .icon {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .teaching {
    padding: 40px 15px;
  }
  .teaching h1 {
    font-size: 1.7rem;
  }
  .teaching p {
    font-size: 13px;
  }
}
.services-faq {
  padding: 80px 20px;
  background: #f8f9fc;
  text-align: center;
}

.services-faq h2 {
  font-size: 2.5rem;
  color: #1F2A44;
  margin-bottom: 10px;
}

.services-faq p {
  color: #666;
  margin-bottom: 40px;
}

.faq-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
  font-size: 15px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .services-faq h2 {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}
.projects {
  padding: 80px 20px;
  background: #f8f9fc;
  text-align: center;
}
.projects h2 {
  font-size: 2.5rem;
  color: #1F2A44;
  margin-bottom: 10px;
}
.projects p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}
.projects .project-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.projects .project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 260px;
}
.projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.projects .project-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects .project-card .project-info {
  padding: 20px;
}
.projects .project-card .project-info h3 {
  color: #1F2A44;
  font-size: 18px;
  margin-bottom: 10px;
}
.projects .project-card .project-info p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.projects .project-card .project-info .btn {
  display: inline-block;
  padding: 8px 15px;
  background: #1F2A44;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.projects .project-card .project-info .btn:hover {
  background: #36466d;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .project-card {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .projects {
    padding: 60px 15px;
  }
  .projects h2 {
    font-size: 2rem;
  }
  .projects p {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .project-card {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */