 :root {
     --cream: #fff6f6;
     --teal: #8cc7c4;
     --deep: #2c687b;
     --deep2: #1e4d5c;
     --deep3: #142f38;
     --teal-lt: #b8dedd;
     --teal-faint: #e8f5f4;
     --text: #1a1a1a;
     --muted: #6b7e82;
     --border: rgba(44, 104, 123, 0.12);
 }

 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Outfit", sans-serif;
     background: var(--cream);
     color: var(--text);
     overflow-x: hidden;
 }

 /* ─── CURSOR ─── */
 body {
     cursor: none;
 }

 .cursor {
     width: 10px;
     height: 10px;
     background: var(--deep);
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     z-index: 9999;
     transition:
         transform 0.15s ease,
         width 0.2s,
         height 0.2s,
         background 0.2s;
     transform: translate(-50%, -50%);
 }

 .cursor-ring {
     width: 36px;
     height: 36px;
     border: 1.5px solid var(--deep);
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     z-index: 9998;
     transition:
         transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
         width 0.3s,
         height 0.3s,
         opacity 0.3s;
     transform: translate(-50%, -50%);
     opacity: 0.5;
 }

 /* ─── NAV ─── */
 nav {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 100;
     padding: 0 5%;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: rgba(255, 246, 246, 0.92);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
     transition: box-shadow 0.3s;
 }

 nav.scrolled {
     box-shadow: 0 4px 32px rgba(44, 104, 123, 0.08);
 }

 .nav-logo {
     font-family: "Cormorant Garamond", serif;
     font-size: 1.6rem;
     font-weight: 700;
     color: var(--deep);
     letter-spacing: 0.5px;
     line-height: 1;
 }

 .nav-logo span {
     color: var(--teal);
     font-style: italic;
 }

 .nav-links {
     display: flex;
     gap: 2.5rem;
 }

 .nav-links a {
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--muted);
     text-decoration: none;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: var(--deep);
 }

 .nav-book {
     background: var(--deep);
     color: var(--cream);
     padding: 11px 28px;
     border-radius: 2px;
     font-size: 0.8rem;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     text-decoration: none;
     transition: background 0.25s;
 }

 .nav-book:hover {
     background: var(--deep2);
 }

 /* ─── HERO ─── */
 .hero {
     min-height: 100vh;
     background: var(--deep3);
     position: relative;
     overflow: hidden;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: stretch;
 }

 .hero-left {
     padding: 160px 6% 80px 8%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
     z-index: 2;
 }

 .hero-eyebrow {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 32px;
 }

 .hero-eyebrow .line {
     width: 40px;
     height: 1px;
     background: var(--teal);
 }

 .hero-eyebrow span {
     font-size: 0.72rem;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--teal);
     font-weight: 500;
 }

 .hero h1 {
     font-family: "Cormorant Garamond", serif;
     font-size: clamp(3.2rem, 6vw, 5.8rem);
     font-weight: 600;
     line-height: 1.05;
     color: var(--cream);
     margin-bottom: 28px;
     letter-spacing: -0.5px;
 }

 .hero h1 em {
     font-style: italic;
     color: var(--teal);
 }

 .hero p {
     font-size: 1rem;
     color: rgba(255, 246, 246, 0.55);
     line-height: 1.9;
     max-width: 420px;
     margin-bottom: 48px;
 }

 .hero-actions {
     display: flex;
     gap: 16px;
     align-items: center;
 }

 .btn-cream {
     background: var(--cream);
     color: var(--deep);
     padding: 15px 36px;
     border-radius: 2px;
     font-size: 0.82rem;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     text-decoration: none;
     transition: all 0.25s;
     display: inline-block;
 }

 .btn-cream:hover {
     background: var(--teal-lt);
 }

 .btn-ghost {
     color: rgba(255, 246, 246, 0.6);
     font-size: 0.82rem;
     font-weight: 500;
     letter-spacing: 1px;
     text-decoration: none;
     border-bottom: 1px solid rgba(255, 246, 246, 0.2);
     padding-bottom: 2px;
     transition: all 0.2s;
 }

 .btn-ghost:hover {
     color: var(--teal);
     border-color: var(--teal);
 }

 .hero-right {
     position: relative;
     overflow: hidden;
 }

 .hero-right img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.5;
     transition: opacity 0.3s;
 }

 .hero-right::before {
     content: "";
     position: absolute;
     inset: 0;
     z-index: 1;
     background: linear-gradient(to right, var(--deep3) 0%, transparent 40%);
 }

 .hero-right::after {
     content: "";
     position: absolute;
     inset: 0;
     z-index: 1;
     background: linear-gradient(to top, var(--deep3) 0%, transparent 40%);
 }

 .hero-scroll {
     position: absolute;
     bottom: 40px;
     left: 8%;
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.72rem;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: rgba(255, 246, 246, 0.3);
     z-index: 3;
 }

 .hero-scroll::before {
     content: "";
     width: 1px;
     height: 40px;
     background: rgba(255, 246, 246, 0.2);
 }

 /* decorative corner */
 .hero-corner {
     position: absolute;
     top: 80px;
     right: 20px;
     width: 120px;
     height: 120px;
     z-index: 3;
     border-top: 1px solid rgba(140, 199, 196, 0.25);
     border-right: 1px solid rgba(140, 199, 196, 0.25);
 }

 /* ─── STATS STRIP ─── */
 .stats-strip {
     background: var(--deep);
     padding: 0 5%;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
 }

 .stat-cell {
     padding: 44px 0;
     text-align: center;
     border-right: 1px solid rgba(255, 246, 246, 0.08);
     transition: background 0.2s;
 }

 .stat-cell:last-child {
     border-right: none;
 }

 .stat-cell:hover {
     background: rgba(140, 199, 196, 0.07);
 }

 .stat-num {
     font-family: "Cormorant Garamond", serif;
     font-size: 3.2rem;
     font-weight: 700;
     color: var(--teal);
     line-height: 1;
 }

 .stat-unit {
     font-size: 1.4rem;
 }

 .stat-label {
     font-size: 0.72rem;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: rgba(255, 246, 246, 0.4);
     margin-top: 6px;
 }

 /* ─── SECTION BASE ─── */
 .sec {
     padding: 120px 8%;
 }

 .sec-tag {
     font-size: 0.7rem;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--deep);
     font-weight: 600;
     margin-bottom: 14px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .sec-tag::before {
     content: "";
     width: 24px;
     height: 1px;
     background: var(--teal);
 }

 .sec-title {
     font-family: "Cormorant Garamond", serif;
     font-size: clamp(2.4rem, 4.5vw, 4rem);
     font-weight: 600;
     line-height: 1.1;
     color: var(--deep3);
     letter-spacing: -0.3px;
 }

 .sec-sub {
     font-size: 1rem;
     color: var(--muted);
     line-height: 1.8;
     max-width: 500px;
     margin-top: 18px;
 }

 /* ─── ABOUT / SPLIT ─── */
 .about-sec {
     background: var(--cream);
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 100px;
     align-items: center;
     margin-top: 80px;
 }

 .about-img-wrap {
     position: relative;
 }

 .about-img-wrap img {
     width: 100%;
     height: 500px;
     object-fit: cover;
     border-radius: 2px;
 }

 .about-img-wrap::before {
     content: "";
     position: absolute;
     top: -20px;
     left: -20px;
     width: 60%;
     height: 60%;
     border-top: 2px solid var(--teal);
     border-left: 2px solid var(--teal);
     border-radius: 2px;
     z-index: 0;
 }

 .about-img-wrap::after {
     content: "";
     position: absolute;
     bottom: -20px;
     right: -20px;
     width: 60%;
     height: 60%;
     border-bottom: 2px solid var(--deep);
     border-right: 2px solid var(--deep);
     border-radius: 2px;
 }

 .about-badge {
     position: absolute;
     bottom: 30px;
     left: -30px;
     background: var(--deep);
     padding: 20px 28px;
     z-index: 2;
 }

 .about-badge .num {
     font-family: "Cormorant Garamond", serif;
     font-size: 2.8rem;
     font-weight: 700;
     color: var(--teal);
     line-height: 1;
 }

 .about-badge .lbl {
     font-size: 0.72rem;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: rgba(255, 246, 246, 0.5);
     margin-top: 4px;
 }

 .about-text .sec-title {
     margin-bottom: 20px;
 }

 .about-text p {
     font-size: 0.95rem;
     color: var(--muted);
     line-height: 1.9;
     margin-bottom: 16px;
 }

 .about-divider {
     width: 48px;
     height: 1px;
     background: var(--teal);
     margin: 28px 0;
 }

 .about-features {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .about-feat {
     display: flex;
     align-items: center;
     gap: 14px;
     font-size: 0.9rem;
     color: var(--deep3);
     font-weight: 500;
 }

 .about-feat::before {
     content: "";
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--teal);
     flex-shrink: 0;
 }

 /* ─── MARQUEE ─── */
 .marquee-sec {
     background: var(--teal-faint);
     padding: 28px 0;
     overflow: hidden;
     border-top: 1px solid rgba(140, 199, 196, 0.3);
     border-bottom: 1px solid rgba(140, 199, 196, 0.3);
 }

 .marquee-inner {
     display: flex;
     gap: 0;
 }

 .marquee-track {
     display: flex;
     gap: 0;
     min-width: 100%;
     animation: slide 22s linear infinite;
 }

 @keyframes slide {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 .m-item {
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 0 40px;
     white-space: nowrap;
 }

 .m-item span {
     font-family: "Cormorant Garamond", serif;
     font-size: 1.15rem;
     font-weight: 600;
     color: var(--deep);
     letter-spacing: 0.5px;
     font-style: italic;
 }

 .m-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--teal);
     flex-shrink: 0;
 }

 /* ─── SERVICES ─── */
 .services-sec {
     background: var(--cream);
 }

 .services-intro {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: end;
     margin-bottom: 72px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2px;
 }

 .service-card {
     background: var(--teal-faint);
     padding: 48px 36px;
     position: relative;
     overflow: hidden;
     transition: background 0.3s;
     cursor: default;
 }

 .service-card::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--teal);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .service-card:hover {
     background: var(--teal-lt);
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card.featured {
     background: var(--deep);
 }

 .service-card.featured::before {
     background: var(--teal-lt);
 }

 .service-num {
     font-family: "Cormorant Garamond", serif;
     font-size: 4rem;
     font-weight: 700;
     color: rgba(44, 104, 123, 0.12);
     line-height: 1;
     position: absolute;
     top: 20px;
     right: 24px;
 }

 .service-card.featured .service-num {
     color: rgba(140, 199, 196, 0.12);
 }

 .service-icon {
     width: 48px;
     height: 48px;
     margin-bottom: 28px;
 }

 .service-card h3 {
     font-family: "Cormorant Garamond", serif;
     font-size: 1.6rem;
     font-weight: 600;
     color: var(--deep3);
     margin-bottom: 14px;
     line-height: 1.2;
 }

 .service-card.featured h3 {
     color: var(--cream);
 }

 .service-card p {
     font-size: 0.88rem;
     color: var(--muted);
     line-height: 1.8;
 }

 .service-card.featured p {
     color: rgba(255, 246, 246, 0.55);
 }

 .service-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 28px;
     font-size: 0.75rem;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--deep);
     text-decoration: none;
     font-weight: 600;
     transition: gap 0.2s;
 }

 .service-card.featured .service-link {
     color: var(--teal);
 }

 .service-link:hover {
     gap: 14px;
 }

 .service-link::after {
     content: "→";
 }

 /* ─── EXPERIENCE / ALTERNATING ─── */
 .experience-sec {
     background: var(--deep3);
     padding: 120px 0;
 }

 .exp-header {
     padding: 0 8% 80px;
 }

 .exp-header .sec-tag {
     color: var(--teal-lt);
 }

 .exp-header .sec-title {
     color: var(--cream);
 }

 .exp-header .sec-sub {
     color: rgba(255, 246, 246, 0.5);
 }

 .exp-items {}

 .exp-item {
     display: grid;
     grid-template-columns: 1fr 1fr;
     min-height: 480px;
     border-top: 1px solid rgba(140, 199, 196, 0.1);
 }

 .exp-item:last-child {
     border-bottom: 1px solid rgba(140, 199, 196, 0.1);
 }

 .exp-img {
     overflow: hidden;
     position: relative;
 }

 .exp-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: brightness(0.65) saturate(0.7);
     transition: all 0.6s;
 }

 .exp-item:hover .exp-img img {
     filter: brightness(0.8) saturate(1);
     transform: scale(1.03);
 }

 .exp-content {
     padding: 60px 8%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: rgba(255, 255, 255, 0.02);
 }

 .exp-item.alt .exp-img {
     order: 2;
 }

 .exp-item.alt .exp-content {
     order: 1;
     background: rgba(140, 199, 196, 0.04);
 }

 .exp-tag {
     font-size: 0.7rem;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--teal);
     margin-bottom: 20px;
     font-weight: 600;
 }

 .exp-content h3 {
     font-family: "Cormorant Garamond", serif;
     font-size: 2.2rem;
     font-weight: 600;
     color: var(--cream);
     line-height: 1.15;
     margin-bottom: 18px;
 }

 .exp-content p {
     font-size: 0.93rem;
     color: rgba(255, 246, 246, 0.5);
     line-height: 1.9;
     margin-bottom: 32px;
 }

 .exp-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .exp-pill {
     border: 1px solid rgba(140, 199, 196, 0.25);
     border-radius: 1px;
     padding: 7px 18px;
     font-size: 0.75rem;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: rgba(255, 246, 246, 0.5);
     font-weight: 500;
 }

 /* ─── TESTIMONIALS ─── */
 .testimonials-sec {
     background: var(--cream);
 }

 .t-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 72px;
 }

 .t-card {
     background: var(--white);
     border: 1px solid var(--border);
     padding: 40px 36px;
     position: relative;
     transition:
         border-color 0.3s,
         transform 0.3s;
 }

 .t-card:hover {
     border-color: var(--teal);
     transform: translateY(-4px);
 }

 .t-quote {
     font-family: "Cormorant Garamond", serif;
     font-size: 4rem;
     line-height: 0.8;
     color: var(--teal-lt);
     margin-bottom: 16px;
     font-weight: 700;
 }

 .t-text {
     font-family: "Cormorant Garamond", serif;
     font-size: 1.2rem;
     font-style: italic;
     color: var(--deep3);
     line-height: 1.75;
     margin-bottom: 28px;
 }

 .t-divider {
     width: 32px;
     height: 1px;
     background: var(--teal);
     margin-bottom: 20px;
 }

 .t-author {
     font-size: 0.82rem;
     font-weight: 600;
     color: var(--deep);
     letter-spacing: 0.5px;
 }

 .t-role {
     font-size: 0.78rem;
     color: var(--muted);
     margin-top: 3px;
 }

 .t-stars {
     color: var(--teal);
     font-size: 0.8rem;
     margin-bottom: 20px;
     letter-spacing: 2px;
 }

 /* ─── BOOKING CTA ─── */
 .cta-sec {
     background: var(--deep);
     padding: 120px 8%;
     display: grid;
     grid-template-columns: 1fr auto;
     gap: 60px;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .cta-sec::before {
     content: "";
     position: absolute;
     right: -80px;
     top: -80px;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     border: 60px solid rgba(140, 199, 196, 0.08);
 }

 .cta-sec::after {
     content: "";
     position: absolute;
     left: 40%;
     bottom: -60px;
     width: 200px;
     height: 200px;
     border-radius: 50%;
     border: 40px solid rgba(140, 199, 196, 0.05);
 }

 .cta-sec .sec-tag {
     color: rgba(140, 199, 196, 0.6);
 }

 .cta-title {
     font-family: "Cormorant Garamond", serif;
     font-size: clamp(2.4rem, 4vw, 3.6rem);
     font-weight: 600;
     color: var(--cream);
     line-height: 1.1;
     margin-top: 14px;
 }

 .cta-title em {
     font-style: italic;
     color: var(--teal);
 }

 .cta-sub {
     font-size: 0.95rem;
     color: rgba(255, 246, 246, 0.45);
     margin-top: 16px;
     line-height: 1.8;
 }

 .cta-actions {
     display: flex;
     flex-direction: column;
     gap: 16px;
     align-items: flex-end;
     flex-shrink: 0;
     position: relative;
     z-index: 2;
 }

 .btn-teal {
     background: var(--teal);
     color: var(--deep3);
     padding: 16px 40px;
     border-radius: 2px;
     font-size: 0.82rem;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     text-decoration: none;
     white-space: nowrap;
     transition: background 0.25s;
     display: inline-block;
 }

 .btn-teal:hover {
     background: var(--teal-lt);
 }

 .cta-note {
     font-size: 0.72rem;
     color: rgba(255, 246, 246, 0.3);
     letter-spacing: 1px;
 }

 /* ─── FOOTER ─── */
 footer {
     background: var(--deep3);
     padding: 80px 8% 36px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 60px;
 }

 .footer-brand .nav-logo {
     font-size: 1.4rem;
 }

 .footer-brand p {
     font-size: 0.88rem;
     color: rgba(255, 246, 246, 0.35);
     line-height: 1.9;
     margin-top: 16px;
     max-width: 260px;
 }

 .footer-domain {
     display: inline-block;
     margin-top: 20px;
     font-size: 0.72rem;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--teal);
     border-bottom: 1px solid rgba(140, 199, 196, 0.3);
     padding-bottom: 2px;
 }

 .footer-col h5 {
     font-size: 0.7rem;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: rgba(255, 246, 246, 0.3);
     margin-bottom: 24px;
     font-weight: 600;
 }

 .footer-col a {
     display: block;
     font-size: 0.88rem;
     color: rgba(255, 246, 246, 0.5);
     text-decoration: none;
     margin-bottom: 12px;
     transition: color 0.2s;
 }

 .footer-col a:hover {
     color: var(--teal);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 246, 246, 0.06);
     padding-top: 28px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-bottom p {
     font-size: 0.78rem;
     color: rgba(255, 246, 246, 0.2);
 }

 .footer-bottom span {
     font-size: 0.78rem;
     color: rgba(140, 199, 196, 0.4);
 }

 /* ─── ANIMATIONS ─── */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-left>* {
     animation: fadeIn 1s ease both;
 }

 .hero-left>*:nth-child(1) {
     animation-delay: 0.2s;
 }

 .hero-left>*:nth-child(2) {
     animation-delay: 0.4s;
 }

 .hero-left>*:nth-child(3) {
     animation-delay: 0.6s;
 }

 .hero-left>*:nth-child(4) {
     animation-delay: 0.75s;
 }

 .hero-left>*:nth-child(5) {
     animation-delay: 0.9s;
 }

 /* ─── RESPONSIVE ─── */
 @media (max-width: 960px) {
     .hero {
         grid-template-columns: 1fr;
     }

     .hero-right {
         display: none;
     }

     .hero-left {
         padding: 140px 6% 80px;
     }

     .stats-strip {
         grid-template-columns: repeat(2, 1fr);
     }

     .about-grid,
     .services-intro {
         grid-template-columns: 1fr;
         gap: 48px;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .t-grid {
         grid-template-columns: 1fr;
     }

     .exp-item,
     .exp-item.alt {
         grid-template-columns: 1fr;
     }

     .exp-item .exp-img,
     .exp-item.alt .exp-img {
         order: 1;
         min-height: 260px;
     }

     .exp-item .exp-content,
     .exp-item.alt .exp-content {
         order: 2;
     }

     .cta-sec {
         grid-template-columns: 1fr;
     }

     .cta-actions {
         align-items: flex-start;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .nav-links {
         display: none;
     }
 }
 
 
 
 
 
 /* Popup Background */
      .popup-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.6);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 9999;
      }

      /* Popup Box */
      .popup-box {
          background: #121E44;
          padding: 25px;
          border-radius: 12px;
          width: 350px;
          color: #fff;
          position: relative;
          animation: fadeIn 0.5s ease-in-out;
      }

      /* Close Button */
      .close-btn {
          position: absolute;
          top: 10px;
          right: 15px;
          cursor: pointer;
          font-size: 20px;
      }

      /* Form Fields */
      .popup-box input,
      .popup-box select {
          width: 100%;
          padding: 10px;
          margin: 8px 0;
          border: none;
          border-radius: 6px;
      }

      /* Button */
      .popup-box button {
          width: 100%;
          padding: 12px;
          background: #E4BF50;
          color: #121E44;
          border: none;
          border-radius: 6px;
          font-weight: bold;
          cursor: pointer;
          margin-top: 10px;
      }

      .popup-box button:hover {
          opacity: 0.9;
      }
      
      
      
      .popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998; /* form popup se thoda kam ya zyada adjust kar sakte ho */
}

.popup1-content {
  position: relative;
  max-width: 400px;
}

.popup1-content img {
  width: 100%;
  border-radius: 10px;
}

.close-banner {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  font-weight: bold;
}