:root{
    --color1: #8ed1fc;
    --color2: #FCB88E;
    --color3: #00798C;
    --color4: #30638E;
    --color5: #003D5B;
    --font-dark: #000000;
    --font-light: #F5F5F5;
    --common-font: "Poppins", sans-serif;font-weight: 400;
    font-style: normal;;
    --hero-font: "Poppins", sans-serifont-weight: 400;
    font-style: normal;;
    --hero-sub-font: "Poppins", sans-serifont-weight: 400;
    font-style: normal;;
    --header-font: "Poppins", sans-serifont-weight: 400;
    font-style: normal;;
    --paragraph-font: "Poppins", sans-serif;font-weight: 400; font-style: normal;;
    --footer-font: "Poppins", sans-serif; font-weight: 400;
    font-style: normal;;
  
  }
  
  /* Basic Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--common-font);
  }
  
  /* Container */
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
  }
  
  /* Global Heading Styling */
  h1, h2, h3, h4, h5, h6 {
    position: relative;
    margin-bottom: 20px;
  }
  
  h2::after, h3::after, h4::after, h5::after, h6::after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--color1);
    margin-top: 10px;
  }
  p{
    margin-bottom: 20px;
  }

  ol, ul{
    margin: 20px 40px;
}
  
  /* back button */
  .back {
    color: var(--color5);
    text-decoration: none;
    padding: 5px;
    background: linear-gradient(to right, var(--color1) 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .2s ease-out;
  margin: 5px;
  }
  .back:hover {
    background-color: var(--color1);
    text-decoration: underline;
    padding: 5px;
    background-position: left bottom;

  }

  /* Button Primary*/
  .button {
    box-sizing: border-box;
    border: 0;
    border-radius: 40px;
    color: var(--font-light);
    padding: .8em 1.4em;
    background: var(--color2);
    display: flex;
    transition: 0.1s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    text-decoration: none;
  }
  
  .button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    visibility: hidden;
  }
  
  .button:hover {
    background-color: var(--color1);
    text-decoration: underline;
  }
  
 /* Desktop (default) styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--color4);
  color: white;
  position: relative; /* Ensure no unwanted overlap from other elements */
  z-index: 10; /* Ensure navbar stays above other elements */
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none; /* No underline */
  color: white; /* Keep the logo white */
}

.logo::before {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  background-color: var(--color1);
  margin-top: 5px;
}

.logo a {
  color: inherit; /* Inherits the color from the parent `.logo` class (white) */
  text-decoration: none; /* Removes underline */
  display: inline-block; /* Ensure it behaves properly as an inline element */
}

.logo a:hover {
  color: inherit; /* Ensure hover doesn't change the color */
  text-decoration: none; /* Ensure hover doesn't add underline */
}


.nav-links {
  display: flex;
  list-style: none;
  z-index: 10; /* Keep it clickable */
}
.nav-links ol, ul{
  margin: 0;
}
.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 5px; /* Increase clickable area for links */
  position: relative;
  z-index: 10; /* Make sure the links stay on top */
  display: inline-block; /* Ensure links are properly tappable */
  background: linear-gradient(to right, var(--color1) 50%, var(--color4) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .2s ease-out;
}
.nav-links li::after {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  background-color: var(--);
  margin-top: 0px;
}

.nav-links li a:hover {
  text-decoration: underline;
  padding: 5px;
  background-position: left bottom;
}

/* Media Queries for Mobile View */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    position: relative;
    background-color: var(--color4);
    width: 100%;
    align-items: flex-end;
    margin-top: 10px;
    z-index: 10;
  }

  .nav-links li {
    margin: 5px 5px;
  }

  .nav-links li a {
    display: block;
    width: 90%;
    font-size: 16px;
    text-align: left;
    padding: 5px;
  }
  .nav-links li::after {
    content: '';
    display: block;
    width: 0px;
    height: 5px;
    background-color: var(--color1);
    margin-top: 0px;
  }
}
  /* Video Hero */
  .hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
      z-index: -2;
    background: rgb(42,106,179);
background: linear-gradient(130deg, rgba(42,106,179,1) 0%, rgba(142,209,252,1) 50%, rgba(107,174,227,1) 100%);}

  /* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover; /* Ensures the video covers the area */
  filter: brightness(70%); /* Optional: Add a dark filter to improve text visibility */
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--font-light);
}

.hero-content h1 {
  font-size: 3.4rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  background: var(--color1);
  }
}

  /* Page Hero */
  .page-hero {
    color: #000000;
    text-align: center;
    padding: 50px 50px;

  }
  .page-hero h1 {
    font-size: 3rem;
    padding-bottom: 50px;
  }
  
  .page-hero p {
    font-size: 2.4rem;
    padding-bottom: 50px;

  }

  @media screen and (max-width: 768px) {
    .page-hero h1 {
      font-size: 2.2rem;
      padding-bottom: 50px;
    }
    .page-hero p {
      font-size: 1.8rem;
    }
  }
  
  /* About Section */
  #about {
    padding: 50px 0;
    text-align: left;
  }
  
  #about h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  #about p {
    font-size: 18px;
  }
  
  /* Card */
  .card {
    background-color: #fff;
    border-radius: 10px;
    border: #666 solid 0.1px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: left;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  
  .card p{
    margin: 0;
  }

  .card-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .card-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 800;
  }
  
  .card-subcopy {
    font-size: 16px;
    color: #666;
  }

  /* Card Button */
  .card-button {
    border: 0;
    border-radius: 40px;
    color: var(--font-dark);
    padding: .8em 1.4em;
    background: var(--color1);
    transition: 0.1s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;    
  }
  
  .card-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    visibility: hidden;
  }
  .card-button:hover {
    background-color: var(--color1);
    text-decoration: underline;
  }
  
  /* Images */
  .image{
    width: 100%;
    border-radius: 5px;
    border: #414141 solid 0.1px;
  }
/* Image styling */
/* Wrapper around each image */
.image-wrapper {
  width: 200px;
  height: 200px; /* Fixed height for uniformity */
}

/* Image styling */
.zoom-image {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, z-index 0.3s ease; /* Smooth animation */
  position: relative; /* Default positioning */
}

/* Hover effect for larger screens */
@media (min-width: 769px) {
  .zoom-image {
    margin-left: 10px;
    margin-right: 10px;
  }
  .zoom-image:hover {
    transform: translate(0%, 0%) scale(2); /* Center and zoom */
    z-index: 10; /* Bring to front */
  }
}
  
  /* Contact Section */
  #contact {
    padding: 50px 0;
    align-items: center;
  }
  
  #contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  #contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
  }
  
  #contact button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: var(--color1);
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  #contact button:hover {
    background-color: #555;
  }
  
  /* Footer */
  footer {
    background-color: var(--color5);
    color: #fff;
    padding: 20px 0;
  }
  
  footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  
  footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  footer p, footer ul, footer a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li {
    margin-bottom: 5px;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  hr{
    margin-bottom: 20px;
  }
  
  /* Container */
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  /* Responsive Breakpoints */
  @media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
  }
  
  /* Row */
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  /* Columns */
  [class*='col-'] {
    position: relative;
    width: 100%;
    padding: 10px;
  }
  
  /* Extra small devices (phones) */
  .col-xs-1 { width: 8.33%; }
  .col-xs-2 { width: 16.66%; }
  .col-xs-3 { width: 25%; }
  .col-xs-4 { width: 33.33%; }
  .col-xs-5 { width: 41.66%; }
  .col-xs-6 { width: 50%; }
  .col-xs-7 { width: 58.33%; }
  .col-xs-8 { width: 66.66%; }
  .col-xs-9 { width: 75%; }
  .col-xs-10 { width: 83.33%; }
  .col-xs-11 { width: 91.66%; }
  .col-xs-12 { width: 100%; }
  
  /* Small devices (tablets) */
  @media (min-width: 576px) {
    .col-sm-1 { width: 8.33%; }
    .col-sm-2 { width: 16.66%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.33%; }
    .col-sm-5 { width: 41.66%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.33%; }
    .col-sm-8 { width: 66.66%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.33%; }
    .col-sm-11 { width: 91.66%; }
    .col-sm-12 { width: 100%; }
  }
  
  /* Medium devices (desktops) */
  @media (min-width: 768px) {
    .col-md-1 { width: 8.33%; }
    .col-md-2 { width: 16.66%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33%; }
    .col-md-5 { width: 41.66%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33%; }
    .col-md-8 { width: 66.66%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33%; }
    .col-md-11 { width: 91.66%; }
    .col-md-12 { width: 100%; }
  }
  
  /* Large devices (large desktops) */
  @media (min-width: 992px) {
    .col-lg-1 { width: 8.33%; }
    .col-lg-2 { width: 16.66%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33%; }
    .col-lg-5 { width: 41.66%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33%; }
    .col-lg-8 { width: 66.66%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33%; }
    .col-lg-11 { width: 91.66%; }
    .col-lg-12 { width: 100%; }
  }
  
  /* Extra large devices (extra large desktops) */
  @media (min-width: 1200px) {
    .col-xl-1 { width: 8.33%; }
    .col-xl-2 { width: 16.66%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.33%; }
    .col-xl-5 { width: 41.66%; }
    .col-xl-6 { width: 50%; }
    .col-xl-7 { width: 58.33%; }
    .col-xl-8 { width: 66.66%; }
    .col-xl-9 { width: 75%; }
    .col-xl-10 { width: 83.33%; }
    .col-xl-11 { width: 91.66%; }
    .col-xl-12 { width: 100%; }
  }