/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    overflow:scroll;
    overflow:auto;
  }
  body::-webkit-scrollbar {
    width: 0px;
    height: 0px;/* Remove the scrollbar */
    background: transparent; /* Ensure it’s invisible */
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    background: linear-gradient(90deg, #0f2027, #319fad, #4074e6);
    padding: 8px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px;
  }
  
  .navbar-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    position: relative;
    top: 0px;
    right: 9px;
    width: 90px;
    height: 90px;
    margin-right: 10px;
  }
  
  .logo-title {
    position: relative;
    left: -0.9%;
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin: 0 10px;
  }
  
  .nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 20px;
    left: px;
    flex: 1;
    justify-content: flex-start;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #f9c513;
    transform: scale(1.1);
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: white;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Navbar shadow */
  .navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  /* Image Slider */
  .slider {
    position: relative;
    width: 1360px;
    height: 400px;
    overflow: hidden;
  }
  
  .slide-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    height: 100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Banner Section */
  .banner {
    background: linear-gradient(90deg, #428eff, #693be6);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .banner-content h2 {
    color: white;
    font-size: 36px;
    position: relative;
    
  }
  
  .search-bar {
    display: flex;
    justify-content: center;
  }
  
  .search-bar input {
    position: relative;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    border: 3px solid #19191a;
    
    left: 50px;
    padding: 10px;
    font-size: 25px;
    border: none;
    border-radius: 55px;
    width: 800px;
    height: 50px;
  }
  
  .search-btn {
    width: 7%;
    position: relative;
   
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0 30px 30px 0;
    background: #ff512f; /* Gradient background */
    background: linear-gradient(90deg, #ff512f, #dd2476);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover animation */
  }
  .search-icon {
    width: 30px; /* Adjust icon size */
    height: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%; /* Make the icon circular */
  }
  .search-btn:hover .search-icon {
    transform: scale(1.1); /* Slight zoom-in effect */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
  }
  /* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero h2 {
  font-size: 30px;
  color: #140b9c;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

/* Services Section */
.services {
  padding: 50px 20px;
  text-align: center;
}

.service-container {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hover Glow Effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.3), rgba(56, 189, 248, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.service-card:hover::before {
  opacity: 1;
}


.service-card img {
  width: 190px;
  margin-bottom: 15px;
}
.services p{
  font-size: 17px;
}

/* Video Section */
.video-section {
  text-align: center;
  padding: 50px 20px;
  background: #f3f3f3;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

video {
  max-width: 600px;
  border-radius: 10px;
}

.footer {
  background-color: #0f2027;
  color: white;
  width: 100%;
  height: 300px;
  text-align: center;
  padding: 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-top: 10px;
}

.social-links a {
  color: #4074e6;
  text-decoration: none;
  font-size: 16px;
}

.social-links a:hover {
  color: #f9c513;
}  
/* Contact Section Styles */
.contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #56ccf2, #2f80ed);
  color: #fff;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
  animation: fadeInDown 1s ease;
}

.contact p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #f2f2f2;
}

/* Form Styles */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.contact-form button {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #56ccf2, #2f80ed);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Animation for Fade-in */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* sign css*/
sign-in-container {
  text-align: center;
}

.google-btn {
  background-color: #ffffff;
  position: relative;
  left: -8px;
  color: rgb(0, 0, 0);
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.google-btn:hover {
  background-color: #f52828;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.google-btn img {
  width: 55px;
 
}

.google-btn span {
  font-weight: bold;
}
.sos-button {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: red;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.sos-button:hover {
  background: darkred;
  transform: scale(1.1);
}
/* Responsive Styles */
@media (max-width: 1200px) {
  .search-bar input {
    width: 600px;
  }

  .search-btn {
    width: 10%;
  }
}

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }

  .nav-links a {
    left: 0;
    padding: 10px;
  }

  .search-bar input {
    width: 450px;
  }
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 24px;
  }

  .slider {
    width: 100%;
    height: 300px;
  }

  .search-bar input {
    width: 350px;
    font-size: 20px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 60px;
    height: 60px;
  }

  .logo-title {
    font-size: 20px;
  }

  .search-bar input {
    width: 250px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    flex-direction: column;
  }

  .footer {
    height: auto;
    padding: 20px;
  }
}
/* Responsive Styles */
@media (max-width: 1200px) {
  .search-bar input {
    width: 600px;
  }

  .search-btn {
    width: 10%;
  }

  .sos-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
}

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }

  .nav-links a {
    left: 0;
    padding: 10px;
  }

  .search-bar input {
    width: 450px;
  }

  .sos-btn {
    position: fixed;
    bottom: 15px;
    left: 15px;
    padding: 12px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 24px;
  }

  .slider {
    width: 100%;
    height: 300px;
  }

  .search-bar input {
    width: 350px;
    font-size: 20px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .sos-btn {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 60px;
    height: 60px;
  }

  .logo-title {
    font-size: 20px;
  }

  .search-bar input {
    width: 250px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    flex-direction: column;
  }

  .footer {
    height: auto;
    padding: 20px;
  }

  .sos-btn {
    position: fixed;
    bottom: 5px;
    left: 5px;
    padding: 8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
}
