
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Gilda+Display&family=Michroma&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: "League Spartan", sans-serif; */
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    background-color:transparent;
    width: 100%;
    font-size: 13px;
}
a{
  text-decoration: none !important;
}

/* Legal pages */
.legal-page { background: #f2f4f6; padding: 7.5rem 0 5rem; min-height: 62vh; }
.legal-shell { max-width: 1170px; margin: 0 auto; }
.legal-layout { display: grid; grid-template-columns: 272px minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.legal-sidebar, .legal-panel { background: #fff; }
.legal-sidebar { position: sticky; top: 1.5rem; }
.legal-sidebar-title { color: #111; font: 400 2rem/1.1 "Yeseva One", serif; margin: 0; padding: 2.6rem 1.35rem 2rem; }
.legal-tabs { border-top: 1px solid #d9dee3; display: flex; flex-direction: column; width: 100%; }
.legal-tab { align-items: center; align-self: stretch; border-bottom: 1px solid #d9dee3; color: #263642; display: flex; font: 500 1rem/1.25 "Poppins", sans-serif; justify-content: flex-start; min-height: 3.75rem; padding: .8rem 1.35rem; transition: background-color .2s ease, color .2s ease; width: 100%; }
.legal-tab:hover, .legal-tab[aria-current="page"] { background: #0074D9; color: #fff; }
.legal-panel { min-height: 650px; padding: clamp(2.25rem, 4vw, 3.5rem); }
.legal-panel-header { margin-bottom: 2.2rem; }
.legal-panel h2 { color: #111; font: 400 clamp(1.9rem, 3vw, 2.6rem)/1.1 "Yeseva One", serif; margin: 0 0 1.6rem; }
.legal-updated { color: #677889; font-size: .82rem; margin: 0; }
.legal-section { margin: 0 0 2rem; }
.legal-section h3 { color: #263642; font: 600 1.05rem/1.35 "Poppins", sans-serif; margin: 0 0 .8rem; }
.legal-section p { color: #435261; font: 400 .94rem/1.8 "Poppins", sans-serif; margin: 0 0 1rem; }
.legal-contact { border-top: 1px solid #e6edf3; color: #435261; font-size: .92rem; line-height: 1.75; margin-top: .8rem; padding-top: 1.6rem; }
@media (max-width: 767.98px) { .legal-page { padding: 6.25rem 0 3rem; } .legal-layout { grid-template-columns: 1fr; gap: 1rem; } .legal-sidebar { position: static; } .legal-sidebar-title { padding: 1.7rem 1.25rem 1.35rem; } .legal-tab { min-height: 3.4rem; } .legal-panel { min-height: 0; padding: 1.7rem 1.25rem; } }


/* faq code starts here */

/* container */
.faq-section {
  padding: 3.5rem 1.25rem;
  font-family: "Inter", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.faq-title {
  font-size: 2.8rem;
  
  margin-bottom: 15px;
  
}

.faq-sub {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 14px;
  font-family: "Poppins", serif;
}

.faq-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.faq-cta {
  display: inline-block;
  padding: .75rem 1.6rem;
  background:  #0074D9;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
}

/* FAQ list */
.faq-list {
  text-align: left;
  border-top: 1px solid #e2e2e2;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
}

.faq-button {
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.faq-toggle-icon {
  transition: transform .3s ease;
  font-size: 1.25rem;
}

/* answer hidden by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 .5rem;
  transition: max-height .35s ease;
  font-size: 0.97rem;
  color: #444;
  font-family: "Poppins", serif;
  font-size: 13px;
  margin-left: 15px;
  
}

/* visible state */
.faq-item.open .faq-answer {
  max-height: 250px;
  
}

.faq-item.open .faq-button{
  background:white;
  border-radius:30px;
  border: 1px solid #0074D9;
  padding: 6px 18px;
  margin-bottom: 10px;
     /* makes it look like a pill button */
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}



/* faq code ends here */


.sofar-icon{
  width: 50px;
  height: 50px;
  color: #f3eded !important;
  margin-bottom: 40px;
  
}
.sofar-number{
  color: #f3eded;
  font-weight: 900;
  font-size: 70px;

}
.sofar-bold{
  color: #f3eded;
  font-weight: 800;
  font-size: 35px;
}
.sofar-sub{
  color: lightgray;
  font-size: 14px;
}

.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8px !important;
  letter-spacing: 4px;
  
}

.michroma-regular img {
  margin-right: 10px;
  vertical-align: middle;
  width: 40px;
  height: auto;
}

.mona-sans-bold {
  font-family: "Mona Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.mona-sans-regular {
  font-family: "Mona Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}



.yeseva-one-regular {
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  font-style: normal;
}

.yeseva-one-bold {
 font-family: "Yeseva One", Georgia, serif;
 font-weight: 700;
 font-style: normal;
}

/* The hero uses a web font instead of a device-installed script font so its
   appearance stays consistent on desktop and mobile browsers. */
.hero-flight-title {
  font-family: "Yeseva One", Georgia, serif;
  font-style: normal;
  font-weight: 400;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.grotesk-bold {
  
  font-family: "Schibsted Grotesk", sans-serif important;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}


/* CTA Section Above Footer */
.fc-footer-cta {
  background: #f7fafc;
  font-family: "Inter", sans-serif;
}

.fc-cta-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
}

.fc-cta-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1rem;
}

.fc-cta-form .fc-cta-input {
  max-width: 380px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 13px;
}

.theme-text-color{
  color: #0074D9 !important;
}

.fc-cta-btn {
  background: #0074D9 ;
  border: 1px solid #0074D9 ;
  font-size: 13px;
  color: #fff;
  border-radius: 60px;
  padding: 6px 18px;
  /* font-weight: 500; */
  /* font-family: "Schibsted Grotesk", sans-serif; */
}

/* Footer */
.fc-footer {
  font-family: "Inter", sans-serif;
}

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:14px;

    background:#0074D9;
    color:white;

    padding:8px 8px 8px 22px;

    border-radius:50px;
    text-decoration:none;

    font-size:13px;
    font-weight:400;
    letter-spacing:.4px;

    transition:.25s ease;
}

/* icon square */
.cta-icon-btn{
    width:44px;
    height:44px;

    background:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* size the svg file */
.cta-icon-btn img{
    width:14px;
    height:14px;
    display:block;
}

.cta-button:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.18);
    text-decoration: none;
    color: white;
    background: #05559b;
    transition: background-color 0.7s ease, transform 0.7s ease;
}




.footer-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color:#0074D9;
  font-family: "Schibsted Grotesk", sans-serif;
  
}

.footer-links a {
  text-decoration: none;
  color: #444;
  display: block;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1fa866;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1.1rem;
}

.fc-divider{
  width:100%;
  height:1px;
  background:#e6e6e6;   
}

.white-text{
    color: white !important;
}
.gold-text{
  color: #FFB400;
}
.grid-body-text{
  color: white !important;
  /* padding: 20px 40px; */
}

.button-large-dark{
    width: 200px;
    height: 50px;
    background: black;
    color: white !important;
    padding: 18px 50px;
    border-radius: 8px 8px 8px 8px;
    border: 2px solid white;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

.button-large-purple{
    width: 200px;
    height: 50px;
    background: #0074D9;
    color: white !important;
    padding: 18px 50px;
    border-radius: 8px 8px 8px 8px;
    border: 2px solid #0074D9;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.5s ease;
}


.button-large-dark:hover{
    text-decoration: none;
    color: #0074D9 !important;
    border: 1px solid #0074D9 ;
    transform: scale(1.05);
}

.button-large-purple:hover{
    text-decoration: none;
    color: #0074D9 !important;
    border: 1px solid #0074D9;
    background-color: white;
    transform: scale(1.05);
}

.purple-bg{
    background-color: rgba(153, 203, 236, 0.664);
}


/* css code for 4 explore grids starts here */

 .outer-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 6px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
            height: 100%;
            display: flex;
    flex-direction: column;
        }

        .inner-box {
            border-radius: 12px;
            padding: 20px;
            flex-grow: 1;
        }

        .tag {
            background: rgba(255,255,255,0.5);
            padding: 6px 14px;
            border-radius: 12px;
            margin-right: 6px;
            margin-bottom: 6px;
            display: inline-block;
            font-size: 11px;
        }

        .color-tag {
            background: rgba(255, 255, 255, 0.5);
            padding: 6px 14px;
            border-radius: 12px;
            margin-right: 6px;
            margin-bottom: 6px;
            display: inline-block;
            font-size: 11px;
        }

        .explore-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-left: 10px;
            padding-right: 10px;
            padding-bottom: 8px;
        }

        .arrow-btn {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        .arrow-btn:hover{
          background: #746c6c;
          color: white;
          
        }
        .arrow-a{
          color: black;
        }
        .arrow-a:hover{
          color: white !important;
          text-decoration: none;
        }


/* css code for 4 explore grids ends here */

#inputemail, #inputpassword, #inputfirstname, #inputphonenumber, #inputlastname, #inputpassword, #inputpassword2{
  
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 12px !important;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

/* input,
select,
textarea {
  padding: 3px 3px; 
  height: auto;      
} */
/* .submit-btn{
  width: 100%;
    display: block;
    padding: 12px;
    box-sizing: border-box;
    background-color: black;
    color: white;
    border: 1px solid black;
    border-radius: 9999px;
    padding-top: 14px;
    padding-bottom: 14px;
} */


.card-frost{
  padding: 5px;
  background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 6px 22px rgba(0,0,0,0.05);
}

.card-frost-btn{
            display: flex;
            cursor: pointer;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
            /* padding-left: 10px; */
            /* padding-right: 10px; */
            padding-bottom: 4px;
        
}
.footer-h1{
 /* font-family: "poppins" serif; */
 font-family: "Poppins", sans-serif !important;
 font-size: 180px;
 font-weight: 900;
 color: rgb(212, 206, 206);
}

@media (max-width: 767px) {
  .footer-showcase { display: none; }
}

/* Cloud Styling */
.cloud {
    position: absolute;
    width: 250px;            /* adjust size */
    top: 25%;                /* starting vertical position */
    animation: breathe 6s ease-in-out infinite alternate;
    opacity: 0.9;
}

/* Second cloud positioned differently */
.cloud-left {
    bottom: 0;
    left: 0;
}

/* Right cloud anchored to bottom-right */
.cloud-right {
    bottom: 0;
    right: 3%;
    top: 50%;
    animation-delay: 2s;     /* offset for variety */
}
/* Breathing Animation */
@keyframes breathe {
    0% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.15) translateX(10px); }
    100% { transform: scale(1) translateX(0); }
}

/* css code for west africa wa form starts here */
.tour-form-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5f7ff, #eef1f9);
  padding: 40px 20px;
}

.tour-card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.tour-header p {
  color: #666;
  margin-bottom: 25px;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Inputs */
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #6366f1;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}
/* css code for west africa wa form ends here */

/* code for curated destinations header section starts here */




/* SECTION */

.testimonial-section{
  padding:80px 20px;
}

.cont{
  position:relative;
  max-width:1200px;
  margin:auto;
  margin-top: 50px;
  background:#f6f6f6;
  border-radius:28px;
  padding:120px 20px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
  overflow:hidden;
}

/* FLOATING GRID */

.floating-grid{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* IMAGE CARD */

.card{
  position:absolute;
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* LEFT POSITIONS */
.c1{top:40px; left:70px;}
.c2{top:120px; left:160px;}
.c3{top:40px; left:260px;}
.c4{top:170px; left:40px;}

/* RIGHT POSITIONS */
.c5{top:40px; right:260px;}
.c6{top:120px; right:150px;}
.c7{top:50px; right:70px;}
.c8{top:180px; right:40px;}

/* CONTENT */

.content{
  position:relative;
  z-index:2;
  max-width:650px;
  margin:auto;
}

.badge{
  display:inline-block;
  background:#0b089e;
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  margin-bottom:18px;
}

h2{
  font-size:44px;
  font-weight:600;
  color:#111;
  font-family: "Yeseva One", Georgia, serif;
}

h3{
  /* font-size:44px; */
  font-weight:400;
  /* color:#111; */
  font-family: "Yeseva One", Georgia, serif;

}
p{
  font-size: 14px;
}

h2 span{
  color:#8b8b8b;
  font-weight:500;
}



/* BUTTON */

.btn{
  display:inline-block;
  background:#000;
  color:#fff;
  padding:12px 26px;
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-3px);
}



.wa-cards-section {
  padding: 80px 40px;
  /* background: linear-gradient(180deg, #f6d97a 0%, #fff 60%); */
  background: linear-gradient(180deg, #b4c0f8 0%, #fff 60%);
}

.wa-cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.wa-cards {
  margin-top: 40px;
  width: 420px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.wa-cards:hover {
  transform: translateY(-6px);
}

.wa-cards-image {
  padding: 20px;
}

.wa-cards-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.wa-cards-image img:hover{
  transform: rotate(-4deg);
}

.wa-cards-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.wa-cards-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.wa-cards-title.script {
  font-family: "Yeseva One", Georgia, serif;
  color: #0074D9;
  font-size: 22px;
}

.wa-cards-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

.wa-cards-avatars {
  display: flex;
}

.wa-cards-avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

/* ✅ RESPONSIVE */

@media(max-width:900px){

  .card{
    width:65px;
    height:65px;
  }

  h2{
    font-size:34px;
  }
}

@media(max-width:600px){

  .floating-grid{
    display:none; /* clean mobile look */
  }

  .container{
    padding:70px 18px;
  }

  h2{
    font-size:28px;
  }

  p{
    font-size:15px;
  }
}



/* code for curated destinations header section ends here */


/* css code for image grid starts here */

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 10px;  */
}

.grid-item {
  background: #fff;
  /* border-radius: 12px; */
  overflow: hidden;
  text-align: center;
  position: relative;
}

.grid-item:hover img{
	transform: scale(1.1) translateY(-20px); 
	/* opacity: 0.3; */
  transition: all 0.3s ease-out;
}

.grid-item img {
  width: 100%;
  height: 100%;          /* makes all images same height */
  object-fit: cover;      /* crops nicely */
  display: block;
}

.grid-item h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.grid-item p {
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
}

.overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  /* color: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  /* opacity: 1; */
}

.overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.overlay p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* css code for image grid ends here */


/* navbar sticky code starts here */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 18px;
    z-index: 999;
    transition: 0.35s ease;
}

/* Glassy nav */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 70%;
    max-width: 70%;

    padding: 14px 28px;

    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);

    box-shadow: 0 6px 22px rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

/* Morphing effect when scrolling */
#navbar.scrolled .nav-wrapper {
    padding: 10px 26px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

/* LEFT MENU */
.nav-left {
    display: flex;
    align-items: center;      /* ensures list aligns with buttons */
    gap: 40px;
    font-size: 15px;
    color: #1f1f1f;
}

.nav-left li {
    cursor: pointer;
    display: flex;
    align-items: center;      /* vertically center text + arrow */
    line-height: 1;           /* remove extra vertical height */
    padding: 0px 0px;           /* equalize with button padding */
    gap: 4px;
}

.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Modern dropdown */
.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);

    padding: 10px 0;
    min-width: 250px;

    border-radius: 14px;
    border: 1px solid rgba(230, 230, 230, 0.7);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* show on hover */
.has-dropdown:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* dropdown list items */
.dropdown li {
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, padding-left 0.25s ease;
}

/* hover effect */
.dropdown li:hover {
    background: rgba(0,0,0,0.05);
    padding-left: 22px;
}

/* Small dropdown arrow */
.arrow {
    font-size: 10px;
    opacity: 0.5;
}

/* RIGHT BUTTONS */
.btn {
    padding: 6px 16px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.hero-text{
    font-size:120px;
    font-weight:800;
    color: black;
    letter-spacing:-4px;
}

.tilt-card{
    display:inline-block;
    background:linear-gradient(135deg,#a855f7,#6366f1);
    color:#000;
    padding:0 18px;
    border-radius:14px;
    transform:rotate(-15deg);
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.button{
    
    padding: 10px 30px;
    border-radius: 9999px;
    
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

.blackbtn{
  background: black;
  color: white !important;
  border: 1px solid black;
}
.bluebtn{
  background: #0074D9;
  color: white !important;
  border: 1px solid #0074D9;
}
.transparentbtn{
  background-color: transparent;
  color: #0074D9 ;
  border: 1px solid #0074D9;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.5s ease, transform 0.5s ease;
  cursor: pointer;

}

.register {
    background: white;
    border: 1px solid #e5e5e5;
}

.login {
    background: linear-gradient(90deg, #ff8c5a, #ff6a3d);
    color: white;
    margin-left: 8px;
}

/* HERO for demo */
.hero {
    padding-top: 200px;
    text-align: center;
    font-size: 40px;
}


/* navbar sticky code ends here */

a{
 font-family: "Poppins", sans-serif !important;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    font-family: "Poppins", sans-serif;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* DROPDOWN */

/* MOBILE MENU */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #111;
  margin: 4px 0;
}

#menu-toggle {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu-icon {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    display: none;
    border-top: 1px solid #eaeaea;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 16px 20px;
  }

  /* SHOW MENU */
  #menu-toggle:checked ~ .nav-menu {
    display: flex;
  }

  /* MOBILE DROPDOWN */
  .dropdown {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-left: 20px;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown > a {
    justify-content: space-between;
  }

  .has-dropdown > a::after {
    content: "▾";
  }

  /* Toggle dropdown on mobile */
  .has-dropdown:focus-within .dropdown {
    display: block;
  }
}



/* logo glider code starts here */

.logo-slider {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: calc(250px * 10); /* adjust based on number of logos */
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 250px;  /* adjust size as needed */
  padding: 0px 40px;
  object-fit: contain;
}

.sliding-img:hover {
  filter: grayscale(100%);
}

.sliding-img{
    height: 80px;
    transition: filter 0.3s ease;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* logo glider code ends here */

