body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
@keyframes colorCycle {
    0% {
        color: #0b258d; /* Dark Blue */
        transform: scale(1.5);
    }
    25% {
        color: #047640; /* Dark Purple */
        transform: scale(1.5);
    }
    50% {
        color: #000000; /* Dark Teal */
        transform: scale(1.5);
    }
    75% {
        color: #053f76; /* Dark Orange */
        transform: scale(1.5);
    }
    100% {
        color: #560772; /* Dark Green */
        transform: scale(1.5);
    }
}
.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%);
    }
}


.logobox {
    display: flex;
    justify-content: center; /* Center the logo box */
    align-items: center; /* Center items vertically */
    overflow-x: hidden;
}


.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: 4px solid #0A1F44;
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: 0.5s;
}

.apply-btn1:hover {
    background: #0A1F44;
    color: white;
}

.apply-btn1::before {
    background: #0A1F44;
    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;
    margin-top: 80px;
    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;
    border: 4px solid  #000;
}

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 STYLES === */
header {
    position: sticky!important;
    top: 0;
    width: 100%;
    height: 75px;
    background-color: #0A1F44;
    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: rgb(255, 255, 255);
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1em;
    overflow: hidden;
    margin-top: 20px;
  }
  
  header ul li a span {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-shadow: 0 0 5px #000000;
  }
  /* Header Styles */
  header ul li a:before,
  header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #ffffff;
    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: #0A1F44;
    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: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
  }
  
  header ul li .dropdown-content a:hover {
    background-color:#0A1F44;
  }
  
  /* 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: #0A1F44;
    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(255, 255, 255);
    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: 1100;
  }
  
  
  .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;
  }
  
  /* === 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: #0A1F44;
      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: 215px; /* Push it down a bit from top */
      left: 0;
      background-color: #0A1F44;
      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;
    }
  }
  

.abg1 {
    height: 50vh;
    width: 38%;
    border: 10px solid white;
    margin-right: 50px;
    margin-bottom: -600px;
}

.abouttop {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 78vh;
    background: rgb(82, 159, 159);
    border-bottom: 10px solid white; /* Add white bottom border */
}


.text-container {
    text-align: left; /* Align text to the left */
}

.abouttop h1 {
    font-size: 70px;
    margin: 0;
}

.highlight {
    margin-left: 20px;
    animation: colorCycle 4s infinite; /* Cycle through colors every 4 seconds */
    display: inline-block;
}

.container1 {
    width: 100%;
    height: 100vh;
    background-image: url(bg\ image.jpg);
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .abouttop {
    flex-direction: column; /* Stack elements vertically */
    text-align: center;
    height: auto; /* Allow height to adjust based on content */
    padding: 20px;
  }

  .abg1 {
    width: 90%;
    height: auto;
    margin: 20px 0;
    border: 5px solid white;
  }

  .text-container {
    width: 100%;
    padding: 10px;
    text-align: center;
  }

  .abouttop h1 {
    font-size: 40px; /* Reduced font size */
  }

  .highlight {
    margin-left: 10px;
    font-size: 35px; /* Adjust if needed */
  }

  .container1 {
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    background-position: center;
    background-size: cover;
  }
}


/* Counters Section */
.counters-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 50vh;
    transform: translateY(70px);
    transition: transform 1s ease-in-out;
    margin-bottom: 50px; /* Added margin to prevent overlap */
}

.counters-section.show-animate {
    transform: translateY(0);
}

.counters1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3em 2em;
    text-align: center;
    
}

.counter1 {
    width: 200px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1em;
    background-color: #ffffff; /* Set background color to white */
    border: 3px solid #000000;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.counter1 h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #000;
}

.counter1 h3 {
    font-size: 1.5em;
}

@media screen and (max-width: 900px) {
    .counter1 {
        width: calc(50% - 2em);
    }
}

@media screen and (max-width: 600px) {
    .counter1 {
        width: calc(50% - 2em);
    }
}

@media screen and (max-width: 400px) {
    .counter1 {
        width: calc(100% - 2em);
    }
}
.ElevatingSuccessRates h1 {
    margin-top: 80px; /* Adjust margin-top as needed */
    text-align: center; /* Center-align the text */
    justify-content: center;
    font-size: 70px;
}
.aboutb {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh; /* Example height; adjust as needed */
    background-color: #fff;
}

.text-container1 {
    text-align: center; /* Center-align text within .text-container1 */
    height: 100vh; /* Example height for demonstration */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text-container1 h1{
  color: #0A1F44;
}

.apply-btn1 {
    display: block;
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #0A1F44;
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: 0.5s;
    width: 150px;
    text-align: center; /* Center-align text within button */
}

.apply-btn-container {
    margin-top: 20px; /* Adjust margin as needed */
}


.apply-btn1:hover {
    background: #0A1F44;
    color: white;
}

.apply-btn1::before {
    background: #0A1F44;
    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;
}

 
.text-container1 h1 {
    margin: 0; /* Remove default margin */
    padding: 10px 0; /* Adjust padding as needed */
    font-size: 30px; /* Example font size; adjust as needed */
}
.hg{
    font-size: 50px;
    color: #0A1F44;
}
/* team */
.ourteammain{
    margin-top: 0px;
    

}
  .ourteam{
    display: absolute;
    text-align: center;
    margin-top: 50px;
    font-size: 75px;
    font-weight: 700;
    font-style: normal;
    color: #0A1F44;
     font-family: 'Roboto Flex', sans-serif;
    
  }
.image-wrapper {
    padding: 10px 10%;
}
.image-card {
    padding: 50px 0;
}
.image-card-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.image-box {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    height: 100%; /* Make sure it occupies the full height */
}
.image-box:hover {
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.7); /* Adjust shadow on hover */
    border: 3px solid #000000; /* Add border on hover */
}
.image-box img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s;
}
.imagecard-overlay {
    height: 0;
    width: 100%;
    background: linear-gradient(transparent, #0A1F44 65%);
    border-radius: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content vertically */
    justify-content: center;
    padding: 20px; /* Increase padding for better spacing */
    text-align: center;
    font-size: 22px;
    transition: height 0.5s, padding 0.5s; /* Transition height and padding */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

.imagecard-overlay .imagecardh3 {
    font-weight: 500;
    margin-bottom: 0px; /* Increase bottom margin for separation */
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 30px;
    letter-spacing: 2px;
}
.imagecard-overlay h2{
    color: white;
}

.imagecard-overlay p {
    margin-bottom: 20px; /* Increase bottom margin for separation */
    line-height: 1.4; /* Increase line height for better readability */
}

.imagecard-overlay a {
    margin-top: 10px;
    color: #1c1c1c;
    text-decoration: none;
    font-size: 25px;
    background: hsl(59, 96%, 71%);
    border-radius: 55px;
    padding:15px 30px;
    text-align: center;
}

.image-box:hover .imagecard-overlay {
    height: 100%; /* Expand overlay height on hover */
    padding: 20px; /* Maintain padding */
  
}

.image-box:not(:hover) .imagecard-overlay {
    height: 0; /* Ensure overlay is completely hidden when not hovered */
    padding: 0; /* Reset padding */
}

.row1 {
    display: flex;
    height: 88%;
    align-items: center;
    flex-wrap: wrap; /* Ensures proper wrapping of cards */
}

.col1 {
    flex-basis: 50%;
}

.kamblah1 {
    color: #000000;
    font-size: 100px;
}



.buttonkambla {
    width: 200px;
    height: 60px;
    color: #000; /* Initial text color: black */
    font-size: 20px;
    padding: 12px 0;
    background: transparent; /* Initial background: transparent */
    border: 2px solid #000; /* Adding a border for better visibility */
    border-radius: 25px;
    outline: none;
    margin-top: 30px;
    transition: background 0.3s, color 0.3s; /* Smooth transition for background and color */
}

.buttonkambla:hover {
    background: #000; /* Background on hover: black */
    color: #fff; /* Text color on hover: white */
    transform: translateX(10px);
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Aligns items to the start */
}

.card {
    width: 200px;
    height: 230px;
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    background-size: cover;
    transition: transform 1s;
}

.card1 {
    background-image: url(im1.jpg);
}

.card2 {
    background-image: url(im2.jpg);
}

.card3 {
    background-image: url(im3.jpg);
}

.card4 {
    background-image: url(im4.jpg);
}
.card5 {
    background-image: url(im1.jpg);
}

.card6 {
    background-image: url(im4.jpg);
}
/* Card hover state */
.card:hover {
    transform: translateY(-10px);
}

/* Initial state: h5 and p tags hidden */
.h5kambla {
    display: none;
    font-size: 36px;
    font-weight: 300;
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}
.pkambla{
    color: #000000;
    font-size: 36px; /* Adjust font size */
    font-weight: 300;
    line-height:1.5; /* Adjust line height */
}




/* Show h5 and p tags on card hover with white color */
.card:hover .h5kambla {
    display: block;
    color: #9af3a0;
    text-shadow: 0 0 5px #69cffa; /* Update text-shadow if needed */
}
/* Responsive Design */
@media (max-width: 1200px) {
    .card {
        width: 150px;
        height: 120px;
    }
    
    .kamblah1 {
        font-size: 35px;
    }
    
    .pkambla {
        font-size: 20px;
    }
    .h5kambla{
        font-size: 22px;
    }
}
            

.skewed-section122 {
    background-color: #0A1F44; /* Dark cyan */
    transform: skewY(-4deg);
    padding: 80px 20px;
    color: white;
    margin-top: 200px;
    margin-bottom: 200px;
    height: 800px;
  }
  
  .container122 {
    text-align: center;
    transform: skewY(4deg); /* Counter the parent skew */
    margin-bottom: 40px;
    
  }
  
  .container122 h1 {
    font-size: 3.5rem;
    margin: 0;
  }
  
.card-container122 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1500px; /* enough for 3 cards */
  margin: 0 auto;
  transform: skewY(4deg);
}


  .card122 {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 350px;
    height: 250px;
    margin: 20px;
    box-shadow: 4px 4px 4px #7aa0da;
    color: #000;
    transition: transform 0.3s;
    text-align: center;
  }
  
  .card122:hover {
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .skewed-section122 {
      padding: 15vh 4vw;
      height: 1800px;
    }
  }



  
.slider-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

.promo-slider11 {
  width: 500px;
  height: 50vh;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
  margin-left: 200px;
  flex: 1;
  min-width: 100px;
}

.slides {
  width: 100%;
  height: 100%;
  
  position: relative;
}

.slide {
  position: absolute;
  width: 90%;
  height: 100%;
  object-fit: cover;
   border-radius: 25px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.sentence {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  text-align: left;
  max-width: 600px;
  transition: opacity 0.5s ease;
  margin-right:80px;
  line-height: 1.5;
  font-weight: 600;
  color: #0A1F44;
  flex: 1;
  min-width: 300px;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .slider-text-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }



  .promo-slider11 {
    width: 90vw;
    
/* Responsive for mobile */
@media (max-width: 600px) {
  .slider-text-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  
  .promo-slider11 {
    width: 90vh;
    height:300px;
  }



  .sentence {
    font-size: 1.2rem;
    padding: 0 20px;
    text-align: center;
  }
}

  }



.sentence {
  display: none;
}

}

@media screen and (max-width: 1024px) {
  .details1 {
    margin-left: -38vh;         /* Center it or align naturally */
    width: 80%;            /* Use full available screen width */
    padding: 10px;
    box-sizing: border-box; /* Ensures padding doesn’t overflow */
    display: block;
  }

  .details1 details {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
    word-wrap: break-word;
  }
}

 /* Footer */

 /* Footer */
 /* Footer */

footer {
    width: 100%;
    height: 450px;
    margin-top: 10px; 
   background: #0A1F44;
    color: #fff;
    padding: 10px 0 15px;
    border-top-left-radius: 300px;
    font-size: 13px;
    line-height: 20px;
    position: relative;
}
footer h2{
     font-weight: 200;
    font-size: 18px;
}
.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3) {
    flex-basis: 15%;
}
.col li a{
    color: #ffffff;
}

.logo111 {
    width: 150px;
    margin-bottom: 30px;
    background-color: #0A1F44;
}

.col h3 {
    width: fit-content;
    margin-bottom: 20px;
    
    position: relative;
    padding-bottom: 10px;
    
    
}
.logo111{
    width: 400px;
    height: 100px;
}
.logo111fot{
      width: 400px;
    height: 100px;
    margin-top: 150px;
}
.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
.col h3 {
  font-size: 30px;  /* Adjust size as needed */
  font-weight: 700; /* 700 = bold, can also use 'bold' */
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li {
    list-style: none;
    margin-bottom: 12px;
    
}

ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 300;
    font-size: 20px;
    
}

.newsletter-form {
  display: flex;
  flex-direction: row;         /* Ensures horizontal layout */
  align-items: center;         /* Vertical alignment */
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  gap: 10px;                   /* Spacing between items */
}

.newsletter-form i {
  font-size: 18px;
  color: #000000;
}

.newsletter-form input {
  flex: 1;                     /* Takes up remaining space */
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-size: 18px;
}

.newsletter-form input::placeholder {
  color: #000000; /* Change to any color you prefer */
  opacity: 1;     /* Ensures full opacity */
}

.newsletter-form button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.newsletter-form button i {
  font-size: 18px;
  color: #000000;
}



.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}



.social-icons a:hover i {
    color: rgb(0, 0, 0);
      background-color: #111;
    transform: scale(1.1);
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

@media(max-width: 700px) {
    
    .col {
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
    footer{
        height: 130vh;
    }
}
  


/* From  */ 
.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  margin-bottom: 200px;
}

.card {
  width: 350px;
  height: 500px;
  border-radius: 20px;
  background: #f5f5f5;
  position: relative;
  padding: 1.8rem;
  border: 2px solid #c3c6ce;
  transition: 0.5s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-details {
  color: black;
  gap: .5em;
  display: grid;
  place-content: center;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 15px;
}

/* Text styles */
.text-title {
  font-size: 1.5em;
  font-weight: bold;
}

.text-body {
  color: rgb(134, 134, 134);
}

/* Hover effect */
.card:hover {
  border-color: #008bf8;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

/* Button style for anchor tag */
.card-button {
  display: block;
  text-align: center;
  text-decoration: none; /* remove underline */
  transform: translate(-50%, 125%);
  width: 60%;
  border-radius: 1rem;
  background-color: #008bf8;
  color: #fff;
  font-size: 1rem;
  padding: .5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
}

.card:hover .card-button {
  transform: translate(-50%, 50%);
  opacity: 1;
}

/* Responsive behavior for mobile */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('Staff/banner.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
@media screen and (max-width: 1024px){
  .hero-section {
    margin-top: -550px;
  }
  .subtitle{
    font-size: 10px;
    
  }
  .typing-text{
  
     font-size: 18px;
    text-align: center;
    white-space: normal; /* allow wrapping on small screens */
    overflow: visible;
     padding: 0 10px; /* Ensure text doesn’t touch screen edges */
    animation: none; /* optional: disable typing animation if it breaks */
    border-right: none;

  }
}

.hero-content {
  max-width: 1000px;
  padding: 20px;
  z-index: 1;
}

.typing-text {
  font-size: 50px;
  font-weight: 500;
  margin-top: 100px;
  border-right: 3px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff }
}

.subtitle {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 2s;
}
.ElevatingSuccess{
  font-size: 60px;
  margin-top: 100px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.download-btn {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0056b3;
}
.d1{
  height: 100px;
  width: 100px;
}

.d3{
  height: 100px;
  width: 200px;
}
.d2{
  height: 100px;
  width: 100px;
}
.d4{
  height: 100px;
  width: 150px;
}
.d5{
  height: 100px;
width: 150px;
}

details {
  background: white;
  border: 1px solid #0A1F44;
  border-radius: 20px;
  padding: 20px;
  width: 1200px;
  margin-left: 40vh;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(10, 31, 68, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

details.open {
  background-color: #0A1F44;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0c4a6e;
  transition: color 0.3s ease;
}

summary::after {
  content: "▼";
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #0369a1;
}

details.open summary::after {
  transform: rotate(180deg);
}
details.open summary {
  color: #ffffff;
}
details.open summary::after{
  color: #fff;
}


.details-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.details-content p {
  margin-top: 15px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

details + details {
  margin-top: 15px;
}

.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}



.social-icons a:hover i {
    color: rgb(0, 0, 0);
      background-color: #111;
    transform: scale(1.1);
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

@media(max-width: 700px) {
    
    .col {
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
    footer{
        height: 130vh;
    }
}

.create{
    color: #ffffff;
}
