/*header*/
header {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 21, 21, 0.6); 
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #f0f0f0;
}

body {
  padding-top: 70px; 
}

.logo {
  max-height: 60px; 
  height: auto; 
  width: auto;
  margin-right: 1rem;
}
.bg-custom {
  margin-top: 0;
  background: rgba(26, 209, 209, 0); 
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


nav {
  margin-left: auto; 
  background-color: #ffffff; 
  border-radius: 8px; 
  padding: 10px 20px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}


nav a {
  display: inline-block;
  padding: 10px 15px; 
  margin-right: 10px; 
  color: #000; 
  text-decoration: none; 
  transition: background-color 0.3s ease, color 0.3s ease; 
}

nav a:hover {
  background-color: #93c73f; 
  color: #ffffff; 
}
.side-drawer {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: left 0.3s ease;
  padding: 20px;
}

.side-drawer.open {
  left: 0;
}

.side-drawer a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: #000;
}

.side-drawer a:hover {
  color: #93c73f;
}




.dropdown-menu {
  background-color: #ffffff; 
  border-radius: 5px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.dropdown-menu a {
  color: #000; 
  padding: 10px 15px; 
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #93c73f; 
  color: #ffffff; 
}

.bottom-nav {
    background: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(10px); 
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
  }

  .bottom-nav a {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    color: #000;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }

  .bottom-nav a.active {
    color: #93c73f;
  }

  .bottom-nav a img {
    vertical-align: middle;
  }
@media (max-width: 992px) {
   nav a {
    font-size: 0.9rem; 
  }
 
  nav {
    display: none;
  }

  .bottom-nav {
    display: flex;
  }

  .side-drawer {
    display: block;
  }
}

@media (min-width: 992px) {
  .bottom-nav {
    display: none;
  }

  nav a {
    margin-right: 20px;
  }

  nav .dropdown-menu {
    padding: 10px 20px;
    margin-left: 0;
  }
}




@media (max-width: 768px) {
  .logo {
    max-height: 50px; 
    margin-right: 0.5rem; 
  }
}



/*Cover*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.centered-title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #ffffff;
z-index: 1;
width: 90%; 
}

.centered-title h1 {
font-size: 2.5rem;
font-weight: bold;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
margin: 0; 
}


.cover-section {
  position: relative;
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: flex-end; 
  overflow: hidden;
}


.glass-tab {
  position: absolute;
  bottom: 20px; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 90%; 
  max-width: 500px; 
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15); 
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff; 
  z-index: 2;
}


.glass-tab h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.glass-tab .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #93c73f; 
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.glass-tab .btn:hover {
  background-color: #6ea82c;
  transform: scale(1.05); 
}


@media (max-width: 768px) {
  .centered-title h1 {
    font-size: 2.5rem; 
    line-height: 1.2; 
  }

  .glass-tab {
    width: 95%;
    padding: 15px;
  }

  
  .glass-tab h2 {
    font-size: 1.2rem;
  }

  .glass-tab .btn {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .centered-title h1 {
    font-size: 2rem; 
  }
  .glass-tab {
    width: 100%;
    padding: 10px;
    border-radius: 0; 
  }

 
  .glass-tab h2 {
    font-size: 1rem;
  }

  
  .glass-tab .btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
.image-title {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
}
.image-container {
  width: 100%;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: auto;
  display: block;
}@media (max-width: 360px) {
.centered-title h1 {
  font-size: 1.8rem; 
}
}


/*carousel*/

.carls {
  background: #202020;
  padding: 40px 20px;
}

.carls-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: rgb(216, 219, 221);
}
.carls p{
  text-align: center;
  font-size: 15px;
 
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}
.carls h6{
  text-align: center;
  font-size: 15px;
 
  margin-bottom: 20px;
  color: rgb(207, 207, 207);
}
.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards {
  position: relative;
  width: 90%;
  max-width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cards:hover {
  transform: scale(1.05);
}

.cards a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.cards-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.526);
  backdrop-filter: blur(10px);
  padding: 15px;
  text-align: left;
  transition: transform 0.3s ease;
}

.car-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin: 0;
}

.details {
  margin-top: 10px;
  display: none;
  font-size: 14px;
  color: #000000;
}

.cards:hover .car-title {
  display: none;
}

.cards:hover .details {
  display: block;
}




/*quickcall*/
.callcontainer {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px 20px;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2);
  z-index: 0;
}

.cta-callcontainer {
  position: relative;
  width: 90%;
  max-width: 800px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-logo img {
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-heading {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 35px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  font-size: 1.1rem;
  background: linear-gradient(45deg, #f2d411, #ffec5e);
  color: #1a1a1a;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffec5e, #f2d411);
}

@media (max-width: 768px) {
  .callcontainer {
    min-height: 80vh;
    padding: 30px 15px;
  }
  
  .cta-callcontainer {
    padding: 30px 20px;
  }
  
  .cta-logo img {
    height: 65px;
  }
  
  .cta-heading {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .cta-buttons {
    grid-template-columns: 1fr;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .cta-heading {
    font-size: 1.4rem;
  }
  
  .cta-logo img {
    height: 50px;
  }
  
  .cta-button {
    font-size: 0.95rem;
  }
}

/*about*/
.about-section {
  display: flex;
  align-items: center;
  padding: 40px;
  background-color: #3454af;
  color: #fff;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 40%;
  max-width: 40%;
  text-align: center;
}

.about-image img {
  width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-content {
  flex: 1 1 60%;
  max-width: 60%;
  padding-left: 20px;
}

.about-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-section {
      flex-direction: column;
      text-align: center;
  }

  .about-image {
      max-width: 100%;
  }

  .about-content {
      max-width: 100%;
      padding-left: 0;
      margin-top: 20px;
  }
}




/*why us*/
.callcontainer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  transition: all 0.3s ease;
}

.glass-tab {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-tab {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.whatsapp-tab:hover {
  transform: translateY(-3px);
}
.what-we-offer {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  overflow: hidden;
}

.background-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  z-index: -1;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.what-we-offer h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.offer-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-card {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
  min-width: 250px;
  max-width: 350px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card h3 {
  font-size: 18px;
  margin: 0;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .offer-cards {
      flex-direction: column;
      align-items: center;
  }
  .callcontainer {
    padding: 40px 15px;
  }
  
  .glass-tab {
    padding: 30px 20px;
    width: 95%;
  }
  
  .whatsapp-tab {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .callcontainer {
    padding: 30px 10px;
  }
  
  .glass-tab {
    padding: 20px 15px;
  }
  
  .whatsapp-tab {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}



/*Tables*/
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #2c3e50;
  --bg-color: #f8f9fa;
  --border-color: #ecf0f1;
  --header-gradient: linear-gradient(135deg, #2c3e50, #34495e);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* Unified Table Styles */
.unified-table-container {
  max-width: 1200px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.unified-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.unified-table th,
.unified-table td {
  padding: 1.25rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.unified-table thead th {
  background: var(--header-gradient);
  color: white;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 3; 
}

/* Filterable Pricing Table */
.filter-container {
  padding: 1rem;
  position: sticky;
  left: 0;
  background: white;
}

.filter-dropdown {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.pricing-table tbody th {
  background: white;
  position: sticky;
  left: 0;
  z-index: 2;
}

.accent-cell {
  background-color: rgba(231, 76, 60, 0.08);
  font-weight: 600;
  color: var(--accent-color);
}

/* Itinerary Pricing Table */
.vehicle-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.price-details {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Vehicle Specifications Table */
.spec-table td:nth-child(3),
.spec-table td:nth-child(4) {
  color: #27ae60;
  font-weight: 500;
}

.spec-table td:last-child {
  color: var(--accent-color);
  font-weight: 500;
}

/* Modified Mobile Responsive Section */
@media (max-width: 768px) {
  .unified-table-container {
      margin: 1rem auto;
      border-radius: 8px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
  }

  .unified-table {
      min-width: 1000px; 
  }

  
  .unified-table thead {
      display: table-header-group;
  }
  
  .unified-table tr {
      display: table-row;
  }
  
  .unified-table td {
      display: table-cell;
      padding: 0.75rem;
  }
  
  .unified-table td::before {
      content: none; 
  }

  .filter-dropdown {
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body {
      padding: 0.5rem;
  }
  
  .unified-table td {
      font-size: 0.9rem;
      padding: 0.5rem;
  }
  
  .vehicle-select {
      font-size: 0.9rem;
  }
  
  .price-details {
      font-size: 0.85rem;
  }
}
.important-notes {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent-color);
}

.important-notes h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  border-bottom: 1px dashed #eee;
}

.styled-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.styled-list li::before {
  content: "❗"; 
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.1em;
  top: 0.8rem;
}

.styled-list li:hover {
  background: rgba(231, 76, 60, 0.03);
  transform: translateX(5px);
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .important-notes {
      margin: 1rem auto;
      padding: 1rem;
  }
  
  .styled-list li {
      padding-left: 1.8rem;
      font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .important-notes h3 {
      font-size: 1.3rem;
  }
  
  .styled-list li {
      padding-left: 1.5rem;
      font-size: 0.9rem;
  }
}


/*mission*/
.mission-section {
  position: relative;
  padding: 4rem 1rem;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-content h3{
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.glass-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.goals-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.goals-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #4CAF50;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.goal-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.goal-item:hover {
  transform: translateY(-5px);
}

.goal-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease;
}
.goal-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.goal-item:hover .goal-icon {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .glass-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  .goals-heading {
    font-size: 1.5rem;
  }

  .goal-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .goal-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .goal-icon img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .mission-section {
    padding: 2rem 0.5rem;
  }

  .glass-container {
    padding: 1rem;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }
}




/*Why Choose Us?*/

.why-choose-us {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}


.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
}


.why-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.why-card h4 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #444;
  text-align: center;
}

.why-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}


.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}


@media (max-width: 768px) {
  .why-cards {
    grid-template-columns: 1fr; 
  }

  .why-card {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-card h4 {
    font-size: 1.3rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}





/*FAQ*/
.faq-section {
  padding: 40px;
 
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px) brightness(0.8);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #ffffff;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #aaa7a4;
  padding-bottom: 10px;
  cursor: pointer;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.dropdown-icon {
  font-size: 1.2rem;
  color: #1d57f7;
  transition: transform 0.3s ease;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
  display: none;
  color: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .dropdown-icon {
  transform: rotate(180deg); 
}


/*Testimonials*/
.sections {
  position: relative;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  overflow: hidden;
}
      .background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  object-fit: cover;
  z-index: -1;
}
      .testimonial-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  text-align: center;
  overflow: hidden; 
  margin: 0 auto; 
}
.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  justify-content: center; 
  align-items: center; 
}

.testimonial-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}
.testimonial-card {
  flex: 0 0 33.33%; 
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-card .stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
      .testimonial-card p {
  margin: 15px 0;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
}

      .testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 15px;
  color: #000;
}

      .testimonial-card span {
  color: #ffc107;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}
      .navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.navigation button {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  cursor: pointer;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s, background 0.3s, opacity 0.3s, visibility 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-container:hover .navigation button {
  opacity: 1;
  visibility: visible;
}

.navigation button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .testimonial-card {
      flex: 0 0 100%;  
  }

  .testimonial-slider {
      align-items: center; 
  }
}


@media screen and (max-width: 480px) {
  .testimonial-card {
      flex: 0 0 100%; }}



/*whatsapp*/
.glass-tab {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin: 20px auto;
  max-width: 1000px;
  width: 90%;
}


.tabs-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-tab {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1 1 45%; 
  min-width: 350px; 
  max-width: 450px; 
  box-sizing: border-box;
}



.whatsapp-tab img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.whatsapp-tab .number {
  font-size: 25px;
  font-weight: bold;
  flex-grow: 1;
}

.whatsapp-tab .whatsapp-button {
  background-color: white;
  color: #25D366;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}

.whatsapp-tab .whatsapp-button:hover {
  background-color: #e0ffe7;
}

/* Responsive Design */
@media (max-width: 480px) {
  .whatsapp-tab {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px;
  }

  .whatsapp-tab .number {
      margin-bottom: 10px;
      text-align: center;
  }

  .whatsapp-tab .whatsapp-button {
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 768px) {
  .glass-tab {
    width: 95%;
    padding: 20px;
  }
  
  .whatsapp-tab {
    flex: 1 1 100%;
    min-width: unset;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .whatsapp-tab {
    flex-direction: column;
    padding: 15px;
  }
  
  .whatsapp-tab .number {
    margin: 10px 0;
    font-size: 20px;
  }
}


/*terms and conditions*/
.terms-wrapper {
  padding: 60px 20px;
  background: #f8f9fa;
  min-height: 100vh;
}

/* Content container */
.terms-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', system-ui;
  line-height: 1.6;
  color: #333;
}

/* Headings */
.terms-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: 600;
}

.section-heading {
  font-size: 1.8rem;
  color: #34495e;
  margin: 30px 0 20px;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 10px;
  font-weight: 500;
}

/* List styling */
.terms-list {
  margin: 20px 0;
  padding-left: 30px;
}

.terms-list li {
  margin-bottom: 15px;
  position: relative;
}

/* Highlight elements */
.highlight {
  color: #e74c3c;
  font-weight: 600;
}

/* Note boxes */
.note {
  background: #f9f9f9;
  border-left: 4px solid #3498db;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .terms-container {
      max-width: 90%;
  }
}

@media (max-width: 768px) {
  .terms-wrapper {
      padding: 30px 15px;
  }
  
  .terms-container {
      padding: 30px;
  }
  
  .terms-heading {
      font-size: 2rem;
  }
  
  .section-heading {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .terms-container {
      padding: 20px;
  }
  
  .terms-heading {
      font-size: 1.75rem;
  }
  
  .section-heading {
      font-size: 1.3rem;
  }
  
  .terms-list {
      padding-left: 20px;
  }
}

/* Footer */
:root {
  --fc-accent: rgba(255, 255, 255, 0.9); 
  --fc-accent2: rgba(255, 255, 255, 0.7); 
  --fc-darkbg: #0a0a0a;
}

.fc-container {
  background: #000000;
  color: rgba(255,255,255,0.8);
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', system-ui;
  line-height: 1.6;
}

.fc-content {
  max-width: 1200px;
  margin: 0 auto;
}

.fc-compact-form {
  background: #2a2a2a;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.fc-form__rows {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fc-form__row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.fc-form__group {
  flex: 1;
  position: relative;
}

.fc-form__group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fc-accent);
}

.fc-compact-form input,
.fc-compact-form textarea {
  width: 100%;
  padding: 12px 12px 12px 35px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.fc-compact-form input:focus,
.fc-compact-form textarea:focus {
  border-color: var(--fc-accent);
  outline: none;
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
}

.fc-form__submit {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  white-space: nowrap;
  height: 100%;
}

.fc-form__submit:hover {
  transform: translateY(-2px);
}

.fc-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.fc-contact-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.fc-icon {
  color: var(--fc-accent);
  margin-right: 10px;
  width: 20px;
}

.fc-heading {
  color: var(--fc-accent);
  margin-bottom: 20px;
  font-size: 1.4em;
  display: flex;
  align-items: center;
}

.fc-link {
  color: var(--fc-accent2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.fc-link:hover {
  color: var(--fc-accent); 
  transform: translateX(5px);
  text-decoration: none; 
}

.fc-credits {
  text-align: center;
  padding-top: 30px;
  font-size: 0.9em;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
}

@media (max-width: 768px) {
  .fc-form__row {
      flex-direction: column;
  }
  
  .fc-form__group {
      width: 100%;
  }
  
  .fc-form__submit {
      width: 100%;
      height: auto;
      padding: 15px;
  }
  
  .fc-contact-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .fc-container {
      padding: 30px 15px;
  }
  
  .fc-contact-card {
      padding: 20px;
  }
}