@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.al-center {
  align-items: center;
}

.sp-bw {
  justify-content: space-between;
}

.col-50 {
  width: 50%;
}

.col-25 {
  width: 25%;
}

/* header style */
header {
  background: #1f3c53;
  padding: 20px 0;
}

.logo a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo a img {
  margin-right: 10px;
  max-width: 64px;
  min-height: 64px;
  object-fit: contain;
}

.menu ul {
  display: flex;
  align-items: center;
}

.menu ul li {
  margin: 4px 20px;
}

.menu ul li a {
  color: #fff;
  margin: 8px 12px;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
}

.menu ul li a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #fff;
  height: 2px;
  width: 0;
  transition: all 0.3s ease-in-out;
}

.menu ul li a:hover::before {
  width: 100%;
}

.toggle {
  display: none;
}

.toggle i {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* hero area style */
.ir-hero {
  height: 700px;
  background: url("images/hero.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.ir-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ir-hero-content {
  position: relative;
  max-width: 700px;
}

.ir-hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.ir-btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
}

/* welcome area style */
.ir-easy {
  padding: 70px 20px;
  text-align: center;
}

.ir-easy h2,
.ir-join h2,
.ir-gallery h2,
.ir-about-left h2 {
  font-size: 32px;
}

.ir-easy-sub {
  margin: 15px auto 40px;
  max-width: 600px;
  color: #666;
}

.ir-easy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.ir-easy-card {
  background: #f3f7fb;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
}

.ir-easy-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.ir-easy-card h4 {
  margin: 15px 0;
  font-size: 18px;
}

/* JOIN */
.ir-join {
  background: #203c54;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.ir-join p {
  color: white;
  font-size: 16px;
  margin-top: 15px;
}

.ir-btn-light {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
}

/* GALLERY */
.ir-gallery {
  padding: 70px 20px;
  text-align: center;
}

.ir-gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.ir-gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* CALL */
.ir-call {
  height: 300px;
  background: url("images/plane.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.ir-call-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ir-call-content {
  position: relative;
}

.ir-call-content p {
  margin-top: 15px;
}

/* REVIEW */

.ir-review {
  padding: 70px 20px;
}

.ir-review-img img {
  width: 100%;
}

.ir-review-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ir-review-text {
  background: #3a6d93;
  color: white;
  padding: 40px;
  border-radius: 8px;
}

.ir-stars {
  margin-bottom: 15px;
}

/* ABOUT */

.ir-about {
  padding: 70px 20px;
}

.ir-about-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ir-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.ir-stats h3 {
  color: #2b6c9c;
  font-size: 30px;
}

.ir-stats p {
  margin-top: 0 !important;
}

.ir-about-img img {
  width: 100%;
  border-radius: 8px;
  height: 300px;
  object-fit: cover;
}

.ir-about-left p {
  font-size: 16px;
  margin-top: 15px;
}

/* FOOTER */

.ir-footer {
  background: #1f3c53;
  color: white;
  padding: 50px 20px;
}

.ir-footer-wrap {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.ir-footer-wrap h3 {
  margin-bottom: 15px;
}

.ir-footer-right a {
  padding: 10px 20px;
  border: none;
  background: #4e8cb3;
  color: white;
  border-radius: 6px;
  display: inline-block;
}

.ir-footer-mid a {
  color: #fff;
}

.ir-copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .ir-easy-grid {
    grid-template-columns: 1fr;
  }

  .ir-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ir-review-wrap {
    grid-template-columns: 1fr;
  }

  .ir-about-wrap {
    grid-template-columns: 1fr;
  }

  .ir-footer-wrap {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .ir-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .logo a img {
    max-width: 50px;
    min-height: 50px;
  }

  .logo a {
    font-size: 1.4rem;
  }

  .toggle {
    display: block;
  }

  .menu {
    display: none;
    background: #1f3c53;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 34px 0;
    z-index: 999;
  }

  .menu ul {
    display: block;
    list-style: none;
    padding: 0;
  }

  .menu ul li {
    margin: 10px 0;
    padding: 10px 0;
  }

  .menu ul li a {
    color: #fff;
    margin: 8px 12px;
    font-size: 1.2rem;
  }

  .toggle {
    display: block;
  }

  .menu.active {
    display: block;
  }
}

/* privacy policy style */
.privacy {
  padding: 4rem 0;
}

.desc-wrapper {
  margin-bottom: 15px;
}

.privacy .desc-wrapper p {
  color: #000;
  font-size: 1.8rem;
  line-height: 1.3;
}

.privacy .desc-wrapper p::before {
  background: #000;
}

.privacy h2 {
  color: #000;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}

.privacy h2 a {
  color: #000;
  font-weight: 600;
}

#website-ad-section img {
  width: 100%;
}

#mobileView {
  display: none;
}

@media (max-width: 767px) {
  #mobileView {
    display: block;
  }

  #desktopView {
    display: none;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 3%;
  transform: translateX(0%);
  background: #fff;
  color: #000;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  width: 400px;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #1f3c53;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn.accept {
  background: #4caf50;
  color: #fff;
}

.btn.accept:hover {
  background: #45a049;
}

.btn.decline {
  background: #f44336;
  color: #fff;
}

.btn.decline:hover {
  background: #e53935;
}

@media (max-width: 768px) {
  .cookie-banner {
    right: 5%;
    width: 90%;
  }

  .btn {
    width: 100%;
  }
}


.footer-menu ul li{
margin-bottom: 10px;
}
.footer-menu ul li a{
  color: #fff;

}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  height: 430px;

  position: relative;

  background-image: url("images/main-3.avif");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);
}

.about-hero-content {
  position: relative;
  z-index: 1;

  color: white;

  max-width: 850px;
  padding: 20px;
}

.about-hero-content h1 {
  font-size: 52px;
  font-weight: 700;

  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 20px;
}


/* =========================
 ABOUT SECTION
========================= */

.about-section {
  padding: 90px 7%;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.about-image img {
  width: 100%;
  height: 450px;

  object-fit: cover;

  border-radius: 10px;
}

.about-content .small-title {
  color: #28718c;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;
}

.about-content h2 {
  color: #203f57;

  font-size: 38px;
  line-height: 1.25;

  margin: 15px 0 25px;
}

.about-content p {
  color: #555;

  font-size: 16px;

  margin-bottom: 18px;
}

.btn {
  display: inline-block;

  margin-top: 15px;

  padding: 13px 28px;

  background: #203f57;
  color: white;

  text-decoration: none;

  border-radius: 30px;

  transition: 0.3s;
}

.btn:hover {
  background: #315e7d;
}


/* =========================
 WHY CHOOSE US
========================= */

.why-section {
  background: #f5f8fa;

  padding: 85px 7%;
}

.section-heading {
  text-align: center;

  max-width: 700px;
  margin: 0 auto 50px;
}

.section-heading span {
  color: #28718c;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;
}

.section-heading h2 {
  color: #203f57;

  font-size: 38px;

  margin: 10px 0;
}

.section-heading p {
  color: #666;
}


/* Feature Cards */

.features {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.feature-card {
  background: white;

  padding: 35px 25px;

  text-align: center;

  border-radius: 10px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 40px;

  margin-bottom: 15px;
}

.feature-card h3 {
  color: #203f57;

  margin-bottom: 10px;

  font-size: 20px;
}

.feature-card p {
  color: #666;

  font-size: 14px;
}


/* =========================
 MISSION
========================= */

.mission-section {
  min-height: 400px;

  background-image:
      linear-gradient(
          rgba(20, 50, 70, 0.78),
          rgba(20, 50, 70, 0.78)
      ),
      url("images/main-2.avif");

  background-size: cover;
  background-position: center;

  display: flex;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 70px 20px;
}

.mission-content {
  max-width: 800px;

  color: white;
}

.mission-content span {
  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;
}

.mission-content h2 {
  font-size: 42px;

  margin: 10px 0 20px;
}

.mission-content p {
  font-size: 17px;

  margin-bottom: 30px;
}

.call-btn {
  display: inline-block;

  padding: 13px 30px;

  color: white;

  border: 1px solid white;

  border-radius: 30px;

  text-decoration: none;

  transition: 0.3s;
}

.call-btn:hover {
  background: white;

  color: #203f57;
}





/* =========================
 RESPONSIVE
========================= */

@media (max-width: 900px) {

  .navbar {
      padding: 0 25px;
  }

  .navbar nav {
      gap: 20px;
  }

  .navbar nav a {
      font-size: 15px;
  }

  .about-container {
      grid-template-columns: 1fr;

      gap: 40px;
  }

  .about-image img {
      height: 350px;
  }

  .features {
      grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .navbar {
      height: auto;

      padding: 20px;

      flex-direction: column;

      gap: 18px;
  }

  .navbar nav {
      gap: 15px;

      flex-wrap: wrap;

      justify-content: center;
  }

  .navbar nav a {
      font-size: 13px;
  }

  .about-hero {
      height: 350px;
  }

  .about-hero-content h1 {
      font-size: 36px;
  }

  .about-hero-content p {
      font-size: 16px;
  }

  .about-section {
      padding: 60px 20px;
  }

  .about-content h2 {
      font-size: 30px;
  }

  .features {
      grid-template-columns: 1fr;
  }

  .why-section {
      padding: 60px 20px;
  }

  .section-heading h2 {
      font-size: 30px;
  }

  .mission-content h2 {
      font-size: 32px;
  }

  .footer-links {
      gap: 15px;
  }

}