body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  background-color: #fff;
}

header {
  margin-top: 3em;
  text-align: center;
}

header h1 {
  font-size: 2em;
  font-weight: 900;
}

#container2D canvas {
  width: 100vw ;
  height: 100vh ;
  position: absolute;
  top: 0;
  left: 0;
  
}

#container3D canvas {
  width: 100vw ;
  height: 100vh ;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#container3D h5 {
    text-align: center;
    background-color: white;
    color: rgb(19 51 115);
    font-size: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

#container3D {
  width: 100%;
  height: 100vh;

}

nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 10vh;
  padding: 0 10vh;
  background-color: #ffffff ;
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* 3D Shadow */
  z-index: 20;
}


.logo {
  width: 150px;
  height: 100px;

  margin-top: 7px;
}

/* Navbar Links */
nav a {
  font-size: 1.5vw;
  text-decoration: none;
  color: #135f8c;

  font-weight: bolder;
 
  transition: all 0.3s ease-in-out;
  font-family: "Quicksand", sans-serif;
}

nav a:hover {
  color: #115fcc;
  transform: scale(1.1);
}

/* Center Nav */
.cntr-nav {
  display: flex;
  gap: 3vw;
}


.one,
.two,
.three {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.one {
  background-image: url("/models/city.webp");
  background-size: cover;
  
  width: 100%;
  height: 100vh; /* Make sure it takes full viewport height */
  animation: change 20s infinite ease-in-out;
}

@keyframes change{
  0%{
    background-image: url(../images/banner/banner1.webp);
  }
  10%{
    background-image: url(../images/banner/banner2.webp);
  }
  20%{
    background-image: url(../images/banner/banner3.webp);
  }
  30%{
    background-image: url(../images/banner/banner4.webp);
  }
  40%{
    background-image: url(../images/banner/banner5.webp);
  }
  50%{
    background-image: url(../images/banner/banner6.webp);
  }
  60%{
    background-image: url(../images/banner/banner7.webp);
  }
  70%{
    background-image: url(../images/banner/banner8.webp);
  }
  80%{
    background-image: url(../images/banner/banner9.webp);
  }
  90%{
    background-image: url(../images/banner/banner10.webp);
  }
 
}



.one {
  background-color: #90d4ff;
}

.text-section{
  margin-top: 70px;
}

.two {
  background-image: url("./EXPLORE THE WORLD WITH US/4.png");
  background-size: cover;
}

.three {
  background-color: #90d4ff;

  background-color: linear-gradient(rgba(255, 255, 255, 0.955), #90d4ff);
}

.one h1,
.one h2,
.one h3 {
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.one.scroll-out h1,
.one.scroll-out h2,
.one.scroll-out h3 {
  transform: scale(0.5);
  opacity: 0;
}

/* Travel Cards */
.travel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out;
}

.travel-card:hover {
  transform: scale(1.05);
}

.travel-card.right {
  flex-direction: row;
  text-align: left;
}

.travel-card.left {
  flex-direction: row-reverse;
  text-align: left;
}

.travel-card img {
  width: 600px;
  height: 400px;
  border-radius: 1px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.travel-card:hover img {
  transform: scale(1.1);
}

.text1 {
  max-width: 100%;
  padding: 20px;
}

.text1 h2 {
  font-size: 2rem;
  font-weight: bold;
  color:  rgb(19 51 115);
}

.text1 p {
  font-size: 1.2em;
  color: #333;
  line-height: 1.5;
}

.text ul {
  list-style: none;
  padding: 0;
}

.one {
  text-align: center;
  padding: 50px;
}


.text5,
.text6,
.text7 {

 font-family: "Quicksand", sans-serif;

  padding: -2px;
  margin: 0;
}

.text6 pre{
  
  font-family: "Quicksand", sans-serif;

 
}


.text5 {
  margin-top: 6px;
  font-size: 60px;
  font-weight: 700;
  color: #fdfdfd; /* Dark Blue */
}

.text6 {
  
  font-size: 320px;
  font-weight: 800px;
  color: #fdfdfd; /* Light Blue */
}

.text7 {
  font-size: 60px;
  font-weight: 600;
  color: #fdfdfd; /* Dark Blue */
}

.text ul li {
  font-size: 1em;
  margin: 5px 0;
}
.travel-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}








.about{
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: rgb(209, 129, 9);
}

.about-left ,.about-right{
  flex-direction: column;
  display: flex;
  align-items: left;
  justify-content: center;
  width: 50%;
  height: 100%;
  background-color: white;
  
}
.about-left{
  flex-basis: 45%;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-left img {
  height: 420px;
  width: 504px;
  margin-top: 24px;
  border-radius: 10%;
  transition: transform 0.5s ease; 
}

.about-left img.zoom-in {
  transform: scale(1.1); 
}


.about-left img:hover{
  transform: scale(1.1);
}
.about-right{
  flex-basis: 55%;
}

.about-right h2{
  font-size: 1.5vw;
  color: #0d96b5;
  margin-top: -50px;
}
.about-right h3{
  font-size: 2vw;
  color: rgb(19 51 115);;

}
.about-right p{
  font-size: 1.2vw;
  color: rgb(131 133 144);
  width: 80%;
  text-align: justify;
  
}

.exp-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #1a73e8;
  margin: 5px;
}

.icon {
  font-size: 22px;
  margin-right: 10px;
  color: #1a73e8;
}

.contact-info {
  font-size: 18px;
  color: #000;
}

.contact-info h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #003366;
}

.phone-icon {
  font-size: 22px;
  margin-right: 8px;
}

.phone-number {
  font-size: 18px;
  color: #003366;
  font-weight: bold;
  margin: 5px;
}









/* Contact Page  */

.landing_page * {
  font-family: Nunito, sans-serif;
}

.landing_page .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.landing_page .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.landing_page .responsive-cell-block {
  min-height: 75px;
}

.landing_page .responsive-container-block.container {
  max-width: 1320px;
  margin-top: 60px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  position: relative;
}

.landing_page .form-box {
  background-color: rgba(135, 211, 255, 0.3); /* Light blue with transparency */
  color: white;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 35px;
  padding-left: 33px;
  max-width: 750px;
  margin-top: 25px;
  

  border-radius: 10px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  
 
  border: 1px solid rgba(255, 255, 255, 0.3);
}


.landing_page .text-blk.contactus-head {
  font-size: 30px;
  line-height: 40px;
}

.landing_page .text-blk.contactus-subhead {
  color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.landing_page .input {
  width: 100%;
  height: 50px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 18px;
  padding-top: 1px;
  padding-right: 125px;
  padding-bottom: 1px;
  padding-left: 22.5px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #47859b;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  
  padding: 1px 12.5px 1px 22.5px;
}

.landing_page .textinput {
  width: 100%;
  height: 275px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 18px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #767676;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-radius: 10px
  
  ;
}

.landing_page .submit-btn {
  width: 100%;
  height: 56px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #1a38a4;
  font-size: 18px;
  font-weight: 600;
  color: white;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #146132;
  border-right-color: #146132;
  border-bottom-color: #146132;
  border-left-color: #146132;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.submit-btn:hover{
  cursor: pointer;
}

.icons-container .share-icon .img{
  height: 40px;
  width: 40px;
}

.share-icon:hover{
  cursor: pointer;
} 

.landing_page .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-6.wk-ipadp-6.emial {
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.landing_page .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6.right-one {
  display: flex;
  justify-content: center;
}

.landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
}

.landing_page .text-blk.section-subhead {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 420px;
  font-size: 18px;
  color: #b6b6b6;
}

.landing_page .text-blk.section-head {
  font-size: 40px;
  line-height: 55px;
  font-weight: 800;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  max-width: 450px;
}

.landing_page .icons-container {
  max-width: 600px;
  display: flex;
  justify-content: space-evenly;
}

.landing_page .img {
  width: 31px;
  height: 31px;
}

.landing_page .responsive-container-block.big-container {
  background-color: black;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  position: relative;
}

.landing_page .bg-img {
  width: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
}

@media (max-width: 768px) {
  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    justify-content: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .landing_page .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-6.wk-ipadp-6.emial {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    margin: 0 0 40px 0;
  }
}

@media (max-width: 500px) {
  .landing_page .text-blk.section-head {
    font-size: 26px;
    line-height: 40px;
  }

  .landing_page .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .landing_page .text-blk.section-subhead {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: 16px;
  }

  .landing_page .form-box {
    padding-top: 30px;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: 15px;
  }

  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    margin: 0 0 30px 0;
  }

  .landing_page .input {
    height: 45px;
  }

  .landing_page .text-blk.contactus-head {
    font-size: 24px;
    line-height: 34px;
  }
}



*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}


.flex {

  
  flex-wrap: wrap;

  margin: 26px 10px ;
  background-color: rgba(255, 255, 255, 0.1); /* Slight transparent white */
  border-radius: 10px;
}


.flex > div {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
}


.flex i {
  font-size: 24px;
  color: white;
  background-color: #008bca; 
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}


@media (max-width: 1024px) {
  .flex {
      flex-direction: column;
  }
  .flex > div {
      width: 100%;
      text-align: center;
      justify-content: center;
      border-right: none !important;
  }
}

.map{
  margin-top: -20px;
  margin-bottom: 20px;
  margin-left: 15px;
  border-radius: 10px;
}

@media (max-width:468px) {
  .map{
    width: 300px;
  }
}






.about-section {
 
  color: white;
  padding: 0px 0;
  
}

.about-container {
  background: url('/models/astheic1.webp')  ;
  max-width: 3000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background-color:#90d4ff;
  width: 100%;
  padding-left: 30px;
  padding-bottom: 30px;

}

/* Left Side */
.about-content {
  max-width: 50%;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  padding-left: 0px;
  color: #fff;
}

.about-content h3{
  margin-left: 5px;
  margin-top: 30px;
  color: #cfd4e9;
}


.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #1a38a4;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s ease;
  margin-bottom: 20px ;
 
}

.btn:hover {
  background-color: #00a8e0;
}

/* Right Side */
.what-we-do {
  max-width: 40%;
  background: rgba(47, 175, 221, 0.7);
  padding: 20px;
  border-radius: 10px;
  margin-right: 30px;
}

.what-we-do h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color:  rgb(19 51 115);
}

.service {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service i {
  font-size: 1.8rem;
  color: #ffffff;
}

.service h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.service p {
  font-size: 1rem;
  color: #ffffff;
}


@media (max-width: 900px) {
  .about-container {
      flex-direction: column;
      text-align: center;
  }

  .about-content, .what-we-do {
      max-width: 100%;
  }
  .about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    margin-right: 22px;
    line-height: 1.6;
    text-align: justify;
  }
  
}



.text5, .text6, .text7 {
  
  text-transform: uppercase;
}

.text6 {
  
  text-shadow: 3px 3px 0px #2e4a66, 
               6px 6px 0px #1e3246, 
               9px 9px 10px rgba(0, 0, 0, 0.5);
               
}

.text5 {
 
  text-shadow: 2px 2px 0px #2e4a66, 
               4px 4px 0px #1e3246, 
               6px 6px 10px rgba(0, 0, 0, 0.5);

}

.text7 {
 
  text-shadow: 2px 2px 0px #2e4a66, 
               4px 4px 0px #1e3246, 
               6px 6px 10px rgba(0, 0, 0, 0.5);
               
}



.footer {
  text-align: center;
  padding: 10px;
  background-color: #04083f;
  color: #ffffff;
  font-size: 14px;
}






.inquiry-section {
  text-align: center;
  padding: 20px;
  background: #3b91dd;
  border-radius: 10px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.inquiry-section h2 {
  font-size: 20px;
  color: #fffcfc;
  margin-bottom: 10px;
}

.inquiry-section p {
  font-size: 16px;
  color: #ededed;
  margin-bottom: 20px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1da851;
}

@media (max-width: 600px) {
  .inquiry-section {
      padding: 15px;
  }
  .whatsapp-button {
      font-size: 14px;
      padding: 10px 15px;
  }
}









#whatsapp-icon {
    position: fixed;
    bottom: 20px; 
    right: 20px;  
    z-index: 9999; 
}

#whatsapp-icon img {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
}















#backToTop {
    position: fixed;
    bottom: 20px;
    left: 20px; 
    font-size: 24px;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    display: none;
    z-index: 1000; 
    width: 58px;
    
}


#backToTop:hover {
    background-color: #0056b3;
}





.insta-h2{
  text-align: center;
  padding: 10px;
  color:  rgb(19 51 115);
}

.feed {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  justify-content: center;
}

.feed-item {
  min-width: 250px;
  height: 250px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #fff;
  cursor: pointer;
  z-index: 999;
}

.feed-item img, 
.feed-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.footer {
  background-color: #04083f;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 15px;
  z-index: 999;
}

.social-icon {
  width: 30px;
  height: 30px; 
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1); 
}






.dropdown {
  position: relative;
  display: inline-block;
  border-radius: 5px;
}

.dropbtn {
  text-decoration: none;
 

  
  border: none;
  cursor: pointer;
}

.dropdown-content {

  display: none;
  position: absolute;
  background-color: white;
  min-width: 120px;
  z-index: 1;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 13px;
}

.dropdown-content a {
  font-size:1.4rem;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown:hover .dropdown-content {
  display: block;
}

  
  @media screen and (max-width: 786px) {
    .dropdown:hover .dropdown-content {
      display: none !important;
    }
  }





    .faq-wrapper {
      padding: 40px 20px;
    }

    .faq-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .faq-section {
      flex: 1 1 400px;
      padding: 20px;
      border-radius: 12px;
      color: #fff;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
        z-index: 19;
    }

    .seo {
      background-color: #133373;
    }

    .marketing {
      background-color: #133373;
    }

    .about {
          background-color:  #1f364e;;
    }

       .results {
         background-color:  #0f0f0f;
    }

    .faq-section h2 {
      margin-bottom: 15px;
      border-bottom: 1px solid #fff;
      padding-bottom: 8px;
      font-size: 24px;
    }

    .faq-item {
      border: 1px solid #fff;
      margin-bottom: 10px;
    }

    .faq-question {
      background: transparent;
      border: none;
      color: #fff;
      font-size: 16px;
      width: 100%;
      text-align: left;
      padding: 15px;
      cursor: pointer;
      font-weight: bold;
      position: relative;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      right: 20px;
      font-size: 18px;
    }

    .faq-question.active::after {
      content: "−";
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      font-weight: normal;
      padding: 0 15px;
    }

    .faq-answer p {
      margin: 0;
      padding: 10px 0;
      color: #fff;
    }

    @media (max-width: 768px) {
      .faq-container {
        flex-direction: column;
        align-items: center;
      }
    }