/* services.css */

.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-bottom: 45px; /* Add some margin to ensure there's space between texts */
    font-weight: 800px;
}

.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: #d9e2e3 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    overflow: visible;
}


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 #69cffa;
}

header ul li a:before,
header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #18f08b;
    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 
}


.menu-toggle {
    display: none;
    font-size: 1.5em;
    margin-right: 50px;
    cursor: pointer;
}

.menu-toggle i {
    color: black;
}

.menu-items {
    display: flex;
    align-items: center;
}



/* 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;
}

#chk1{
    display: none;
}
*/


/* === 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: #0A1F44;
      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(-150%);
      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(-130%);
      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: 190px;
      right: 20px;
      background-color: #1e86b7;
      color: #fff;
      padding: 5px;
      border-radius: 20px;
      z-index: 1100;
    }
  }
  
  


/* Basic Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Services Section */
.services66 {
    background-color: #fff;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services66 h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    color: #0A1F44;
    font-weight: 600;
}

/* Grid Layout for Service Items */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item66 {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 2px 18px rgba(0, 39, 65, 1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-item66 i {
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-item66 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0A1F44;
}

.service-item66 p {
    color: #0A1F44;
    font-size: 1rem;
}

/* Hover Effects */
.service-item66:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;
    }

    .service-item66 i {
        font-size: 2.5rem;
    }

    .service-item66 h3 {
        font-size: 1.25rem;
    }

    .service-item66 p {
        font-size: 0.9rem;
    }
    .services66{
      margin-top: -550px;
    }
}
/* Services Section */
.services22 {
    
    padding: 60px 20px;
}

.container55 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services22 h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #0A1F44; /* Adjust text color for better contrast */
    font-weight: 600;
}

/* Flexbox Grid Layout for Service Columns */
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between cards */
}

/* Ensure equal heights for cards */
.service-item {
    background: #0A1F44; /* Gradient background */
    border-radius: 8px;
    padding: 20px;
    flex: 1; /* Allow cards to grow equally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Adjustments for Columns */
.column-one {
    flex: 1; /* Equal width for column one */
}

.column-two {
    flex: 1; /* Equal width for column two */
}

/* Service Item Icon */
.service-item i {
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Service Item Heading */
.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Service Item Description */
.service-item p {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Hover Effects */
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column; /* Stack columns vertically on small screens */
    }

    .services-column {
        gap: 20px; /* Space between cards */
    }
}

 /* Footer */

 .ourteam{
    color: #000000;
    font-size: 60px;
    font-weight: 600;
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    margin-top: 40px;
    text-shadow: 0 0 10px #69cffa;
}
 /* 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;
    }
}

.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;
}

}
