@charset "UTF-8";

/* --- Footer Styles --- */
.site-footer.main-footer {
  background-color: #fff;  
  padding: 50px 0; 
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


.footer-branding .brand {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.footer-branding .logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #001C31;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.footer-branding .logo-th {
  position: relative;
  font-family: 'Forum', serif;
  color: #fff;
  line-height: 1;
  width: 24px;
  height: 32px;
  left: -1px;
}

.footer-branding .logo-th .t {
  position: relative;
  font-size: 34px;
  top: -2px;
  left: 6px;
}

.footer-branding .logo-th .h {
  position: absolute;
  font-size: 28px;
  left: 5px;
  top: 6px;
}

.footer-branding .brand-text {
  font-size: 22px;
  line-height: 100%;
  color: #001C31;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}


.footer-contact-info {
  flex-grow: 1;
  text-align: center;
}

.footer-email {
  font-size: 16px;
  color: #001C31;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-email:hover {
  color: #1a2a3a;
}


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

.footer-social-icons .social-icon {
  display: inline-flex;
  background-color: #001C31;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.footer-social-icons .social-icon:hover {
  background-color: #0d1a26;
}

.footer-social-icons .social-icon img {
  width: 21.75px;
  height: 20px;
  filter: brightness(0) invert(1);
}


@media (max-width: 992px) {
  .footer-container {
      padding: 0 30px;
  }

  .footer-branding .brand-text {
      font-size: 18px;
      letter-spacing: 0.2em;
  }

  .footer-branding .logo-circle {
      width: 36px;
      height: 36px;
  }

  .footer-branding .logo-th .t {
      font-size: 26px;
  }

  .footer-branding .logo-th .h {
      font-size: 22px;
      left: 6px;
      top: 5px;
  }
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      gap: 30px;
      text-align: center;
  }

  .hero-content{
  position: relative;
    padding-bottom: 50px !important;
}
  .footer-branding .logo-img{
    width: 30px !important;
    height: 30px !important;
  }
 
  .footer-branding .brand-text-img{
    width: 100px;
    height: 12px;
  }

  .footer-contact-info {
      order: 3; 
  }

  .footer-social-icons {
      order: 2; 
      justify-content: center;
  }

  .footer-branding {
      order: 1;
  }

  .footer-branding .brand-text {
      font-size: 16px;
      letter-spacing: 0.15em;
  }
}

@media (max-width: 480px) {
  .footer-social-icons {
      gap: 15px;
  }

  .footer-social-icons .social-icon {
      width: 35px;
      height: 35px;
  }

  .footer-social-icons .social-icon img {
      width: 16px;
      height: 14px;
  }
}

.footer-branding .logo-circle {
overflow: hidden;
}

.footer-branding .logo-img {
width: 40px;
height: 40px;
object-fit: contain;
display: block;
}


.footer-branding .brand-text-img {
height: 27px;
width: 186px;
display: block;
margin-top: 2px;
}

 
 

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.footer-powered-by {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}


/* --- HEADER STYLES --- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.site-header {
  width: 100%;
  background: #fff;
  padding: 32px 0;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Brand --- */
.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #001C31;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text-img {
  height: 27px;
  width: 186px;
  display: block;
}

/* --- Right Section --- */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* --- Language Selector --- */
.lang-select {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #001C31;
}

.lang-current span {
  font-size: 20px;
  font-weight: 400;
}

/* --- Dropdown --- */
.lang-dropdown {
  position: absolute;
  top: 36px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 136px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.25s ease;
}

.lang-select.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #001C31;
}

.lang-dropdown a:hover {
  background: #f1f1f1;
}

/* --- Book a Call --- */
.book-btn {
  background-color: #001C31;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 154px;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  background-color: #12375a;
}

@media (max-width: 992px) {
  .container { padding: 0 30px; }

  .brand-text-img {
    height: 24px;
    width: auto;
  }

  .logo-circle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {

    .site-header,
    .container,
    .header-inner {
        max-width: 100% !important;
        width: 100% !important;
        /* overflow-x: hidden !important; */
    }

    .container {
        padding: 0 20px !important;
    }

    
    .lang-select {
    display: flex !important;
    align-items: center;
    gap: 4px !important;
    order: 1;
    margin-right: 0 !important;
    white-space: nowrap;
}

  .header-right {
    display: flex;
    align-items: center;
    gap: 8px !important;   
    flex-wrap: nowrap;
}

   .book-btn {
    order: 2;
    white-space: nowrap;
}

    .header-inner {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .brand {
        gap: 6px !important;
        flex-shrink: 1 !important;
    }

    .logo-circle {
        width: 32px !important;
        height: 32px !important;
    }

    .brand-text-img {
        height: 12px !important;
        width: 87px !important;
    }

    .book-btn {
        padding: 8px 14px !important;
        font-size: 13px !important;
        height: auto !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        width: 97px;
    }

    .logo-img{
      width: 30px;
      height: 30px;
    }
}

@media (max-width: 480px) {
    .brand-text-img {
        height: 20px !important;
    }

    .logo-circle {
        width: 30px !important;
        height: 30px !important;
    }
}
@media (max-width: 480px) {

  .header-right {
      display: flex;
      align-items: center;
      gap: 6px !important;
      flex-wrap: nowrap;
  }

  .lang-select {
      display: flex !important;
      align-items: center;
      gap: 2px !important;
      font-size: 14px !important;
      white-space: nowrap;
  }

  .lang-current span {
      font-size: 14px !important;
      margin-left:14px;
  }

  .lang-select i,
  .lang-select svg {
      width: 12px;
      height: 12px;
  }

  .book-btn {
      padding: 6px 10px !important;
      font-size: 12px !important;
      width: auto !important;
  }

  .header-inner {
      overflow-x: visible !important;
  }
}
.site-header {
    position: relative;
    z-index: 9999;
}


/* --- Hero Section Styles --- */

.hero-section {
  padding: 120px 20px;
  min-height: calc(100vh - 81px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -68px;
  box-sizing: border-box;
}


.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  max-width: 1366px;
}

.hero-left {
  flex: 1;
  max-width: 45%;
}

.hero-title {
  font-size: 128.35px;
  font-weight: 400;
  color: #112B3D;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  width: 272px;
  height: 168px;
}

/* Scroll Down Button */
.scroll-down {
  font-size: 20px;
  width: 141px;
  margin-left: 8px;
  color: #333333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  cursor: pointer; 
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.scroll-down:hover {
  color: #112B3D;
  transform: translateY(3px);
}

.scroll-down .arrow-down {
  font-size: 1.2em;
  transform: translateY(2px);
  transition: transform 0.3s ease;
}

.scroll-down:hover .arrow-down {
  transform: translateY(6px);
}

.hero-right {
  flex: 1;
  max-width: 50%;
  align-items: end;
    display: flex;
    flex-direction: column;
}

.hero-description {
  font-size: 23px;
  line-height: 160%;
  color: #444;
  margin-bottom: 50px; 
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

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

.social-icon {
  display: inline-flex;
  background-color: #001C31;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #0d1a26;
}

.social-icon img {
  width: 22.75px;
  height: 21px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) and (min-width: 769px) {
  .hero-content {
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-left {
    max-width: 40%;
  }

  .hero-right {
    max-width: 55%;
  }

  .hero-title {
    font-size: 100px;
    width: auto;
    height: auto;
  }

  .hero-description {
    margin-left: -60px;
    font-size: 22px;
    line-height: 1.6;
  }

  .social-icons {
    margin-left: 0;
    margin-top: 40px;
    justify-content: flex-start;
  }
}
 
@media (max-width: 1060px) and (min-width: 993px) {
  .hero-content {
    max-width: 92vw;
    gap: 60px;
    justify-content: space-between;
  }

  .hero-left {
    max-width: 45%;
  }

  .hero-right {
    max-width: 50%;
  }

  .hero-title {
    font-size: 115px;
    width: auto;
    height: auto;
  }

  .hero-description {
    margin-left: -60px; 
    font-size: 23px;
    line-height: 1.6;
  }

  .social-icons {
    margin-left: 0;
    justify-content: flex-start;
    margin-top: 40px;
  }
}


@media (max-width: 768px) {
  
  .hero-section {
    padding: 82px 20px;
  }

  .hero-section .hero-content {
    flex-direction: column;
    align-items: flex-start !important; 
    text-align: left !important;
    gap: 20px;
  }
.hero-section.scroll-down{
  position: absolute;
    bottom: 0;
}
  .hero-section .hero-left,
  .hero-section .hero-right {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-section .hero-title {
    font-size: clamp(4rem, 10vw, 6rem) !important;
    width: auto !important;
    height: auto !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .hero-section .hero-description {
    margin-top: 10px !important;
    font-size: clamp(14px, 4vw, 22px) !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    max-width: 500px !important; 
}

  .hero-section .social-icons {
    margin-top: 16px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .hero-section .social-icon {
    margin-right: 12px !important;
  }

  .hero-section .scroll-down {
    order: 9999 !important;         
    margin-top: 22px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important; 
    text-align: center !important;
    position: absolute;
    bottom: 0;
    top:373px;
  }
}


/* --- Mobile --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .scroll-down {
    font-size: 16px;
    margin-top: 20px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon img {
    width: 16px;
    height: 14px;
  }
}
html {
  scroll-behavior: smooth;
}

@media (min-width: 1000px) and (max-width: 1350px) {
  .social-icons {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    margin-left: 445px !important;
    justify-content: flex-start !important;
  }

  .social-icon {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0 !important;
  }

  .social-icon img {
    width: 22.75px !important;
    height: 21px !important;
  }
}


@media (min-width: 1351px) {
  .social-icons {
    margin-left: 420px !important;  
    gap: 24px !important;
    flex-wrap: nowrap !important;
  }

  .social-icon {
    width: 45px !important;
    height: 45px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .social-icon img {
    width: 22.75px !important;
    height: 21px !important;
  }
}


 
@media (max-width: 992px) {
  .social-icons {
    margin-left: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .hero-right {
    align-items: flex-start !important;
  }

  .hero-section .social-icons {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
    gap:6px;
  }

  
  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .scroll-down {
    order: 3 !important; 
    margin-top: 30px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important; 
    text-align: center !important;
  }
}


@media (max-width: 768px) {

  /* .hero-left .scroll-down {
    display: none !important;
  } */

  .hero-right::after {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px; 
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
}

@media (max-width: 768px) {

    /* .hero-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    } */

    .hero-section .hero-content {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-section .hero-left,
    .hero-section .hero-right {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-section .hero-title {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .hero-section .hero-description {
        text-align: left !important;
        margin-left: 0 !important;
    }

    
    .hero-section .social-icons {
        justify-content: flex-start !important;
        margin-left: 0 !important;
    }

    
    .hero-section .scroll-down {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0 !important;
    }
}
@media (max-width: 768px) {
  .hero-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* ---- Audits Section ---- */
.audits-section {
  background-color: #fff;
  padding: 120px 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

/* Container */
.audits-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header */
.audits-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.audits-title {
  font-size: 80px;
  font-weight: 500;
  color: #001C31;
  margin: 0;
  flex: 1;
  font-family: 'Inter', sans-serif;
  line-height: 104.66px;
}

.audits-text {
  flex: 1.2;
  font-size: 16px;
  line-height: 160%;
  color: #001C31;
  margin-top: 15px;
  margin-left: -341px;
  font-weight: 400;
}

/* Content Layout */
.audits-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.audits-image-wrap {
  flex: 1;
}

.audits-image {
  width: 323px;
  height: 564px;
  object-fit: cover;
}

 

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 39px;
  row-gap: 40px;
}

.audit-item {
  padding-bottom: 15px;
  width: 398px;
}

.audit-item hr {
  border: none;
  border-bottom: 1px solid #000000;
  margin-top: 20px;
}

.audit-year {
  font-size: 48px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #001C311A;
  margin-bottom: 6px;
}

.audit-company {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0;
  color: #001C31;
}

.audit-desc {
  font-size: 14px;
  color: #001C31;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}


 
@media (max-width: 1200px) {
  .audits-title {
    font-size: 64px;
  }

  .audits-text {
    margin-left: -150px;
    font-size: 15px;
  }

  .audits-image {
    width: 300px;
    height: 520px;
  }

  .audit-item {
    width: 100%;
  }
}

 
@media (max-width: 1024px) {
  .audits-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .audits-title {
    font-size: 60px;
    line-height: 1.2;
    text-align: center;
  }

  .audits-text {
    font-size: 16px;
    line-height: 1.6;
    margin-left: 0;
    max-width: 700px;
    text-align: center;
  }

  .audits-content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .audits-image {
    width: 300px;
    height: auto;
  }

  .audit-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
    column-gap: 0;
  }

  .audit-item {
    text-align: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .audit-year {
    font-size: 42px;
  }

  .audit-company {
    font-size: 18px;
  }
}

 
@media (max-width: 600px) {
  .audits-section {
    padding: 50px 0;
  }

  .audits-container {
    padding: 0 20px;
    gap: 40px;
  }

  .audits-title {
    font-size: 40px;
    text-align: center;
  }

  .audits-text {
    font-size: 15px;
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
  }

  .audits-content {
    flex-direction: column;
    align-items: center;
  }

  .audits-image {
    width: 260px;
    height: auto;
  }

  .audit-grid {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .audit-item {
    text-align: center;
    width: 100%;
  }

  .audit-year {
    font-size: 32px;
  }

  .audit-company {
    font-size: 18px;
  }

  .audit-desc {
    font-size: 14px;
  }
}

 
@media (max-width: 400px) {
  .audits-title {
    font-size: 34px;
  }

  .audits-text {
    font-size: 14px;
  }

  .audit-year {
    font-size: 28px;
  }

  .audit-company {
    font-size: 15px;
  }
}


@media (max-width: 600px) {

    
    .audits-header {
      flex-direction: column;
      align-items: flex-start !important;
      text-align: left !important;
      gap: 16px;
    }
  
    .audits-title {
      font-size: 45px !important;
      text-align: left !important;
      margin: 0;
    }
  
    
    .audits-text {
      text-align: left !important;
      margin: 0 !important;
      max-width: 100% !important;
    }
  
    .audits-content {
      flex-direction: column;
      align-items: flex-start !important;
      gap: 24px;
    }
  
    
    .audits-image {
      width: 282px !important;
      height: 240px !important;
      object-fit: cover !important;
    }
  
    
    .audit-grid {
      grid-template-columns: 1fr !important;
      width: 100%;
    }
  
    .audit-item {
      width: 100%;
      text-align: left !important;
    }
  
    .audit-year,
    .audit-company,
    .audit-desc {
      text-align: left !important;
    }
  }
  
   
@media (max-width: 600px) {

  .audits-content {
    display: flex !important;
    flex-direction: column !important;
  }

  
  .audits-image-wrap {
    order: 1 !important;
    width: 100% !important;
  }

  
  .audits-right {
    order: 2 !important;
    width: 100% !important;
  }

}



/* --- SKILLS SECTION --- */
.skills-section {
  padding: 0 0;
  background-color: #fff;
  margin-bottom:60px;
}

 
.skills-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.skills-title {
  font-size: 80px;
  color: #001C31;
  font-weight: 400;
  margin-top: 100px;
  flex: 1 1 30%;
  width: 183px;
  height: 105px;
}

.skills-desc {
  flex: 1 1 60%;
  color: #001C31E5;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
  width: 827px;
  height: auto;
  margin-top: 136px;
}

/* Logos */
.skills-logos-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.skills-logos {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  white-space: nowrap;
  width: max-content;      
  animation: scroll-logos var(--scroll-duration, 40s) linear infinite;
}



.skills-logos img {
  height: 60px;
  width: 105px;
  object-fit: contain;
  opacity: 0.42;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.skills-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

 
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 1199px) {
  .skills-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 40px;
  }

  .skills-title {
    font-size: 60px;
    margin: 0 auto;
    text-align: center;
  }

  .skills-desc {
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
  }

  .skills-logos {
    gap: 40px;
    animation: scroll-logos 35s linear infinite; 
  }

  .skills-logos img {
    height: 50px;
    object-fit: contain;
  }
}

 
@media (max-width: 600px) {
  .skills-title {
    font-size: 36px;
  }

  .skills-desc {
    font-size: 14px;
    width: 95%;
  }

  .skills-logos {
    gap: 20px;
    animation: scroll-logos 30s linear infinite;
  }

  .skills-logos img {
    height: 54px;
    object-fit: contain;
    width: 100px;
  }
}

 
   @media (max-width: 768px) {

    .skills-header {
      flex-direction: column !important;
      align-items: flex-start !important;
      text-align: left !important;
      gap: 20px !important;
      margin-top: 40px;
    }
  
    .skills-title {
      text-align: left !important;
      margin: 0 !important;
      width: 100% !important;
    }
  
    .skills-desc {
      text-align: left !important;
      width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
    }
  }
  


.qualifications-section {
  background-color: #1a2a3a;
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.qualifications-section::before {
  content: "";
  position: absolute;
  top: 35%; 
  left: 50%;
  width: 650px;
  height: 650px;
  background-image: url('../images/others-pattern.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}


.qualifications-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1366px;
  margin: 0 -21px;
}


.qualifications-title-wrap {
  flex-grow: 1;
}

.qualifications-title {
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  width: 202px;
  height: 105px;
  line-height: 104.66px;
  font-family: 'Inter', sans-serif;
}


.qualifications-list {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  font-family: 'Inter', sans-serif;
  width: auto;              
  max-width: 100%;          
  margin-right: 35px;
  white-space: nowrap;      
  text-align: right;
  height: auto;
  flex-wrap: nowrap;        
}


.separator {
  color: #fff;
  font-size: 1.1em;
}


@media (max-width: 1024px) {
  .qualifications-title {
      font-size: 60px;
      width: auto;
      height: auto;
      line-height: 1.1;
  }

  .qualifications-list {
      width: auto;
      margin-right: 0;
      gap: 15px;
      flex-wrap: wrap;           
      justify-content: center;    
  }

  .qualifications-section::before {
      top: 38%;
      width: 500px;
      height: 500px;
      opacity: 0.3;
  }
}


@media (max-width: 768px) {
  .qualifications-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
  }

  .qualifications-title {
      font-size: clamp(48px, 8vw, 50px);
      width: auto;
      height: auto;
      line-height: 1.2;
  }

  .qualifications-list {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      white-space: normal;
      line-height: 1.5;
  }

  .separator {
      display: none;
  }
  .qualifications-section{
    padding: 37px 20px;
  }
  .qualifications-section::before {
      top: 32%;
      width: 380px;
      height: 380px;
      opacity: 0.35;
  }
}


@media (max-width: 480px) {
  .qualifications-title {
      font-size: clamp(48px, 10vw, 36px);
  }

  .qualifications-list {
      font-size: 16px;
      gap: 10px;
  }

  .qualifications-section::before {
      top: 28%;
      width: 280px;
      height: 280px;
      opacity: 0.4;
  }
}

 
@media (max-width: 768px) {



.qualifications-content {
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 25px !important;
}

.qualifications-title {
  text-align: left !important;
  width: 100% !important;
  margin: 0 !important;
}

.qualifications-list {
  align-items: flex-start !important;
  text-align: left !important;
  width: 100% !important;
  margin: 0 !important;
}

.qualifications-list > * {
  text-align: left !important;
}
}

@media (min-width: 1400px) {
  .qualifications-content {
    justify-content: center;
    gap: 0; 
    margin: 0 auto;
    max-width: 1373px;  
  }
}


/*COURSES SECTION*/

 
:root {
  --section-bg: #001C31;  
  --title-color: #FFFFFF;
  --text-color: #FFFFFF;
  --course-year-opacity: 0.7;
  --course-name-opacity: 0.7;
}

.courses-section {
  position: relative;
  background-color: var(--section-bg);
  color: var(--text-color);
  padding: 120px 0;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;  
}

.map-contour-bg {
  bottom: 0;
  left: -100px;
  width: 600px;
  height: 600px;
  opacity: 0.5;
  transform: rotate(0deg);
  background-image: url("../images/map-contour.png");
  background-size: cover;
  background-position: center bottom;
}

.compass-rose-bg {
  top: 348px;
  right: 150px;
  left: 234px;
  width: 205px;
  height: 205px;
  opacity: 0.5;
  transform: rotate(-10deg);
  background-image: url("../images/compass-rose.png");
  background-size: contain;
  background-position: center;
}

.map-overlay-bg {
  width: 683px;
  height: 683px;
  top: -39px;
  left: 773px;
  opacity: 0.5;
  transform: rotate(4deg);
  background-image: url("../images/map-overlay.png");
  background-size: cover;
  background-position: center;
}

.courses-wrapper {
  position: relative;
  z-index: 2; 
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.courses-left {
  flex: 0 0 30%;
}

.courses-title {
  font-size: 80px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  color: var(--title-color);
}

.courses-right {
  flex: 0 0 65%;
}

.courses-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.courses-list li a {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 14px 0;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.courses-list li a:hover {
  background-color: transparent;
}

.courses-list li a:hover .course-year,
.courses-list li a:hover .course-name {
  opacity: 1;
  color: var(--text-color);
}

/* Year and Course Name */
.course-year {
  flex: 0 0 60px;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  opacity: var(--course-year-opacity);
  line-height: 105%;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.course-name {
  font-size: 16px;
  line-height: 140%;
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: var(--course-name-opacity);
  max-width: 700px;
  transition: color 0.3s ease, opacity 0.3s ease;
}



@media (max-width: 992px) {
  .courses-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .courses-left,
  .courses-right {
    flex: 0 0 100%;
  }

  .courses-title {
    font-size: 56px;
    text-align: left;
  }

  .courses-list li a {
    flex-direction: row;
    align-items: flex-start;
  }

  .course-year {
    font-size: 18px;
  }

  .course-name {
    font-size: 16px;
  }

  .map-contour-bg {
    width: 100vw;
    height: 500px;
    bottom: 0;
    left: -50px;
  }

  .compass-rose-bg,
  .map-overlay-bg {
    display: none;
  }
}

@media (max-width: 600px) {
  .courses-title {
    font-size: 42px;
  }
  .courses-wrapper {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .courses-section {
    padding: 100px 20px; 
  }

  .courses-wrapper {
    gap: 30px;
  }

  .courses-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
.courses-section .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


  .courses-section {
    padding: 50px 20px !important;
  }

  .courses-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 25px !important;
    width: 100% !important;
  }

  .courses-left {
    width: 100% !important;
    flex: 0 0 100% !important;
    text-align: left !important;
  }

  .courses-title {
    font-size: 48px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-align: left !important;
    width: 100% !important;
  }

  .courses-right {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .courses-list li a {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .course-year {
    flex: 0 0 auto !important;  
    text-align: left !important;
    font-size: 18px !important;
    opacity: 0.75;
  }

  .course-name {
    text-align: left !important;
    font-size: 16px !important;
    max-width: 100% !important;
    margin-top: -3px;
  }
}


/*   CLIENT REVIEWS SECTION   */

.client-reviews-section {
  position: relative;
  background-color: #011b2b !important; 
  color: #fff !important;               
  padding: 45px 0;
  overflow: hidden;
}

.client-reviews-section > .container > div {
  display: flex;
  flex-wrap: wrap;      
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;        
}


/* --- Left column --- */
.client-reviews-left {
  flex: 1 1 300px;    
  min-width: 250px;
}

.client-reviews-title {
  font-size: 80px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 84px;
  margin-top: 100px;
  margin-left: 5px;
  width: 100px;
  color: #ffffff !important;  
}

/* --- Right column --- */
.client-reviews-right {
  flex: 2 1 400px;    
  min-width: 300px;
  margin-left: -40px;
  margin-top: -60px;  
  position: relative;
  max-width: 850px;
}

.client-reviews-slider {
  position: relative;
  overflow: hidden;
}

.client-reviews-slider .swiper-wrapper {
  display: flex;
}

.client-reviews-slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

/* --- Review Text & Author --- */
.client-review-text {
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 829px;
  margin-top: 134px;
  text-align: left;
  color: #ffffff !important;  
}

.client-review-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.client-author-name {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  line-height: 140%;
  font-family: 'Inter';
  color: #ffffff !important;  
}

.client-author-role {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
  color: #ffffff !important;  
}

/* --- Pattern Image --- */
.review-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 899px;
  opacity: 0.5;
  pointer-events: none;
}

/* --- Slider Arrows --- */
.client-review-arrows {
  position: absolute;
  top: 40px;
  right: 60px;
  display: flex;
  gap: 18px;
  z-index: 10;
}

.client-review-prev,
.client-review-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff !important;             
  font-size: 22px;
  transition: color 0.2s ease;
}

.client-review-prev:hover,
.client-review-next:hover {
  color: #CBA15D !important;          
}


@media (max-width: 1024px) {
  .client-reviews-section {
    padding: 100px 60px;
  }

  .client-reviews-section > .container > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .client-reviews-left,
  .client-reviews-right {
    flex: 0 0 100%;
    margin-left: 0;
    margin-top: 0;
    max-width: 100%;
    padding-left: 0;
  }

  .client-reviews-title {
    font-size: 64px;
    line-height: 68px;
    margin: 0 auto 20px;
    text-align: center;
    width: 238px;
  }

  .client-review-text {
    font-size: 18px;
    margin: 0 auto 20px;
    max-width: 85%;
    line-height: 1.6;
    color: #ffffff !important; 
  }

  .client-review-author {
    justify-content: center;
    margin-top: 15px;
  }

  .client-review-arrows {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .review-pattern {
    width: 400px;
    right: 5%;
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .client-reviews-section {
    padding: 80px 40px;
  }

  .client-reviews-title {
    font-size: 50px;
    line-height: 56px;
    width: 187px;
  }

  .client-review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff !important;
  }

  .client-review-author {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .client-author-name {
    font-size: 18px;
  }

  .client-author-role {
    font-size: 15px;
  }

  .review-pattern {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .client-reviews-section {
    padding: 60px 20px;
  }

  .client-reviews-title {
    font-size: 50px;
    line-height: 44px;
    margin-bottom: 15px;
    width: 64%;
  }

  .client-review-text {
    font-size: 15px;
    margin-bottom: 20px;
    color: #ffffff !important; 
  }

  .client-review-author {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .client-author-img {
    width: 44px;
    height: 44px;
  }

  .client-author-name {
    font-size: 17px;
  }

  .client-author-role {
    font-size: 14px;
  }

  .review-pattern {
    width: 220px;
    right: 10px;
  }
}


 
@media (max-width: 768px) {

  .client-reviews-section .container {
      padding-left: 0 !important;
      padding-right: 0 !important;
  }

  .client-reviews-section > .container > div {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .client-reviews-title {
    text-align: left !important;
    margin: 0 0 0 0 !important;
    width: 100% !important;
  }

  .client-review-text {
    text-align: left !important;
    margin: 10px 0 20px 0 !important;
    max-width: 100% !important;
    color: #ffffff !important; 
  }

  .client-review-author {
    justify-content: flex-start !important;
    text-align: left !important;
    padding-left: 0 !important;
    align-items: flex-start !important;
  }

  .client-review-arrows {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
    position: static !important;
  }
}


 
@media (max-width: 768px) {

  .client-review-author {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .client-author-name,
  .client-author-role {
    text-align: left !important;
    margin: 0 !important;
    color: #ffffff !important; 
  }

  .client-review-author div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 2px;
  }
}



/* WORK SECTION */
.work-section {
  padding: 120px 0;
  background-color: #fff;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.work-title {
  font-size: 80px;
  color: #001C31;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  flex: 1 1 30%;
}

.work-desc {
  flex: 1 1 60%;
  color: #001C31;
  font-size: 17px;
  line-height: 1.6;
  margin-left: -210px;
}

.work-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 13px;
  justify-content: flex-end;
}

.work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 24px;
  height: 44px;
  border: 0.5px solid rgba(0, 28, 49, 0.5);
  border-radius: 2px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #001C31;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 242px;
}

.work-btn .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #001C31;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.work-btn:hover {
  background: #f9f9f9;
  border-color: #001C31;
}

.work-btn svg path {
  stroke: #fff;
  transition: stroke 0.3s;
}

.work-btn .arrow svg path {
  stroke: #F9F4EE;
}

.work-btn .arrow svg {
  transform: scale(1.4);
  transition: transform 0.3s ease;
  margin-left: 6px;
  margin-top: 4px;
}

 
@media (max-width: 1200px) {
  .work-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
      margin-bottom: 50px;
  }

  .work-title {
      font-size: 60px;
  }

  .work-desc {
      margin-left: 0;
      font-size: 16px;
      max-width: 800px;
      padding: 0 40px;
  }

  .work-buttons {
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
  }

  .work-btn {
      min-width: 220px;
  }
}

@media (max-width: 992px) {
  .work-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
  }

  .work-title {
      font-size: 48px;
  }

  .work-desc {
      max-width: 600px;
      padding: 0 30px;
  }

  .work-buttons {
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }

  .work-btn {
      width: 100%;
      max-width: 300px;
  }
}

 
@media (max-width: 600px) {
  .work-section {
      padding: 80px 0;
  }

  .work-title {
      font-size: 36px;
      text-align: center;
  }

  .work-desc {
      text-align: center;
      padding: 0 20px;
      font-size: 15px;
  }

  .work-buttons {
      flex-direction: column;
      gap: 14px;
  }

  .work-btn {
      max-width: 280px;
      padding: 14px 20px;
  }
}

@media (max-width: 600px) {

  .work-section {
      padding: 60px 0;
      overflow-x: hidden;
  }

  .work-header,
  .work-desc,
  .work-buttons {
      padding: 0;              
      margin: 0;
      width: 100%;
  }

  .work-header {
      display: block;
      text-align: left;
  }

  .work-title {
      font-size: 55px;
      margin-bottom: 20px;
      text-align: left;
  }

  .work-desc {
      font-size: 15px;
      line-height: 1.6;
      text-align: left;
      margin-bottom: 30px;
  }

  .work-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;   
  }

  .work-btn {
      width: 100%;
      max-width: 89%;
      justify-content: space-between;
      padding: 14px 16px;
      font-size: 16px;
  }
}







/* --- Standards Section Styles --- */
.standards-section {
  padding: 100px 0;
  background-color: #fff;
}

.standards-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 80px;
}

.standards-title {
  font-size: 80px; 
  font-weight: 500;
  color: #001C31; 
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 104.66px;
  flex-shrink: 0; 
   
}

.standards-description {
  font-size: 16px;
  line-height: 160%;
  color: #001C31E5;
  font-weight: 400;
  flex-grow: 1;
  font-family: 'Inter', sans-serif;
  padding-top: 10px; 
   
}

/* Grid Layout */
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 17px;
  margin-left: 474px;
  align-items: start;
}

.standards-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
 
  height: 100%;
  position: relative;    
}
.standards-item::before {
  content: "";
  position: absolute;
  top: -5px;   
  left: 0;
  width: 84%;
  height: 1px;
  background-color: black;
}
.item-separator {
  display: none !important;
}

.item-icon {
  margin-bottom: 20px;
}

.item-icon img {
  width: 70px;
  height: 66px;
}

.item-title {
  font-size: 20px;
  font-weight: 600;
  color: #001C31; 
  margin: 0 0 10px 0;
  line-height: 120%;
}

.item-details {
  list-style: none; 
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #001C31;
  line-height: 140%;
}

.item-details li {
  margin-bottom: 5px;
}

.item-separator {
  height: 1px;
  background-color: black;
  margin-top: auto; 
  width: 84%;
}

.standards-item:nth-last-child(1) .item-separator, 
.standards-item:nth-last-child(2) .item-separator { 
  background-color: transparent;
}


@media (max-width: 1200px) {
  .standards-header {
      gap: 40px;
  }
  .standards-title {
      font-size: 64px;
      line-height: 90px;
  }
  .standards-grid {
      margin-left: 200px;
      column-gap: 40px;
  }
}

@media (max-width: 1024px) {
  .standards-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
  }

  .standards-title {
      font-size: 60px;
      width: auto;
      text-align: center;
  }

  .standards-description {
      text-align: center;
      max-width: 700px;
  }

  .standards-grid {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 40px;
      row-gap: 30px;
      margin: 0 auto;
      max-width: 800px;
      padding: 0 40px;
  }
}

/* --- Standards Section Styles --- */
.standards-section {
  padding: 100px 0;
  background-color: #fff;
}

.standards-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 80px;
}

.standards-title {
  font-size: 80px; 
  font-weight: 500;
  color: #001C31; 
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 104.66px;
  flex-shrink: 0; 
    
}

.standards-description {
  font-size: 16px;
  line-height: 160%;
  color: #001C31E5;
  font-weight: 400;
  flex-grow: 1;
  font-family: 'Inter', sans-serif;
  padding-top: 10px; 
  max-width: 784px; 
}

/* Grid Layout */
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 40px;
  margin-left: 474px;
  align-items: start;
}



.item-icon {
  margin-bottom: 20px;
}

.item-icon img {
  width: 70px;
  height: 66px;
}

.item-title {
  font-size: 20px;
  font-weight: 600;
  color: #001C31; 
  margin: 0 0 10px 0;
  line-height: 120%;
}

.item-details {
  list-style: none; 
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #001C31;
  line-height: 140%;
}

.item-details li {
  margin-bottom: 5px;
}

.item-separator {
  height: 1px;
  background-color: black;
  margin-top: auto; 
  width: 84%;
}

/* Hide last 2 separators on desktop */
.standards-item:nth-last-child(1) .item-separator, 
.standards-item:nth-last-child(2) .item-separator { 
  background-color: transparent;
}

@media (max-width: 1200px) {
  .standards-header {
      gap: 40px;
  }
  .standards-title {
      font-size: 64px;
      line-height: 90px;
  }
  .standards-grid {
      margin-left: 200px;
      column-gap: 40px;
  }
}

@media (max-width: 1024px) {
  .standards-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
  }

  .standards-title {
      font-size: 60px;
      width: auto;
      text-align: center;
  }

  .standards-description {
      text-align: center;
      max-width: 700px;
  }

  .standards-grid {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 40px;
      row-gap: 30px;
      margin: 0 auto;
      max-width: 800px;
      padding: 0 40px;
  }
}

@media (max-width: 768px) {

  .standards-grid {
    margin-left: 0 !important;
  }

  /*   Remove all separators on mobile */
  .item-separator {
    display: none !important;
  }

  .standards-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .standards-section{
    padding: 30px 0;
  }

  .standards-header {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    width: 100% !important;
    margin-bottom: 40px;
  }

  .standards-title {
    font-size: 42px;
    line-height: 60px;
    text-align: left !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .standards-description {
    font-size: 15px;
    line-height: 150%;
    text-align: left !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .standards-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    justify-items: flex-start !important;
    text-align: left !important;
    overflow: visible !important;
  }

  .standards-item {
    text-align: left !important;
    align-items: flex-start !important;
    padding: 0 0 !important;
    height: auto !important;
    width: 100% !important;
  }

  .item-icon {
    margin: 0 0 15px 0 !important;
  }

  .standards-section,
  .standards-header,
  .standards-item {
    overflow-x: hidden !important;
  }
}



/* ---- Professional Experience Section ---- */
.professional-experience-section {
  background-color: #001f33;
  color: #fff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  background-image: url('../images/exp.png');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 400px auto;
}

.professional-experience-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1258px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
}

.experience-left {
  flex: 0 0 35%;
}

.experience-left h2 {
  font-size: 80px;
  font-weight: 500;
  line-height: 84px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  margin-top:252px;
}

.experience-item {
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
}

.experience-item h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 140%;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-right: 420px;
}

.experience-item h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 405px;
  height: 1px;
  background-color: #ffffff;
}

.experience-item p {
  margin-top: 10px;
  font-size: 16px;
  font-family: dm-sans, sans-serif;
  line-height: 140%;
}

.clickable {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.clickable:hover {
  transform: scale(1.02);
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-60px);
  }
}

 
@media (max-width: 1200px) {
  .experience-left h2 {
    font-size: 70px;
    line-height: 78px;
  }

  .experience-item h3 {
    font-size: 36px;
    padding-right: 300px;
  }

  .experience-item h3::after {
    width: 280px;
  }
}

@media (max-width: 992px) {
  .professional-experience-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .experience-left {
    flex: 1 1 100%;
  }

  .experience-left h2 {
    font-size: 60px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
  }

  .experience-item {
    margin-bottom: 40px;
  }

  .experience-item h3 {
    font-size: 30px;
    padding-right: 0;
  }

  .experience-item h3::after {
    display: none;
  }

  .experience-item p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 650px;
    margin: 10px auto 0;
  }
}

 
.exp-mobile-arrows {
  display: none !important;
}

 
@media (max-width: 600px) {

  
  .professional-experience-container {
    padding: 0 20px;
  }

  
.experience-left {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.experience-left h2 {
  font-size: 42px;
  line-height: 1.2;
  text-align: left !important;
  margin: 0 0 30px 0 !important;
  padding: 0 !important;
}


  .experience-right {
    width: 100%;
  }

  .experience-item {
    text-align: left !important;
    margin-bottom: 30px;
  }

  
.experience-item h3 {
  position: relative;
  padding-right: 120px !important;  
}

.experience-item h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;                        
  width: 100px;                   
  height: 1px;
  background-color: #ffffff;
  display: block !important;
}



  .experience-item p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
    padding: 0;
    text-align: left !important;
  }
 
  .experience-item {
        opacity: 1 !important;
    }



   
  .exp-mobile-arrows {
    display: flex !important;
    gap: 15px;
    margin-top: 10px;
    justify-content: flex-start;
  }

  .exp-mobile-arrows button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
  }

  .exp-mobile-arrows button:active {
    opacity: 0.6;
  }

   
.exp-mobile-arrows {
  margin-left: 0 !important;
  padding-left: 0 !important;
  width: 100%;
}

.professional-experience-container {
  flex-direction: column;      
  align-items: flex-start !important;   
}

 
.exp-mobile-arrows button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

 
.tap-animate {
  animation: arrowTap 0.25s ease;
}

@keyframes arrowTap {
  0% { transform: scale(1); }
  50% { transform: scale(0.85); }
  100% { transform: scale(1); }
}


}


@media (max-width: 400px) {
  .experience-left h2 {
    font-size: 36px;
  }

  .experience-item h3 {
    font-size: 25px;
  }

  .experience-item p {
    font-size: 13px;
  }
}
 
@media (max-width: 992px) and (min-width: 601px) {
  .experience-left h2 {
    margin-top: 0 !important;  
  }
}



.about-me-section {
  position: relative;
  background: #001C31;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

 
.about-me-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/img.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.about-me-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: url('../images/about-me-bg-pattern.png') no-repeat top right;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

 
.about-me-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;

  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

 
@media (max-width: 992px) {
  .about-me-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
  }
}

 
.about-me-text h2 {
  font-size: 72px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.about-me-text p {
  font-size: 16px;
  line-height: 160%;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  max-width: 480px;
}

@media (max-width: 992px) {
  .about-me-text {
    margin: 0 auto 20px;
    max-width: 100%;
  }
}
 
.about-me-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  position: relative;
  max-width: 295px;  
  margin: 0 auto;
  overflow: hidden;  
}

.about-me-image img {
  width: 100%;
  height: 383px;
  object-fit: cover;
  transition: transform 0.6s ease;  
  transform-origin: center center;  
}

.about-me-image img:hover {
  transform: scale(1.05);  
}

 
.experience-box {
  width: 100%;
  background: #0a2b47;
  text-align: center;
  padding: 28px 0;
  margin-top: 0;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.experience-box h3 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.experience-box p {
  font-size: 16px;
  color: #ffffff;
  margin-top: 8px;
  font-weight: 400;
}

 
.about-me-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-me-services li {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  line-height: 32px;
  color: #ffffff;
}

@media (max-width: 992px) {
  .about-me-services {
    margin-top: 20px;
  }
}

 
@media (max-width: 768px) {
  .about-me-section {
    padding: 80px 0;
  }

  .about-me-text h2 {
    font-size: 42px;
  }

  .about-me-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-me-image {
    max-width: 300px;
  }

  .experience-box h3 {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .about-me-container {
    padding: 0 15px;
  }

  .about-me-text h2 {
    font-size: 36px;
  }

  .about-me-text p {
    font-size: 16px;
  }

  .about-me-image {
    max-width: 270px;
  }

  .experience-box {
    padding: 18px 10px;
  }

  .experience-box h3 {
    font-size: 55px;
    text-align: left;
    margin-left: 10px;
  }

  .about-me-services li {
    font-size: 15px;
  }
}



@media (min-width: 1200px) and (max-width: 1400px) {
  .about-me-container {
    align-items: flex-start;
  }

  
  .about-me-text {
    margin-top: -74px;  
  }

  .about-me-services {
    margin-top: 350px; 
  }
}


@media (max-width: 768px) {

  .about-me-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;

    
    padding: 0 28px !important;

    text-align: left !important;
  }

  .about-me-text,
  .about-me-text h2,
  .about-me-text p {
    text-align: left !important;
    width: 100%;
  }

  .about-me-image {
    align-self: flex-start;
    margin: 0;
    max-width: 320px;
  }

  .about-me-image img {
    width: 100%;
    height: 343px;
    object-fit: cover;
  }

  .about-me-services {
    width: 100%;
    text-align: left;
  }
}

 
@media (max-width: 480px) {
  .about-me-container {
    gap: 22px;
    padding: 0 22px !important;    
  }

  .experience-box p{
    font-size: 18px;
    color: #ffffff;
    margin-top: 8px;
    font-weight: 400;
    width: 182px;
    text-align: left;
  }

  .about-me-text h2 {
    font-size: 42px;    
    margin-bottom: 10px;
  }

  .about-me-text p {
    font-size: 15px;
  }

  .about-me-image img {
    max-width: 280px;
  }

  .about-me-services li {
    font-size: 12.4px;
    line-height: 1.55;
    margin-bottom: 10px;
  }
}


@media (max-width: 480px) {
    .about-me-text h2 {
        font-size: 50px;
    }
  }



.education-section {
  position: relative;
  background-image: url('../images/education-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 120px 0;
}

.education-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 28, 49, 0.61);
  z-index: 1;
}

.education-overlay {
  position: relative;
  z-index: 2;
}

 
.education-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.education-title {
  font-size: 80px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 0;
  flex-shrink: 0;
  line-height: 104.66px;
  color: #fff;
}

 
.education-timeline {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex: 1;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
}

 
.education-item {
  flex: 1;
  text-align: left;
  position: relative;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.education-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Year */
.education-year {
  font-size: 40px;
  font-weight: 600;
  line-height: 140%;
  font-family: 'Inter', sans-serif;
  margin-bottom: 25px;
}

/* Degree */
.education-degree {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;  
}

/* School */
.education-school {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;  
}
 

 
@media (max-width: 1024px) {
  .education-section {
    padding: 100px 0;
  }

  .education-title {
    font-size: 64px;
    line-height: 1.2;
  }

  .education-timeline {
    gap: 0;
  }

  .education-item {
    padding-left: 40px;
  }

  .education-year {
    font-size: 34px;
  }

  .education-degree {
    font-size: 18px;
  }

  .education-school {
    font-size: 13px;
  }
}

 
@media (max-width: 768px) {
  .education-section {
    padding: 80px 20px;
  }

  .education-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .education-title {
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
  }

  .education-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .education-item {
    padding-left: 25px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }

  .education-item::before {
    display: none;  
  }

  .education-year {
    font-size: 30px;
    text-align: left;
  }

  .education-degree {
    font-size: 18px;
    text-align: left;
  }

  .education-school {
    font-size: 14px;
    text-align: left;
  }
}


@media (max-width: 480px) {
  .education-section {
    padding: 70px 25px;
  }

  .education-title {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .education-year {
    font-size: 26px;
  }

  .education-degree {
    font-size: 16px;
  }

  .education-school {
    font-size: 13px;
  }

  .education-item {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {

    
.education-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


  .education-section {
    padding: 60px 15px !important;
  }

  
  .education-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
    gap: 10px !important; 
    margin-bottom: 10px !important; 
  }

  .education-title {
    font-size: 48px;
    line-height: 1.2;
    width: 100%;
    margin: 0 !important;  
    padding: 0 !important;
    text-align: left !important;
  }

  
  .education-timeline {
    flex-direction: column;
    width: 100%;
    gap: 30px; 
    margin-top: 5px !important; 
  }

  .education-item {
    width: 100%;
    padding: 0;
    border-left: none;
  }


  .education-year {
    font-size: 30px;
    margin-bottom: 4px !important;
    line-height: 1.2;
    text-align: left;
  }

  .education-degree {
    font-size: 18px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.3;
    text-align: left;
  }

  .education-school {
    font-size: 14px;
    margin-top: 2px;
    text-align: left;
  }

  
  .education-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin: 15px 0 0 0;
  }
}




.projects-section {
  padding: 80px 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}


.projects-section .projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.projects-section .projects-header .section-title {
  font-size: 84px;
  color: #001C31;
  font-weight: 500;
  margin: 0;
  line-height: 104.66px;
  font-family: 'Inter', sans-serif;
}

.projects-section .projects-header .projects-description {
  font-size: 17px;
  color: #001C31E5;
  max-width: 770px;
  line-height: 1.6;
  margin-top: 23px;
}


.projects-section .tabs-list {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
  list-style: none;
  flex-wrap: wrap;
}

.projects-section .tabs-list .tab {
  font-size: 20px;
  color: #001C3180;
  cursor: pointer;
  padding-bottom: 10px;
  transition: color 0.3s;
}

.projects-section .tabs-list .tab.active {
  color: #001C31;
  font-weight: 500;
}


.projects-section .projects-grid {
  display: none;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.projects-section .projects-grid .project-item {
  width: 100%;
}

.projects-section .projects-grid .project-item .project-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}


.projects-section .projects-grid .project-item .project-meta {
  margin-top: 15px;
}

.projects-section .projects-grid .project-item .project-meta .meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.projects-section .projects-grid .project-item .project-meta .project-role,
.projects-section .projects-grid .project-item .project-meta .project-duration {
  font-size: 16px;
  color: #001C31;
  line-height: 140%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.projects-section .projects-grid .project-item .project-meta .project-title {
  font-size: 20px;
  color: #001C31;
  margin: 10px 0;
  font-weight: 600;
  line-height: 140%;
  font-family: 'Inter', sans-serif;
}

.projects-section .projects-grid .project-item .project-meta .project-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #00000099;
  line-height: 150%;
  font-size: 16px;
}

.projects-section .projects-grid .project-item .project-meta .iso-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.projects-section .projects-grid .project-item .project-meta .iso-tag {
  display: inline-block;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 5px 12px;
  font-size: 14px;
  color: #00000099;
  border: 1px solid #B1B1B1B8;
  line-height: 140%;
}


.projects-section .projects-grid.active-grid {
  display: grid;
}


.projects-grid.hidden-grid {
  display: none !important;
}


.project-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: hidden;
  padding: 20px;
}

.project-popup {
  background: #fff;
  padding: 25px 30px 30px;
  max-width: 700px;
  width: 95%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.project-popup .popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10000;
}

.project-popup .popup-close:hover {
  background: #001C31;
  color: #fff;
}

.project-popup img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.project-popup h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #1A2A3A;
  font-size: 22px;
  text-align: center;
}

.project-popup p {
  margin-bottom: 8px;
  color: #444;
  text-align: center;
}

.project-popup .project-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project-popup .project-tags .iso-tag {
  margin: 5px;
  display: inline-block;
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 14px;
  color: #00000099;
  border: 1px solid #B1B1B1B8;
  line-height: 140%;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}


@media (max-width: 1200px) {
  .projects-section {
    padding: 70px 0;
  }
  .projects-section .projects-header .section-title {
    font-size: 72px;
    line-height: 1.2;
  }
  .projects-section .projects-header .projects-description {
    font-size: 16px;
    max-width: 700px;
  }
  .projects-section .projects-grid {
    gap: 30px;
  }
  .projects-section .project-item .project-meta .project-title {
    font-size: 19px;
  }
  .project-popup {
    width: 90%;
    padding: 20px 25px 25px;
  }
  .project-popup .popup-close {
    top: 10px;
    right: 10px;
  }
}


@media (max-width: 1024px) {
  .projects-section .projects-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .projects-section .projects-header .section-title {
    font-size: 60px;
    line-height: 1.2;
  }
  .projects-section .projects-header .projects-description {
    max-width: 600px;
    margin-top: 15px;
    font-size: 16px;
  }
  .projects-section .tabs-list {
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }
  .projects-grid.active-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .projects-grid .project-item img {
    max-height: 320px;
    border-radius: 10px;
  }
}


@media (max-width: 480px) {
  .projects-section {
    padding: 40px 0;
  }
  .projects-section .project-item .project-meta .project-title {
    text-align: center;
  }
  .projects-section .projects-header {
    flex-direction: column;
    align-items: start;
    text-align: left;
    padding: 0 0;
  }
  .projects-section .projects-header .section-title {
    font-size: 45px;
    line-height: 1.2;
  }
  .projects-section .projects-header .projects-description {
    font-size: 15px;
    line-height: 1.6;
  }
  .projects-section .tabs-list {
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
  }
  .projects-section .tabs-list .tab {
    font-size: 15px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 18px;
  }
  .projects-grid .project-item {
    background: #fff;
    border-radius: 8px;
    padding: 12px 14px 18px;
  }
  .projects-grid .project-item img {
    max-height: 230px;
  }
  .projects-section .project-item .project-meta .meta-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .projects-section .project-item .project-meta .project-title {
    font-size: 16px;
  }
  .projects-section .project-item .project-meta .project-role,
  .projects-section .project-item .project-meta .project-duration {
    font-size: 14px;
  }
  .projects-section .project-item .project-meta .iso-tag {
    font-size: 13px;
    padding: 4px 10px;
  }
  .project-popup {
    width: 95%;
    padding: 18px 20px 22px;
  }
  .project-popup .popup-close {
    top: 8px;
    right: 8px;
    font-size: 26px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}


@media (max-width: 340px) {
  .projects-section .project-item .project-meta .project-title {
    font-size: 15px;
  }
  .projects-section .project-item .project-meta .project-role,
  .projects-section .project-item .project-meta .project-duration {
    font-size: 13px;
  }
  .projects-section .project-item .project-meta .iso-tag {
    font-size: 12.5px;
    padding: 3.5px 8px;
  }
  .projects-grid .project-item {
    padding: 10px 12px 16px;
  }
}


@media (max-width: 768px) {
  .projects-section {
    overflow-x: hidden;
    overflow-y: hidden !important;
  }

  .projects-grid.active-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }
 
  .projects-section .projects-grid .project-item .project-meta .iso-tag{
    display: inline-block;
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 5px 12px;
    font-size: 10px;
    color: #00000099;
    border: 1px solid #B1B1B1B8;
    line-height: 140%;
  }
  .projects-grid.active-grid .project-item {
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 0;
    box-sizing: border-box;
  }

  .projects-grid.active-grid .project-item img {
    border-radius: px;
    width: 274px;
    height: 270px;
  }

  .mobile-project-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }

  .proj-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #001C3160;
    border-radius: 8px;
    background: white;
    font-size: 22px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
  }

  .proj-arrow:active {
    background: #001C31;
    color: white;
  }

  .projects-section .projects-grid .project-item .project-meta .project-desc{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #00000099;
    line-height: 150%;
    font-size: 13px;
  }
}


@media (max-width: 480px) {

  
  .project-popup-overlay {
    display: hidden;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
  }
 
.project-popup-overlay.active {
  display: flex !important;
}
  
  .project-popup {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 92% !important;
    max-width: 360px !important;
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .projects-section .tabs-list {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 30px !important;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-section .tabs-list::-webkit-scrollbar {
    display: none;
  }

  .projects-section .tabs-list .tab {
    flex: 0 0 auto !important;
    font-size: 13px !important;
    padding: 6px 2px;
  }
}


@media (max-width: 768px) {
  .projects-section .tabs-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 10px !important;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .projects-section .tabs-list::-webkit-scrollbar {
    display: none;
  }

  .projects-section .tabs-list .tab {
    flex: 0 0 auto !important;
    font-size: 16px !important;
    padding: 6px 2px !important;
  }
}



 
@media (max-width: 768px) {
  .projects-section .tabs-list {
    justify-content: flex-start !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    transform: translateX(0) !important;
  }
}

@media (max-width: 768px) {
  /*  Keep Role + Year inline */
  .projects-section .project-item .project-meta .meta-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    width: 100%;
    margin-bottom: 6px;
  }

   
  .projects-section .project-item .project-meta .project-role,
  .projects-section .project-item .project-meta .project-duration {
    font-size: 13px !important;
    line-height: 1.4;
    color: #001C31;
    font-weight: 500;
    white-space: nowrap;
  }

  
  .projects-section .project-item .project-meta .project-title {
    font-size: 17px !important;
    font-weight: 600;
    color: #001C31;
    margin-top: 5px;
    line-height: 1.4;
    text-align: left !important;
  }

  
  .projects-section .project-item .project-meta {
    margin-top: 12px !important;
  }
}




/* HMS SECTION */

.hms-section {
  position: relative;
  background: #001C31;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hms-section::before {
  content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/img.jpg);
    opacity: 0.1;
    z-index: 0;
    background-position: 0px 1187px;
    background-size: cover;
}

/* TOP RIGHT PATTERN */
.hms-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: url('../images/about-me-bg-pattern.png') no-repeat top right;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* MAIN CONTAINER */
.hms-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}


.hms-right {
  margin-right: 40px;
}


.hms-left h1,
.hms-left h2 {
  font-size: 80px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -1px;
  margin-top: -13px;
}

/* RIGHT TEXT BLOCK */
.hms-right p {
  font-size: 16px;
  line-height: 0.9;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  max-width: 480px;
  white-space: pre-line; 
  margin-right: 230px;
}

.hms-left {
  margin-left: 14px;
}

.hms-author {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}



@media (max-width: 1024px) and (min-width: 769px) {
  .hms-right p {
    margin-right: 80px; 
    max-width: 420px;
  }
}


/* Tablet Responsive */
@media (max-width: 992px) {
  .hms-container {
    flex-direction: column;
    text-align: left;
    gap: 25px;
    padding: 0 40px;
  }

  .hms-right {
    margin-right: 0;
  }

  .hms-right p {
    margin-right: 0;
    max-width: 100%;
  }
}


 
@media (max-width: 768px) {
  .hms-left h1,
  .hms-left h2 {
    font-size: 38px;
    white-space: nowrap; 
  }

  .hms-section {
    padding: 70px 0;
  }

  .hms-right p {
    max-width: 100%;
    margin-right: 0;
    font-size: 15px;
    line-height: 1.0;
  }
}



@media (max-width: 480px) {
  .hms-container {
    padding: 0 15px;
    padding-top: 16px;
  }

  .hms-left h1,
  .hms-left h2 {
    font-size: 32px;
    white-space: normal; 
  }

  .hms-right p {
    font-size: 14px;
    line-height: 1.0;
  }
}


@media (max-width: 992px) {
  .hms-left {
    margin-left: 0;  
  }
}


@media (max-width: 768px) {
  .hms-left {
    margin-left: 0;  
  }
}


/* EXPERTISE SECTION   */
.expertise-section {
  position: relative;
  background: #001C31;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.expertise-section::before {
 content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/img.jpg);
    opacity: 0.1;
    background-position: 0px 828px;
    background-size: cover;
    z-index: 0;
}

.expertise-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: url('../images/about-me-bg-pattern.png') no-repeat top right;
  background-size: contain;
  opacity: 0.6;
  z-index: 1;
}

.expertise-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.expertise-left h1,
.expertise-left h2 {
  font-size: 80px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -1px;
  margin-top: -13px;
}

.expertise-right ul.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 273px;
}

.expertise-right ul.expertise-list li {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 2.0;
  margin-bottom: 12px;
}

 

@media (max-width: 1024px) and (min-width: 769px) {
  .expertise-right ul.expertise-list {
    margin-right: 80px;
  }
}

@media (max-width: 992px) {
  .expertise-container {
    flex-direction: column;
    gap: 25px;
  }
  .expertise-right ul.expertise-list {
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .expertise-left h1,
  .expertise-left h2 {
    font-size: 38px;
    white-space: nowrap;
  }
  .expertise-section {
    padding: 70px 0;
  }
  .expertise-right ul.expertise-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .expertise-container { padding: 0 15px; }
  .expertise-left h1,
  .expertise-left h2 { font-size: 32px; }
  .expertise-right ul.expertise-list li { font-size: 14px; }
}







/* --- Vision & Principles Section --- */
.vision-principles-section {
  padding: 80px 0;
  background-color: #fff;
}

 
.vp-grid {
  display: grid;
  grid-template-columns: 250px 1fr;  
  column-gap: 80px;
  align-items: flex-start; 
}

/* LEFT SIDE */
.vp-left {
  display: flex;
  justify-content: flex-start;  
  align-items: flex-start;
}

.vp-left-logo {
  width: 69px;
  height: 95px;
  object-fit: contain;
}

/* RIGHT SIDE GRID */
.vp-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 40px;
}

.vp-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 18px 0;  
}

 
.vp-item::before,
.vp-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.vp-item::before {
  top: 0;
}

.vp-item::after {
  bottom: 0;
}

/* ICON */
.vp-item-icon img {
  width: 70px;
  height: 66px;
  margin-bottom: 20px;
}

.vp-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #001C31;
  margin: 0 0 10px 0;
}

.vp-item-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 140%;
}

.vp-item-details li {
  margin-bottom: 5px;
}

 
@media (max-width: 900px) {
  .vp-grid {
    grid-template-columns: 1fr;
    row-gap: 5px;
    text-align: center;
  }

  .vp-right {
    grid-template-columns: 1fr 1fr;
    padding: 0 0;
  }

  .vp-item::before,
  .vp-item::after {
    width: 70%;
    left: 15%;
  }
}

@media (max-width: 768px) {
  .vp-right {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vp-item::before,
  .vp-item::after {
    display: none;
  }

  .vp-grid,
  .vp-item {
    text-align: left;
  }

  .vision-principles-section {
    padding: 40px 0;
  }
}




 
/* PROFILE SECTION  */
.profile-intro-section {
    padding: 0;
    margin-bottom: 60px;
}

.profile-intro-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 40px;
}

/* LEFT SECTION */
.profile-left {
    flex: 2;
    transform: translateY(-25px);
}

.profile-content {
    max-width: 700px;
}

/* IMAGE RIGHT SECTION */
.profile-right {
    flex: 1;
    text-align: right;
}

.profile-right img {
    width: 380px;
    max-width: 100%;
    height: auto;
}

 
.intro-name {
    font-size: 80px;
    line-height: 1;
    font-weight: 500;
    color: #001f33;
    margin-bottom: 20px;
}

.intro-roles p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.intro-btn {
    display: inline-block;
    background: #00263e;
    color: #fff;
    padding: 10px 23px;
    font-size: 16px;
    text-decoration: none;
    margin: 15px 0 25px;
    transition: 0.3s;
    width: auto !important;
    max-width: fit-content !important;
}

.intro-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 780px;
}

 
.head-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.profile-middle {
    display: flex;
    flex-direction: column;
    width: 49%;
    margin-top: 64px;
}


@media (max-width: 1200px) {
    .profile-intro-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 40px;
    }

    .head-section {
        flex-direction: column;   
        gap: 0;
    }

    .profile-middle {
        width: 100%;               
    }

    .intro-name {
        font-size: 60px;
    }

    .profile-right {
        text-align: left;
    }

    .profile-right img {
        width: 330px;
        transform: translateY(-70px);
        margin-bottom: -80px;

    }
}

 
@media (max-width: 900px) {
    .intro-name {
        font-size: 48px;
    }

    .profile-right img {
        width: 300px;
        transform: translateY(-70px);
        margin-bottom: -80px;

    }
}

 
@media (max-width: 768px) {
    .profile-intro-container {
        padding: 0 20px;
    }

    .intro-name {
        font-size: 40px;
    }

    .profile-right img {
        width: 260px;
        transform: translateY(-70px);
        margin-bottom: -80px;

    }
}

 
@media (max-width: 480px) {
    .intro-name {
        font-size: 32px;
    }

    .profile-right img {
        width: 220px;
        transform: translateY(-70px);
        margin-bottom: -80px;

    }
}
@media (max-width: 1200px) {
    .profile-middle {
        margin-top: 30px; 
    }
}


@media (max-width: 900px) {
    .profile-middle {
        margin-top: 20px;
    }
}


@media (max-width: 768px) {
    .profile-middle {
        margin-top: 10px;
    }
}


@media (max-width: 480px) {
    .profile-middle {
        margin-top: 5px;
    }
}


.profile-right img {
    transition: transform 0.4s ease;  
    transform-origin: center center;  
}

.profile-right img:hover {
    transform: scale(1.08);  
}

@media (max-width: 600px) {
  .profile-right img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    transform: translateY(-70px) !important;
    margin-bottom: -80px !important;
  }

  .profile-right {
    text-align: left;
  }
}
