/* General Styles */

body {

  font-family: "Roboto", sans-serif;

  margin: 0;

  padding: 0;

  background: url("images/background.jpg") no-repeat center center fixed;

  background-size: cover;

  color: #333;

}



.container {

  max-width: 1200px;

  margin: auto;

  padding: 1.5rem;


  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}



/* Hero Section */

.hero-image {

  background: url("images/about_us.jpg") no-repeat center center;

  background-size: cover;

  height: 400px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 10px;

  margin-bottom: 2rem;

}



.hero-content {

  text-align: center;

  color: white;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

}



.hero-content h1 {

  font-size: 2.5rem;

  margin-bottom: 1rem;

}



.hero-content p {

  font-size: 1.2rem;

  margin-bottom: 1.5rem;

}



.hero-content .btn {

  background-color: #007bff;

  color: white;

  padding: 0.8rem 1.5rem;

  border: none;

  border-radius: 5px;

  font-size: 1rem;

  cursor: pointer;

  transition: background-color 0.3s ease;

}



.hero-content .btn:hover {

  background-color: #0056b3;

}



/* Intro Section */

.intro {

  padding: 80px 20px;

  background: linear-gradient(to right, #f8f9fa, #e3f2fd);

  font-family: 'Segoe UI', sans-serif;

}



.intro .container {

  max-width: 1200px;

  margin: auto;

}



.intro .text-content {

  padding-right: 30px;

}



.intro h2 {

  font-size: 2.5rem;

  font-weight: 700;

  color: #0d47a1;

  margin-bottom: 20px;

}



.intro p {

  font-size: 1.1rem;

  line-height: 1.8;

  color: #333;

  margin-bottom: 20px;

}



.intro p span {

  font-weight: bold;

  color: #007bff;

  display: block;

  font-size: 1.2rem;

  margin-bottom: 10px;

}



.btn-explore {

  display: inline-block;

  padding: 12px 25px;

  background-color: #0d47a1;

  color: #fff;

  border-radius: 30px;

  text-decoration: none;

  font-weight: 600;

  transition: background-color 0.3s ease;

}



.btn-explore:hover {

  background-color: #1565c0;

}



.intro .image-content img {

  width: 100%;

  height: auto;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}



@media (max-width: 768px) {

  .intro .row {

    flex-direction: column-reverse;

  }



  .intro .text-content {

    padding-right: 0;

    text-align: center;

  }



  .btn-explore {

    margin-top: 20px;

  }

}







/* Why Travel With Us Styles */

.why-us {

  padding: 60px 20px;

  background-color: #f9f9f9;

  text-align: center;

}



.why-us h2 {

  font-size: 2.5rem;

  margin-bottom: 40px;

  color: #333;

}



.features-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  max-width: 1100px;

  margin: 0 auto;

}



.feature-card {

  background: #c2e3f4;

  border-radius: 16px;

  padding: 30px 20px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.feature-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);

}



.feature-card .icon {

  font-size: 40px;

  margin-bottom: 15px;

}



.feature-card h3 {

  font-size: 1.4rem;

  color: #222;

  margin-bottom: 10px;

}



.feature-card p {

  font-size: 1rem;

  color: #555;

}





/* Mission and Vision Section */

.section_1 .card {

  background: #d6e3f1;

  padding: 1.5rem;

  border-radius: 10px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  margin-bottom: 1.5rem;

}



.card h2 {

  font-size: 1.8rem;

  margin-bottom: 1rem;

}



.card p {

  font-size: 1rem;

  line-height: 1.6;

}



/* Team Section */

.members h2{

  font-size: 1.8rem;

  margin-bottom: 1rem;

  color: #007bff; 

  text-align: center;

}

.team {

  display: flex;

  flex-wrap: wrap;

  gap: 2rem;

  justify-content: space-between;

}



.team-member {

  background: rgb(222, 247, 248);

  border-radius: 10px;

  padding: 1rem;

  text-align: center;

  flex: 1 1 calc(33% - 2rem);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.team-member:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}



.team-member img {

  width: 100px;

  height: 100px;

  object-fit: cover;

  border-radius: 50%;

  margin-bottom: 1rem;

}



.team-member h3 {

  font-size: 1.2rem;

  margin-bottom: 0.5rem;

}



.team-member p {

  font-size: 1rem;

  color: #666;

}





/* our journey */

/* Our Journey Timeline */

.our-journey {

  background: #f4f8fb;

  padding: 60px 20px;

  text-align: center;

}



.our-journey h2 {

  font-size: 2.5rem;

  margin-bottom: 40px;

  color: #222;

}



.timeline {

  position: relative;

  max-width: 800px;

  margin: 0 auto;

  padding-left: 20px;

  border-left: 3px solid #00bfa6;

}



.timeline-item {

  position: relative;

  margin-bottom: 40px;

  padding-left: 40px;

}



.timeline-icon {

  position: absolute;

  left: -30px;

  top: 0;

  background: #00bfa6;

  color: #fff;

  border-radius: 50%;

  font-size: 20px;

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.timeline-content h3 {

  margin: 0;

  font-size: 1.5rem;

  color: #00bfa6;

}



.timeline-content p {

  margin: 5px 0 0;

  color: #555;

}



/* Gallery Section */

.gallery {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 1.5rem;

}



.gallery img {

  width: 100%;

  height: 200px;

  object-fit: cover;

  border-radius: 10px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;

}



.gallery img:hover {

  transform: scale(1.05);

}



/* Testimonials Section */

blockquote {

  font-style: italic;

  color: #555;

  margin: 2rem 0;

  padding: 1rem;

  border-left: 5px solid #007bff;

  background: rgba(255, 255, 255, 0.8);

  border-radius: 5px;

}



/* Responsive Design */

@media (max-width: 768px) {

  .team-member {

    flex: 1 1 calc(50% - 2rem);

  }

  .tyeam-member h3{

    font-size: 2.5rem;

  }



  .hero-content h1 {

    font-size: 2rem;

  }



  .hero-content p {

    font-size: 1rem;

  }



  .gallery img {

    height: 150px;

  }

}



@media (max-width: 576px) {

  .team-member {

    flex: 1 1 100%;

  }



  .hero-content h1 {

    font-size: 1.8rem;

  }



  .hero-content p {

    font-size: 0.9rem;

  }

}



