/* 
  Note:
  the css of header and footer is not here. its directly
  linked in the head section through link tag
*/

/* this portion is of header part */


.service-hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
 
}
.service-hero-bg {
  height: 100vh;
  width: 100%;
  background-image: url(images/asset\ 1.jpg);
  position: absolute;
  top: 0;
  background-size: cover;
  z-index: -9;
  animation: heroBg 8s linear 0s;
}

.service-hero-text {
  height: 70vh;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 45px 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 99;
}

.service-hero-text h2,
.service-hero-text p {
  color: white;
  margin: 18px 0;
}
.service-hero-text h2 {
  font-size: 4rem;
}

.service-hero-text p {
  line-height: 1.5rem;
  letter-spacing: 1.2px;
  font-size: 1.2rem;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.center-content p {
  text-align: center;
  margin-bottom: 10px;
  color: grey;

}

.center-content h1 {
  text-align: center;
}



/* Slide Down */
/* Slider container */
.slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 80vh;
}

/* Slide styling */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(60vw * 10); 
}

.slide {
  min-width: 100vw;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  color: #fff;
  padding: 20px;
  font-size: 24px;
  position: relative;
}

/* Dot container styling */
.dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .slider {
    height: 50vh;
  }
  .slide {
    height: 50vh;
    font-size: 18px;
    /* padding: 10px;  */
    align-items:last baseline; /* Centers the text vertically */
    gap: 15px;
    /* justify-content: center;  */
    background-color: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent background to improve text visibility */
    color: #fff; /* Ensures the text color is white */
    text-align: left; /* Centers text */
    padding-bottom: 50PX;
  }

}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}




/* Services Section */
.our-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease; /* Add hover effect */
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
}

.service-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.service-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 18px;
}
.slide a{
  color: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 20px); /* 2 columns for tablet */
    height: auto;
    padding: 30px;
  }

  .service-content h2 {
    font-size: 30px;
  }

  .service-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 calc(100% - 20px); /* Single column on mobile */
    height: auto;
    padding: 25px;
  }

  .service-content h2 {
    font-size: 26px;
  }

  .service-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .our-services {
    padding: 10px;
  }

  .service-card {
    height: auto;
    padding: 20px;
  }

  .service-content h2 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 12px;
    line-height: 1.5;
    color: #f8f9fac7;
  }
}








.contact-page {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #ffffff, #f0f4f8);
 
}

.contact-pg-container {
  display: flex;
  align-items: stretch; /* Ensure both sides have the same height */
  justify-content: space-between;
  min-height: 70vh;
  width: 100%;
  background: linear-gradient(
    to top right,
    #00294B,
    #003a69,
    #004985,
    #005499
  );
   border-radius: 9px;

 
}



.contact-pg-left, .contact-pg-right {
  flex: 1; /* Allow both sides to grow equally */
  padding: 20px;
  box-sizing: border-box;
}


/* Left Section */
.contact-pg-left {
  flex: 1;
  min-width: 300px;
}

.contact-pg-left h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

.contact-pg-left p {
  color: #d4d0d0;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}

.founder-text {
  display: flex;
  gap: 5px;
  align-items: baseline;
  font-style: italic;
  color: #007bff;
}

.contact-pg-image {
  margin:auto;
  max-width: 300px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-pg-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Right Section */
.contact-pg-right {
  flex: 1;
  min-width: 300px;
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  padding-top: 150px;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-pg-box {
  margin-bottom: 20px;
}

.contact-pg-box h4 {
  color: #333;
  font-size: 1.5rem;
}

.contact-pg-box p {
  color: #888;
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Social Icons */
.social-icons {
  /* display: flex; */
  gap: 15px;
  font-size: 1.5rem;
}

.social-icons a {
  color: #007bff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-pg-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-pg-left,
  .contact-pg-right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-pg-left h2 {
    font-size: 1.6rem;
  }

  .contact-pg-box h4 {
    font-size: 1.2rem;
  }

  .social-icons {
    font-size: 1.2rem;
  }

  /* Center the image on mobile */
  .contact-pg-image {
    margin: 20px auto;
    max-width: 70%;
  }
}








.hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.image.active {
  opacity: 1;
  z-index: 1;
  animation: zoomIn 8s infinite;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-text h2 {
  font-size: 4rem;
  margin: 18px 0;
}

.hero-text p {
  line-height: 1.5rem;
  letter-spacing: 1.2px;
  font-size: 1.2rem;
  text-align: center;
  /* margin: 18px 0; */
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.center-content p {
  text-align: center;
  margin-bottom: 10px;
  color: grey;
  font-size: 30px;
}

.center-content h1 {
  text-align: center;
  font-size: 50px;
}

.cont {
  display: flex;
  width: 90vw;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: all 700ms ease-in;
}

.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}

@media (max-width: 480px) {
  .container {
    width: 100vw;
  }

  .panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 35vh;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    transition: all 700ms ease-in;
  }

  .panel:nth-of-type(4),
  .panel:nth-of-type(5) {
    display: none;
  }
}


/* 
.home-contact {
  padding: 0 45px;
}

.home-contact-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.home-contact-left {
  width: 40%;
  height: 80%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.home-contact-left h3 {
  font-size: 0.8rem;
  font-weight: light;
  color: #7a838b;
  letter-spacing: 1.2px;
}

.home-contact-left h2 {
  color: #1b1f2e;
  font-size: 2.8rem;
  font-weight: 600;
}

.home-contact-left p {
  color: #7a838b;
  font-size: 1rem;
  letter-spacing: 1.2px;
  line-height: 2rem;
}

.contact-content-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 700;
} */
/* 
.home-contact-right {
  height: max-content;
  width: 50%;
  padding: 20px;
  border-top: 4px solid #0787d9;
  border-right: 1px solid #adb2b7;
  border-bottom: 1px solid #adb2b7;
  border-left: 1px solid #adb2b7;
}

.home-contact-right input {
  width: 40%;
  height: 60px;
  background-color: #edf3f6;
  border: none;
  border: 1px solid transparent;
  outline: none;
  padding: 0 15px;
  font-size: 0.9rem;
}
.home-contact-right input:focus {
  border: 1px solid #0787d9;
}
.home-contact-right textarea {
  background-color: #edf3f6;
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.home-contact-right textarea:focus {
  border: 1px solid #0787d9;
}
.home-contact-right form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.input-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.home-contact-right form button {
  width: 30%;
  margin-top: 10px;
} */







/* Responsive Design for Desktop and Mobile */

/* Base Styling */
/* .bottom-bar {
  background: linear-gradient(to top right, #285d8877, #0a447377, #1f3e5777, #0b569477);
  background-color: rgba(0, 95, 173, 0.486);
}

.service-hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.service-hero-bg {
  height: 100vh;
  width: 100%;
  background-image: url(images/asset\ 1.jpg);
  position: absolute;
  top: 0;
  background-size: cover;
  z-index: -9;
  animation: heroBg 8s linear 0s;
}

.service-hero-text {
  height: 70vh;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 45px 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

.service-hero-text h2 {
  font-size: 4rem;
  color: white;
  margin: 18px 0;
}

.service-hero-text p {
  line-height: 1.5rem;
  letter-spacing: 1.2px;
  font-size: 1.2rem;
  color: white;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.center-content p {
  text-align: center;
  margin-bottom: 10px;
  color: grey;
}

.center-content h1 {
  text-align: center;
}

.cont {
  display: flex;
  width: 90vw;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: all 700ms ease-in;
}

.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
} */

/* Home Contact */
/* .home-contact {
  padding: 0 45px;
}

.home-contact-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.home-contact-left {
  width: 40%;
  height: 80%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.home-contact-left h3 {
  font-size: 0.8rem;
  font-weight: light;
  color: #7a838b;
  letter-spacing: 1.2px;
}

.home-contact-left h2 {
  color: #1b1f2e;
  font-size: 2.8rem;
  font-weight: 600;
}

.home-contact-left p {
  color: #7a838b;
  font-size: 1rem;
  letter-spacing: 1.2px;
  line-height: 2rem;
}

.contact-content-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 700;
}

.home-contact-right {
  height: max-content;
  width: 50%;
  padding: 20px;
  border-top: 4px solid #0787d9;
  border-right: 1px solid #adb2b7;
  border-bottom: 1px solid #adb2b7;
  border-left: 1px solid #adb2b7;
}

.home-contact-right input {
  width: 40%;
  height: 60px;
  background-color: #edf3f6;
  border: 1px solid transparent;
  outline: none;
  padding: 0 15px;
  font-size: 0.9rem;
}

.home-contact-right input:focus {
  border: 1px solid #0787d9;
}

.home-contact-right textarea {
  background-color: #edf3f6;
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.home-contact-right textarea:focus {
  border: 1px solid #0787d9;
}

.home-contact-right form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.input-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.home-contact-right form button {
  width: 30%;
  margin-top: 10px;
} */

/* Media Queries for Responsiveness */

/* Tablet */
/* @media (max-width: 768px) {
  .service-hero-text h2 {
    font-size: 3rem;
  }
  
  .service-hero-text p {
    font-size: 1rem;
  }

  .panel {
    height: 60vh;
  }

  .home-contact-left {
    width: 100%;
    padding: 10px;
  }

  .home-contact-right {
    width: 100%;
    padding: 15px;
  }

  .home-contact-container {
    flex-direction: column;
    height: auto;
  }

  .home-contact-right input,
  .home-contact-right textarea,
  .home-contact-right form button {
    width: 100%;
  }
} */

/* Mobile */
/* @media (max-width: 480px) {
  .service-hero-text h2 {
    font-size: 2rem;
  }

  .service-hero-text p {
    font-size: 0.9rem;
  }

  .panel {
    height: 50vh;
  }

  .home-contact-container {
    flex-direction: column;
    padding: 0 15px;
  }

  .home-contact-left h2 {
    font-size: 1.8rem;
  }

  .home-contact-left p {
    font-size: 0.9rem;
  }

  .home-contact-right input,
  .home-contact-right textarea,
  .home-contact-right form button {
    width: 100%;
  }

  .panel:nth-of-type(4),
  .panel:nth-of-type(5) {
    display: none;
  }
} */
