@import url("all.css");
@import url("https://fonts.googleapis.com/css2?family=Jura:wght@500;600;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --third-color: #e74c3c;
    --third-color-light: #ec7063;
    --third-color-dark: #80170c;
    --primary-color: linear-gradient(45deg, #4b0801, var(--third-color-dark), var(--third-color), var(--third-color-dark), #4b0801);
    --primary-color-light: #1d4a89;
    --primary-color-dark: #000306;
    --secondary-color: #ffc95d;
    --secondary-color-light: #fee2a9;
    --secondary-color-dark: #cd8900;
    --text-color: #f0f0f0;
}

body {
    font-family: 'Jura', sans-serif;
    background: var(--primary-color);
    color: var(--secondary-color);
    /* height: 200vh; */
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: var(--primary-color);
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* padding: 6px 0; */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    /* max-width: 1200px; */
    margin: auto;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar-container {
    padding: 6px 20px;
}

.logo img {
    max-height: 80px;
    aspect-ratio: 10/8;
    max-width: 150px
    /* mix-blend-mode: difference; */
}

.logo .logo-text {
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
    /* margin-top: 5px; */
}

.main-header.scrolled .logo img {
    max-height: 50px;
}

/* Desktop view */

.nav-links {
    display: flex;
    /* gap: 0px; */
}

.nav-links a {
    margin: 0 10px;
    text-decoration: none;
    /* color: #002355; */
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 14px;
    border: 2px solid transparent;
    gap: 5px;
    /* transition: all 0.2s ease; */
    /* background-color: var(--primary-color); */
}

.main-header.scrolled .nav-links a {
    /* color: var(--secondary-color-dark); */
}

.main-header.scrolled .nav-links a:hover {
    background-color: var(--third-color-dark);
    color: white;
}

.nav-links a:hover {
    background-color: var(--secondary-color-dark);
    border: 2px solid var(--secondary-color);
    color: white;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: var(--secondary-color-dark);
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.icon-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive navbar for smaller device*/

@media (max-width: 1024px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        background: transparent;
        backdrop-filter: blur(10px);
        /* z-index: 10000; */
    }
    .navbar-container .logo img {
        max-width: 40px;
        height: 40px;
    }
    .navbar-container .logo {
        justify-content: flex-start;
    }
    .nav-links {
        position: static;
        /* fix for hidden links */
        width: 100%;
        /* background: #fff; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        display: none;
    }
    .nav-buttons {
        /* position: static; */
        width: 100%;
        /* background: #fff; */
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 20px;
        display: none;
    }
    .nav-links {
        gap: 0;
    }
    .nav-links a {
        /* margin: 10px 0; */
        padding: 10px 0;
        display: flex;
        justify-content: center;
        border-radius: 0px;
        width: 100%;
        border-bottom: 1px solid #9c9c9c;
        color: var(--secondary-color);
    }
    .main-header {
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
    }
    .main-header.scrolled {
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
    }
    .main-header.scrolled .nav-links a {
        color: var(--secondary-color);
    }
    .nav-buttons {
        gap: 10px;
        margin-top: 10px;
    }
    .main-header.nav-open .nav-links,
    .main-header.nav-open .nav-buttons {
        display: flex;
    }
    .nav-buttons {
        /* flex-direction: row; */
    }
    .hamburger {
        display: flex;
    }
}

/* Notification */

.notice_text {
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #f4ab36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#notificationContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f4ab36;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.success {
    background-color: #0dcb75;
}

.error {
    background-color: #f43636;
}

.notification .message {
    font-size: 14px;
    flex: 1;
}

.notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.notification .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: progress 5s linear;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

.sticky-form {
    position: fixed;
    top: 90px;
    right: 0;
    width: 300px;
    /* background: white; */
    background: rgba(70, 0, 0, 0.475);
    backdrop-filter: blur(10px);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    border: 2px solid var(--secondary-color);
    transition: transform 0.3s ease;
    border-radius: 8px 0 0 8px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    font-weight: bold;
    gap: 20px;
    margin-bottom: 10px;
}

.form-header h2 {
    font-weight: 700;
}

#toggleFormBtn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.sticky-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #fff;
    /* background: #fff; */
    box-shadow: 0 0 5px rgba(0, 86, 210, 0.3);
}

input::placeholder {
    color: #888;
    font-size: 13px;
}

.stickyRefresh_captcha {
    position: absolute;
    right: -6px;
    top: -4px;
    /* border-radius: 5px; */
    /* top: 20px; */
    /* height: 100%; */
    /* width: 40px; */
}

.submit-btn {
    background: #0056d2;
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.captcha-placeholder {
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
    border-radius: 4px;
    /* margin: 10px; */
}

.consent-text {
    font-size: 10px;
    margin-top: 10px;
    color: #848484;
    font-weight: 300;
    text-align: center;
}

/* Hide Form */

.sticky-form.hidden {
    transform: translateX(100%);
}

.show-form-btn {
    position: fixed;
    top: 100px;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #0056d2;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 999;
    /* display: none; */
    animation: vibrate 0.3s ease infinite;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
}

.animate-vibration {
    animation: vibrate 0.3s ease infinite;
}

.animate-zoom {
    animation: ZoomIn 2s ease infinite;
}

.show-form-btn ion-icon {
    font-size: 18px;
}

@keyframes vibrate {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-1px, 1px);
    }
    40% {
        transform: translate(-1px, -1px);
    }
    60% {
        transform: translate(1px, 1px);
    }
    80% {
        transform: translate(1px, -1px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes ZoomIn {
    0% {
        transform: scale(0.9);
        /* opacity: 0.8; */
    }
    50% {
        transform: scale(1);
        /* opacity: 1; */
    }
    100% {
        transform: scale(0.9);
        /* opacity: 0.8; */
    }
}

.form-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/* .form-icons a {
      background: #0056d2;
      color: white;
      padding: 10px;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background 0.3s ease;
    } */

.form-icons a:last-child {
    animation: bounce 1.5s infinite ease-in-out;
}

/* .form-icons a:hover {
      background: #003fa6;
    } */

/* Add these styles to your existing CSS For sticky form otp */

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.otp-btn {
    position: absolute;
    right: 8px;
    padding: 6px 12px;
    background: #f5a623;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: none;
}

.otp-section {
    display: none;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
}

.otp-section input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.verify-btn {
    position: absolute;
    right: 8px;
    bottom: 20px;
    padding: 6px 12px;
    background: #f5a623;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    /*display: none;*/
}

/* Validation states */

.verified {
    border: 2px solid #4CAF50 !important;
}

.not-verified {
    border: 2px solid #f44336 !important;
}

/*For popup Otp Section*/

.form-group-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* flex-wrap: wrap; */
}

.form-group-row .form-group {
    width: 100%;
}

.form-group-row .form-group input {
    width: 100%;
}

.form-group-row .btn {
    padding: 10px 6px;
    width: 50%;
}

/* Overlay Styles */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.overlay.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.popup {
    background: rgba(70, 0, 0, 0.475);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-color);
    /* background: red; */
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    overflow-y: auto;
    /* max-height: 90vh; */
    /* margin: 10px; */
}

.popup .illustration {
    height: 100%;
    width: 200px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;
}

.popup .illustration h2 {
    font-size: 24px;
    /* text-align: left; */
    color: var(--secondary-color);
    /* margin-bottom: 10px; */
}

.illustrate-item {
    width: 100%;
    ;
    /* height: 60px; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.illustrate-item img {
    width: 60px;
    height: 100%;
    object-fit: cover;
    /* mix-blend-mode: color-burn; */
    /* border-radius: 50%; */
}

.illustrate-item p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    width: 70px;
    color: var(--secondary-color);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--third-color);
}

.form_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form_container h3 {
    font-size: 14px;
    color: white;
}

.form-container .highlight {
    color: var(--secondary-color);
}

.logo {
    width: 180px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.highlight {
    color: var(--third-color);
    font-weight: bold;
}

form input,
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.form-group {
    position: relative;
    /* margin-bottom: 20px; */
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px var(--primary-color-light); */
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    color: var(--secondary-color);
    background: transparent;
    padding: 0 5px;
    transform: translateY(-50%);
    transition: 0.3s ease;
    pointer-events: none;
}

/* When input is focused or filled */

.form-group input:focus+label,
.form-group input:not(:placeholder-shown):valid+label {
    top: 8px;
    left: 10px;
    font-size: 12px;
    padding: 2px 5px;
    color: white;
    background: var(--primary-color);
    border-radius: 10px;
}

.phone-field {
    display: flex;
    gap: 10px;
}

.captcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row-reverse; */
    margin-top: 10px;
    text-align: left;
    gap: 5px;
}

.refresh_captcha {
    position: absolute;
    right: -1px;
    top: -4px;
    height: 100%;
    width: 40px;
}

.captcha_canvas {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    top: 2px;
}

.captcha-box canvas {
    /* background: #f0f0f0; */
    margin-bottom: 5px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
}

.captcha-box button {
    margin: 5px 0;
    padding: 5px 10px;
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--primary-color-dark);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    /* position: absolute;
    right: -1px;
    top: -4px; */
    /* border: 2px solid var(--secondary-color); */
}

.captcha-box input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}

.btn {
    /* margin-top: 20px; */
    padding: 10px 20px;
    background-color: var(--secondary-color);
    border: none;
    color: white;
    text-decoration: none;
    border: 2px solid var(--secondary-color-light);
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.btn:hover {
    background-color: var(--secondary-color-light);
    background: transparent;
    color: var(--secondary-color-light);
    border: 2px solid var(--secondary-color-light);
}

.consent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    font-size: 12px;
    text-align: left;
    margin: 10px 0;
}

.consent p {
    color: gray;
    font-size: 11px;
}

.consent-check {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
}

.register-btn {
    background: #0056d2;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.register-btn:hover {
    background: #003fa6;
}

.bottom-call {
    margin-top: 20px;
    background: #0056d2;
    color: white;
    padding: 10px;
    font-weight: bold;
}

.bottom-call:hover {
    background: #003fa6;
}

/* Icon Animation */

.animated-download {
    position: relative;
    animation: downloadMove .5s infinite ease-in-out;
}

@keyframes downloadMove {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 488px) {
    .popup {
        /* width: 90%; */
        /* padding: 20px; */
        flex-direction: column;
    }
    .popup .illustration {
        display: none;
        /* height: auto; */
        flex-direction: column;
        gap: 10px;
    }
    .illustrate-item {
        width: 40px;
        height: auto;
    }
    .captcha-box {
        flex-direction: column;
    }
    .illustrate-item img {
        width: 40px;
        height: auto;
    }
    .illustrate-item p {
        font-size: 12px;
    }
}

.section {
    padding: 2rem 6rem;
    /* background: var(--primary-color); */
    color: var(--text-color);
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }
}

.hero {
    background: url('../images/20250609_H6%20Presentation_page-0001%20%281%29.jpg') no-repeat center top/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.highlight-box {
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    min-width: 250px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-box .label {
    font-size: 1.3rem;
    font-weight: 500;
}

.highlight-box .value {
    font-size: 1.4rem;
    font-weight: 700;
}

.usp_points {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    animation: ZoomIn 2s ease infinite;
}

.usp_points li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp_points li::marker {
    content: '';
}

.usp_points li ion-icon {
    /* font-size: 1.5rem; */
    color: var(--secondary-color);
    margin-right: 5px;
}

.offer_detail {
    color: var(--secondary-color);
    margin-top: 20px;
}

.offer_detail span {
    font-size: 34px;
    color: white;
}

.starting-price {
    font-size: 1.3rem;
    margin-top: 10px;
    color: var(--secondary-color-light)
}

/* Responsive */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 1.1rem;
    }
    .highlight-box {
        min-width: 120px;
        padding: 12px 18px;
    }
    .hero-highlights {
        gap: 10px;
    }
}

.gradient-text {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient( 270deg, var(--secondary-color), var(--secondary-color-light), var(--secondary-color-dark), var(--secondary-color));
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 6s ease infinite;
    text-align: center;
    margin: 60px 0;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.overview {
    background-color: var(--primary-color);
    /* padding: 80px 20px; */
    text-align: center;
}

.price_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: white;
    max-width: 800px;
    margin-inline: auto;
}

.overview-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

@media(max-width: 1200px) {
    .video-section {
        flex-direction: column;
    }
}

.video-section h2 {
    color: var(--secondary-color-light);
    margin-bottom: 10px;
    text-align: justify;
}

.video-section p {
    text-align: justify;
}

.video-container {
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    /* aspect-ratio: 12/9; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

video {
    width: 100%;
    /* height: 100%; */
    display: block;
}

.overview-card {
    background: var(--primary-color);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color-light);
    width: 100%;
    max-width: 300px;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color-light);
}

.overview-card p {
    color: white;
    font-size: 1rem;
}

.gallery {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
}

.gallery-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.gallery-img {
    width: 100%;
    /* height: 100%; */
    max-width: 350px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-left: 5px solid var(--secondary-color);
    border-right: 5px solid var(--secondary-color);
    transition: .3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
    transform: scale(1.05);
    /* border-top: none; */
    /* border-bottom: none; */
    /* border-left: 10px solid var(--secondary-color); */
    /* border-right: 10px solid var(--secondary-color); */
}

/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.price-section {
    background: var(--primary-color);
    padding: 80px 20px;
    color: var(--text-color);
}

.section-heading {
    text-align: center;
    /* font-size: 2.5rem; */
    font-size: clamp(1.9rem, 5vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.price-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 10px;
    overflow-x: auto;
    overflow: hidden;
}

.price-table thead {
    background: var(--secondary-color);
}

.price-table th,
.price-table td {
    padding: 20px;
    text-align: left;
    color: var(--text-color);
}

.price-table th {
    color: black;
    font-weight: bold;
}

.price-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    .price-table {
        display: block;
        border: none;
        background: transparent;
    }
    .price-table-wrapper {
        border: none;
        width: 100%;
    }
    .price-table thead {
        display: none;
    }
    .price-table tbody {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        /* width: 100%; */
        padding: 20px;
    }
    .price-table tr {
        display: block;
        background: var(--primary-color);
        padding: 16px;
        border-radius: 10px;
        width: 100%;
        max-width: 500px;
        border-left: 2px solid var(--secondary-color);
        border-right: 2px solid var(--secondary-color);
        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.738); */
    }
    .price-table td {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 0;
        border: none;
        font-size: 15px;
        color: var(--text-color);
    }
    .price-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--secondary-color);
    }
    .price-table td:first-child {
        font-weight: bold;
        color: var(--secondary-color);
        font-size: 20px;
    }
    .price-table td:last-child {
        justify-content: center;
    }
    .more_disclaimer {
        display: none;
    }
}

.gradient-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: #000;
    /* display: flex; */
    justify-content: center;
    text-decoration: none;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gradient-btn:hover {
    transform: scale(1.05);
}

.costing-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.costing-box img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.full-btn {
    padding: 12px 24px;
    font-size: 1rem;
}

.price-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
}

.price-btn:hover {
    background-color: var(--primary-dark-color);
}

.price-image {
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.price-image img {
    width: 100%;
    height: 250px;
    /* Fixed height */
    object-fit: cover;
    /* Ensures image covers the container */
    display: block;
    border: 1px solid #ccc;
}

.full-btn {
    margin-top: 10px;
    /* width: 100%; */
}

.image-overlay-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.image-overlay-wrapper img {
    width: 100%;
    height: 250px;
    /* Same fixed height */
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 51, 55, 0.593);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.5s ease;
}

.image-overlay-wrapper:hover {
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.842);
}

.image-overlay-wrapper:hover .image-overlay {
    bottom: 0;
}

.overlay-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.overlay-btn:hover {
    /* transform: scale(1.05); */
}

.sub-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.site-plan-section {
    padding: 60px 20px;
    background: var(--primary-color);
    overflow: hidden;
    /* margin: 10px 20px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.main-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 50px;
    margin-top: 20px;
}

.amenities-section {
    position: relative;
    padding: 40px 20px;
    /* background: var(--primary-color); */
    overflow: hidden;
    /* margin: 10px 20px; */
    /* border-radius: 5px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

.amenities-section p {
    text-align: justify;
    /* width: 100%; */
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.amenities-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 34px;
    color: var(--primary-color);
    font-weight: bold;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.amenity-box {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.478);
    display: flex;
    align-items: center;
    font-size: 16px;
    border: 2px solid var(--secondary-color);
    gap: 12px;
    transition: 0.3s;
}

.amenity-box ion-icon {
    font-size: 22px;
    color: var(--secondary-color);
}

.amenity-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-section {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 80px 20px;
}

.location-section p {
    text-align: justify;
    /* width: 100%; */
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.location_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title {
    text-align: center;
    /* font-size: 2.8rem; */
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.location-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.location-card h3 {
    font-size: 1.6rem;
    margin: 20px 0;
    color: black;
}

.image-wrapper {
    position: relative;
    /* max-width: 450px; */
}

.image-wrapper img {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    height: auto;
    filter: blur(2px);
}

.overlay-btn {
    position: absolute;
    /* bottom: 80px; */
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 10px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s ease;
    text-decoration: none;
    transition: .3s ease;
    /* border-radius: 0 0 12px 12px; */
}

.overlay-btn:hover {
    /* scale: 1.05; */
}

.location-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.tab {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.tab.active,
.tab:hover {
    background: var(--secondary-color);
    color: #fff;
}

.location-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    gap: 10px 20px;
    color: var(--secondary-color);
    font-size: 1rem;
    /* max-width: 700px; */
}

.location-tabs .tab.active {
    background-color: #ffc95d;
    /* Optional: to highlight active tab */
}

.location-points li {
    display: flex;
    align-items: center;
    text-align: left;
    /* font-size: 1rem; */
    gap: 10px;
}

.location-points i {
    color: var(--secondary-color);
}

.virtual-tour-section {
    position: relative;
    padding: 50px 20px;
    /* background: #fafafa; */
    margin: 10px 20px;
    /* border-radius: 5px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.virtual-tour-section p {
    text-align: justify;
    /* width: 100%; */
    color: white;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.612);
}

.video-thumb {
    width: 100%;
    border-radius: 10px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.186);
    color: white;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    padding: 20px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    cursor: pointer;
    overflow: hidden;
    /* animation: pulse 1.5s infinite; */
    z-index: 1;
}

.play-btn i {
    font-size: clamp(40px, 10vw, 80px);
    color: var(--secondary-color);
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    ;
    animation: pulse 1.5s infinite;
}

/* .play-btn ion-icon{
    font-size: clamp(30px, 5vw, 80px);
    position: relative;
    top: 35px;
    left: 40px;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    padding: 10px;
  }
   */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.video-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    color: #fff;
    text-shadow: 0 0 8px #000;
}

.faq {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.accordion {
    padding: 10px;
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    /* box-shadow: 0px 0px 20px rgb(140, 4, 171); */
    /* background: green; */
}

.accordion-item {
    /* border-bottom: 2px solid #514a4a; */
    width: 100%;
}

.accordion-title {
    /* background: #efefef; */
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid var(--secondary-color);
}

.accordion-title:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.icon {
    font-size: 1.5em;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    /* background-color: #efefef; */
    transition: max-height 0.3s ease-in-out, padding 0.3s;
    padding: 0 1em;
    width: 100%;
}

.accordion-content p {
    margin: 0;
    padding: 1em 0;
    font-size: 0.9em;
    line-height: 1.5;
    width: 100%;
    color: #ffffff;
}

.project-footer {
    background-color: var(--primary-color);
    color: grey;
    font-size: 13px;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
}

.project-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.project-footer a:hover {
    text-decoration: underline;
}

.project-footer p {
    margin: 10px 0;
}

.thank-you-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    border: 3px solid var(--secondary-color);
    padding: 20px 40px;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.typing {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: bold;
    color: var(--secondary-color);
    border-right: 3px solid var(--primary-dark-color);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 2s steps(20, end) forwards, blink 0.6s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 9ch;
    }
    /* Length of "Thank You!" */
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.thank-you-section p {
    font-size: 1.6rem;
    margin-top: 20px;
    opacity: 0;
    animation: fadeReveal 1s 2s forwards;
    text-align: center;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeReveal 1s 3s forwards;
}

.buttons a {
    text-decoration: none;
}

.home-btn {
    margin-top: 30px;
    padding: 12px 15px;
    background: var(--primary-dark-color);
    border: 2px solid #fff;
    color: #fff;
    font-size: clamp(14px, 2vw, 20px);
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    opacity: 0;
    animation: fadeReveal 1s 3s forwards;
}

.home-btn:hover {
    background: var(--primary-color);
}

@keyframes fadeReveal {
    to {
        opacity: 1;
    }
}

.whatsapp-float-btn {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    width: 60px;
    /* height: 60px; */
    /* display: flex; */
    align-items: center;
    flex: 1;
    justify-content: center;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.wp-btn {
    width: 60px;
    /* height: 60px; */
    padding: 10px;
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 20px;
    justify-content: center;
    color: white;
    text-decoration: none;
    /* font-size: 30px; */
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        display: flex;
    }
}

.section-title {
    text-align: center;
    /* font-size: 2.8rem; */
    font-size: clamp(1.9rem, 5vw, 2.8rem);
    margin-bottom: 50px;
    color: var(--secondary-color);
}