body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Adjusted to start from the top */
    min-height: 200vh; /* Ensure there is enough space to scroll */
    background-color: rgb(10, 31, 68); /* Set background color to light blue */
    overflow-x: hidden;
}

.announcement-bar {
    width: 100%;
    background-color: rgb(48, 119, 152);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
   padding: 10px;
}

.fixed-text {
    flex: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
}

.marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header Styles */
.logobox {
    display: flex;
    justify-content: center; /* Center the logo box */
    align-items: center; /* Center items vertically */
}

.logo {
    display: flex;
    justify-content: space-around; /* Space the text elements evenly */
    align-items: center; /* Center text vertically */
    flex: 1;
    color: black;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    height: 100px;
}

.logo-text {
    margin: 0 20px; /* Add some margin to ensure there's space between texts */
}

.apply-btn1 {
    display: block;
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid orange;
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: 0.5s;
}

.apply-btn1:hover {
    background: orange;
    color: white;
}

.apply-btn1::before {
    background: orange;
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
    width: 100%;
    height: 0;
}

.apply-form {
    display: none;
    width: 80%;
    max-width: 600px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

form h3 {
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

form input, form textarea {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 15px;
    background: #f5f5f5;
    font-size: 16px;
    border-radius: 5px;
}

form button {
    padding: 15px;
    background: #ff5361;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
}

.icon-close-form {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    cursor: pointer;
}
/* Header Styles */
/* === HEADER STYLES === */
header {
    position: sticky ;
    top: 0;
    width: 100%;
    height: 80px;
    background-color:   #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    overflow: visible;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  header ul {
    flex: 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
  }
  
  header ul li {
    position: relative;
  }
  
  header ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1.2em;
    overflow: hidden;
  }
  
  header ul li a span {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-shadow: 0 0 5px #ffffff;
  }
  /* Header Styles */
  header ul li a:before,
  header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #0A1F44;
    transition: width 0.5s;
    z-index: 0; /* Ensure the lines are behind the text */
  }
  
  header ul li a:before {
    left: 0;
    top: 0;
  }
  
  header ul li a:after {
    right: 0;
    bottom: 0;
  }
  
  header ul li:hover > a:before,
  header ul li:hover > a:after {
    width: 100%;
  }
  
  /* Dropdown Content */
  header ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d9e2e3;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  header ul li:hover .dropdown-content {
    display: block;
  }
  
  header ul li .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
  }
  
  header ul li .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Blink Effect */
  @keyframes blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  header ul li .dropdown-content a:hover span {
    animation: blink 0.8s;
  }
  
  /* Remove green line hover effect for dropdown-content links */
  header ul li .dropdown-content a:before,
  header ul li .dropdown-content a:after {
    width: 0; /* Ensure no green line */
    transition: none; /* Disable width transition */
  }
  
  header ul li .dropdown-content a:hover:before,
  header ul li .dropdown-content a:hover:after {
    width: 0; /* Ensure no green line on hover */
  }
  
  /* Dropdown Styles */
  .menu-items .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f7f2f2;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(114, 112, 112, 0.2);
    top: 100%;
    left: 0;
    z-index: 1002; /* Increased z-index to ensure it appears in front */
  }
  
  .menu-items .dropdown-content li {
    display: block;
  }
  
  .menu-items .dropdown-content li a {
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(5, 4, 4);
    display: block;
  }
  
  .menu-items .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* === HAMBURGER ICON === */
  .hamburger {
    cursor: pointer;
    position: absolute;
    left: 20px;     /* This puts it 20px from the right edge */
    top: 40px;       /* Adjust this value to move it further down */
    display: none;   /* hidden by default, shown on mobile with media query */
    z-index: 2100;
  }
  
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  .boxhub {
    width: 800px;
    margin: 20px 0;
    padding: 10px;
    height: 300px;
    border: 2px solid hsl(191, 59%, 24%); /* Thick and blue border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(-100%); /* Start position off the screen */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

  
  /* === MEDIA QUERIES === */
  @media screen and (max-width: 1024px) {
    .hamburger {
      display: block;
      position: sticky;
      transform: translatex(40%);
      top: 30px;          /* Move it down */
      right: 10px;        /* Move it to the right */
      background-color: rgb(96, 206, 223);
      border-radius: 25px;
      width:-200px;        /* Remove full width */
      height:50px ;       /* No forced height */
      z-index: 1100;
      
      
    }
  
  
    
    .hamburger svg {
      display: block;
      margin: 0 auto;
    }
  
    header {
      transform: translateY(-100%);
      opacity: 0;
      position: fixed;
      top: 0;
      left: 0;
      background-color: #d9e2e3;
      flex-direction: column;
      height: auto;
      padding: 20px;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    header ul {
      flex-direction: column;
      gap: 10px;
      padding: 10px 0;
    }
  }
  
  
  @media screen and (max-width: 1024px) {
    header {
      transform: translateY(-120%);
      opacity: 0;
      position: fixed;
      top: 220px; /* Push it down a bit from top */
      left: 0;
      background-color: #d9e2e3;
      flex-direction: column;
      height: auto;
      padding: 20px;
      transition: transform 0.4s ease, opacity 0.4s ease;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    .hamburger {
      display: block;
      position: fixed;
      top: 150px;
      right: 20px;
      background-color: #64cbeb;
      padding: 5px;
      border-radius: 20px;
      z-index: 1100;
    }

    .boxhub {
    width: 400px;
    margin: 20px 0;
    padding: 10px;
    height: 300px;
    border: 2px solid hsl(191, 59%, 24%); /* Thick and blue border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(-100%); /* Start position off the screen */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}


  }
  

.invat {
  text-align: center;
  margin: 50px 0;
  color: transparent;
  -webkit-text-stroke: 2px white;
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 600;
  font-size: 200px;
  line-height: 1.1;
}

/* Optional: style the word "Hub" differently */
.invat .hub {
  display: block;
  font-size: 0.8em; /* smaller than main title */
}

/* Mobile Responsive Adjustment */
@media (max-width: 768px) {
  .invat {
    font-size: clamp(60px, 20vw, 120px);
  }

  .invat .hub {
    font-size: clamp(40px, 16vw, 80px);
  }
}


.boxhub img {
    max-width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.boxhub h2, .boxhub a {
    margin: 10px 0 0 0;
    word-wrap: break-word;
    text-align: center;
}

.boxhub a {
    color: #333;
    text-decoration: none;
    font-size: 20px;


}

.boxhub a:hover {
    text-decoration: underline;
    font-size: 25px;
    transition:  transform 1s ease-in-out;
    
}

.boxhub.show {
    opacity: 1;
    transform: translateX(0); /* End position on the screen */
}
.left {
    transform: translateX(-100%);
}

.right {
    transform: translateX(100%);
}
/*text at*/
.containertext{
    width: 100%;
    height: 50vh;
    background-color: rgb(10, 31, 68);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.containertexth1{
    font-size: 90px;
    font-weight: 700;
}

.auto-type{
    color: aqua;
}
/* Curved section */
.curved {
    position: relative;
    background: #2b323c; /* same as containertext for smooth blend */
    height: 15vh;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    margin-top: -1px; /* Remove visible line gap */
}
.image-slider {
  width: 900px; /* Width of one image */
  height: 500px;
  overflow: hidden;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: -250px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-track img {
  width: 1000px;
  height: 500px;
   object-fit: cover;
  flex-shrink: 0;
   margin: 0;
  border: none;
  display: block;
}
