@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  /* font-weight: 100 900; */
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

::selection {
  background-color: #316d76; 
  color: white;              
}


html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
}


.color-theme {
  color: #316d76 !important;
}

.text-black {
  color: black !important;
}

.nav-link {
  color: black !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.nav-link:hover {
  color: #316d76 !important;
}


#main-header {
  transition: top 0.3s ease, box-shadow 0.3s ease, height 0.3s ease, padding 0.3s ease;
  position: relative;
  z-index: 1030;
  padding: 0px 0 !important;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

#main-header.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 !important;
  animation: slideDown 0.3s ease forwards;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#main-header.fixed-top::after {
  content: none;
}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

#mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  background-color: #1d1d1d !important;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  padding: 2.5rem 2rem;
  overflow-y: auto;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
}

#mobileMenu.show {
  transform: translateX(0);
}

#mobileMenu .nav-link {
  color: white !important;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

#mobileMenu .nav-link:hover,
#mobileMenu .nav-link:focus {
  color: #316d76 !important;
  text-decoration: none;
}

.submenu {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  display: none;
  flex-direction: column;
}

.submenu.show {
  display: flex;
}

.submenu .dropdown-item {
  color: white;
  padding: 0.4rem 0;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease;
}

.submenu .dropdown-item:hover,
.submenu .dropdown-item:focus {
  color:  #316d76 !important;
  text-decoration: none;
}

#mobileMenu .btn-close {
  filter: invert(1);
}

#mobileMenuCloseBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}


.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 80vw;
  width: 20vw;
  height: 100vh;
  background: transparent;
  z-index: 1040;
  display: none;
  cursor: pointer;
  padding-top: 1rem;
}

.mobile-menu-overlay.show {
  display: block;
}

.overlay-close-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  filter: invert(1);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 1100;
}


/* other-css */

.hero-section {
  position: relative;
  height: 96vh;
  overflow: hidden;
  background: #FFF;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 17%, rgba(49, 109, 118, 1) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23fab2b2" d="M35.6,-63.4C46.1,-55.1,55.4,-46.2,64.7,-35.2C74.1,-24.3,83.6,-11.2,82.2,1.1C80.8,13.3,68.4,24.7,58.5,36.3C48.6,47.8,41.1,59.5,30.1,66.2C19.1,73,4.6,74.7,-10.5,76.4C-25.6,78.2,-41.2,80,-52.5,73C-63.8,66.1,-70.9,50.4,-75.2,34.4C-79.6,18.4,-81.2,2,-75.6,-10.3C-70.1,-22.6,-57.4,-30.9,-46.5,-39.7C-35.6,-48.5,-26.5,-57.8,-15.4,-64.7C-4.2,-71.6,8.9,-76.1,21.8,-73.4C34.8,-70.8,48.5,-61.7,35.6,-63.4Z" transform="translate(100 100)" /></svg>') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
  display: none;
}

@media (min-width: 992px) {
  .hero-section::before {
    display: block;
  }
}


.hero-section2 {
  position: relative;
  height: 50vh !important;
  overflow: hidden;
  background: #FFF;
}

.hero-section2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
  display: none;
}

@media (min-width: 992px) {
  .hero-section2::before {
    display: block;
  }
}



.hero-text{
  color: black;
  font-weight: 800;
  line-height: 50px;
}

.hero-image {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 35%;
  z-index: 1;
}

.hero-content {
  margin-top: 7%;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}

.hero-col {
  width: 45%;
  color: white;
}

.hero-right {
  text-align: right !important;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    padding: 0 20px;
  }

  .hero-col {
    width: 100% !important;
    text-align: start !important;
    margin-bottom: 20px;
  }

  #main-header {
  padding: 10px 0 !important;
}

#main-header.fixed-top {
  padding: 10px 0 !important;
}

}

.teal-glow-btn {
  background: linear-gradient(135deg, #316d76 0%, #63a3ac 100%);
  color: white;
  border: none;
  padding: 1.2rem 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-position 0.5s ease, box-shadow 0.3s ease;
  background-size: 200% 100%;
  background-position: left center;
  box-shadow: 0 8px 20px rgba(49, 109, 118, 0.3);
  position: relative;
  overflow: hidden;
}

.teal-glow-btn i {
  transition: transform 0.3s ease;
}

.teal-glow-btn:hover {
  background-position: right center;
  box-shadow: 0 10px 25px rgba(49, 109, 118, 0.45);
}

.teal-glow-btn:hover i {
  transform: translateX(6px);
}

@keyframes bounceLoop {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.bouncy-div {
  animation: bounceLoop 2s ease-in-out infinite;
}

.lesson-card {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 320px;
}

.card-img-top {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.card-img-top2 {
  width: 60%;
  object-fit: cover;
}

.card-title {
  margin-top: 0.5rem;
  font-weight: 600;
}

.card-text {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}


.icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.meta-text {
    font-size: 16px; 
    line-height: 18px;
    font-weight: 700;
}


.flip-card {
    perspective: 1000px;
    width: 320px;
    height: auto;
  }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .flip-card:hover .flip-card-inner,
  .flip-card-inner.flipped {
    transform: rotateY(180deg);
  }

  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
  }

  .flip-card-front {
    z-index: 2;
  }

  .flip-card-back {
    transform: rotateY(180deg);
  }


  
.wave-bottom-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1460 150" xmlns="http://www.w3.org/2000/svg"><path fill="%23f7f7f7" d="M0,80 C365,130 1095,30 1460,80 L1460,150 L0,150 Z"/></svg>') repeat-x;
  background-size: 1460px 150px;
  animation: waveBackForth 6s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes waveBackForth {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1400px;
  }
}

.icon-button {
  background: #316d76;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tilted-icon {
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}

.icon-button:hover .tilted-icon {
  transform: rotate(0deg);
}

.rotating-image {
    transform: rotateZ(-60deg) scale(0.8); 
    transition: transform 1.2s ease-in-out, opacity 1s ease;
    opacity: 0;
    will-change: transform;
}

.rotating-image.visible {
    transform: rotateZ(0deg) scale(1);
    opacity: 1;
}


.team-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  width: 100%;
  max-width: 300px;
  height: 300px;
  overflow: hidden;
  transition: border-radius 0.5s ease;
  border: 5px solid #316d76;
}


.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.shape-circle {
  border-radius: 50%;
}

.shape-square {
  border-radius: 2%;
}

  @media (min-width: 768px) {
    .left-img {
      flex: 0 0 35%;
      max-width: 35%;
    }

    .right-content {
      flex: 0 0 65%;
      max-width: 65%;
    }

    .test-image {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  }

  @media (max-width: 767.98px) {
    .left-img,
    .right-content {
      width: 100%;
      max-width: 100%;
    }
  }


.test-image{
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}


.cust-btn {
  background-color: transparent;
  color: white;
  padding: 1.2rem 1.2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-position 0.5s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid #316d76;
}


.cust-btn i {
  transition: transform 0.3s ease;
}

.cust-btn:hover {
  background-position: right center;
}

.cust-btn:hover i {
  transform: translateX(6px);
}

.cust-btn2 {
  background-color: transparent;
  color: #316d76;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #316d76;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 1;
}

.cust-btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, #316d76, #5ab9c4);
  transition: all 0.4s ease;
  z-index: -1;
}

.cust-btn2:hover::before {
  left: 0;
}

.cust-btn2:hover {
  color: white;
  box-shadow: 0 8px 16px rgba(49, 109, 118, 0.2);
  border-color: transparent;
}

.cust-btn2 i {
  transition: transform 0.3s ease;
}

.cust-btn2:hover i {
  transform: translateX(6px);
}


.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px; 
}

.social-icon-img {
  width: 30px;  
  height: 30px;
  object-fit: contain;
  vertical-align: middle;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.social-icon-img:hover {
  filter: brightness(0.8); 
}

.bbt{
  cursor: pointer;
}


.custom-link a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.custom-link a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;  
  width: 0;
  height: 2px;
  background-color: #316d76;
  transition: width 0.3s ease;
}

.custom-link a {
  color: #595c5f !important;
}

.custom-link a:hover {
  color: #316d76 !important;
}

.custom-link a:hover::after {
  width: 100%;
}


.bbt {
  position: relative;
  color: inherit;
  cursor: pointer; 
  transition: color 0.3s ease;
}

.bbt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px; 
  width: 0;
  height: 2px;
  background-color: #316d76;
  transition: width 0.3s ease;
}

.bbt:hover {
  color: #316d76;
}

.bbt:hover::after {
  width: 100%;
}

.py-6{
  padding-top: 0px !important;
  padding-bottom: 40px !important;
}

.py-8{
  padding-block: 45px !important;
}

.best {
  animation: colorFlip 3s infinite ease-in-out;
}

.quality {
  color: #ee4a62; 
}

@keyframes colorFlip {
  0%, 100% {
    color: #ee4a62;
  }
  50% {
    color: #316d76;
  }
}


@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


.form-group {
  position: relative;
  margin-bottom: 1.9rem;
}

.form-control-custom {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  border-radius: 0;
  padding: 8px 0;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus {
  border-bottom-color: #316d76; 
}

.form-label-floating {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1rem;
  color: black;
  font-weight: 600;
  pointer-events: none;
  transition: 0.2s ease all;
}

.form-control-custom:focus + .form-label-floating,
.form-control-custom:not(:placeholder-shown) + .form-label-floating {
  top: -14px;
  font-size: 0.85rem;
  color: #316d76;
}

textarea.form-control-custom {
  resize: none;
  height: 100px;
}


.send-btn {
  background-color: #316d76 !;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(49, 109, 118, 0.4);
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #27575e !important;
  box-shadow: 0 6px 16px rgba(49, 109, 118, 0.5);
  transform: translateY(-2px);
}

.custom-padding {
  padding-top: 45px !important;
}


  .dropdown-colored {
    padding: 1rem 1.2rem;
    font-weight: 500;
    background: linear-gradient(to right, #e6f2f3, #f8fafa) !important;
    color: #316d76 !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-colored:last-child {
    border-bottom: none;
  }

  .dropdown-colored:hover {
    background: linear-gradient(to right, #316d76, #3f8892) !important;
    color: #fff;
    padding-left: 1.6rem;
  }

  .custom-modal {
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fafe, #eaf4f6);
  padding: 2rem;
  animation: fadeInUp 0.5s ease;
  border: none;
}

.custom-modal .modal-header h5 {
  color: #316d76;
}

.custom-modal .form-control,
.custom-modal .form-select {
  border: 2px solid #dceef2;
  box-shadow: none;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
}

.custom-modal .form-control:focus,
.custom-modal .form-select:focus {
  border-color: #5ab9c4;
  box-shadow: 0 0 0 0.2rem rgba(49, 109, 118, 0.2);
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

textarea{
  resize: none !important;
}


.dropdown-wrapper {
  position: relative;
}

.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background-color: #fff;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-30px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-wrapper:hover .custom-dropdown {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.custom-dropdown .dropdown-item {
  padding: 12px 20px;
  color: #222;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #316d76;
  color: white;
  /* border-radius: 12px; */
}


@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideFadeOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
}

.custom-select-wrapper {
  position: relative;
  width: 300px;
  font-family: sans-serif;
}
.custom-select {
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid #ccc;
  cursor: pointer;
  background-color: white;
}
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}
.custom-options div {
  padding: 10px 15px;
  cursor: pointer;
}
.custom-options div:hover {
  background-color: #316d76;
  color: white;
}

.hero-width{
  width: 60% !important;
}

.custom-color-w{
  width: 80%;
}

.custom-margin2{
  margin-left: 100px;
}

@media (max-width: 768px) { 
  .hero-width{
  width: 100% !important;
}

.custom-margin2{
  margin-left: 0;
}

.custom-color-w{
  width: 100%;
}

.hero-text{
  font-size: 38px;
  line-height: 50px;
}

 .hero-section {
  min-height: 160vh !important;
}

.hero-section2 {
  height: 60vh !important;
}

}


  #popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      backdrop-filter: blur(6px);
      background-color: rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.6s ease;
    }

    #popup-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    #welcome-popup {
      background: linear-gradient(135deg, #316d76, #316d76);
      color: #fff;
      padding: 40px 60px;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    #welcome-popup h2 {
      font-size: 28px;
      font-weight: bold;
      margin: 0 0 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .animated-text {
      background: linear-gradient(90deg, #ffffff 0%, #316d76 50%, #ffffff 100%);
      background-size: 200% auto;
      color: transparent;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    
    .animate-wave {
      animation: waveText 2.2s ease forwards;
    }

    @keyframes waveText {
      0% {
        background-position: -100% center;
      }
      100% {
        background-position: 100% center;
      }
    }

    #welcome-popup p {
      margin: 0;
      font-size: 18px;
      font-weight: 300;
      color: white;
    }


       .custom-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .custom-card img {
        height: 200px;
        object-fit: cover;
    }

    .custom-card .card-body {
        text-align: start;
        padding: 1.5rem;
    }

    .custom-card .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
    }
    
    .custom-card .card-img-top {
        border-bottom: 1px solid #eee;
    }



.modal-body ul li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.modal-body ul ul {
  padding-left: 25px;
}


.custom-modal-width {
  max-width: 450px !important;
}

.custom-modal-width2 {
  max-width: 600px !important;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 10px 16px;
}

.modal-body ul li {
  padding: 6px 0;
  font-size: 15px;
}

.modal-body ul ul li {
  font-size: 14px;
  color: #555;
}


.body ul li {
  padding: 5px 0;
  margin: 100px !important;
  font-size: 15px;
}

.body ul ul li {
  font-size: 14px;
  color: #555;
}

.modal-header .btn-close {
  filter: brightness(0.5);
}


.aws-subpoints {
  list-style: none;
  padding-left: 30px;
  margin-top: 0;
  margin-bottom: 0px !important;
}


.aws-subpoints {
  list-style: none;
  padding-left: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.aws-subpoints li {
  display: block;
  margin: 1px 0;
  padding: 0;
  font-size: 14px;
  color: #444;
}