

/* === BASE STYLES === */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background: url('f7.png') no-repeat center center fixed;
  background-size: 72% 90%; /* 👈 width 100%, height 70% */
  background-repeat: no-repeat;
  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: white;
}

/* === 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);
  color: #000;
  
}

.contact-two a {
  color: white;
  text-decoration: none;
  color: #000;
}
.contact-two a:hover {
  text-decoration: underline;
}

.contact-two .fa-clock {
  color: #bb8a0e;
}
.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 30px;
  margin-left: 220px;
  text-align: right;
  background: transparent;
}
.nav-two {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(-40px);
  position: relative;
  color: #000;
}
.nav-two h2 {
  display: none;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: -2px;
  font-size: medium;
color: #000;
}
.main-two li {
  margin: 0 15px;
  color: #000;
}
.main-two a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}
.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: white;
  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: rgb(31, 31, 31);
  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: black;
  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-size: cover;
  background-position: center;
  justify-self: right;
  position: relative;
  margin-right: 220px;
  
}

.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: 370px;
  height: 520px;
  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: 170px;
  }
}

@media (max-width: 600px) {
  .form-rowt {
    flex-direction: column;
  }

  .form-groupt {
    flex: 1 1 100%;
  }

  .form-container h2 {
    font-size: 1.6rem;
    margin-top: 40px;
  }

  .form-section button {
    font-size: 0.95rem;
  }
  .form-section {
    margin-top: 70px;
    justify-self: center;
    margin-right: 0px;
    margin-bottom: 40px;
    width: 400px;
    height: 770px;
   
  }
  .form-container{
    height: 770px;
    justify-self: center;
  }
}

/* === 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: white;
    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: white;
    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: black;
    white-space: nowrap;
    z-index: 1;
  }
}

@media (max-width: 576px) {
  body{
    background-size: 80% 100%; /* 👈 width 100%, height 70% */
    margin-top: 40px;
    
  }
  .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: rgb(242, 240, 240);
  padding-top: 10px;
}
.about-section h1 {
  color: #825f07;
  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: black;
  
}

.cards {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 5px;
  flex-wrap: wrap;
}
.cards button{
  justify-self: end;
  margin-left: 110px;
  margin-top: 30px;
  margin-bottom: 30px;
  display: inline-block;
  padding: 10px 20px;
  background-color: whitesmoke;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;

}
.cards button:hover{
  background-color: #a99910;

}

.card {
  width: 350px;
  height: 340px;
  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: white;
  padding: 90px 20px 20px;
  text-align: center;
}
.main-heading {
  color: #825f07;
  font-size: 2.5rem;
  margin: -20px 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: black;
  margin-bottom: 30px;
  text-align: center;
}
.text-container p {
 text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.5;
  color: black;
  margin-bottom: 20px;
 
}


/* Extro Section */
.extro-section {
  background-color: white;
  padding: 60px 20px 50px;
}
.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: black;
  margin-bottom: 30px;
  text-align: center;
}
.text-contant p {
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.5;
  color: black;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: 40px 20px;
  text-align: center;
  background-color: white;
}
.services-heading {
  color: #825f07;
  font-size: 2.5rem;
  margin-bottom: 50px;
  margin-top: -40px;
}

.services-section p{
  max-width: 1060px;
  margin: auto;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.0;
  color: black;
  margin-bottom: 24px;
  text-align: left;
}
.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
  margin-top: 60px;
}
.service-card {
  background-color: rgb(219, 215, 215);
  padding: 20px;
  border-radius: 10px;
  width: calc(33.333% - 26.67px);
  box-sizing: border-box;
  text-align: center;
  height: 550px; /* Fixed height */
  overflow: hidden; /* Prevent content overflow */
}

.service-card:hover{
   transform: scale(1.1);
}
.service-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}
.service-card h3 {
  color: black;
  margin: 20px 0;
 }
.service-card p {
  font-size: 1rem;
  color: black;
  margin-bottom: 20px;
   line-height: 1.3;
}
.learn-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bb8e1a;
  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: #825f07;
  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-align: left;
}
.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: black;
  
}

  .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;
    color: black;

  }

  .service-card p {
    font-size: 0.9rem;
    color: black;
  }

  .learn-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 35px;
    right: 20px;
    z-index: 1001;
  }
}

@media (max-width: 992px) {
  .text-container,
  .text-contant,
  .text-one {
    text-align: center;
    margin: 0 auto;
  }

  .service-card {
    width: 100%;
  }
}

@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: 40px;
  }

  .text-container,
  .text-contant,
  .text-one {
    width: 100%;
    padding: 0 15px;
  }
  .text-contant p{
    margin: 0;
    padding: 0;
    color: black;
  }

  .image-container img,
  .image-section img,
  .image-one img {
    width: 100%;
    height: auto;
  }

  .service-card {
    width: 100%;
    height: auto;
  }
  .image-section img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  max-width: 100%;
  margin-bottom: 2px;
  margin-top: -80px;
  
}
.services-heading{
  margin-top: -50px;
}
}


 /* Base Reset */
* {
  box-sizing: border-box;
}

/* --- top gauads --- */
.about-one {
  background-color: white;
  padding: 30px 20px 10px; /* Reduced from 80px for tighter layout */
}

.about-one h1 {
  color: #825f07;
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.about-one p{
  max-width: 800px;
  margin: auto;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.4;
  color: black;
  margin-bottom: 30px;
  
}

.cards-one {
  display: flex;
  justify-content: center;
  gap: 18px;
  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: #825f07;
  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: #825f07;
  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;
}

/* --- ICON SECTION --- */
.testimonials-section {
  text-align: center;
  padding: 30px 20px;
  background-color: whitesmoke;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #825f07;
  margin-bottom: 40px;
}

.swiper {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.swiper-slide {
  font-style: italic;
  padding: 20px;
  color: black;
  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;
}

/* --- FOOTER --- */
.footer {
  background: url('') no-repeat center center;
  background-size: contain; /* or use 'cover' based on your need */
  background-size: 100% 100%;
  color: #2a2828;
  position: relative;
  
  z-index: 1;
}

.footer-overlay {
  background-color: rgb(197, 197, 195);
  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: 35px;

}

.footer-section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: left;
}

.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: 0;
  text-align: left;
}

.footer-menu li {
  margin: 12px 0;
}

.footer-menu a {
  color: black;
  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 --- */

/* Keep desktop & laptop layout same until width <= 991px */
@media (max-width: 991px) {
  .contact-infoo h1{
    margin-top: 20px;
  }
  .about-one {
    padding: 40px 20px;
  }

  .about-one h1 {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
  }

  .cards-one,
  #selected-list {
    width: 100%;
    margin-left: 0;
  }

  .card-one {
    width: 280px;
    height: 240px;
  }

  .contact-section1 {
    flex-direction: column;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-infoo,
  .map {
    max-width: 600px;
    width: 100%;
    margin: 0;
  }

  /* Remove large fixed margins causing overflow */
  .contact-infoo {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .map {
    margin-right: 0 !important;
    margin-top: 40px;
  }

  .footer-container {
    margin-left: 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-bottom p {
    margin-left: 0 !important;
    text-align: center;
  }

  .footer-icons {
    margin-right: 0 !important;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-infoo h1{
    margin-top: 6px;
  }
  .about-one h1 {
    font-size: 1.8rem;
    margin-left: 0;
    text-align: center;
  }

  .card-one {
    width: 100%;
    max-width: 320px;
    height: 240px;
  }

  .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;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .swiper-slide {
    font-size: 0.9rem;
  }

  .testimonials-section {
    padding: 40px 15px;
  }
}







/* tags */


#certifications {
  padding: 20px;
  background-color: white;
  text-align: center;
  overflow: hidden;
  padding-bottom: 80px;
}

/* 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 7s linear infinite;
}

/* Image styling */
.certification-row img {
  width: 120px;
  height: 80px;
  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(-90%);
  }
}

/* ✅ 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: 150px;
  }
}







/* our expertise ,  our technology*/

.expertise-one {
  padding: 40px 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: justify;
  text-align: left;
  color: #555;
  font-size: 20px;
  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: 250px;
  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: 18px;
  margin-bottom: 20px;
  text-align: left;
  text-align: justify;
}

.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: 120px;
  }
  
  .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;
  }
}




/* 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: 55px;
    height: 55px;
    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: 55px;
        height: 55px;
    }
    
}

/* 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 */
    }
}





/* Services   */
/* services learn more page  ,  first page */

.section-cor {
  padding: 40px 20px;
  background-color: rgb(226, 224, 224);
  color: black;
}

.container-cor {
  max-width: 1100px;
  background-color: rgb(226, 224, 224);
  margin: auto;
  padding: 0 20px;
}

.container-cor p{
  text-align: left;
  line-height: 1.5;
  font-size: 18px;
  color: black;
}

.section-cor h1 {
  
  color: black;
  text-align: left;
  margin-bottom: 30px;
  font-size: 30px;
  margin-top: -30px;
}

.section-cor h1, .section-cor h2 {
  color: black;
  text-align: left;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  background-color: rgb(226, 224, 224);
}

.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: #a3a3a4;
  color: rgb(239, 237, 237);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.cta-box h2 {
  margin-bottom: 10px;
  }

.cta-box a {
  color: rgb(239, 237, 237);
  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;
  }
  .cta-box {
    padding: 20px;
  }
  .container-cor h1{
    margin-top: 120px;
  }
}







  /* Umrah Tours all pages , seasonal umrah all pages , hajj , Destinations */


.three-Star {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: whitesmoke;
  color: #333;
}

.main-umrah {
  padding: 40px 20px;
  margin: auto;
}

.main-umrah h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1c3c72;
  margin-bottom: 10px;
  margin-top: -50px;
}

.main-umrah p {
  text-align: center;
  max-width: 800px;
  margin: 10px auto 30px;
  font-size: 1.1rem;
  color: #555;
  text-align: justify;
}

.main-umrah img.main-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.room-block {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  background-color: whitesmoke;
  padding: 20px;
  border-radius: 12px;
  max-width: 1100px;
  justify-content: center;
  justify-self: center;
}

/* Reverse layout (image on right, content on left) */
.room-block.reverse {
  flex-direction: row-reverse;
}

.room-block img {
  flex: 1;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

.room-content {
  flex: 2;
  min-width: 280px;
}

.room-content h2 {
  margin-top: 0;
  color: #2c3e50;
  text-align: center;
}

.room-content p {
  margin: 10px 0;
  font-size: 1.1rem;
  text-align: justify;
}

.room-content ul {
  margin-left: 20px;
  list-style: disc;
  color: #444;
  line-height: 1.7;
  justify-self: left;
  font-size: 1rem;
}
.room-block.reverse ul {
  justify-self: left;
}


/* Responsive design */
@media (max-width: 768px) {
  .room-block,
  .room-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .room-block img {
    max-width: 100%;
  }

  .room-content ul {
    text-align: left;
    display: inline-block;
  }
}





    /* Destinations , Westminster page */

    
.westminster {
  background: url('westminster-banner.jpg') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  background-blend-mode: darken;
  background-color: rgb(39, 39, 39);
}

.westminster h1 {
  font-size: 40px;
  margin-bottom: 10px;
  
  text-align: center;
}

.westminster p {
  text-align: center;
 
    font-size: 20px;
}


/* ===== GENERAL STYLING ===== */

.sectionwe {
  margin-top: 60px;
  max-width: 1100px;
  justify-self: center;
  padding: 0 20px;
  line-height: 1.6;
  background-color: rgb(39, 39, 39);
  color: #f1e8e8;
}

.sectionwe h2 {
  font-size: 32px;
  color: #efe8e8;
  margin-bottom: 20px;
}

.sectionwe p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

.sectionwe img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}



/* ===== GALLERY STYLING ===== */
.gallerywe {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.cardwe {
  flex: 1 1 calc(33.333% - 20px); /* 3 cards per row */
  background-color: rgb(30, 30, 30); /* Dark background */
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  width: 300px;
  height: 200px;
}

.cardwe:hover {
  transform: scale(1.03);
}

.cardwe img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


/* ===== TRAVEL TIPS SECTION ===== */
.tips ul {
  list-style: disc;
  padding-left: 20px;
}

.tips li {
  margin-bottom: 10px;
  font-size: 16px;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .cardwe {
    flex: 1 1 calc(50% - 20px);
  }

  .westminster h1 {
    font-size: 36px;
    margin-top: 60px;

  }

  .westminster p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .cardwe {
    flex: 1 1 100%;
  }

  .westminster h1 {
    font-size: 28px;
    margin-top: 60px;
  }
  

  .westminster p {
    font-size: 16px;
  }

  .sectionwe h2 {
    font-size: 26px;
  }

  .sectionwe p, .tipswe li {
    font-size: 15px;
  }
  
}



/* Destinations , camden page */


    .hero-sectionca {
      
      color: #363434;
      padding: 60px 20px;
      text-align: center;
      margin: 0;
      background-color: #f2eded;
      
    }

    .hero-sectionca h1 {
      
      font-size: 3em;
      margin-bottom: 10px;
      color: #10749e;
    }

    .hero-sectionca p {
      font-size: 1.2em;
    }

    .content-blockca {
      padding: 30px 20px;
      max-width: 1100px;
      margin: auto;
    }

    .content-blockca h2 {
      font-size: 3em;
      margin-bottom: 10px;
      color: #10749e;
    }

    .content-blockca p {
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .image-galleryca {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .image-galleryca img {
      width: 100%;
      height: 90%;
      border-radius: 10px;
    }

    .info-boxesca {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .boxca {
      flex: 1 1 calc(33.33% - 20px);
      background: #ada8a8;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .boxca h3 {
      margin-top: 0;
      color: #2c2c2d;
     
    }
    
   @media (max-width: 768px) {
      .boxca {
        flex: 1 1 100%;
      }
      .hero-sectionca h1{
        margin-top: 60px;
      }
    }


    /* Destinations , notting hills page */

      .notting {
      background-color: whitesmoke;
      padding: 2px 20px;
      text-align: center;
      margin: 0;
      color: #222;
      line-height: 1.6;
    }

    .notting h1 {
      
      font-size: 3.2em;
      color: #474545;
    }

    .notting p {
      font-size: 1.3em;
      margin-top: -22px;
    }

    .main-sectionno {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .section-titleno {
      color: #444243;
      margin-bottom: 10px;
      font-size: 2em;
    }

    
   .imag img{
  width: 60%;
  height: auto;
  border-radius: 10px;
  margin: 20px auto;
} 

    .two-colno {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .colno {
      flex: 1 1 48%;       
   }

    .highlight-boxno {
      max-width: 1100px;
      background-color: #847e80;
      border-left: 5px solid #242323;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
     

    }

    .galleryno {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .galleryno img {
      width: 100%;
      border-radius: 10px;
      height: 90%;
     
    }

        @media (max-width: 768px) {
      .colno {
        flex: 1 1 100%;
      }
      .notting h1{
        margin-top: 120px;
      }
    }



    /* Destinations , oxford page */

   .destinationox {
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px 20px;
  }
  
  .destinationox h1{
   
    font-weight: 700px;
    color: #0056b3;
    text-align: center;
    font-size: 40px;
  }

.image-text-blockox {
    display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 70px;
  max-width: 1100px;
  padding: 0 20px; /* optional: for spacing on small screens */
}
.textox{
  margin-top: 10px;
}



.image-text-blockox.reverse {
  flex-direction: row-reverse;
}

.image-text-blockox img {
  flex: 1 1 50%;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.image-text-blockox .textox {
  flex: 1 1 50%;
  padding: 30px;
  
}

.image-text-blockox .textox h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #0056b3;
}

.image-text-blockox .textox p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}
.text p{
  text-align: left;
}

.why-tourox {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-tourox h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #0275d8;
}

.reasonsox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.reasonox {
  flex: 1 1 300px;
  background-color: #e3f2fd;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.reasonox h3 {
  color: #014f86;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.reasonox p {
  font-size: 1em;
  line-height: 1.6;
  color: black;
}

.bookingox {
  background-color: whitesmoke;
  padding: 60px 20px;
  text-align: center;
}

.bookingox h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0275d8;
}

.bookingox ul {
  list-style: none;
  color: #000;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 1.1em;
  text-align: center;  /* center text too */
}


.bookingox ul li {
  margin: 12px 0;
}

.noteox {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 30px;
}

.book-btnox {
  background-color: #1f6bad;
  color: rgb(23, 22, 22);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s;
}

.book-btnox:hover {
  background-color: #014f86;
}
  @media (max-width: 768px) {
      .destinationox h1{
        margin-top: 120px;
      }
    }


/* Destinations , windsor page */

.destinationwi {
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px 20px;
  }
  .destinationwi h1{
  
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    color: #0056b3;
  }

.image-text-blockwi {
  
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 70px;
  max-width: 1100px;
  padding: 0 20px; /* optional: for spacing on small screens */
}
.textwi{
  margin-top: 1px;
}

.image-text-blockwi.reverse {
  flex-direction: row-reverse;
}

.image-text-blockwi.reverse .textwi{
  margin-bottom: 60px;

}

.image-text-blockwi img {
  margin-top: 30px;
  flex: 1 1 50%;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.image-text-blockwi .textwi {
  flex: 1 1 50%;
  padding: 30px;
}

.image-text-blockwi .textwi h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #0056b3;
}

.image-text-blockwi .textwi p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.bookingwi {
  background-color: whitesmoke;
  padding: 60px 20px;
  text-align: center;
}

.bookingwi h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0275d8;
}

.bookingwi ul {
  list-style: none;
  color: #000;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 1.1em;
  text-align: center;  /* center text too */
}


.bookingwi ul li {
  margin: 12px 0;
}

.notewi {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 30px;
}

.book-btnwi {
  background-color: #1f6bad;
  color: rgb(23, 22, 22);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s;
}

.book-btnwi:hover {
  background-color: #014f86;
}
 @media (max-width: 768px) {
      .destinationwi h1{
        margin-top: 120px;
      }
      .image-text-blockwi img {
        margin: 0;
        padding: 0;
      }
      .textwi p{
        margin-bottom: -260px;

      }
    }






/* Pakages , Family page */

.family-section {
  padding: 60px 20px;
  background-color: #fefefe;
}

.family-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
}

.family-intro h2 {
  font-size: 2.4em;
  color: #0077b6;
  margin-bottom: 40px;
  
 text-align: left;
}

.family-intro p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.family-package {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
 text-align: left;
  gap: 30px;
}

.family-package.reverse {
  flex-direction: row-reverse;
}

.family-package img {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto; /* centers image horizontally */
}


.family-text {
  flex: 1 1 50%;
  padding: 20px;
  justify-content: center; /* center content in the flex container */
  text-align: left;
}

.family-text h3 {
  font-size: 1.8em;
  color: #023e8a;
  margin-bottom: 10px;
}

.family-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.booking {
  background-color: whitesmoke;
  padding: 2px 20px;
  text-align: left;
  
}

.booking h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #0077b6;
  text-align: center;
 
}

.booking ul {
  color: #000;
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;     /* Horizontally centers the ul */
  max-width: 1060px;
  font-size: 1.1em;
  text-align: left;        /* Keeps list item text left-aligned */
  display: block;
  text-align: left;
}


.booking ul li {
  margin: 12px 0;
}

.note {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 30px;
}

.book-btn {
  background-color: #0077b6;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s;
}

.book-btn:hover {
  background-color: #023e8a;
}
@media (max-width: 768px) {
      .family-intro h2{
        margin-top: 80px;
      }

      .family-package  img{
        max-width: 100%;
        height: auto;
      }
      
      
    }


/* Pakages , student page */

.student-section {
  padding: 20px 20px;
  background-color: whitesmoke;
}

.student-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
  text-align: left;
}

.student-intro h2 {
  font-size: 2.4em;
  color: #003580;
  margin-bottom: 20px;
 
}

.student-intro p {
  font-size: 1.2em;
  color: #444;
  line-height: 1.6;
  text-align: left;
}

.student-package {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 30px;
}

.student-package.reverse {
  flex-direction: row-reverse;
}

.student-package img {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.student-text {
  flex: 1 1 50%;
  padding: 20px;
  
}

.student-text h3 {
  font-size: 1.8em;
  color: #003580;
  margin-bottom: 12px;
  text-align: left;
}

.student-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.booking {
  background-color: whitesmoke;
  padding: 20px 20px;
  text-align: center;
}

.booking h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #0056b3;
}

.booking ul {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 1.1em;
  color: #000;
}

.booking ul li {
  margin: 12px 0;
  text-align: center;
}

.note {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 30px;
}

.book-btn {
  background-color: #0056b3;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s;
}

.book-btn:hover {
  background-color: #003973;
}
@media (max-width: 768px) {
      .student-intro  h2{
        margin-top: 120px;
      }
      .student-package img{
        max-width: 100%;
        height: auto;
      }
      
    }


/* Pakages , couple page */

.couple-section {
  padding: 20px 20px;
  background-color: #fffaf5; /* light ivory */
  font-family: 'Segoe UI', sans-serif;
}

.couple-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
}

.couple-intro h2 {
  font-size: 2.6em;
  color: #b08b61; /* elegant gold tone */
  margin-bottom: 20px;
  letter-spacing: 1px;
 
  text-align: left;
}

.couple-intro p {
  font-size: 1.2em;
  color: #5a5a5a;
  line-height: 1.8;
  text-align: left;
}

.couple-package {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 40px;
}

.couple-package.reverse {
  flex-direction: row-reverse;
}

.couple-package img {
  flex: 1 1 50%;
  max-width: 60%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0 auto;
}

.couple-text {
  flex: 1 1 50%;
  padding: 30px;
}

.couple-text h3 {
  font-size: 2em;
  color: #9d6f4c;
  margin-bottom: 14px;
  font-weight: 600;
}

.couple-text p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #4e4e4e;
  text-align: left;
}

.booking {
  background-color: #f9f3ee;
  padding: 20px 20px;
  text-align: center;
}

.booking h2 {
  font-size: 2.4em;
  margin-bottom: 25px;
  color: #b08b61;
}

.booking ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 620px;
  font-size: 1.1em;
  text-align: left;
  color: #2e2e2e;
  line-height: 1.8;
}

.booking ul li::before {
  content: "💗 ";
  margin-right: 8px;
}

.note {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 30px;
}

.book-btn {
  background-color: #b08b61;
  color: white;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(176, 139, 97, 0.4);
}

.book-btn:hover {
  background-color: #9d6f4c;
}

@media (max-width: 768px) {
      .couple-intro h2{
        margin-top: 120px;
      }
      .couple-package img{
        max-width: 100%;
        height: auto;
      }
      
    }


/* Pakages , group page */

.corporate-section {
  padding: 20px 20px;
  background-color: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.corporate-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
}

.corporate-intro h2 {
  font-size: 2.5em;
  color: #004080;
  margin-bottom: 20px;
 
  text-align: left;
}

.corporate-intro p {
  font-size: 1.2em;
  color: #444;
  line-height: 1.7;
  text-align: left;
}

.corporate-package {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.corporate-package.reverse {
  flex-direction: row-reverse;
}

.corporate-package img {
  flex: 1 1 50%;
  max-width: 60%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: block;
  margin: 0 auto; /* ✅ this centers the image horizontally */
}


.corporate-text {
  flex: 1 1 50%;
  padding: 30px;
  text-align: center;
}

.corporate-text h3 {
  font-size: 2em;
  color: #003366;
  margin-bottom: 14px;
  text-align: left;
}

.corporate-text p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.booking {
  background-color: white;
  padding: 20px 20px;
  text-align: center;
}

.booking h2 {
  font-size: 2.2em;
  margin-bottom: 25px;
  color: #004080;
}

.booking ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 1.1em;
  text-align: left;
  color: #000;
}

.booking ul li::before {
  content: "✔️ ";
  margin-right: 8px;
}

.note {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 30px;
}

.book-btn {
  background-color: #004080;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #002f5d;
}
@media (max-width: 768px) {
      .corporate-intro h2{
        margin-top: 120px;
      }
      .corporate-package img{
        max-width: 100%;
        height: auto;
      }
    }




/* FAQs , common page */
/* FAQ Section */
.faq-section {
  padding: 20px 20px;
  background-color: #f6f9fc;
   margin: 0;
  color: #333;
}

.faq-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
}

.faq-intro h2 {
  font-size: 2.5em;
  color: #0057b8;
  margin-bottom: 40px;
  
  text-align: left;
}

.faq-intro p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.faq {
  max-width: 1060px;
  margin: 0 auto 30px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.faq h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.faq p {
  font-size: 1.05em;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

/* Contact Prompt Section */
.faq-contact {
  background-color: whitesmoke;
  text-align: center;
  padding: 60px 20px;
}

.faq-contact h2 {
  font-size: 2em;
  color: #0057b8;
  margin-bottom: 10px;
}

.faq-contact p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.faq-btn {
  background-color: #0057b8;
  color: #fff;
  padding: 12px 28px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
}

.faq-btn:hover {
  background-color: #003f87;
}

/* Why Trust Tours Section */
.faq-info {
  background-color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.faq-info h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
}

.faq-info ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #333;
  text-align: left;
}

.faq-info ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.faq-info ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007b5e;
  font-weight: bold;
}
@media (max-width: 768px) {
      .faq-intro h2{
        margin-top: 120px;
      }
    }

/* FAQs  , cencelation page */

.cancel-section {
  padding: 20px 20px;
  background-color: #fdfefe;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.cancel-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
}

.cancel-intro h2 {
  font-size: 2.5em;
  color: #c0392b;
  margin-bottom: 30px;
 
  text-align: left;
}

.cancel-intro p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.cancel-block {
  max-width: 1060px;
  margin: 0 auto 30px;
  padding: 25px 30px;
  background-color: #fff;
  border-left: 6px solid #e74c3c;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cancel-block h3 {
  color: #c0392b;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.cancel-block p {
  font-size: 1.05em;
  line-height: 1.6;
  margin: 8px 0;
  text-align: left;
}

.cancel-contact {
  text-align: center;
  background-color: whitesmoke;
  padding: 50px 20px;
  margin-top: 40px;
}

.cancel-contact h4 {
  font-size: 1.6em;
  color: #d84315;
  margin-bottom: 10px;
}

.cancel-contact p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.cancel-btn {
  background-color: #d84315;
  color: white;
  padding: 12px 28px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cancel-btn:hover {
  background-color: #bf360c;
}
@media (max-width: 768px) {
     .cancel-intro h2{
      margin-top: 120px;
     }
    }



/* FAQs  , timng page */

.timing-section {
  padding: 20px 20px;
  background-color: #f6faff;
    
  color: #333;
}

.timing-intro {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto 50px;
}

.timing-intro h2 {
  font-size: 2.6em;
  color: #0056b3;
  margin-bottom: 40px;
 
  text-align: left;
}

.timing-intro p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

.timing-block {
  max-width: 1060px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  border-left: 6px solid #0077cc;
}

.timing-block h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #003366;
}

.timing-block p,
.timing-block li {
  font-size: 1.05em;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.timing-block ul {
  padding-left: 20px;
  margin: 15px 0;
}

.timing-block li {
  margin-bottom: 10px;
}

.timing-block span {
  font-weight: bold;
  color: #0077cc;
}

.timing-contact {
  background-color: whitesmoke;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.timing-contact h4 {
  font-size: 1.6em;
  color: #004b87;
  margin-bottom: 15px;
}

.timing-contact p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
}

.timing-btn {
  background-color: #0056b3;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.1em;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.timing-btn:hover {
  background-color: #003b87;
}

@media (max-width: 768px) {
     .timing-intro h2{
      margin-top: 120px;

     }
    }





/* transportation    Form  */


.ride-form {
  max-width: 1000px;
  margin: auto;
  padding: 50px;
  font-family: Arial, sans-serif;
  background-color: transparent;
}
.ride-form h1{
  justify-self: center;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 7px;
}

.form-group {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  
}

.full-width {
  flex: 1 1 100%;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 1px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input, select, textarea {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #178eb2;
  color: white;
  padding: 12px 45px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #1e9fc7;
}

@media (max-width: 768px) {
     .ride-form h1{
      margin-top: 100px;
     }
    }







    /* 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: -50px;
  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;
  text-align: left;
}

.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;
  }
}


