* {
    -webkit-tap-highlight-color: transparent;
    margin:0;
    padding:0;
    box-sizing:border-box;    
}

a,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:active,
button:active,
input:active {
    outline: none;
    box-shadow: none;
}
@font-face {
    font-family: "Google Sans";
    src: url("Fonts/GoogleSans-VariableFont_GRAD,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
html{
    scroll-behavior:smooth;
}
body{
    background:#f5f5f5;
    overflow-x:hidden;
}
a{
    text-decoration:none;
}
ul{
    list-style:none;
}
button{
    border:none;
    outline:none;
    background:none;
    cursor:pointer;
}
.top-bg-image{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    background: url("https://prateek.devwork.in/wp-content/uploads/2026/07/Decore-scaled.png") Top / contain no-repeat;
}
/* MAIN SECTION */
.hero-section{
    position:relative;
    max-width:1440px;
    width:100%;
    margin:0 auto;
    overflow:hidden;
}
/* BACKGROUND */
.hero-background{
    position:absolute;
    top:0;
    right:0;
    width:720px;
    z-index:-1;
}
.hero-background img{
    width:100%;
    height:auto;
    object-fit:cover;
}
/* HEADER */
.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    margin:47px 0 18px 0;
    transition:.35s;
}
.header.sticky{
    position:fixed;
    background:#ffffff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:20px 0;
    margin: 0;
}
.header-container{
    max-width:1160px;
    width:100%;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.logo{
    display:flex;
    align-items:center;
}
.logo img{
    width:115px;
}
.navbar-wrapper{
    display: flex;
    align-items: center;
}
.navbar{
    display:flex;
    align-items:center;
}
.nav-menu{
    display:flex;
    align-items:center;
    gap:54px;
    margin: 0;
}
.nav-menu>li{
    position:relative;
    list-style: none;
}
.nav-menu>li>a {
    font-size: 17px;
    font-weight: 500;
    color: rgba(33, 40, 50, 1);
    transition: .3s;
    font-family: "Google Sans", sans-serif;
    line-height: 22px;
    text-decoration: none;
}
.nav-menu>li>a:hover{
    color:rgba(223, 105, 81, 1);
}
/* LANGUAGE DROPDOWN */

.language-dropdown{
    position: relative;
    display: inline-block;
}

.language-dropdowns {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Google Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: rgba(33, 40, 50, 1);
    margin-left: 40px;
    line-height: 22px;
}
.language-dropdowns img{
    width: 11px;
    transition:transform .3s ease;
}

.language-dropdown.active .dropdown-menu{
    opacity:1;
    visibility:visible;
}

.language-dropdown.active .language-dropdowns img{
    transform:rotate(180deg);
}

.language-dropdown .dropdown-menu{
    position: absolute;
    top: calc(100% + 35px);
    left: 50%;
    transform: translateX(-60%);
    width: 210px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 3px solid rgba(223, 105, 81, 1);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 999;
    transition: all .3s ease;
    border-right: 3px solid rgba(223, 105, 81, 1);
}

.language-dropdown .dropdown-menu li{
    border-bottom: 1px solid #eee;
}

.language-dropdown .dropdown-menu li:last-child{
    border-bottom: none;
}

.language-dropdown .dropdown-menu li a{
    display: block;
    padding: 14px 20px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(33, 40, 50, 1);
    text-decoration: none;
    transition: .3s ease;
}

.language-dropdown .dropdown-menu li a:hover{
    background: rgba(223, 105, 81, 1);
    color: #fff;
}
.header-right{
    display:flex;
    align-items:center;
    gap:52px;
}
.login-btn {
    font-size: 17px;
    font-weight: 500;
    color: rgba(33, 40, 50, 1);
    margin-left: 86px;
    font-family: "Google Sans", sans-serif;
    line-height: 22px;
    text-decoration: none;
}
.login-btn:hover{
    color: rgba(223, 105, 81, 1);
}
.signup-btn {
    font-family: "Google Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #212832;
    border: 1px solid #212832;
    border-radius: 6px;
    padding: 9px 21px;
    transition: .3s;
    line-height: 22px;
    text-decoration: none;
}
.signup-btn:hover {
    background: rgba(223, 105, 81, 1);
    color: #fff;
    border: 1px solid rgba(33, 40, 50, 1);
    transform: none !important;
}
.language-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:1px solid #212832;
    border-radius:6px;
    font-family:Poppins,sans-serif;
    font-size:15px;
    font-weight:600;
}
/* HAMBURGER BUTTON */
.hamburger{
    width:48px;
    height:48px;
    display:none;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    transition:.3s;
    padding: 0;
    background: transparent;
}
.hamburger:hover{
    background:transparent;
}
.hamburger img{
    width:26px;
}
.hamburger,
.hamburger:hover,
.hamburger:focus,
.hamburger:active,
.hamburger:focus-visible {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}
/* MOBILE MENU */
.mobile-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0,0,0,.08);
    padding: 35px 25px;
    transform: translateX(100%);
    transition: transform .4s ease;
}

.mobile-menu.active{
    right:0;
    transform: translateX(0);
    padding: 16px 22px;
}
.mobile-top{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    margin-bottom:40px;
}
.mobile-close{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: transparent;
    padding: 0;
}
.mobile-close img{
    width:17px;
}
.mobile-close:hover {
    background: transparent !important;
}
/* MOBILE NAV */
.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin: 0;
}
.mobile-dropdown{
    border-bottom:1px solid #ececec;
    padding-bottom:12px;
}
.mobile-dropdown button{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    font-family:Poppins,sans-serif;
    font-size:18px;
    font-weight:500;
    color:#212832;
}
.mobile-dropdown ul{
    display:none;
    padding-left:18px;
    padding-top:10px;
}
.mobile-dropdown.active ul{
    display:block;
}
.mobile-dropdown ul li{
    margin-bottom:12px;
}
.mobile-dropdown ul li:last-child{
    margin-bottom:0;
}
.mobile-dropdown ul li a{
    font-family:Poppins,sans-serif;
    font-size:15px;
    font-weight:400;
    color:#555555;
    transition:.3s;
}
.mobile-dropdown ul li a:hover{
    color:#DF6951;
}
/* MOBILE BUTTONS */
.mobile-buttons{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:16px;
}
.mobile-login{
    width:100%;
    text-align:center;
    padding:10px;
    border:1px solid #DF6951;
    border-radius:8px;
    font-family:Poppins,sans-serif;
    font-size:16px;
    font-weight:500;
    color:#DF6951;
    transition:.3s;
    text-decoration: none;
}
.mobile-login:hover{
    background:#DF6951;
    color:#fff;
}
.mobile-signup{
    width:100%;
    text-align:center;
    padding:10px;
    border-radius:8px;
    background:#DF6951;
    font-family:Poppins,sans-serif;
    font-size:16px;
    font-weight:500;
    color:#ffffff;
    transition:.3s;
    text-decoration: none;
}
.mobile-signup:hover{
    background:#c85642;
}
/* HERO CONTAINER */
.hero-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 125px 0 0 0;
}

.hero-content{
    max-width: 630px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-image{
    max-width: 783px;
    width: 100%;
    margin-left: -213px; 
}

.hero-image img{
    display: block;
    width: 100%;
}
.hero-tag {
    display: inline-block;
    margin-bottom: 24px;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(223, 105, 81, 1);
}
.hero-content h1 {
    margin-bottom: 30px;
    font-family: "Volkhov", serif;
    font-size: 84px;
    font-weight: 700;
    line-height: 89px;
    color: rgba(24, 30, 75, 1);
    position: relative;
    letter-spacing: -3px;
}

.travel-enjoy{
    position: relative;
    display: inline-block;
}
.travel-enjoy img {
    position: absolute;
    right: -174px;
    bottom: 6px;
    width: 385px;
    z-index: -1;
}
.hero-content p{
    max-width:477px;
    margin-bottom:34px;
    font-family:Poppins,sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:30px;
    color:rgba(94, 98, 130, 1);
}
.hero-buttons{
    display:flex;
    align-items:center;
    gap:44px;
}
.find-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(241, 165, 1, 1);
    box-shadow: 0px 20px 35px 0px rgba(241, 165, 1, 0.15);
    font-family: "Google Sans", sans-serif;
    font-size:18px;
    font-weight:500;
    line-height: 23px;
    color:#FFFFFF;
    transition:.3s;
    padding: 19px 26px 18px 27px;
    text-decoration: none;
}
.find-btn:hover{
    background:#d99100; 
    box-shadow:0 25px 40px rgba(241, 165, 1, 0.30);
}

.play-btn{
    display:flex;
    align-items:center;
    gap:21px;
    text-decoration: none;
}
.play-btn img{
    width:52px;
    transition:.3s;
}
.play-btn:hover img{
    transform:scale(1.08);
}
.play-btn span{
    font-family:Poppins,sans-serif;
    font-size:17px;
    font-weight:400;
    line-height: 26px;
    color:#686D77;
}

.find-btn:hover{
    background:#d99200;
    box-shadow:0 24px 45px rgba(241,165,1,.35);
}
.play-btn:hover span{
    color:#000;
}


/* === Next Section === */

.services-section {
    position: relative;
    max-width: 1228px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.services-top-right-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
    width: 100%;
    max-width: 153px;
}

.services-header {
    text-align: center;
    margin-bottom: 65px;
}

.services-header .sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #6246E5;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    line-height: 27px;
}

.services-header .main-title {
    font-family: 'Volkhov', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    color: #14183E;
    text-transform: capitalize;
}

.services-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 35px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 36px;
    padding: 45px 25px 35px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-wrapper {
    flex: 1;
    position: relative;
    display: flex;
}

.service-card-wrapper .service-card {
    width: 100%;
}

.shadowed-card {
    box-shadow: 
    0px 1.85px 3.15px 0px #00000001,
    0px 8.15px 6.52px 0px #00000002,
    0px 20px 13px 0px #00000003,
    0px 38.52px 25.48px 0px #00000003,
    0px 64.81px 46.85px 0px #00000004,
    0px 100px 80px 0px #00000005;
}

.card-bg-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    left: -35px;
    bottom: -35px;
    z-index: 1;
    object-fit: contain;
    pointer-events: none;
}

.card-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.services-row > :nth-child(1) .card-icon {
    height: 78px;
    margin-bottom: 29px;
}

.services-row > :nth-child(1) .card-icon img {
    width: 92px;
}

.services-row > :nth-child(2) .card-icon {
    height: 80px;
    margin-bottom: 28px;
}

.services-row > :nth-child(2) .card-icon img {
    width: 150px;
}

.services-row > :nth-child(3) .card-icon {
    height: 75px;
    margin-bottom: 34px;
}

.services-row > :nth-child(3) .card-icon img {
    width: 67px;
}

/* Card 4 Icon */
.services-row > :nth-child(4) .card-icon {
    height: 66px;
    margin-bottom: 42px;
}

.services-row > :nth-child(4) .card-icon img {
    width: 77px;
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1E1D4C;
    margin-bottom: 15px;
    line-height: 27px;
}

.card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5E6282;
    max-width: 181px;
}

/* ===== NEXT SECTION ===== */

.destinations-section {
    width: 100%;
    max-width: 1440px;
    margin: 123px auto 186px auto;
    position: relative;
}

.container {
    max-width: 1102px;
    margin: 0 auto;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #5E6282;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-family: 'Volkhov', serif;
    font-size: 50px;
    font-weight: 700;
    color: #14183E;
    line-height: 65px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 61px;
    position: relative;
    z-index: 2;
}

.destination-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
    0px 1.85px 3.15px 0px #00000001,
    0px 8.15px 6.52px 0px #00000002,
    0px 20px 13px 0px #00000003,
    0px 38.52px 25.48px 0px #00000003,
    0px 64.81px 46.85px 0px #00000004,
    0px 100px 80px 0px #00000005;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.card-content {
    padding: 27px 20px 42px;
    background: #FFFFFF;
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #5E6282;
    margin-bottom: 19px;
    font-family: 'Poppins', sans-serif;
}

.card-bottom-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #5E6282;
    font-family: 'Poppins', sans-serif;
}

.navigation-icon {
    width: 20px;
    height: 20px;
}

.spring-bg-decoration {
    position: absolute;
    right: -45px;
    bottom: 30px;
    z-index: 1; 
    pointer-events: none;
}
.spring-bg-decoration img{
    width: 100%;
    max-width: 92px;
    height: 252px;
}

/* ===== NEXT SECTION ===== */

.steps-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.right-content::before {
    content: "";
    position: absolute;
    top: -87px;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(89, 177, 230, 0.42) 0%,
        rgba(89, 177, 230, 0.30) 20%,
        rgba(89, 177, 230, 0.19) 45%,
        rgba(89, 177, 230, 0.10) 70%,
        rgba(89, 177, 230, 0.04) 90%,
        rgba(89, 177, 230, 0) 100%
    );

    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.steps-section-container {
  max-width: 1114px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.left-content{
  width: 100%;
  max-width: 511px;
}

.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #5E6282;
  line-height: 27px;
  margin-bottom: 15px;
}

.main-heading {
    font-family: 'Volkhov', serif;
    font-size: 50px;
    font-weight: 700;
    color: #14183E;
    margin-bottom: 31px;
    text-transform: capitalize;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 21px;
}

.icon-box {
  width: 47px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 47px;
  height: 48px;
  object-fit: contain;
}

.step-text h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #5E6282;
    margin-bottom: 4px;
    font-family: "Poppins", sans-serif;
}

.step-text p {
    font-size: 14px;
    line-height: 20px;
    color: #5E6282;
    max-width: 327px;
    font-family: "Poppins", sans-serif;
}
.right-content {
  width: 100%;
  max-width: 485px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  bottom: 10px;
}

.main-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 370px;
    border-radius: 26px;
    padding: 20px 25px 20px 24px;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.02), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0143751), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0119258), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.01), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.00807424), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0056249);
    position: relative;
}

.card-img {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
}

.trip-card-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #080809;
    margin-bottom: 13px;
    letter-spacing: 0.015em;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.card-info {
    font-size: 16px;
    color: #84829A;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 21px;
    font-family: "Poppins", sans-serif;
}
.card-actions {
    display: flex;
    gap: 13px;
    margin-bottom: 30px;
}

.action-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-icon img {
  width: 36px;
  height: 36px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.people-going {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #84829A;
    line-height: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.people-going img {
  width: 16px;
  height: 16px;
}

.heart-icon{
    width:20px;
    height:18.5px;
    position:relative;
    cursor:pointer;
}

.heart-icon svg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    transition:.25s;
}

.heart-outline{
    fill:#4152CA;
}

.heart-solid{
    fill:#ff002b;
    display:none;
}

.heart-icon.active .heart-outline{
    display:none;
}

.heart-icon.active .heart-solid{
    display:block;
}

.heart-icon:active{
    transform:scale(.9);
}

.ongoing-card {
    position: absolute;
    bottom: 45px;
    right:0;
    background: #FFFFFF;
    padding: 16px 25px 22px 20px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    max-width: 263px;
    z-index: 2;
    box-shadow: 0px 1.85px 3.15px 0px #00000001, 0px 8.15px 6.52px 0px #00000002, 0px 20px 13px 0px #00000003, 0px 38.52px 25.48px 0px #00000003, 0px 64.81px 46.85px 0px #00000004, 0px 100px 80px 0px #00000005;
}

.ongoing-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.ongoing-details {
  flex: 1;
}

.ongoing-status {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: #84829A;
    margin-bottom: 6px;
    font-family: "Poppins", sans-serif;
}

.ongoing-title {
    font-size: 18px;
    font-weight: 400;
    color: #080809;
    line-height: 22px;
    margin-bottom: 14px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

.progress-text {
    font-size: 14px;
    font-weight: 400;
    color: #8A79DF;
    line-height: 17px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}
.progress-text span[data-key="completed_text"] {
    color: #080809;
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: #F5F5F5;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
    width: 40%;
    height: 100%;
    background: #8A79DF;
    border-radius: 30px;
}

/* ====== NEXT SECTION ====== */

.testimonial-section {
    width: 100%;
    padding: 200px 0 96px 0
}

.testimonial-container {
    max-width: 1165px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 90px;
}

.testimonial-left {            
    width: 100%;
    max-width: 409px;
}

.heading-slider {
    position: relative;
    min-height: 140px;
}

.heading-item {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    width: 100%;
}

.heading-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.heading-item span {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #5E6282;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.heading-item h2 {
    font-family: "Volkhov", serif;
    font-size: 50px;
    line-height: 65px;
    color: #14183E;
    font-weight: 700;
}

/* DOTS */
.slider-dots {
    margin-top: 82px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D6D6D6;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: #39425D;
}

.testimonial-right {
    width: 100%;
    max-width: 610px;
    position: relative;
    display: flex;
    height: 245px;
}

.testimonial-stack {
    position: relative;
    width: 541px;
}

.testimonial-card {
    width: 100%;
    max-width: 541px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 28px 34px 34px;
    border: 2px solid #F7F7F7;

    box-shadow: 
    0px 1.85px 3.15px 0px rgba(0,0,0,0.01),
    0px 8.15px 6.52px 0px rgba(0,0,0,0.02),
    0px 20px 13px 0px rgba(0,0,0,0.03),
    0px 38.52px 25.48px 0px rgba(0,0,0,0.03),
    0px 64.81px 46.85px 0px rgba(0,0,0,0.04),
    0px 100px 80px 0px rgba(0,0,0,0.05);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
    opacity 0.6s ease, 
    z-index 0.6s ease;

    opacity: 0;
    pointer-events: none;
    transform: translate(60px, 75px) scale(0.95); /* Hidden state: Bottom-Right */
    z-index: 1;
}


.testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0) scale(1);
    z-index: 3;
}


.testimonial-card.next {
    opacity: 1;
    pointer-events: auto;
    transform: translate(60px, 94px) scale(0.96);
    z-index: 2;
    background: #F7F7F7;
    border: 2px solid #F7F7F7;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translate(-40px, -40px) scale(1.02);
    z-index: 0;
}

.profile {
    position: absolute;
    top: -34px;
    left: -34px;
}

.profile img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}

.review {
    max-width: 402px;
    font-size: 16px;
    line-height: 32px;
    color: #4E4E73;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.name {
    font-family: "Poppins", sans-serif;
    margin-top: 34px;
    font-size: 18px;
    font-weight: 600;
    color: #5E6282;
}

.location {
    font-family: "Poppins", sans-serif;
    margin-top: 6px;
    font-size: 14px;
    color: #959BAA;
}

/* ARROWS MAIN LAYOUT */
.slider-arrows {
    position: absolute;
    top: 50%;
    right: -55px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 58px;
    z-index: 10;
}

/* BUTTON BASE & FOCUS RESET */
.slider-arrows button.prev-arrow,
.slider-arrows button.next-arrow,
.slider-arrows button:hover,
.slider-arrows button:focus,
.slider-arrows button:active,
.slider-arrows button:focus-visible {
    background: transparent;
    background-color: transparent ;
    border: none;
    outline: none;
    box-shadow: none ;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.slider-arrows button svg {
    width: 20px;
    height: 18px;
    min-width: 16px;
    min-height: 10px;
    display: block;
    flex-shrink: 0;
}

.slider-arrows button svg path {
    stroke: #BCB7C2;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.slider-arrows button:hover {
    transform: scale(1.15);
}

.slider-arrows button:hover svg path {
    stroke: #3E445C;
}

/* ======= NEXT SECTION ======== */

.logos-section {
    width: 100%;
    max-width: 1440px;
    padding: 0;
    margin: 111px auto 0;
}


.logos-container {
    max-width: 1073px;
    padding: 16px 0;
    margin: 0 auto;
    display: flex;
    align-items: center; 
    justify-content: space-between;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* NTH-CHILD WIDTHS FOR EACH LOGO */

.logo-item:nth-child(1) {
    max-width: 130px;
}

.logo-item:nth-child(2) {
    max-width: 173px;
}

.logo-item:nth-child(3) {
    width: 241px;         
    height: 86px;          
    background: #ffffff;
    border-radius: 10px;
    filter: grayscale(0%);
    opacity: 1;
    box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 24px 50px rgba(0, 0, 0, 0.10);
}

.logo-item:nth-child(3) img {
    width: 162px;
    max-width: 100%;
}

.logo-item:nth-child(4) {
    max-width: 162px;
}

.logo-item:nth-child(5) {
    max-width: 94px;
}

/* ======= NEXT SECTION ======== */

.subscribe-section {
  width: 100%;
  max-width: 1440px;
  padding: 15px 0 65px 0;
  position: relative;
  margin: 111px auto 96px;
}


.subscribe-container {
  max-width: 1257px;
  margin: 0 auto;
  position: relative;
  background-image: url('https://prateek.devwork.in/wp-content/uploads/2026/07/Rectangle-164.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  z-index: 1;
}

.bg-circles-left {
  position: absolute;
  bottom: -54px;
  left: 38px;
  width: 389px;
  height: 397px;
  opacity: 10%;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
}

/* Right Circle vector */
.bg-circles-right {
  position: absolute;
  top: 0;
  right: 0px;
  height: 290px;
  opacity: 10%;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
}

.send-icon-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 70px;
  height: 70px;
  background: linear-gradient(201.65deg, #747def 10.27%, #5e3be1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0px 10px 25px rgba(94, 59, 225, 0.3);
  cursor: pointer;
}

.send-icon-badge img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.plus-grid-decor {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 149px;
    height: 153px;
    pointer-events: none;
    z-index: 0;
}

.subscribe-title {
  font-size: 33px;
  font-weight: 600;
  color: #5E6282;
  line-height: 54px;
  max-width: 881px;
  margin: 0 auto 74px auto;
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
}

/* Form */
.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.input-group {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0 31px;
  height: 68px;
}

.input-group img.mail-icon {
  width: 21px;
  height: 18px;
  object-fit: contain;
  margin-right: 14px;
}

.input-group input {
  border: none !important;
  outline: none !important;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #39425D !important;
  background: #ffffff !important;
  padding: 0 !important;
}

.input-group input::placeholder {
  color: #39425D;
  font-size: 14px;
  opacity: 0.7;
}

.subscribe-btn {
  color: #ffffff;
  border: none;
  background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
  border-radius: 10px;
  height: 68px;
  padding: 0 45px;
  font-size: 17px;
  line-height: 23px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(255, 125, 104, 0.3);

}

/* ======= NEXT SECTION ======== */

.footer-section {
  width: 100%;
  max-width: 1440px;
  padding: 20px 0 80px 0;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}


.footer-container {
  max-width: 1070px;
  margin: 0 auto;
}


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 86px;
}

.footer-left {
  width: 100%;
  max-width: 207px;
  position: relative;
  top: -20px;
}

.footer-left .logo {
  font-size: 44px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #181E4B;
  margin-bottom: 15px;
  line-height: 66px;
}

.footer-left p {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: #5E6282;
  line-height: 24px;
  font-weight: 400;
}

.footer-center-links {
  width: 100%;
  max-width: 474px;
  display: flex;
  justify-content: space-between;
}

.footer-col h4 {
  font-size: 21px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #080809;
  line-height: 26px;
  margin-bottom: 34px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #5E6282;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #181E4B;
}

.footer-right {
  width: 100%;
  max-width: 214px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: start;
}


.footer-social-icons {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  margin-bottom: 26px;
}


.social-btn {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  display: block;
}


.social-btn:hover {
  transform: translateY(-3px);
}
.apps-title {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  color: #5E6282;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.store-btn {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.store-btn:hover {
  opacity: 0.85;
}

.store-btn img {
  height: 35px;
  width: 100%;
  max-width: 100px;
  display: block;
}


.copyright {
  text-align: center;
  font-family: "Poppins", sans-serif;
  line-height: 17px;
  font-size: 14px;
  font-weight: 400;
  color: #5E6282;
}

/* ===== RESPONSIVE: 1025px TO 1280px ===== */

@media screen and (min-width: 1025px) and (max-width: 1280px) {

    .top-bg-image,
    .hero-section,
    .services-section,
    .destinations-section,
    .steps-section {
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
    }

    .header-container {
        max-width: 100%;
        padding: 0 40px;
    }

/*  HEADER & NAV  */
.nav-menu {
    gap: 52px; 
}

.header-right {
    gap: 30px;
    margin-right: 10px;
}

.login-btn {
    margin-left: 45px;
}

.language-dropdowns {
    margin-left: 20px;
}

.language-dropdown .dropdown-menu{
    transform: translateX(-72%);
}

/* --- HERO SECTION --- */
.hero-container {
    max-width: 100%;
    padding-top: 130px;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 74px;
    letter-spacing: -2px;
}

.travel-enjoy img {
    right: -128px;
    bottom: 5px;
    width: 300px;
}

.hero-image {
    max-width: 580px;
    margin-left: -120px;
}

.hero-background {
    width: 560px;
}

/* --- SERVICES SECTION --- */
.services-section {
    margin-top: 80px;
}

.services-row {
    gap: 20px;  
}

.service-card {
    padding: 40px 15px 30px;
}

.card-title {
    font-size: 18px;
}

.card-desc {
    font-size: 14px;
    line-height: 24px;
}

/* --- DESTINATIONS SECTION --- */
.destinations-section {
    margin: 100px auto 120px auto;
}

.container {
    max-width: 100%;
}

.cards-grid {
    gap: 30px;  
}

.card-content {
    padding: 24px 18px 35px;
}

.card-top-row {
    font-size: 16px;
}

.spring-bg-decoration {
    right: -35px;
}

/* -- STEPS SECTION --- */
.steps-section-container {
    max-width: 100%;
    gap: 30px;
}

.left-content {
    max-width: 480px;
}

.main-heading {
    font-size: 44px;
    line-height: 54px;
}

.right-content {
    max-width: 440px;
}

.main-card {
    max-width: 330px;
}

.ongoing-card {
    right: -15px;
    max-width: 240px;
    padding: 14px 18px;
}

.testimonial-section,
.logos-section,
.subscribe-section,
.footer-section {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

/* ---  TESTIMONIALS SECTION --- */

.testimonial-section {
    padding-top: 140px; 
    padding-bottom: 80px;
}

.testimonial-container {
    max-width: 100%;
    gap: 40px;  
}

.testimonial-left {
    max-width: 380px;
}

.heading-item h2 {
    font-size: 42px;
    line-height: 54px;
}

.slider-dots {
    margin-top: 50px;
}

.testimonial-right {
    max-width: 540px;
}

.testimonial-stack {
    width: 460px;
}

.testimonial-card {
    max-width: 460px;
    padding: 24px 28px 28px;
}

.testimonial-card.next {
    transform: translate(40px, 85px) scale(0.96);
}

.slider-arrows {
    right: -35px; 
}

/* --- LOGOS SECTION --- */

.logos-section {
    margin-top: 80px;
}

.logos-container {
    max-width: 100%;
    gap: 20px;
}

.logo-item:nth-child(1) { max-width: 110px; }
.logo-item:nth-child(2) { max-width: 145px; }
.logo-item:nth-child(3) { 
    width: 200px; 
    height: 75px; 
}
.logo-item:nth-child(3) img { width: 135px; }
.logo-item:nth-child(4) { max-width: 135px; }
.logo-item:nth-child(5) { max-width: 80px; }


/* --- 3. SUBSCRIBE SECTION --- */

.subscribe-section {
    margin: 80px auto 80px;
}

.subscribe-container {
    max-width: 96%;
    padding: 65px 30px;
}

.subscribe-title {
    font-size: 28px;
    line-height: 44px;
    margin-bottom: 50px;
    max-width: 750px;
}

.subscribe-form {
    max-width: 580px;
}

.send-icon-badge {
    right: -10px;
    top: -10px;
}


/* --- FOOTER SECTION --- */
.footer-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.footer-container {
    max-width: 100%;
}

.footer-content {
    gap: 30px;
}

.footer-left {
    max-width: 200px;
}

.footer-left .logo {
    font-size: 38px;
    line-height: 50px;
}

.footer-center-links {
    max-width: 420px;
}

.footer-col h4 {
    font-size: 19px;
    margin-bottom: 24px;
}

.footer-col ul li a {
    font-size: 16px;
}

.footer-right {
    max-width: 200px;
}
}

/* =====  RESPONSIVE: TABLET ===== */

@media (max-width:900px){

    .hero-container{
        padding:80px 20px 0;
        gap:15px;
    }

    .hero-content{
        max-width:410px;
    }

    .hero-image{
        max-width:500px;
        transform:translateX(-45px);
    }

    .hero-tag{
        font-size:16px;
        line-height:24px;
    }

    .hero-content h1{
        font-size:54px;
        line-height:58px;
        letter-spacing:-1.5px;
    }

    .hero-content p{
        max-width:390px;
        margin-bottom:24px;
        font-size:15px;
        line-height:26px;
    }

    .hero-buttons{
        gap:22px;
    }

    .find-btn{
        padding:16px 22px;
        font-size:16px;
    }

    .play-btn img{
        width:42px;
    }

    .play-btn span{
        font-size:15px;
    }

}

/* ===== RESPONSIVE: TABLET BELOW 1024px ===== */

@media (max-width:1024px){

    .header{
        margin:25px 0 0;
    }

    .header.sticky{
        margin:0;
        padding:15px 0;
    }

    .header-container{
        max-width:100%;
        padding:0 25px;

        display:flex;
        align-items:center;
    }

    /* Logo Left */
    .logo img{
        width:100px;
    }

    .navbar-wrapper{
        margin-left:auto;
        display:flex;
        align-items:center;
    }

    .navbar,
    .header-right{
        display:none;
    }

    /* Language */
    .language-dropdown{
        display:block;
        margin-right:15px;
    }

    .language-dropdowns{
        margin-left:0;
        font-size:16px;
        gap:6px;
    }

    .language-dropdown .dropdown-menu{
        top:calc(100% + 18px);
        width:180px;
    }

    .language-dropdown .dropdown-menu li a{
        padding:12px 18px;
        font-size:14px;
    }

    /* Hamburger */
    .hamburger{
        display:flex;
        width:44px;
        height:44px;
        flex-shrink:0;
    }

    .hamburger img{
        width:26px;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-nav li {
        list-style: none;
        display: block;
        padding: 10px 0;
        font-family: "Google Sans", sans-serif;
        font-size: 17px;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 0;
        color: #212832;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-menu.active {
        padding: 24px 32px;
    }

    .mobile-nav li:hover {
        color: #DF6951;
    }

/* ====== Hero container ====== */

.hero-container{
    max-width:100%;
    padding:130px 24px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    overflow:hidden;
}

.hero-content{
    max-width:460px;
    width:100%;
    flex-shrink:0;
    position:relative;
    z-index:2;
}

.hero-image{
    max-width:580px;
    width:100%;
    margin-left:0;
    transform:translateX(-70px);
    flex-shrink:1;
}

.hero-image img{
    display:block;
    width:100%;
    height:auto;
}

.hero-tag{
    margin-bottom:18px;
    font-size:17px;
    line-height:26px;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 58px;
    line-height: 61px;
    letter-spacing: -2px;
}


.travel-enjoy img{
    width:290px;
    right:-135px;
    bottom:2px;
}

.hero-content p{
    max-width:430px;
    margin-bottom:28px;
    font-size:15px;
    line-height:28px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:30px;
}

.find-btn{
    padding:17px 24px;
    font-size:17px;
    line-height:22px;
}

.play-btn{
    gap:16px;
}

.play-btn img{
    width:46px;
}

.play-btn span{
    font-size:16px;
    line-height:24px;
}

/* SERVICES SECTION */

.services-section{
    max-width:100%;
    margin:80px auto 0;
    padding:0 24px;
}

.services-top-right-img{
    max-width:110px;
}

.services-header{
    margin-bottom:25px;
}

.services-header .sub-title{
    font-size:16px;
    line-height:24px;
    margin-bottom:8px;
}

.services-header .main-title{
    font-size:32px;
    line-height:44px;
}

.services-row{
    gap:20px;
}

.service-card{
    padding:35px 18px 28px;
    border-radius:28px;
}

.card-bg-shape{
    width:75px;
    height:75px;
    left:-22px;
    bottom:-22px;
}

/* Card 1 */
.services-row > :nth-child(1) .card-icon{
    height:68px;
    margin-bottom:22px;
}

.services-row > :nth-child(1) .card-icon img{
    width:78px;
}

/* Card 2 */
.services-row > :nth-child(2) .card-icon{
    height:68px;
    margin-bottom:16px;
}

.services-row > :nth-child(2) .card-icon img{
    width:122px;
}

/* Card 3 */
.services-row > :nth-child(3) .card-icon{
    height:65px;
    margin-bottom:24px;
}

.services-row > :nth-child(3) .card-icon img{
    width:58px;
}

/* Card 4 */
.services-row > :nth-child(4) .card-icon{
    height:58px;
    margin-bottom:28px;
}

.services-row > :nth-child(4) .card-icon img{
    width:68px;
}

.card-title{
    font-size:18px;
    line-height:24px;
    margin-bottom:12px;
}

.card-desc{
    font-size:15px;
    line-height:24px;
    max-width:160px;
}

/* DESTINATIONS SECTION */

.destinations-section{
    margin:90px auto 120px;
    padding:0 24px;
}

.container{
    max-width:100%;
}

.section-header{
    margin-bottom:45px;
}

.section-subtitle{
    font-size:16px;
    line-height:24px;
    margin-bottom:6px;
}

.section-title{
    font-size:32px;
    line-height:42px;
}

.cards-grid{
    gap:28px;
}

.destination-card{
    border-radius:20px;
}

.card-image-wrapper{
    height:270px;
}

.card-content{
    padding:22px 18px 28px;
}

.card-top-row{
    font-size:17px;
    line-height:22px;
    margin-bottom:16px;
}

.card-bottom-row{
    gap:10px;
    font-size:15px;
    line-height:20px;
}

.navigation-icon{
    width:18px;
    height:18px;
}

.spring-bg-decoration{
    right:-20px;
    bottom:20px;
}

.spring-bg-decoration img{
    max-width:70px;
    height:auto;
}

/* STEPS SECTION */

.steps-section{
    padding:0 24px;
    overflow:hidden;
}

.steps-section-container{
    max-width:100%;
    align-items:center;
    justify-content: space-around;
    gap:40px;
}

.left-content{
    max-width:470px;
}

.right-content{
    max-width:430px;
    bottom:0;
}

.right-content::before{
    top:-60px;
    right:-20px;
    transform:scale(.85);
    filter:blur(50px);
}

.subtitle{
    font-size:16px;
    line-height:24px;
    margin-bottom:12px;
}

.main-heading{
    font-size:32px;
    line-height:42px;
    margin-bottom:28px;
}

.steps-list{
    gap:34px;
}

.step-item{
    gap:16px;
}

.icon-box{
    width:42px;
    height:42px;
}

.icon-box img{
    width:42px;
    height:42px;
}

.step-text h4{
    font-size:15px;
    line-height:20px;
    margin-bottom:5px;
}

.step-text p{
    font-size:13px;
    line-height:20px;
    max-width:300px;
}

.main-card{
    max-width:340px;
    padding:18px 20px;
    border-radius:22px;
}

.card-img{
    height:145px;
    margin-bottom:18px;
}

.trip-card-title{
    font-size:17px;
    line-height:22px;
    margin-bottom:10px;
}

.card-info{
    font-size:15px;
    line-height:20px;
    margin-bottom:18px;
}

.card-actions{
    gap:10px;
    margin-bottom:22px;
}

.action-icon{
    width:32px;
    height:32px;
}

.action-icon img{
    width:32px;
    height:32px;
}

.people-going{
    gap:10px;
    font-size:13px;
    line-height:18px;
}

.people-going img{
    width:14px;
    height:14px;
}

.heart-icon img{
    width:18px;
    height:18px;
}

.ongoing-card{
    max-width:230px;
    padding:14px 18px;
    right:-10px;
    bottom:44px;
    gap:10px;
}

.ongoing-img{
    width:44px;
    height:44px;
}

.ongoing-status{
    font-size:12px;
    line-height:16px;
    margin-bottom:4px;
}

.ongoing-title{
    font-size:16px;
    line-height:20px;
    margin-bottom:10px;
}

.progress-text{
    font-size:13px;
    line-height:16px;
    margin-bottom:8px;
}

.progress-bar{
    height:4px;
}

/* TESTIMONIAL SECTION */
.testimonial-section{
    padding:140px 24px 330px;
}

.testimonial-container{
    max-width:100%;
    gap:55px;
    align-items:center;
    flex-direction: column;
}

.testimonial-left{
    max-width:100%;
    flex-shrink:0;
    text-align: center;
}

.heading-slider{
    min-height:84px;
}

.heading-item span{
    font-size:16px;
    line-height:24px;
    margin-bottom:6px;
}

.heading-item h2{
    font-size:32px;
    line-height:44px;
}
.desktop-br{
    display: none;
}

.slider-dots{
    justify-content: center;
    margin-top:55px;
    gap:18px;
}

.slider-dots .dot{
    width:10px;
    height:10px;
}

.testimonial-right{
    max-width:520px;
    height:225px;
    flex:1;
}

.testimonial-stack{
    width:100%;
    max-width:470px;
}

.testimonial-card{
    max-width:470px;
    padding:24px 28px 28px;
}

.testimonial-card.active{
    transform:translate(0,0) scale(1);
}

.testimonial-card.next{
    transform:translate(42px,80px) scale(.96);
}

.testimonial-card.prev{
    transform:translate(-30px,-30px) scale(1.02);
}

.profile{
    top:-28px;
    left:-28px;
}

.profile img{
    width:58px;
    height:58px;
}

.review{
    max-width:360px;
    font-size:15px;
    line-height:28px;
}

.name{
    margin-top:24px;
    font-size:17px;
    line-height:24px;
}

.location{
    margin-top:4px;
    font-size:13px;
    line-height:18px;
}

/*  ARROWS */

.slider-arrows{
    right:-25px;
    gap:42px;
    top: -60px;
}

.slider-arrows button{
    width:20px;
    height:20px;
}

.slider-arrows button svg{
    width:18px;
    height:18px;
}

/* LOGOS SECTION */

.logos-section{
    margin:50px auto 0;
    padding:0 24px;
}

.logos-container{
    max-width:100%;
    padding:12px 0;
    gap:24px;
}

.logo-item{
    flex-shrink:1;
}

.logo-item img{
    width:100%;
    height:auto;
}

/* Logo 1 */
.logo-item:nth-child(1){
    max-width:105px;
}

/* Logo 2 */
.logo-item:nth-child(2){
    max-width:140px;
}

/* Highlight Card */
.logo-item:nth-child(3){
    width:200px;
    height:72px;
    border-radius:8px;
    box-shadow:
    0 3px 10px rgba(0,0,0,.05),
    0 10px 24px rgba(0,0,0,.07),
    0 18px 36px rgba(0,0,0,.08);
}

.logo-item:nth-child(3) img{
    width:135px;
    max-width:100%;
}

/* Logo 4 */
.logo-item:nth-child(4){
    max-width:130px;
}

/* Logo 5 */
.logo-item:nth-child(5){
    max-width:76px;
}
/* SUBSCRIBE SECTION */

.subscribe-section{
    margin:70px auto 80px;
    padding:15px 24px 50px;
}

.subscribe-container {
    max-width: 100%;
    padding: 65px 40px;
    border-top-left-radius: 100px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.bg-circles-left{
    width:300px;
    height:305px;
    left:25px;
    bottom:-40px;
}

.bg-circles-right{
    width:220px;
    height:225px;
    right:-25px;
    top:0;
}

.plus-grid-decor{
    width:120px;
    height:124px;
    right:8px;
    bottom:0;
}

.send-icon-badge{
    width:60px;
    height:60px;
    top:-12px;
    right:-12px;
}

.send-icon-badge img{
    width:50px;
    height:50px;
}

.subscribe-title{
    max-width:760px;
    font-size:28px;
    line-height:46px;
    margin-bottom:55px;
}

.subscribe-form{
    max-width:560px;
    gap:18px;
}

.input-group {
    height: 52px;
    padding: 0 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.input-group img.mail-icon{
    width:18px;
    height:16px;
    margin-right:12px;
}

.input-group input{
    font-size:14px;
}

.input-group input::placeholder{
    font-size:14px;
}

.subscribe-btn{
    height:52px;
    padding:0 36px;
    font-size:16px;
    line-height:22px;
    box-shadow: 0 10px 20px rgba(255, 125, 104, 0.25);
}
/* FOOTER SECTION */

.footer-section{
    padding:20px 24px 70px;
}

.footer-container{
    max-width:100%;
}

.footer-content{
    margin-bottom:70px;
    gap:45px;
}

.footer-left{
    max-width:180px;
    top:-12px;
}

.footer-left .logo{
    font-size:38px;
    line-height:56px;
    margin-bottom:12px;
}

.footer-left p{
    font-size:12px;
    line-height:22px;
}

.footer-center-links{
    max-width:420px;
    gap:35px;
}

.footer-col h4{
    font-size:19px;
    line-height:24px;
    margin-bottom:26px;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    font-size:16px;
    line-height:20px;
}

.footer-right{
    max-width:190px;
}

.footer-social-icons{
    gap:8px;
    margin-bottom:20px;
}

.social-btn img{
    width:40px;
    height:40px;
}

.apps-title{
    font-size:18px;
    line-height:22px;
    margin-bottom:14px;
}

.store-buttons{
    gap:6px;
}

.store-btn img{
    max-width:90px;
    height:32px;
}

/* COPYRIGHT */
.copyright{
    font-size:13px;
    line-height:20px;
}
}

/* ===== RESPONSIVE: MOBILE BELOW 768px ===== */

@media (max-width:768px){

    .header{
        margin:15px 0 0;
    }

    .header.sticky{
        margin:0;
        padding:12px 0;
    }
    .header-container{
        max-width:100%;
        padding:0 16px;
        display:flex;
        align-items:center;
        gap: 15px;
    }


    .logo img{
        width:85px;
    }


    .navbar-wrapper{
        margin-left:auto;
        display:flex;
        align-items:center;
        gap:12px;
    }


    .navbar,
    .header-right{
        display:none;
    }


    .language-dropdown{
        display:block;
        margin-right:0;
    }

    .language-dropdowns{
        margin-left:0;
        font-size:14px;
        gap:5px;
    }

    .language-dropdowns img{
        width:10px;
    }

    .language-dropdown .dropdown-menu {
        width: 180px;
        top: calc(100% + 16px);
        transform: translateX(-60%);
    }
    .language-dropdown .dropdown-menu li a{
        padding:12px 16px;
        font-size:14px;
    }


    .hamburger{
        display:flex;
        align-items:center;
        justify-content:center;
        width:40px;
        height:40px;
        flex-shrink:0;
    }

    .hamburger img{
        width:22px;
    }

    .mobile-menu.active {
        padding: 18px 23px;
    }


    .mobile-menu{
        width:280px;
    }

    .mobile-nav{
        display:flex;
        flex-direction:column;
        gap:0;
    }

    .mobile-nav li{
        list-style:none;
        width:100%;
    }

    .mobile-nav li a{
        display:block;
        padding:15px 0;
        font-family:"Google Sans",sans-serif;
        font-size:16px;
        font-weight:400;
        color:#212832;
        text-decoration:none;
        transition:.3s;
        border-bottom:1px solid rgba(0,0,0,.08);
    }

    .mobile-nav li:last-child a{
        border-bottom:none;
    }

    .mobile-nav li a:hover{
        color:#DF6951;
        padding-left:8px;
    }

    .hero-container{
        max-width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        padding:90px 20px 50px;
        gap:35px;
    }

    .hero-image{
        order:1;
        width:100%;
        max-width:100%;
        margin-left:0;
        transform: translateX(0px);
    }

    .hero-image img{
        display:block;
        width:100%;
        max-width:420px;
        margin:0 auto;

    }
    .hero-content{
        order:2;
        max-width:100%;
        text-align:center;
    }

    .hero-tag{
        margin-bottom:10px;
        font-size:15px;
        line-height:24px;
    }

    .hero-content h1{
        margin-bottom:18px;
        font-size:42px;
        line-height:52px;
        letter-spacing:-1px;
    }

    .travel-enjoy img{
        width:190px;
        right:-82px;
        bottom:7px;
    }

    .hero-content p{
        max-width:100%;
        margin:0 auto 28px;
        font-size:15px;
        line-height:28px;
    }

    .hero-buttons{
        justify-content:center;
        gap:22px;
        flex-wrap:wrap;
    }

    .find-btn{
        padding:12px 20px;
        font-size:14px;
    }

    .play-btn{
        gap:14px;
        justify-content:center;
    }

    .play-btn img{
        width:42px;
    }

    .play-btn span{
        font-size:16px;
        line-height:24px;
    }

/*========== NEXT SECTION ===========*/

.services-section{
    margin:40px auto 0;
    padding:0 20px;
}

.services-top-right-img{
    max-width:90px;
    top:-10px;
    right:10px;
}

.services-header{
    margin-bottom:45px;
}

.services-header .sub-title{
    font-size:16px;
    line-height:24px;
    margin-bottom:8px;
}

.services-header .main-title{
    font-size:32px;
    line-height:42px;
}

.services-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-card{
    width:100%;
    max-width:100%;
}


.card-bg-shape{
    width:80px;
    height:80px;
    left:-20px;
    bottom:-20px;
}

.services-row > :nth-child(1) .card-icon{
    height:70px;
    margin-bottom:24px;
}

.services-row > :nth-child(1) .card-icon img{
    width:80px;
}

.services-row > :nth-child(2) .card-icon{
    height:72px;
    margin-bottom:18px;
}

.services-row > :nth-child(2) .card-icon img{
    width:120px;
}

.services-row > :nth-child(3) .card-icon{
    height:70px;
    margin-bottom:24px;
}

.services-row > :nth-child(3) .card-icon img{
    width:60px;
}

.services-row > :nth-child(4) .card-icon{
    height:65px;
    margin-bottom:24px;
}

.services-row > :nth-child(4) .card-icon img{
    width:70px;
}

.card-title{
    font-size:18px;
    line-height:25px;
    margin-bottom:12px;
}

.card-desc{
    max-width:100%;
    font-size:15px;
    line-height:24px;
}

/*========== NEXT SECTION ===========*/

.destinations-section {
    margin: 70px auto 80px;
    padding: 0 20px;
    background: #f5f5f5;
}

.container{
    max-width:100%;
}

.section-header{
    margin-bottom:40px;
}

.section-subtitle{
    font-size:16px;
    line-height:24px;
    margin-bottom:8px;
}

.section-title{
    font-size:32px;
    line-height:42px;
}

.cards-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.destination-card{
    max-width:420px;
    width:100%;
    margin:0 auto;
    border-radius:22px;
}

.card-image-wrapper{
    height:300px;
}

.card-content{
    padding:24px 20px 28px;
}

.card-top-row{
    font-size:17px;
    line-height:22px;
    margin-bottom:16px;
}

.card-bottom-row{
    font-size:15px;
    line-height:22px;
    gap:10px;
}

.navigation-icon{
    width:18px;
    height:18px;
}

/* Hide Decoration */
.spring-bg-decoration{
    display:none;
}

/*========== NEXT SECTION ===========*/

.steps-section{
    padding:0 20px;
    background: #f5f5f5;
}

.steps-section-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:60px;
}

.left-content,
.right-content{
    max-width:100%;
    width:100%;
}

.left-content{
    text-align:center;
}

.subtitle{
    font-size:16px;
    line-height:24px;
    margin-bottom:10px;
}

.main-heading{
    font-size:32px;
    line-height:42px;
    margin-bottom:35px;
}

.steps-list{
    gap:30px;
}

.step-item{
    gap:18px;
    text-align:left;
}

.icon-box{
    width:44px;
    height:44px;
}

.icon-box img{
    width:44px;
    height:44px;
}

.step-text h4{
    font-size:16px;
    margin-bottom:6px;
}

.step-text p{
    max-width:100%;
    font-size:14px;
    line-height:22px;
}

/* Right Card */

.right-content{
    justify-content:center;
    bottom:0;
}

.right-content::before{
    display:none;
}

.main-card{
    max-width:380px;
    padding:20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .03), 0 8px 16px rgba(0, 0, 0, .035), 0 12px 24px rgba(0, 0, 0, .04);
}

.card-img{
    height:210px;
    margin-bottom:18px;
}

.trip-card-title{
    font-size:18px;
    margin-bottom:12px;
}

.card-info{
    font-size:15px;
    margin-bottom:18px;
}

.card-actions{
    margin-bottom:24px;
    gap:12px;
}

.people-going{
    gap:10px;
    font-size:14px;
}

/* Floating Card */
.ongoing-card {
    position: absolute;
    right: 0px;
    bottom: 44px;
    max-width: 230px;
    padding: 14px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .03), 0 8px 16px rgba(0, 0, 0, .035), 0 12px 24px rgba(0, 0, 0, .04);
}

.ongoing-img{
    width:45px;
    height:45px;
}

.ongoing-title{
    font-size:16px;
    margin-bottom:10px;
}

.progress-text{
    font-size:13px;
    margin-bottom:8px;
}

/*========== NEXT SECTION ===========*/

.testimonial-section {
    padding: 70px 16px 240px;
    background: #f5f5f5;
    box-shadow: none;
}

.testimonial-container{
    flex-direction:column;
    align-items:center;
    gap:45px;
}

.testimonial-left{
    max-width:100%;
    text-align:center;
}

.heading-slider{
    min-height:90px;
}

.heading-item h2{
    font-size:32px;
    line-height:42px;
}

.slider-dots{
    justify-content:center;
    margin-top:28px;
    gap:14px;
}

.slider-arrows{
    display:none !important;
}

.testimonial-right{
    width:100%;
    max-width:100%;
    height:310px;
}

.testimonial-stack{
    width:100%;
    max-width:100%;
    height:100%;
}

.testimonial-card{
    width:100%;
    max-width:100%;
    left:0;
    top:0;
    padding:50px 22px 24px;
    transform:none !important;
}

.testimonial-card.active{
    opacity:1;
    z-index:3;
    transform:none !important;
}

.testimonial-card.next,
.testimonial-card.prev{
    opacity:0;
    pointer-events:none;
    z-index:1;
    transform:none !important;
}

.profile{
    top:-22px;
    left:20px;
}

.profile img{
    width:56px;
    height:56px;
}

.review{
    max-width:100%;
    font-size:15px;
    line-height:28px;
}

.name{
    margin-top:22px;
}

.location{
    margin-top:4px;
}

/*========== NEXT SECTION ===========*/

.logos-section{
    margin:0;
    padding:0 20px;
}
.logos-container{
    max-width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:24px;
    padding:0;
}
.logo-item{
    flex:0 0 calc(50% - 12px);
    max-width:calc(50% - 12px) !important;
    display:flex;
    justify-content:center;
    align-items:center;
    filter:grayscale(0%);
}
.logo-item img{
    width:100%;
    max-width:130px;
    height:auto;
}
/* Highlight Logo */
.logo-item:nth-child(3){
    height:78px;
    max-width:calc(50% - 12px) !important;
    border-radius:12px;
    background:#fff;
    box-shadow:
    0 8px 20px rgba(0,0,0,.06),
    0 18px 35px rgba(0,0,0,.08);
}
.logo-item:nth-child(3) img{
    width:120px;
}
.logo-item:nth-child(5){
    display: none;
}

/*========== NEXT SECTION ===========*/

.subscribe-section{
    margin:80px auto 30px;
    padding:0 20px;
}
.subscribe-container{
    max-width:100%;
    padding:60px 30px;
    border-radius:24px;
}
.bg-circles-left{
    width:240px;
    height:auto;
    left:20px;
    bottom:0px;
}
.bg-circles-right{
    width:180px;
    height:auto;
    right:0px;
    top:0;
}
.plus-grid-decor{
    width:90px;
    height:auto;
    right:10px;
    bottom:10px;
}
.send-icon-badge{
    width:42px;
    height:42px;
    top:-12px;
    right:-12px;
}
.send-icon-badge img{
    width:42px;
    height:42px;
}
.subscribe-title{
    max-width:100%;
    margin:0 auto 40px;
    font-size:26px;
    line-height:38px;
}
.subscribe-form{
    max-width:100%;
    flex-direction:column;
    gap:18px;
}
.input-group {
    width: 100%;
    padding: 14px 20px;
}
.input-group img.mail-icon{
    width:18px;
    height:18px;
    margin-right:12px;
}
.input-group input{
    font-size:15px;
}
.subscribe-btn {
    width: 100%;
    font-size: 16px;
    height: 46px;
}
/*========== NEXT SECTION ===========*/
.footer-section {
    padding: 30px 20px 40px 20px;
}
.footer-container {
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px 0;
    margin-bottom: 40px;
}

.footer-left {
    order: 1;
    width: 40%;
    max-width: none;
    top: 0; 
}

.footer-left .logo {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 8px;
}

.footer-left p {
    font-size: 12px;
    line-height: 18px;
}

.footer-right {
    order: 2;
    width: 48%;
    max-width: none;
    align-items: center; 
}

.footer-social-icons {
    gap: 0;
    margin-bottom: 16px;
    justify-content: center;
}

.social-btn img {
    width: 36px;
    height: 36px;
}

.apps-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

.store-buttons {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.store-btn img {
    height: 32px;
    max-width: 95px;
}
.footer-center-links {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-col h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    line-height: 18px;
}

/* 5. Copyright spacing */
.copyright {
    font-size: 12px;
}

.copyright{
    font-size:14px;
    line-height:22px;
}
}

/* ===== RESPONSIVE: SMALL MOBILE 480PX ===== */

@media (max-width: 480px) {

/* HEADER */
.header {
    margin: 10px 0 0;
}

.header.sticky {
    padding: 10px 0;
}

.header-container {
    padding: 0 12px;
    gap: 10px;
}

.logo img {
    width: 75px;
}

.navbar-wrapper {
    gap: 8px;
}

.language-dropdowns {
    font-size: 12px;
    gap: 4px;
}

.language-dropdowns img {
    width: 8px;
}

.language-dropdown .dropdown-menu {
    width: 170px;
}

.language-dropdown .dropdown-menu li a {
    padding: 10px 12px;
    font-size: 12px;
}

.hamburger {
    width: 36px;
    height: 36px;
}

.hamburger img {
    width: 20px;
}

.mobile-menu {
    width: 250px;
}

.mobile-nav li a {
    padding: 12px 0;
    font-size: 14px;
}

.hero-container {
    padding: 60px 12px 35px;
    gap: 25px;
}

.hero-image img {
    max-width: 320px;
}

.hero-tag {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 20px;
}

.hero-content h1 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.5px;
}

.travel-enjoy img {
    width: 140px;
    right: -48px;
    bottom: 5px;
}

.hero-content p {
    margin: 0 auto 20px;
    font-size: 13px;
    line-height: 22px;
}

.hero-buttons {
    gap: 14px;
}

.find-btn {
    padding: 10px 16px;
    font-size: 13px;
}

.play-btn {
    gap: 10px;
}

.play-btn img {
    width: 36px;
}

.play-btn span {
    font-size: 14px;
    line-height: 20px;
}

/*========== NEXT SECTION ===========*/

.services-section {
    margin: 30px auto 0;
    padding: 0 12px;
}

.services-top-right-img {
    max-width: 70px;
    top: -5px;
    right: 5px;
}

.services-header {
    margin-bottom: 30px;
}

.services-header .sub-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
}

.services-header .main-title {
    font-size: 24px;
    line-height: 32px;
}

.services-row {
    gap: 14px;
}
.card-bg-shape {
    width: 60px;
    height: 60px;
    left: -12px;
    bottom: -12px;
}

.services-row > :nth-child(1) .card-icon {
    height: 50px;
    margin-bottom: 16px;
}

.services-row > :nth-child(1) .card-icon img {
    width: 60px;
}

.services-row > :nth-child(2) .card-icon {
    height: 52px;
    margin-bottom: 12px;
}

.services-row > :nth-child(2) .card-icon img {
    width: 90px;
}

.services-row > :nth-child(3) .card-icon {
    height: 50px;
    margin-bottom: 16px;
}

.services-row > :nth-child(3) .card-icon img {
    width: 45px;
}

.services-row > :nth-child(4) .card-icon {
    height: 48px;
    margin-bottom: 16px;
}

.services-row > :nth-child(4) .card-icon img {
    width: 50px;
}

.card-title {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 12px;
    line-height: 18px;
}

/*========== NEXT SECTION ===========*/

.destinations-section {
    margin: 50px auto 60px;
    padding: 0 12px;
}

.section-header {
    margin-bottom: 28px;
}

.section-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
}

.section-title {
    font-size: 24px;
    line-height: 32px;
}

.destination-card {
    max-width: 100%;
    border-radius: 18px;
}

.card-image-wrapper {
    height: 240px;
}

.card-content {
    padding: 18px 14px 22px;
}

.card-top-row {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 12px;
}

.card-bottom-row {
    font-size: 13px;
    line-height: 20px;
    gap: 8px;
}

.navigation-icon {
    width: 15px;
    height: 15px;
}

/*========== NEXT SECTION ===========*/

.steps-section {
    padding: 0 12px;
}

.steps-section-container {
    gap: 40px;
}

.subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}

.main-heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
}

.steps-list {
    gap: 20px;
}

.step-item {
    gap: 12px;
}

.icon-box {
    width: 36px;
    height: 36px;
}

.icon-box img {
    width: 36px;
    height: 36px;
}

.step-text h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 12px;
    line-height: 18px;
}

.main-card {
    max-width: 100%;
    padding: 14px;
}

.card-img {
    height: 170px;
    margin-bottom: 12px;
}

.trip-card-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.card-info {
    font-size: 13px;
    margin-bottom: 12px;
}

.card-actions {
    margin-bottom: 18px;
    gap: 10px;
}

.people-going {
    gap: 8px;
    font-size: 12px;
}

/* Floating Card */
.ongoing-card {
    bottom: 44px;
    max-width: 190px;
    padding: 10px 12px;
}

.ongoing-img {
    width: 36px;
    height: 36px;
}

.ongoing-title {
    font-size: 13px;
    margin-bottom: 6px;
}

.progress-text {
    font-size: 11px;
    margin-bottom: 6px;
}

/*========== NEXT SECTION ===========*/

.testimonial-section {
    padding: 50px 12px 210px;
}

.testimonial-container {
    gap: 30px;
}

.heading-slider {
    min-height: 70px;
}

.heading-item h2 {
    font-size: 24px;
    line-height: 32px;
}

.slider-dots {
    margin-top: 20px;
    gap: 10px;
}

.testimonial-right {
    height: 270px;
}

.testimonial-card {
    padding: 40px 16px 18px;
}

.profile {
    top: -18px;
    left: 14px;
}

.profile img {
    width: 44px;
    height: 44px;
}

.review {
    font-size: 13px;
    line-height: 22px;
}

.name {
    margin-top: 16px;
}

.location {
    margin-top: 2px;
}

/*========== NEXT SECTION ===========*/

.logos-section {
    padding: 0 12px;
}

.logos-container {
    gap: 16px;
}

.logo-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px) !important;
}

.logo-item img {
    max-width: 100px;
}

/* Highlight Logo */
.logo-item:nth-child(3) {
    height: 60px;
    max-width: calc(50% - 8px) !important;
    border-radius: 10px;
}

.logo-item:nth-child(3) img {
    width: 90px;
}

.logo-item:nth-child(5) {
    display: none;
}

/*========== NEXT SECTION ===========*/

.subscribe-section {
    margin: 50px auto 20px;
    padding: 0 12px;
}

.subscribe-container {
    padding: 40px 16px;
    border-radius: 18px;
}

.bg-circles-left {
    width: 180px;
}

.bg-circles-right {
    width: 130px;
}

.plus-grid-decor {
    width: 60px;
}

.send-icon-badge {
    width: 34px;
    height: 34px;
    top: -10px;
    right: -10px;
}

.send-icon-badge img {
    width: 34px;
    height: 34px;
}

.subscribe-title {
    margin: 0 auto 28px;
    font-size: 20px;
    line-height: 30px;
}

.subscribe-form {
    gap: 12px;
}

.input-group {
    padding: 12px 14px;
}

.input-group img.mail-icon {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.input-group input {
    font-size: 13px;
}

.subscribe-btn {
    height: 39px;
    font-size: 14px;
}

/*========== NEXT SECTION ===========*/

.footer-section {
    padding: 20px 12px 30px 12px;
}

.footer-content {
    gap: 20px 0;
    margin-bottom: 25px;
}

.footer-left {
    width: 45%;
}

.footer-left .logo {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 6px;
}

.footer-left p {
    font-size: 11px;
    line-height: 16px;
}

.footer-right {
    width: 48%;
}

.footer-social-icons {
    margin-bottom: 12px;
}

.social-btn img {
    width: 30px;
    height: 30px;
}

.apps-title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
}

.store-buttons {
    gap: 6px;
}

.store-btn img {
    height: 28px;
    max-width: 80px;
}
.footer-center-links {
    margin-top: 6px;
    gap: 10px;
}

.footer-col h4 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 12px;
    line-height: 16px;
}

/* 5. Copyright */
.copyright {
    font-size: 11px;
    line-height: 16px;
}
.mobile-close img{
    width:13px;
}
.mobile-menu.active {
    padding: 10px 18px;
}
}