

/* === BASE STYLES === */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background: url('f1.png') no-repeat center center fixed;
  background-size: cover;
  scroll-behavior: smooth;
  overflow-x: hidden;
  box-sizing: border-box;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === STICKY HEADER === */
.header-two {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: black;
}

/* === CONTACT BAR === */

.top-two {
  padding-top: 15px;
  font-size: medium;
  width: 100%;
  background: transparent;
  max-width: 1160px;
  justify-self: center;
}

.top-two .container-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 40px;
}

.contact-two {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.2vw, 17px);
  
}

.contact-two a {
  color: white;
  text-decoration: none;
}
.contact-two a:hover {
  text-decoration: underline;
}

.contact-two .fa-clock {
  color: #00f6ff;
}
.availability {
  font-weight: bold;
  margin-left: 4px;
}

.email-two,
.phone-two {
  display: flex;
  align-items: center;
  gap: 5px;
  
}

.social-two {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.social-two img {
  height: 25px;
  transition: transform 0.3s;
}
.social-two img:hover {
  transform: scale(1.3);
}

/* === MAIN NAVBAR === */
.main-two {
  padding: 40px 0 20px;
  max-width: 1160;
  justify-content: center;
  text-align: right;
  background: transparent;
}
.nav-two {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(-40px);
  position: relative;
}
.nav-two h2 {
  display: none;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: -2px;
  font-size: medium;
}
.main-two li {
  margin: 0 15px;
}
.main-two a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.main-two a.active {
  border-bottom: 2px solid #00f6ff;
}

/* LOGO */
.floating-two {
  position: absolute;
  left: -14px;
  display: flex;
  align-items: center;
}
.floating-two img {
  height: 70px;
}

/* === DROPDOWN STYLES === */
.dropdown {
  position: relative;
  font-weight: bold;
}
.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 200px;
  border-radius: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dropdown-menu li {
  margin: 0;
  padding: 0;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background-color: #00f6ff;
  color: black;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* === HAMBURGER MENU BUTTON === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 36px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active {
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* form index page*/
.form-section {
  padding: 20px;
  background-image: url('your-tour-image.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: transparent;
  z-index: 1;
}

/* === Form Container Card === */
.form-container {
  position: relative;
  z-index: 2;
  background: transparent; /* Optional dark overlay */
  max-width: 1060px;
  margin: auto;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

/* === Heading === */
.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #f2f0f0;
}

/* === Form Rows and Groups === */
.form-rowt {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-groupt {
  flex: 1 1 30%; /* ✅ Allows 3 fields in one row */
  color: #fff;
}

label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #f2f0f0;
}

input, select, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  box-sizing: border-box;
}

/* === Full Width Fields === */
.full-width {
  width: 100%;
  margin-top: 20px;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

/* === Button === */
 .form-section button {
  margin-top: 10px;
  background-color: #efebeb;
  color: #252525;
  padding: 14px;
  width: 100%;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-section button:hover{
  background-color: #bfbcbc;
}



/* === Responsive Design === */
@media (max-width: 960px) {
  .form-groupt {
    flex: 1 1 45%; /* 2 per row on medium screens */
  }

  .form-container {
    padding: 30px 20px;
  }

  .form-container h2 {
    font-size: 2rem;
  }
  .form-section {
    margin-top: 70px;
  }
}

@media (max-width: 600px) {
  .form-rowt {
    flex-direction: column;
  }

  .form-groupt {
    flex: 1 1 100%;
  }

  .form-container h2 {
    font-size: 1.6rem;
  }

  .form-section button {
    font-size: 0.95rem;
  }
  .form-section {
    margin-top: 70px;
  }
}

/* === Popup Styling === */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 10px;
  display: none;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

@media (max-width: 480px) {
  .popup {
    font-size: 0.9rem;
    padding: 20px 16px;
  }
}


/* === MEDIA QUERIES === */
@media (max-width: 1199px) {
  .top-two {
    display: none;
  }

  .main-two {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    padding: 10px 0;
    background-color: black;
    z-index: 999;
  }

  .nav-two {
    flex-direction: column;
    align-items: flex-end;
    padding: 0 10px;
    transform: none;
  }

  .nav-menu {
    font-size: large;
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #111;
    margin-top: 10px;
    padding: 10px 0;
    text-align: right;
  }

  .nav-menu.active {
    display: block;
    justify-content: flex-end;
  }

  .main-two li {
    margin: 10px 20px;
  }

  .floating-two {
    position: relative;
    left: 0;
    margin: 10px 0;
    width: 100%;
    justify-content: flex-start;
  }

  .floating-two img {
    height: 60px;
  }

  

  .social-two {
    justify-content: center;
    transform: none;
    padding-right: 0;
    margin-top: 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 35px;
    right: 20px;
    z-index: 1001;
  }

   
  .nav-two h2 {
    top: 14px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: white;
    white-space: nowrap;
    z-index: 1;
  }
}

@media (max-width: 576px) {
  .contact-two,
  .social-two {
    flex-direction: column;
    align-items: flex-start;
    margin: 10px 0;
  }

  .floating-two img {
    height: 60px;
  }

  .floating-two span {
    font-size: 16px;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
  }
}

/* === DESKTOP FIXES === */
@media (min-width: 1200px) {
  .main-two {
    margin-left: 220px;
    padding: 40px 0 30px;
    position: relative;
  }

  .nav-two {
    transform: translateX(-40px);
    padding: 0 120px;
    flex-direction: row;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    background-color: transparent;
  }

  .menu-toggle {
    display: none !important;
  }

  .top-two {
    display: block !important;
  }
}


/* About1 */

.about-section {
  background-color: black;
  padding-top: 100px;
}
.about-section h1 {
  color: #00d6d6;
  font-size: 2.5rem;
  margin-top: -12px;
  
  text-align: center;
}

.about-section p{
  max-width: 800px;
  margin: auto;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.3;
  color: #bab4b4;
  
}

.cards {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 5px;
  flex-wrap: wrap;
}

.card {
  width: 350px;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover{
   transform: scale(1.1);
}



/* Intro Section */
.intro-section {
  background-color: black;
  padding: 90px 20px 20px;
  text-align: center;
}
.main-heading {
  color: #725b8f;
  font-size: 2.5rem;
  margin: 3px 0 40px;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.image-container img {
 
  width: 400px;
  height: auto;
  border-radius: 10px;
  max-width: 100%;
 
}

.text-container {
  max-width: 600px;
  text-align: left;
  
}
.text-container h2 {
  color: #e2f7f7;
  margin-bottom: 30px;
  text-align: center;
}
.text-container p {
 text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.5;
  color: #bab4b4;
  margin-bottom: 20px;
 
}


/* Extro Section */
.extro-section {
  background-color: black;
  padding: 60px 20px 80px;
}
.content-rom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 150px;
}
.image-section img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  max-width: 100%;
  margin-bottom: 10px;
}
.text-contant {
  max-width: 500px;
  text-align: left;
}
.text-contant h2 {
  color: #e2f7f7;
  margin-bottom: 30px;
  text-align: center;
}
.text-contant p {
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.5;
  color: #b6b1b1;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  text-align: center;
  background-color: black;
}
.services-heading {
  color: #00e6e6;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-section p{
  max-width: 1060px;
  margin: auto;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.0;
  color: #bab4b4;
  margin-bottom: 24px;
  text-align: left;
}
.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
}
.service-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: calc(33.333% - 26.67px);
  box-sizing: border-box;
  text-align: center;
}
.service-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}
.service-card h3 {
  color: white;
  margin: 10px 0;
}
.service-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}
.learn-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00e6e6;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.learn-btn:hover {
  background-color: #00cccc;
}

/* Explain/Extro One */
.extro-one {
  background-color: white;
  padding: 80px 20px 8px;
}
.content-one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
.image-one img {
  width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}
.text-one {
  max-width: 550px;
}
.text-one h1 {
  color: #5fa4a4;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.text-one h2 {
  color: #222;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 30px 0 10px;
}
.text-one h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0 8px;
}
.text-one p {
  font-size: 1.05rem;
  color: #484848;
  line-height: 1.6;
  margin-bottom: 15px;
}
.text-one ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.text-one li {
  font-size: 1rem;
  color: #484848;
  line-height: 1.6;
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Responsive Styles */
@media (max-width: 1200px) {

  .service-card {
    width: calc(50% - 20px);
  }

  .main-heading,
  .services-heading,
  .about-section h1 {
    font-size: 1.8rem;
  }

  .about-section p{
  max-width: 300px;
  margin: auto;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.3;
  color: #bab4b4;
  
}

  .overlay h2,
  .text-container h2,
  .text-contant h2 {
    font-size: 1.3rem;
  }

  .text-container p,
  .text-contant p,
  .text-one p {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .learn-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 35px;
    right: 20px;
    z-index: 1001;
  }
  .about-section h1 {
    text-align: center;
    margin-top: 18px;
  }
}

@media (max-width: 992px) {
  .text-container,
  .text-contant,
  .text-one {
    text-align: center;
    margin: 0 auto;
  }

  .service-card {
    width: 100%;
  }
  .about-section h1 {
    text-align: center;
    margin-top: 18px;
  }
}

@media (max-width: 768px) {
  .cards,
  .content-row,
  .content-rom,
  .service-cards,
  .content-one {
    flex-direction: column;
    align-items: center;
  }

  .about-section h1 {
    text-align: center;
    margin-top: 18px;
  }
  

  .text-container,
  .text-contant,
  .text-one {
    width: 100%;
    padding: 0 15px;
  }

  .image-container img,
  .image-section img,
  .image-one img {
    width: 100%;
    height: auto;
  }

  .service-card {
    width: 100%;
  }
  .image-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 100%;
  margin-bottom: 10px;
}
}


 /* Base Reset */
* {
  box-sizing: border-box;
}

/* --- top gauads --- */
.about-one {
  background-color: black;
  padding: 30px 20px 100px; /* Reduced from 80px for tighter layout */
}

.about-one h1 {
  color: #00d6d6;
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 60px;
  text-align: center;
}

.cards-one {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto; /* ✅ centers the card container */
  padding: 0 10px;
}

.card-one {
  position: relative;
  width: 350px;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; /* optional: smoother corners */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-one:hover {
  transform: scale(1.07); /* optional: subtle hover zoom */
}

/* --- CONTACT --- */
.contact-section1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 4rem 1rem; /* add horizontal padding */
  background-color: white;
  justify-content: center;
}

.contact-infoo {
  flex: 1;
  text-align: left;
  max-width: 500px;
  margin-left: 130px;
  margin-right: 40px;
}

.contact-infoo h1 {
  color: #2CA6A4;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-infoo h2 {
  font-size: 1.25rem;
  margin: 20px 0;
  color: black;
  font-weight: bold;
}

.contact-infoo p {
  margin: 20px 0;
  font-size: 1rem;
  color: black;
  text-align: left;
}

.contact-infoo a {
  color: #2CA6A4;
  text-decoration: none;
}

.contact-btn {
  background-color: #d2dfdf;
  color: rgb(18, 17, 17);
  border: none;
  padding: 10px 20px;
  margin-top: 1rem;
  cursor: pointer;
  font-size: 1rem;
}

.map {
  flex: 1;
  max-width: 500px;
  margin-right: 120px;
  margin-top: 80px;
}

.subscribe-container {
  background: black;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-label {
  font-size: 28px;
  font-weight: 500;
  color: teal;
}

.subscribe-input {
  padding: 8px;
  width: 100%;
  max-width: 820px;
  border: 1px solid #3a3939;
  border-radius: 4px;
  font-size: 16px;
}

.subscribe-button {
  background-color: #4de0e0;
  color: black;
  font-weight: bold;
  border: none;
  padding: 14px 22px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
}

.subscribe-button:hover {
  background-color: #35c9c9;
}



/* --- EMAIL SUBSCRIBE --- */
.subscribe-container {
  background: black;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-label {
  font-size: 28px;
  font-weight: 500;
  color: teal;
}

.subscribe-input {
  padding: 8px;
  width: 100%;
  max-width: 820px;
  border: 1px solid #3a3939;
  border-radius: 4px;
  font-size: 16px;
}

.subscribe-button {
  background-color: #4de0e0;
  color: black;
  font-weight: bold;
  border: none;
  padding: 14px 22px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
}

.subscribe-button:hover {
  background-color: #35c9c9;
}




/* --- ICON SECTION --- */


    .testimonials-section {
  text-align: center;
  padding: 30px 20px;
  background-color: #424141;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgb(12, 11, 11);
  margin-bottom: 40px;
}

.swiper {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.swiper-slide {
  font-style: italic;
  padding: 20px;
  color: whitesmoke;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: orange;
}

.swiper-pagination-bullet {
  background: gray;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: orange;
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  
  .section-title {
    font-size: 2rem;
  }

  .swiper-slide {
    font-size: 0.95rem;
    padding: 15px;
  }

  .testimonial-user {
    flex-direction: column;
    text-align: center;
  }

  .user-img {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .swiper-slide {
    font-size: 0.9rem;
  }

  .testimonials-section {
    padding: 40px 15px;
  }
}



/* --- FOOTER --- */
.footer {
  background: url('ft.jpeg') no-repeat center center/cover;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px 0;
 
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
 
}
.footer-section img{
  margin-top: 40px;

}

.footer-section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: left;
  color: whitesmoke;
}

.footer-section p {
  margin: 8px 0;
  line-height: 1.5;
  text-align: left;
}

.footer-section i {
  color: #e60044;
  margin-right: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin-left: 10px;
  text-align: left;

}

.footer-menu li {
  margin: 12px 0;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #e60044;
}

.footer-menu i {
  margin-right: 12px;
  color: #e60044;
}

.footer-bottom {
  border-top: 1px solid #aaa;
  margin-top: 20px;
  padding: 15px 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  margin-left: 50px;
}

.footer-icons {
  display: flex;
  gap: 10px;
  margin-right: 50px;
}


/* --- RESPONSIVE QUERIES --- */
@media (max-width: 1200px) {
  .about-one {
    padding: 40px 20px;
  }

  .about-one h1 {
    margin-left: 0;
    text-align: center;
    font-size: 2rem;
  }

  .cards-one,
  #selected-list {
    width: 100%;
    margin-left: 0;
  }

  .card-one {
    width: 280px;
    height: 280px;
  }

  .contact-section1 {
    flex-direction: column;
    align-items: center;
  }

  .contact-infoo,
  .map {
    max-width: 600px;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .about-one h1 {
    font-size: 1.8rem;
    margin-left: 0;
    text-align: center;
  }

  .card-one {
    width: 100%;
    max-width: 300px;
    height: 250px;
  }

  .icon-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 5px;
  }

  .subscribe-label {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  .subscribe-input,
  .subscribe-button,
  .add-btn-one,
  .manual-btn-one,
  .contact-btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .footer-bottom p {
    margin: 0;
    text-align: center;
  }

  .footer-icons {
    margin: 0;
    justify-content: center;
  }
}







/* request */

.services-form-section {
  padding: 50px 20px;
  background-color: rgb(208, 205, 205);
}

.services-form-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.services-form-section .content {
  flex: 1 1 45%;
}

.services-form-section .content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
}

.services-form-section .content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #000;
}

.services-form-section .content ul {
  list-style: disc inside;
  padding-left: 0;
  color: #000;
}

.services-form-section .form {
  flex: 1 1 45%;
  background: rgb(120, 101, 101);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 40%;
}
.form{
  margin-right: 50px;
}
.content{
  margin-left: 60px;
  max-width: 40%;
}

.services-form-section .form h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn-submit {
  background-color: #545454;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #3f4040;
}

@media (max-width: 768px) {
  .services-form-section .container {
    flex-direction: column;
    padding: 0 10px;
    gap: 30px;
  }

  .services-form-section .content,
  .services-form-section .form {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0; /* ✅ Remove side margins */
  }

  .services-form-section .content h2,
  .services-form-section .form h3 {
    text-align: center;
  
  }
  .content h2{
    margin-top: 88px;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }
}

/* career */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}
.container h2{
  color: whitesmoke;
}

.container img{
  width:80%;
  height:auto;
  object-fit:cover;
  border-radius:10px; 
  margin: 20px 0;
  justify-self: center;
}

.career-hero {
  background: #1d7691;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.career-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: whitesmoke;
}

.career-intro, .career-openings {
  background: #353333;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.career-form {
  background-color: rgb(81, 102, 128);
}

.career-openings h3 {
  margin-bottom: 5px;
  color: whitesmoke;
}

.job-list li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.apply-form .form-group {
  margin-bottom: 15px;
}

.apply-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn-submit {
  background: #316dad;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #14638d;
}

/* Responsive for career */
@media (max-width: 768px) {
  .career-hero h1 {
    font-size: 28px;
  }

  .career-intro, .career-openings {
    padding: 20px;
  }
}





/* services learn more page */

.section-cor {
  padding: 60px 20px;
  background-color: whitesmoke;
  color: rgb(61, 60, 60);
}

.container-cor {
  max-width: 1100px;
  background-color: whitesmoke;
  margin: auto;
  padding: 0 20px;
}

.section-cor h1, .section-cor h2 {
  color: #28292a;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  background-color: whitesmoke;
}

.container-cor h2 {
  font-weight: bold;
  font-size: xx-large;
  text-align: left;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(64, 23, 23, 0.1);
}

.cta-box {
  background: #3a3b3d;
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.cta-box h2 {
  margin-bottom: 10px;
  color: whitesmoke ;
}

.cta-box a {
  color: white;
  background: #151616;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* Responsive for service learn more */
@media (max-width: 768px) {
  .container-cor h2 {
    font-size: 24px;
    text-align: center;
  }
  .container-cor h1{
    margin-top: 90px;
  }
  .cta-box {
    padding: 20px;
  }
}







/* tags */


#certifications {
  padding: 10px;
  background-color: rgb(250, 244, 244);
  text-align: center;
  overflow: hidden;
}

/* Centered and responsive wrapper */
.scroll-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto; /* ✅ centers the content */
  padding: 0 20px; /* ✅ prevents overflow on small screens */
}

/* Scrolling row */
.certification-row {
  display: flex;
  gap: 60px; /* ✅ reduced for better balance */
  align-items: center;
  animation: scroll-left 6s linear infinite;
}

/* Image styling */
.certification-row img {
  width: 120px;
  height: 140px;
  object-fit: contain;
}

/* Pause on hover */
.scroll-wrapper:hover .certification-row {
  animation-play-state: paused;
}

/* Scroll animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Animation Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ✅ Responsive Design for Mobile */
@media (max-width: 768px) {
  .scroll-wrapper {
  overflow: hidden;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  
}
  .certification-row {
    gap: 40px;
    animation-duration: 4s;
  }

  .certification-row img {
    width: 80px;
    height: 100px;
  }

  #certifications h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .certification-row {
    gap: 30px;
    animation-duration: 6s;
  }

  .certification-row img {
    width: 60px;
    height: 80px;
  }
}









/* our expertise ,  our technology*/

.expertise-one {
  padding: 60px 20px;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8fafc;
  color: #222;
  line-height: 1.7;
}

.container-one {
  max-width: 1100px;
  margin: auto;
}

.title-one {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0c5a88;
}

.subtitle-one {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.image-row-one {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.image-row-one img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.expertise-list-one{
  margin-left: 30px;
}

.expertise-list-one h3 {
  font-size: 22px;
  color: #0c5a88;
  margin-top: 30px;
  margin-bottom: 8px;
}

.expertise-list-one p {
  color: #444;
  font-size: 16px;
  margin-bottom: 20px;
}

.button-one {
  text-align: center;
  margin-top: 50px;
}

.button-one a {
  background-color:  #0c5a88;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

/* ===== Responsive Styles ===== */

@media (max-width: 991px) {
  /* For tablets and small laptops */
  
  .image-row-one {
    gap: 12px;
  }
  
  .image-row-one img {
    width: 300px;
    height: 210px;
  }

  .expertise-list-one {
    margin-left: 20px;
    margin-right: 20px;
  }
  
}

@media (max-width: 767px) {
  /* For mobile phones */
  
  .image-row-one {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .image-row-one img {
    width: 90%;
    height: auto;
    max-width: 350px;
  }

  .expertise-list-one {
    margin: 0 15px;
  }
  
  .title-one {
    font-size: 28px;
    margin-top: 60px;
  }
  
  .subtitle-one {
    font-size: 16px;
    max-width: 100%;
  }
  
  .expertise-list-one h3 {
    font-size: 20px;
    margin-top: 25px;
  }
  
  .expertise-list-one p {
    font-size: 14px;
  }
  
  .button-one a {
    padding: 12px 24px;
    font-size: 16px;
  }
}




/* our team */

.team-section {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8fafc;
  color: #222;
  line-height: 1.6;
  padding: 60px 20px;
}

.team-container {
  max-width: 1100px;
  margin: auto;
}

.team-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0c5a88;
}

.team-subtitle {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.team-member {
  max-width: 350px;
  text-align: center;
}

.team-member img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 4px;
  color: #0c5a88;
}

.position {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 15px;
  color: #444;
}

/* Responsive styles */
@media (max-width: 767px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    max-width: 90%;
  }

  .team-title {
    font-size: 28px;
    margin-top: 60px;
  }

  .team-subtitle {
    font-size: 16px;
  }
}




/* side images */

/* Base Styles (Desktop View) */
.contact-buttons10 {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
    bottom: 100px;
    display: flex;
    gap: 1px;
    z-index: 9999; /* higher than footer */
}

.contact-buttons10 button {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.call-button10, .whatsapp-button10 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.call-button10 img, .whatsapp-button10 img {
    width: 100%;
    height: 100%;
}

.whatsapp-button10 {
    background-color: #39ce5c;
}

.call-button10 {
    background-color: #19b33d;
}

/* Responsive Styles */

/* For tablets */
@media (max-width: 768px) {
    .contact-buttons10 {
        right: 10px; /* Move slightly closer to the edge */
        top: 70%; /* Adjust the position */
    }

    
    .call-button10, .whatsapp-button10 {
        width: 45px;
        height: 45px;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .contact-buttons10 {
        right: 13px; /* Position closer to the edge */
        top: 65%; /* Adjust for smaller screens */
    }

       .call-button10, .whatsapp-button10 {
        width: 55px;
        height: 55px;
    }

    .contact-buttons10 button {
        margin: 10px 0; /* Reduce spacing between buttons */
    }
}






/* contact us first page */

/* Reset and Base */
.section-contactf {
  margin: 0;
 padding: 40px;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: whitesmoke;
  color: #222;
  line-height: 1.6;
  
}
.container-corner{
  align-items: center;
  justify-self: center;
  max-width: 1060px;
}
.container-corner img{
  width: 80%;
  height: auto;
  justify-self: center;
}

.container-corner h1, h2, h3 {
  color: #003366;
  margin-bottom: 10px;
}

.container-corner h1 {
  font-size: 36px;
  margin-top: 30px;
  text-align: center;

}

.container-corner h2 {
  font-size: 28px;
  margin-top: 30px;
}

.container-corner h3 {
  font-size: 20px;
  margin-top: 20px;
}

/* Container */
.container-corner form, .contact-section {
  max-width: 900px;
  margin: auto;
  padding: 20px 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* Paragraphs & Lists */
.container-corner p {
  margin-bottom: 15px;
}

.container-corner ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.container-corner ul li {
  margin-bottom: 8px;
}

/* Links */
.container-corner a {
  color: #0056b3;
  text-decoration: none;
}

.container-corner a:hover {
  text-decoration: underline;
}

/* Form Styling */

/* Responsive */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container-corner h1 {
    font-size: 28px;
    margin-top: 90px;
   
  }

  .container-corner h2 {
    font-size: 22px;
   
  }

  .contact-section, form {
    padding: 20px 15px;
  }
}
