@font-face {
    font-family: RE;
    src: url(./fonts/Rejouice-Headline.woff2);
}

@font-face {
    font-family: poppins;
    src: url(./fonts/Poppins-Regular.ttf);
}


* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-family: poppins;
}
body{
  overflow-x: hidden;
}

#page1 {
    height: 16vh;
    width: 100%;
    /* background-color: ; */
    display: flex;
    justify-content: center;
    align-items: center;
   
}

nav {
    height: 75%;
    width: 90%;
    /* background-color: #004658; */    
    /* background-color: aliceblue; */
    /* box-shadow: 0 0 6px black; */
    /* border-bottom: 2px solid #000; */
    /* border-radius: 1rem; */
    padding: 1.2vw 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #FFFFFF; */
    
}

.links .hometag{
    /* background-color: ; */
    padding: 0.2vw 0.9vw;
    color: #91618f;
    border-radius: 0.9rem;
    font-weight: 800;
}

nav .logo img {
    width: 7vw;
    height: 9vw;
    /* background-color: aliceblue; */
    margin-top: 0.8vw;
}
.logo h3{
    color: black;
    font-size: 1.6vw;
}

/* .logo img{
    height: 80%;
    width: 100%;
    object-fit: cover;
} */
nav .links {
    display: flex;
    align-items: center;
    gap: 2vw;
    font-size: 1.2vw;
    
     
}
.links a{
    color: black;
    font-weight: 600;
    transition: all ease 0.4s;
    
}
.links a:hover{
    padding-bottom: 0.5vw;
    /* text-decoration: underline; */
}


#menutag {
    display: none;
}

.fixed {
    display: none;
}


@media (max-width: 700px) {
  nav{
    height: 10vh;
  }
  .textbox h1 {
    font-size: 50px;
  }
 /* Add this at the top or to your global styles */
body {
  overflow-x: hidden;
}

/* Updated .fixed styles */
.fixed {
  display: none;
  position: fixed;         /* changed from absolute */
  z-index: 1000;
  height: 100vh;
  width: 60%;
  background-color: #003344;
  top: 0;                   /* changed from 13% */
  right: -70%;
  padding: 5vw;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.3s linear;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
}

  .fixed .res-links {
    display: flex;
    flex-direction: column;
    gap: 6vw;
    margin-top: 15vw;
    /* text-align: center; */

  }
  .res-links a{
      text-decoration: none;
      color: white;
      font-size: 7vw;
  }

  .fixed span i {
    font-size: 9vw;
    color: white;
  }


  .nav-links ui li {
    display: block;
  }

  .nav-links {
    display: none;
  }

  nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 8vw;
    cursor: pointer;
    background-color: #012A36;
  }

  .nav-links ul {
    padding: 30px;
  }

  .nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
  }
}

body {
  background-color: #fff;
  color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #00333a;
  padding: 10px 30px;
  color: white;
}

.logo img {
  height: 50px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 40px 20px;
  border-top: 2px solid #00333a;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #00333a;
}

.section {
  padding: 40px;
  background: #ffffff;
  text-align: center;
}

/* Slider Container */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 70%;
  margin: auto;
}

/* Entire Slide Row */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Each Slide */
.slide {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background-color: #f3f3f3;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Slide Text Section */
.slide-text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

/* Icon + Heading layout */
.icon-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-heading .icon {
  width: 55px;
  height: 55px;
}

.icon-heading h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #012A36;
}

.slide-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #222;
  text-align: left;
  max-width: 400px;
}

/* Learn More Button */
.slide-text button {
  background-color: #0a4d68;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-text button:hover {
  background-color: #066080;
}

/* Slide Image */
.slide-image {
  flex: 1;
  text-align: right;
}

.image-crop {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}

.image-crop img {
  width: 100%;
  transform: translateY(-20px);
  /* Move the image upward to crop top */
}

.slide-image img {
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

/* Navigation Arrows */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  /* Allow only buttons to be clickable */
}

.slider-controls button {
  pointer-events: auto;
  background: #ffffff;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

/* Adjust position to slightly overlap inside the slide area */
.slider-controls .prev {
  margin-left: 10px;
  /* ~10px inside the left side of the slide */
}

.slider-controls .next {
  margin-right: 10px;
  /* ~10px inside the right side of the slide */
}

.slider-controls button:hover {
  background-color: #0a4d68;
  color: #fff;
  border-color: #0a4d68;
}

/* Slide Dots */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.slider-dots span {
  display: inline-block;
  /* width: 16px; */
  /* height: 6px; */
  /* background-color: #ccc; */
  margin: 0 4px;
  /* border-radius: 3px; */
  /* transition: background-color 0.3s ease; */
  width: 30px;
  height: 8px;
  background: #c2c2c2;
  border-radius: 10px;
  /* ✅ Makes it a pill shape */
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dots .active {
  background-color: #0a4d68;
}

/* ====================== Responsive ====================== */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .slide-text {
    width: 100%;
    text-align: center;
  }

  .slider-wrapper {

    max-width: 100%;

  }


  .slide-image {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .slide-image img {
    width: 90%;
    height: 200px;
  }

  .icon-heading {
    justify-content: center;
  }
}

.cta {
  text-align: center;
  padding: 40px 20px;
}

.cta-text {
  margin-top: 40px;
  color: #013244;
}

.cta-text p {
  font-size: 16px;
  line-height: 1.5;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #013244;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #02566b;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    padding: 20px;
  }

  .divider {
    display: none;
  }

  .stat-box {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {

  .slide-image img,
  .image-crop {
    height: 200px;
  }
}




.footer {
    background-color: #004658;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 27px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 26px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 37px;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}


.footer-logo-link img {
    width: 120px;
}

@media (max-width: 700px) {
    nav {
        width: 100%;
        padding: 1vw 4vw;
    }

    #menutag {
        display: block;
        font-size: 7vw;
    }

    nav .links a {
        display: none;
    }

    nav .logo img {
      height: 24vw;
        width: 20vw;
        margin-top: 5vw;
    }

    #menutag {
        display: block;
        font-size: 7vw;
        /* color: black; */
        z-index: 999;
        /* background-color: red; */
        /* test only */
        font-size: 7vw;
    }


    /* Updated .fixed styles */
    .fixed {
        display: none;
        position: fixed;
        /* changed from absolute */
        z-index: 1000;
        height: 100vh;
        width: 60%;
        background-color: #003344;
        top: 0;
        /* changed from 13% */
        right: -70%;
        padding: 5vw;
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.3s linear;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    }


    .fixed .res-links {
        display: flex;
        flex-direction: column;
        gap: 6vw;
        margin-top: 15vw;
        /* text-align: center; */

    }

    .res-links a {
        text-decoration: none;
        color: white;
        font-size: 7vw;
    }

    .fixed span i {
        font-size: 7vw;
    }
  }


/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

    /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {

    /* smartphones, Android phones, landscape iPhone */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {

    /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:801px) {
    /* tablet, landscape iPad, lo-res laptops ands desktops */

}

@media (min-width:1025px) {
    /* big landscape tablets, laptops, and desktops */

}

@media (min-width:1281px) {
    /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}

@media (min-width: 568px) {
    /* .footer-content-column {
      width: 49.99%;
  } */
}