/* ==================== WHY SECTION ==================== */
.why-section{ padding:100px 0; background:#f7f7f7; }
.section-title{ font-size:48px; font-weight:700; line-height:1.2; margin-bottom:20px; text-align:left; }
.section-text{ color:#555; max-width:420px; }
.learn-btn{ border:1px solid #000; border-radius:30px; padding:10px 22px; display:inline-flex; align-items:center; gap:6px; text-decoration:none; color:#000; margin-top:20px; transition:background 0.3s ease, color 0.3s ease; }
.learn-btn:hover{ background:#000; color:#fff; }
.feature-card{ border-radius:30px; padding:40px; padding-bottom: 90px; min-height:300px; height:auto; position:relative; transition:transform 0.3s ease, box-shadow 0.3s ease; cursor:pointer; }
.feature-card:hover{ transform:translateY(-4px); box-shadow:0 8px 22px rgba(0,0,0,0.08); }
.feature-card:hover .arrow-btn{ background:#000; color:#fff; }
.feature-icon{ font-size:26px; margin-bottom:20px; }
.feature-icon i{ display:inline-block; transition:transform 0.3s ease; }
.feature-card:hover .feature-icon i{ transform:scale(1.15); }
.feature-title{ font-size:22px; font-weight:700; margin-bottom: 12px; }
.feature-desc{ font-size: 15px; color: rgba(0,0,0,0.7); line-height: 1.5; }

.card-purple{ background:#d7cde8; }
.card-green{ background:#cfe6db; }
.card-beige{ background:#ead8c9; }
.card-pink{ background:#e6d3df; }
.card-yellow{ background:#f3efc6; }
.arrow-btn{ position:absolute; bottom:15px; left:15px; width:40px; height:40px; border-radius:50%; border:1px solid #000; display:flex; align-items:center; justify-content:center; transition:background 0.3s, color 0.3s; }
.big-card{ border-radius:30px; padding:40px; padding-bottom: 90px; height:100%; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; transition:transform 0.3s ease, box-shadow 0.3s ease; cursor:pointer; }
.big-card:hover{ transform:translateY(-4px); box-shadow:0 10px 26px rgba(0,0,0,0.09); }
.big-card:hover .arrow-btn{ background:#000; color:#fff; }

.big-title{ font-size:28px; font-weight:700; max-width:260px; }
.big-card-bg{ position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; opacity:0.12; border-radius:30px; pointer-events:none; z-index:0; transition:opacity 0.4s ease, transform 0.4s ease; }
.big-card:hover .big-card-bg{ opacity:0.18; transform:scale(1.04); }
.big-card > *{ position:relative; z-index:1; }
.big-card .front-img{ width:200px; align-self:flex-end; transition:transform 0.3s ease; }
.big-card:hover .front-img{ transform:translateY(-5px); }
@media(max-width:992px){ 
  .section-title{ font-size:34px; } 
  .feature-card{ height:auto; min-height:220px; padding:28px; padding-bottom: 85px; } 
  .big-card{ min-height:280px; padding-bottom: 85px; } 
  .big-card .front-img{ width:140px; } 
  .why-section{ padding:60px 0; } 
}
@media(max-width:768px){ 
  .section-title{ font-size:28px; } 
  .section-text{ max-width:100%; font-size:15px; } 
  .feature-card{ height:auto; min-height:200px; padding:24px; border-radius:20px; padding-bottom: 70px; } 
  .feature-title{ font-size:18px; } 
  .feature-icon{ font-size:22px; margin-bottom:14px; } 
  .arrow-btn{ bottom:14px; left:16px; width:34px; height:34px; font-size:13px; } 
  .big-card{ min-height:240px; padding:24px; border-radius:20px; padding-bottom: 70px; } 
  .big-title{ font-size:22px; } 
  .big-card .front-img{ width:120px; } 
  .why-section{ padding:50px 0; } 
}
@media(max-width:576px){ 
  .section-title{ font-size:26px; line-height: 1.3; } 
  .feature-card{ padding:20px 20px 60px 20px; border-radius:20px; min-height: 140px; } 
  .feature-title{ font-size:16px; margin-bottom: 6px; } 
  .feature-desc{ font-size: 13px; line-height: 1.4; }
  .learn-btn{ font-size:14px; padding:9px 18px; } 
  .arrow-btn{ bottom:6px; left:6px; width:32px; height:32px; font-size:11px; } 
  .big-card{ padding:20px 20px 60px 20px; border-radius:20px; } 
  .big-card .front-img{ width:100px; } 
  .why-section{ padding:40px 0; } 
  .navbar-brand img { height: 50px !important; }
}

/* ==================== SHOWCASE SECTION ==================== */
.showcase-section{ padding:120px 0; background:#fff; }
.showcase-tag{ display:inline-block; background:#eef2ff; color:#243e63; font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; padding:8px 22px; border-radius:30px; margin-bottom:20px; }
.showcase-heading{ font-size:46px; font-weight:800; color:#0a0f1c; line-height:1.2; margin-bottom:18px; }
.showcase-text{ font-size:17px; color:#555; line-height:1.9; margin-bottom:32px; }
.showcase-item{ display:flex; align-items:flex-start; gap:18px; margin-bottom:26px; }
.showcase-icon{ width:56px; height:56px; border-radius:16px; background:#243e63; display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 8px 20px rgba(36,62,99,0.22); transition:transform 0.3s,box-shadow 0.3s; }
.showcase-icon:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(36,62,99,0.3); }
.showcase-icon i{ font-size:22px; color:#fff; }
.showcase-item-title{ font-size:17px; font-weight:700; color:#0a0f1c; margin-bottom:5px; }
.showcase-item-text{ font-size:15px; color:#666; line-height:1.7; }
.showcase-center-img{ width:100%; max-width:420px; display:block; margin:0 auto; filter:drop-shadow(0 30px 60px rgba(36,62,99,0.18)); transition:transform 0.5s ease; }
.showcase-center-img:hover{ transform:translateY(-12px); }
.showcase-stat{ text-align:center; padding:28px 20px; border-radius:20px; background:#f4f7ff; border:1px solid #e8eeff; transition:transform 0.3s,box-shadow 0.3s; }
.showcase-stat:hover{ transform:translateY(-4px); box-shadow:0 12px 30px rgba(36,62,99,0.1); }
.showcase-stat-num{ font-size:40px; font-weight:800; color:#243e63; line-height:1; }
.showcase-stat-label{ font-size:13px; color:#777; margin-top:6px; font-weight:500; }
.showcase-link{ display:inline-flex; align-items:center; gap:8px; color:#243e63; font-weight:700; font-size:16px; text-decoration:none; border-bottom:2px solid #243e63; padding-bottom:3px; transition:color 0.3s,border-color 0.3s; margin-top:10px; }
.showcase-link:hover{ color:#22c55e; border-color:#22c55e; }
@media(max-width:1199px){ .showcase-heading{ font-size:38px; } .showcase-center-img{ max-width:360px; } }
@media(max-width:991px){ .showcase-section{ padding:80px 0; } .showcase-heading{ font-size:32px; } .showcase-center-img{ max-width:300px; margin:50px auto; } .showcase-stat-num{ font-size:34px; } }
@media(max-width:767px){ .showcase-heading{ font-size:26px; } .showcase-text{ font-size:15px; } .showcase-item-title{ font-size:15px; } .showcase-item-text{ font-size:14px; } .showcase-stat-num{ font-size:28px; } .showcase-stat{ padding:20px 14px; } .showcase-icon{ width:48px; height:48px; } .showcase-icon i{ font-size:20px; } }

/* ==================== FAQ SECTION ==================== */
.faq-section{ padding:100px 0; background:#f7f7f7; }
.faq-title{ font-size:48px; font-weight:700; line-height:1.2; text-align:center; margin-bottom:16px; font-family:system-ui; color:#0a0f1c; }
.faq-subtitle{ text-align:center; color:#555; font-size:17px; max-width:520px; margin:0 auto 50px; line-height:1.7; }
.accordion-item{ border:none; margin-bottom:15px; border-radius:6px; overflow:hidden; }
.accordion-button{ font-weight:600; padding:18px 20px; background:#fff; box-shadow:none; }
.accordion-button:not(.collapsed){ background:#243e63; color:#fff; }
.accordion-button:focus{ box-shadow:none; }
.accordion-body{ background:#fff; color:#444; line-height:1.7; padding:20px; }
.accordion-button::after{ filter:brightness(0); }
.accordion-button:not(.collapsed)::after{ filter:brightness(100); }
@media(max-width:768px){ .faq-title{ font-size:28px; } .faq-subtitle{ font-size:15px; } }

/* ==================== PARTNERS STRIP ==================== */
.partners-section{ padding:70px 0; background:#fff; border-top:1px solid #f0f0f0; border-bottom:1px solid #f0f0f0; }
.partners-label{ text-align:center; font-size:14px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:#999; margin-bottom:40px; }
.partners-track-wrap{ overflow:hidden; position:relative; }
.partners-track-wrap::before,.partners-track-wrap::after{ content:''; position:absolute; top:0; width:120px; height:100%; z-index:2; pointer-events:none; }
.partners-track-wrap::before{ left:0; background:linear-gradient(to right,#fff,transparent); }
.partners-track-wrap::after{ right:0; background:linear-gradient(to left,#fff,transparent); }
.partners-track{ display:flex; align-items:center; gap:60px; width:max-content; animation:partnerScroll 28s linear infinite; }
.partners-track:hover{ animation-play-state:paused; }
@keyframes partnerScroll{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }
.partner-logo{ display:flex; align-items:center; gap:10px; white-space:nowrap; opacity:0.45; transition:opacity 0.3s; cursor:default; filter:grayscale(1); }
.partner-logo:hover{ opacity:1; filter:grayscale(0); }
.partner-logo i{ font-size:28px; color:#243e63; }
.partner-logo span{ font-size:18px; font-weight:800; color:#243e63; letter-spacing:-0.5px; }
@media(max-width:576px){ .partners-label{ font-size:12px; } .partner-logo span{ font-size:15px; } .partner-logo i{ font-size:22px; } }

/* ==================== STATS SECTION ==================== */
.stats-section{ background:#243e63; padding:120px 0; color:white; }
.stats-title{ font-size:52px; font-weight:700; line-height:1.2; margin-bottom:25px; }
.stats-text{ color:#cbd5e1; max-width:520px; line-height:1.7; margin-bottom:30px; }
.stats-list{ list-style:none; padding:0; }
.stats-list li{ margin-bottom:14px; display:flex; align-items:center; gap:12px; font-size:17px; }
.check{ width:28px; height:28px; border-radius:50%; background:#1dd1a1; display:flex; align-items:center; justify-content:center; color:white; font-size:14px; flex-shrink:0; }
.map-img{ max-width:520px; width:100%; opacity:0.9; }
@media(max-width:992px){ .stats-title{ font-size:36px; } .map-img{ margin-top:40px; } }
@media(max-width:576px){ 
    .stats-title{ font-size:28px; margin-bottom: 15px; } 
    .stats-text{ font-size: 15px; }
    .stats-section{ padding: 60px 0; }
    .showcase-stat-num { font-size: 24px; }
    .showcase-heading { font-size: 24px; }
}

/* ==================== HOW IT WORKS ==================== */
.how-section{ background:#fff; padding:120px 0; }
.how-section .section-title{ font-size:42px; font-weight:700; text-align:center; margin-bottom:15px; }
.how-section .section-sub{ text-align:center; color:#6c757d; font-size:18px; margin-bottom:90px; max-width:650px; margin-left:auto; margin-right:auto; }
.step-box{ text-align:center; padding:20px; }
.step-img{ width:140px; margin:auto; display:block; margin-bottom:30px; }
.step-title{ font-size:22px; font-weight:600; margin-bottom:10px; }
.step-text{ font-size:16px; color:#6c757d; max-width:260px; margin:auto; }
@media(max-width:768px){ .how-section .section-title{ font-size:32px; } .step-box{ margin-bottom:50px; } }

/* ==================== WHY CHOOSE US (new style) ==================== */
.why-new-section{ padding:110px 0 130px; background:#f7f8fa; }
.why-left-sticky{ position:sticky; top:80px; align-self:flex-start; padding-right:60px; }
.why-eyebrow{ font-size:13px; font-weight:700; letter-spacing:4px; text-transform:uppercase; color:#22c55e; margin-bottom:20px; display:block; }
.why-headline{ font-family:'Playfair Display',serif; font-size:58px; font-weight:800; line-height:1.1; color:#243e63; margin-bottom:26px; }
.why-headline em{ color:#22c55e; }
.why-sub{ font-size:18px; color:#6b7280; line-height:1.8; max-width:400px; margin-bottom:44px; border-left:4px solid #22c55e; padding-left:20px; }
.why-cta{ display:inline-flex; align-items:center; gap:10px; background:#243e63; color:#fff; font-size:15px; font-weight:600; padding:15px 32px; border-radius:50px; text-decoration:none; transition:background 0.3s,transform 0.3s; }
.why-cta:hover{ background:#22c55e; color:#fff; transform:translateX(5px); }
.why-right{ padding-left:20px; }
.why-block{ min-height:45vh; display:flex; flex-direction:column; justify-content:center; padding:64px 0; border-bottom:1px solid #e5e7eb; }
.why-block:last-child{ border-bottom:none; }
.why-icon{ margin-bottom:26px; transition:transform 0.3s; }
.why-block:hover .why-icon{ transform:scale(1.1); }
.why-label{ font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#6b7280; margin-bottom:14px; }
.why-title{ font-family:'Playfair Display',serif; font-size:36px; font-weight:700; color:#243e63; line-height:1.2; margin-bottom:18px; position:relative; display:inline-block; }
.why-title::after{ content:''; position:absolute; bottom:-5px; left:0; width:0; height:3px; background:#22c55e; border-radius:2px; transition:width 0.45s ease; }
.why-block.is-active .why-title::after{ width:100%; }
.why-block.is-active .why-label{ color:#22c55e; }
.why-divider{ width:40px; height:3px; background:#22c55e; border-radius:2px; margin-bottom:18px; }
.why-desc{ font-size:17px; color:#6b7280; line-height:1.85; max-width:520px; margin-bottom:26px; }
.why-tags{ display:flex; gap:10px; flex-wrap:wrap; }
.why-tag{ font-size:13px; font-weight:600; color:#6b7280; background:#fff; border:1px solid #e5e7eb; padding:6px 16px; border-radius:20px; transition:border-color 0.3s,color 0.3s; }
.why-block.is-active .why-tag{ border-color:#bbf7d0; color:#243e63; }
@media(max-width:991px){ .why-left-sticky{ position:relative; top:0; padding-right:0; margin-bottom:50px; } .why-headline{ font-size:40px; } .why-block{ min-height:auto; padding:44px 0; } .why-title{ font-size:28px; } .why-right{ padding-left:0; } }
@media(max-width:576px){ .why-new-section{ padding:70px 0 90px; } .why-headline{ font-size:32px; } .why-title{ font-size:24px; } }

/* ==================== CLIENTS LOGO STRIP ==================== */
.clients-section{ padding:80px 0; background:#fff; border-top:1px solid #f0f0f0; }
.clients-label{ text-align:center; font-size:14px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:#999; margin-bottom:40px; }
.clients-track-wrap{ overflow:hidden; position:relative; }
.clients-track{ display:flex; align-items:center; gap:50px; width:max-content; animation:clientScroll 28s linear infinite; }
.clients-track:hover{ animation-play-state:paused; }
@keyframes clientScroll{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }
.client-logo{ display:flex; align-items:center; gap:10px; opacity:0.45; filter:grayscale(1); transition:opacity 0.3s,filter 0.3s; cursor:default; }
.client-logo:hover{ opacity:1; filter:grayscale(0); }
.client-logo i{ font-size:26px; color:#243e63; }
.client-logo span{ font-size:17px; font-weight:800; color:#243e63; }

/* ==================== INDEX.HTML — hero animation ==================== */
.hs-wrap{ animation:bgSlideUp 0.8s ease forwards; }
@keyframes bgSlideUp{ 0%{ transform:translateY(60px); opacity:0; } 100%{ transform:translateY(0); opacity:1; } }
.why-col-left{ text-align:left; }

/* ==================== SERVICES PAGE ==================== */
body{ background:#fff; font-family:'Segoe UI',sans-serif; }
@media(max-width:576px) { body { padding-top: 100px !important; } }
.services-section{ padding:120px 0 80px; }
.section-sub{ color:#666; font-size:17px; margin-bottom:60px; text-align:center; }
.service-card{ background:#fff; border-radius:20px; padding:40px 30px; height:100%; border:1px solid #eee; cursor:pointer; transition:transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
.service-card:hover{ transform:scale(1.02); box-shadow:0 20px 50px rgba(36,62,99,0.15); border-color:#243e63; background:#243e63; }
.service-card:hover .service-title{ color:#fff; }
.service-card:hover .service-text{ color:rgba(255,255,255,0.85); }
.service-card:hover .service-icon{ background:rgba(255,255,255,0.2); color:#fff; }
.service-icon{ width:60px; height:60px; background:#eef2ff; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:26px; color:#243e63; margin-bottom:22px; }
.service-title{ font-size:20px; font-weight:700; margin-bottom:12px; color:#111; }
.service-text{ font-size:15px; color:#666; line-height:1.7; }
@media(max-width:768px){ .services-section{ padding:100px 0 60px; } }

/* ==================== CONTACT PAGE ENHANCEMENTS V2 ==================== */
:root {
    --navy-gradient: linear-gradient(135deg, #1c2954 0%, #243e63 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

.bg-navy { background: var(--navy-gradient) !important; }
.text-navy { color: #1c2954 !important; }
.text-gradient { 
    background: linear-gradient(45deg, #1c2954, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-navy { background: var(--navy-gradient); color: #fff; border: none; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-navy:hover { background-color: #243e63; color: #fff; transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 20px rgba(28, 41, 84, 0.2); }

.contact-hero { 
    background: radial-gradient(circle at top right, #f8faff, #eef2ff);
    position: relative;
    overflow: hidden;
}
.contact-hero::after {
    content:''; position:absolute; top:-100px; right:-50px; width:400px; height:400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05), transparent);
    border-radius: 50%; z-index: 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: 0.5s;
}

.premium-card {
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
}
.premium-card:hover { 
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(28, 41, 84, 0.12) !important;
    border-color: rgba(34, 197, 94, 0.2);
}

.icon-box-modern {
    width: 70px; height: 70px;
    border-radius: 20px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    transition: 0.4s;
}
.premium-card:hover .icon-box-modern {
    transform: rotateY(180deg);
    background: #1c2954;
    color: #fff !important;
}

.location-pill {
    transition: 0.4s;
    border: 1px solid transparent;
}
.location-pill:hover {
    background: #fff !important;
    border-color: #1c2954;
    transform: scale(1.02);
}

.float-anim {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.form-floating-label .form-control {
    border: 1px solid #eef2ff;
    background: #fcfdfe;
    padding: 18px 20px;
    border-radius: 16px;
}
.form-floating-label .form-control:focus {
    background: #fff;
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.step-bubble {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--navy-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(28, 41, 84, 0.3);
}

.final-cta { 
    min-height: 500px;
    display: flex; align-items: center;
    background: linear-gradient(rgba(28, 41, 84, 0.9), rgba(28, 41, 84, 0.9)), url('images/accounting-bg.jpg') center/cover no-repeat;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

@media(max-width:992px){ 
    .final-cta { border-radius: 0; margin-top: 0; }
}

/* ==================== GALLERY PAGE ==================== */
.hero{ padding:120px 40px 30px; text-align:center; position:relative; overflow:hidden; }
.hero-title{ font-size:clamp(60px,10vw,140px); font-weight:900; line-height:0.92; letter-spacing:-0.03em; color:#0a0a0a; text-transform:uppercase; opacity:0; transform:translateY(80px); }
.hero-sub{ font-size:clamp(12px,1.5vw,16px); letter-spacing:0.25em; text-transform:uppercase; color:#888; margin-top:20px; opacity:0; }
.hero-desc{ max-width:560px; margin:16px auto 0; font-size:15px; line-height:1.8; color:#888; opacity:0; }
.gallery-section{ height:auto; padding: 60px 0; position:relative; }
.gallery-track{ display:flex; flex-wrap:nowrap; align-items:center; gap:40px; padding:0 100px; height:100%; width:max-content; will-change:transform; }
.gallery-item{ flex-shrink:0; position:relative; overflow:hidden; cursor:pointer; }
.gallery-item a{ display:block; overflow:hidden; }
.gallery-item img{ display:block; object-fit:cover; transition:transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); opacity:0; transform:translateY(60px); }
.gallery-item:hover img{ transform:scale(1.04); }
.size-landscape img{ width:620px; height:400px; }
.size-portrait img{ width:320px; height:520px; }
.size-square img{ width:420px; height:420px; }
.size-wide img{ width:760px; height:460px; }
.size-small img{ width:280px; height:360px; }
.offset-up{ margin-top:-80px; }
.offset-down{ margin-top:80px; }
.offset-mid{ margin-top:30px; }
.img-caption{ margin-top:12px; font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:#888; }

/* --- ROYAL PRELOADER --- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #1c2954; /* Royal Navy */
    z-index: 9999;
    display: flex;
    align-items: center; justify-content: center;
}
.preloader-logo { width: 100px; opacity: 0; transform: scale(0.5); }
@media(max-width:1024px){ .gallery-section{ height:auto !important; overflow:visible !important; padding:20px 0 100px; } .gallery-track{ display:flex; flex-wrap:wrap; justify-content:center; padding:0 20px; height:auto !important; gap:20px; transform:none !important; } .size-landscape img,.size-portrait img,.size-square img,.size-wide img,.size-small img{ width:90vw; height:260px; } .offset-up,.offset-down,.offset-mid{ margin-top:0; } }
@media(max-width:991px){ .gallery-section{ height:auto; overflow:visible; padding:40px 0 100px; } .gallery-track{ flex-wrap:wrap; justify-content:center; padding:0 20px; height:auto; gap:20px; } .size-landscape img,.size-portrait img,.size-square img,.size-wide img,.size-small img{ width:45vw; height:300px; } .offset-up,.offset-down,.offset-mid{ margin-top:0; } }
@media(max-width:576px){ 
  .hero{ padding:100px 20px 40px; } 
  .gallery-track{ flex-direction:column; align-items:center; gap: 30px !important; } 
  .size-landscape img, .size-portrait img, .size-square img, .size-wide img, .size-small img{ 
    width:94vw !important; 
    height:auto !important; 
    min-height: 280px;
    max-height: 550px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
  } 
}

/* ==================== ABOUTUS PAGE ==================== */
.legacy-section {
    position: relative;
    height: 300vh; /* Track length for pinning */
    background: transparent;
    overflow: visible;
}
.legacy-sticky-content {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.legacy-title{ font-size:48px; font-weight:800; text-align:center; color:#0a0f1c; margin-bottom:50px; font-family:system-ui; }
.legacy-title span{ color:#243e63; }
.legacy-track{ position:relative; padding:0 20px 80px; margin-top: 50px; }
.legacy-path-wrap{ position:absolute; bottom:0; left:0; right:0; height:60px; pointer-events:none; }
.legacy-path-wrap svg{ width:100%; height:100%; }
.legacy-milestones{ display:flex; justify-content:space-around; align-items:flex-start; position:relative; gap:20px; }
.lm-item{ flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding-bottom:56px; position:relative; cursor:default; }
.lm-connector{ width:2px; height:36px; background:#243e63; opacity:0.3; margin-bottom:0; }
.lm-dot{ width:14px; height:14px; border-radius:50%; background:#243e63; box-shadow:0 0 0 4px rgba(36,62,99,0.2); margin-bottom:0; position:relative; z-index:2; }
.lm-icon{ width:56px; height:56px; border-radius:16px; background:#243e63; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; box-shadow:0 8px 24px rgba(36,62,99,0.25); transition:transform 0.3s,box-shadow 0.3s; }
.lm-icon i{ font-size:22px; color:#fff; }
.lm-year{ font-size:22px; font-weight:800; color:#243e63; margin-bottom:6px; font-family:system-ui; }
.lm-title{ font-size:16px; font-weight:700; color:#0a0f1c; margin-bottom:8px; }
.lm-desc{ font-size:13.5px; color:#666; line-height:1.6; max-width:180px; }
.lm-item:hover .lm-icon{ transform:translateY(-6px); box-shadow:0 16px 36px rgba(36,62,99,0.35); }
.lm-item:hover .lm-year{ color:#22c55e; }
.modal-transparent{ background:none; border:none; }
@media(max-width: 991px) {
    .legacy-section {
        height: auto !important; 
        min-height: 3200px; /* Reduced to fix large bottom gap */
        padding: 0 !important;
        margin: 0 !important;
        background: transparent;
    }
    .legacy-sticky-content {
        position: relative;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center horizontally/vertically */
        align-items: center;
        padding: 40px 15px 40px; 
        margin-bottom: 60px !important; /* Reduced to fix large bottom gap */
        overflow: visible !important; /* Prevent cutting off bottom content */
        background: transparent;
    }
    .legacy-title { 
        font-size: 28px !important; 
        margin-bottom: 25px !important; 
        text-align: center;
        width: 100%;
        color: #243e63;
    }
    
    .legacy-track {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        max-width: 500px;
        height: 55vh; /* Reduced height to keep 2026 higher up */
        gap: 15px;
        position: relative;
        margin: 60px auto 0; /* Increased margin for more gap */
    }

    /* Left Side: Vertical Path */
    .legacy-mobile-path {
        width: 50px;
        position: relative;
        height: 100%;
        flex-shrink: 0;
    }
    .mobile-line {
        position: absolute;
        left: 50%;
        top: 0px; /* Line starts at the first item, creating natural gap from title */
        bottom: -60px; /* Extended further to reach through 2026 description */
        width: 2px;
        background: rgba(36, 62, 99, 0.22); /* Slightly more visible */
        transform: translateX(-50%);
    }
    #mobileLegacyCoin {
        width: 44px;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
        z-index: 10;
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    }

    /* Right Side: Milestones List */
    .legacy-milestones {
        flex: 1;
        height: 100%;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 0;
        align-items: center !important; /* Center the column contents */
    }
    .lm-item {
        transition: all 0.4s ease-out;
        text-align: center !important; 
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    .lm-icon {
        width: 42px !important;
        height: 42px !important;
        margin: 0 auto 8px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .lm-year { font-size: 16px !important; margin-bottom: 2px !important; font-weight: 800; }
    .lm-title { font-size: 15px !important; margin-bottom: 4px !important; font-weight: 700; color: #111; text-align: center !important; }
    .lm-desc { font-size: 12.5px !important; line-height: 1.5 !important; color: #555; text-align: center !important; }

    .legacy-path-wrap { display: none; }
    .lm-connector, .lm-dot { display: none !important; }
}
@media(max-width:575px){
    .legacy-track { max-width: 100%; gap: 10px; height: 50vh; }
    .legacy-mobile-path { width: 40px; }
    #mobileLegacyCoin { width: 34px; }
    .lm-year { font-size: 13px !important; }
    .lm-title { font-size: 13px !important; }
    .lm-desc { font-size: 10.5px !important; line-height: 1.4 !important; }
    .lm-icon { width: 36px !important; height: 36px !important; }
}

/* ==================== TERMS & CONDITIONS PAGE ==================== */
.tc-section{ padding:80px 0 100px; background:#fff; }
.tc-header{ text-align:center; margin-bottom:60px; padding:40px; background:#f4f7ff; border-radius:20px; border-left:5px solid #243e63; }
.tc-company{ font-size:32px; font-weight:800; color:#243e63; margin-bottom:10px; }
.tc-address{ font-size:15px; color:#555; margin:0; }
.tc-address i{ color:#22c55e; margin-right:6px; }
.tc-block{ display:flex; gap:24px; align-items:flex-start; padding:32px 0; border-bottom:1px solid #f0f0f0; }
.tc-block:last-child{ border-bottom:none; }
.tc-num{ font-size:36px; font-weight:800; color:#e8eeff; line-height:1; flex-shrink:0; width:56px; text-align:center; }
.tc-title{ font-size:19px; font-weight:700; color:#243e63; margin-bottom:10px; }
.tc-text{ font-size:15px; color:#555; line-height:1.8; margin:0; }
@media(max-width:576px){ .tc-block{ flex-direction:column; gap:10px; } .tc-num{ font-size:24px; width:auto; } .tc-company{ font-size:24px; } }



/* home section */
/* SECTION */
/* SECTION */

.ft-block{
padding:140px 0;
}

/* TITLE */

.ft-heading{
font-size:48px;
font-weight:700;
line-height:1.2;
margin-bottom:25px;
color:#111;
}

.ft-text{
color:#6c757d;
max-width:520px;
margin-bottom:50px;
}

/* FEATURE LIST */

.ft-list{
position:relative;
padding-left:45px;
}

.ft-list::before{
content:"";
position:absolute;
left:16px;
top:10px;
bottom:10px;
width:2px;
background:#e5f7ef;
}

/* ITEM */

.ft-item{
position:relative;
margin-bottom:35px;
}

/* ICON */

.ft-icon{
position:absolute;
left:-45px;
top:2px;
width:36px;
height:36px;
background:#21c77a;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
}

/* TEXT */

.ft-title{
font-size:18px;
font-weight:600;
margin-bottom:6px;
}

.ft-desc{
font-size:14px;
color:#6c757d;
max-width:440px;
}

/* IMAGE */

.ft-img{
width:100%;
height:520px;
object-fit:cover;
border-radius:22px;
}

/* FLOAT CARD */

.ft-card{
position:absolute;
bottom:30px;
left:-50px;
background:#fff;
padding:18px 22px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
display:flex;
align-items:center;
max-width:280px;
}

.ft-card-icon{
width:42px;
height:42px;
background:#e6f7ee;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-right:12px;
color:#21c77a;
font-size:18px;
}

.ft-card-title{
font-weight:600;
font-size:16px;
}

.ft-card-text{
font-size:13px;
color:#6c757d;
}

/* RESPONSIVE */

@media(max-width:991px){

.ft-heading{
font-size:34px;
}

.ft-img{
height:auto;
}

.ft-card{
left:10px;
bottom:-20px;
}

}

/************/


/*loop*/
/* Section */
.feature-scroll{
background:#243e63;
padding:10px 0; /* slightly increased height */
overflow:hidden;
}

/* Scroll container */
.scroll-track{
display:flex;
white-space:nowrap;
animation:scroll 22s linear infinite;
}

/* Text item */
.item{
font-size:28px; /* slightly bigger */
font-weight:600;
color:#ffffff;
margin-right:60px;
display:flex;
align-items:center;
gap:20px;
}

/* STAR */
.star{
font-size:50px; /* slightly bigger */
color:#4be7c5;
display:flex;
align-items:center;
justify-content:center;
}

/* Animation */
@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* Responsive */
@media(max-width:768px){

.item{
font-size:20px;
margin-right:35px;
gap:12px;
}

.star{
font-size:32px;
}

}
/*********/

/* CTA SECTION */
.cta-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.cta-card {
  background: #243e63;
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  box-shadow: 12px 12px 0px #1ad079;
}

.cta-card h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.cta-card p {
  margin-top: 18px;
  color: #cfe3df;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.cta-btn {
  margin-top: 30px;
  background: #1ad079;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

@media(max-width:768px) {
  .cta-card {
    padding: 60px 25px;
  }
  .cta-card h2 {
    font-size: 30px;
  }
}

/* ==================== TOP NEWS TICKER ==================== */
.news-ticker-bar {
    background: #1c2954 !important; /* Royal Navy */
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Above Navbar */
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

@media(max-width:576px) {
    .news-ticker-bar { height: 34px; font-size: 12px; }
    .news-item { padding-right: 40px; }
    .navbar { top: 34px !important; }
}

.news-ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerLoop 30s linear infinite;
}

.news-item {
    display: flex;
    align-items: center;
    padding-right: 80px; /* Gap between items */
}

.news-item i {
    margin-right: 8px;
    font-size: 16px;
    color: #ffffff; /* White icon color */
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.news-ticker-bar:hover .news-ticker-content {
    animation-play-state: paused;
}

/* Adjust navbar top to sit below the news ticker */
.navbar {
    top: 40px !important;
}

@media(max-width:576px) {
    .navbar { top: 34px !important; }
}

/* ==================== TESTIMONIAL SCROLL SECTION ==================== */
.testimonial-scroll-section{
    padding:80px 0;
    text-align:center;
    background:#fff;
    overflow: hidden;
}

/* HEADINGS */
.ts-title{
    font-size:42px;
    font-weight:800;
    color:#111b2b;
    margin-bottom:15px;
    line-height:1.2;
}

.ts-sub{
    font-size:16px;
    color:#666;
    max-width:600px;
    margin:0 auto 60px;
    line-height:1.6;
}

/* SCROLL TRACK */
.ts-track-wrap{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

/* Fading edges effect removed as per user request */

.ts-track{
    display:flex;
    align-items:center;
    gap:25px;
    width:max-content;
    animation: tsScroll 40s linear infinite;
}

.ts-track:hover{
    animation-play-state:paused;
}

@keyframes tsScroll{
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

/* CARD */
.ts-card{
    position: relative;
    background:#e0ede5; /* Default fallback */
    border-radius:20px;
    padding:35px 30px;
    width:380px;
    text-align:left;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:220px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Glowing Rotating Border Animation */
.ts-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--glow-color, rgba(28, 41, 84, 0.8)),
        transparent 40%
    );
    animation: rotateGlow 4s linear infinite;
    z-index: -2;
    pointer-events: none;
}

.ts-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: inherit;
    border-radius: 17px;
    z-index: -1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Ensure content stays above the animation */
.ts-card > * {
    position: relative;
    z-index: 2;
}

/* Card Colors - Dynamic Glow Variables */
.bg-purple{ background:#e5e0f0; --glow-color: #6b4fa3; }
.bg-green{ background:#d1eee1; --glow-color: #2e7d32; }
.bg-pink{ background:#eed1e5; --glow-color: #c2185b; }
.bg-beige{ background:#eadbc8; --glow-color: #795548; }
.bg-yellow{ background:#f0e5b8; --glow-color: #fbc02d; }
.bg-blue{ background:#d1e2ee; --glow-color: #1976d2; }

@media(max-width:576px) {
    .ts-title { font-size: 26px; }
    .ts-card { width: 280px; padding: 25px 20px; min-height: 180px; margin-right: 15px; }
    .ts-quote { font-size: 13.5px; margin-bottom: 15px; }
    .ts-name-tag { font-size: 13px; }
    .ts-track { gap: 15px; }
}

.ts-quote{
    font-size:15px;
    color:#000;
    font-weight:600;
    line-height:1.7;
    margin-bottom:25px;
}

/* USER INFO */
.ts-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.ts-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    object-fit:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    font-size:20px; /* Slightly larger for single letter */
    flex-shrink:0;
}
.av-purple{ background:#9370db; }
.av-green{ background:#3cb371; }
.av-pink{ background:#e8509b; }
.av-beige{ background:#dcb18c; }
.av-blue{ background:#5da2d5; }

/* Name Tag inside card */
.ts-name-tag{
    font-size:14px;
    font-weight:700;
    display:inline-block;
    color:#000;
    margin-left: 5px;
}

@media(max-width:768px){
    .ts-title{ font-size:32px; }
    .ts-card{ width:300px; padding:25px 20px; min-height:200px; }
    .ts-quote{ font-size:14px; }
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.whatsapp-float:hover {
    width: 180px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px);
    color: white;
}

.whatsapp-float i {
    transition: all 0.3s ease;
}

.whatsapp-float .float-text {
    font-size: 16px;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    display: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .float-text {
    opacity: 1;
    width: auto;
    display: inline-block;
}

/* Pulsing effect to attract attention */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .whatsapp-float:hover {
        width: 55px; /* Keep it circular on mobile */
        transform: scale(1.1);
    }
    .whatsapp-float .float-text {
        display: none !important;
    }
}/* GLOBAL KING STYLES */
.king-r { position: relative; font-family: 'Pinyon Script', cursive; font-weight: 900; font-size: 1.8em; background: linear-gradient(135deg, #ffd700 0%, #daa520 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; padding-top: 10px; }
.king-r::before { content: url('https://img.icons8.com/color/48/crown.png'); position: absolute; top: -38px; left: 50%; transform: translateX(-50%) scale(0.8); animation: crownFloat 2s infinite ease-in-out; }
@keyframes crownFloat { 0%, 100% { transform: translateX(-50%) scale(0.8) translateY(0); } 50% { transform: translateX(-50%) scale(0.8) translateY(-10px); } }
.premium-footer { background: #1c2954; color: #fff; padding: 100px 0 40px; position: relative; overflow: hidden; border-radius: 60px 60px 0 0; margin-top: -60px; z-index: 10; }

@media(max-width:768px) {
    .premium-footer { border-radius: 40px 40px 0 0; padding: 80px 0 30px; margin-top: -40px; }
}

@media(max-width:576px) {
    .premium-footer { border-radius: 30px 30px 0 0; padding: 60px 0 20px; margin-top: -30px; }
    .footer-logo { font-size: 2rem; }
    .footer-heading { font-size: 1.15rem; margin-bottom: 1.5rem; }
    .contact-info-item { margin-bottom: 1.2rem; }
    .social-strip { margin-top: 1.5rem; }
}
.footer-logo { font-family: 'Crimson Text', serif; font-size: 2.8rem; font-weight: 700; color: #fff; text-decoration: none; display: block; position: relative; overflow: visible !important; }
.footer-king-r { font-family: 'Great Vibes', cursive; font-size: 8.5rem; background: linear-gradient(135deg, #ffd700 0%, #daa520 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1.1; position: relative; display: inline-block; vertical-align: middle; padding: 10px 5px; overflow: visible !important; }
.footer-king-r::before { content: url('https://img.icons8.com/color/96/crown.png'); position: absolute; top: -65px; left: 50%; transform: translateX(-50%) scale(1.1); animation: footerCrownFloat 2s ease-in-out infinite; }
@keyframes footerCrownFloat { 0%, 100% { transform: translateX(-50%) scale(1.1) translateY(0); } 50% { transform: translateX(-50%) scale(1.1) translateY(-15px); } }
.footer-heading { font-size: 1.3rem; font-weight: 700; margin-bottom: 2.5rem; position: relative; display: inline-block; text-transform: uppercase; letter-spacing: 1px; }
.footer-heading::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: #22c55e; border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 1.2rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; display: inline-block; font-size: 1.05rem; }
.footer-links a:hover { color: #fff; transform: translateX(10px); }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.06); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #22c55e; transition: 0.4s; }
.contact-info-item:hover .contact-icon { background: #22c55e; color: #fff; transform: translateY(-5px) rotate(15deg); }
.contact-text h6 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #22c55e; margin-bottom: 5px; font-weight: 800; }
.social-strip { display: flex; gap: 15px; margin-top: 2rem; }
.social-circle { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; text-decoration: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; z-index: 1; }
.social-circle::before { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 100%; background: #22c55e; transition: 0.4s; z-index: -1; }
.social-circle:hover { border-color: #22c55e; transform: translateY(-8px); }
.social-circle:hover::before { top: 0; }
.footer-newsletter { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 40px; border-radius: 35px; backdrop-filter: blur(15px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 35px 0; margin-top: 70px; font-size: 0.95rem; color: rgba(255,255,255,0.6); background: transparent !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 15px !important; }
.btn-premium { background: #22c55e; color: #fff; padding: 16px 36px; border-radius: 100px; font-weight: 700; border: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; display: inline-block; box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); animation: premiumPulse 2s infinite ease-in-out; }
.btn-premium:hover { background: #fff; color: #000 !important; transform: scale(1.08) translateY(-3px); box-shadow: 0 15px 45px rgba(34, 197, 94, 0.45); border: 1px solid #000; }
@keyframes premiumPulse { 0%, 100% { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); } 50% { box-shadow: 0 10px 60px rgba(34, 197, 94, 0.5); transform: scale(1.02); } }
/* .reveal-footer-item: opacity managed by GSAP — no CSS default needed */
.reveal-footer-item { opacity: 1; }



/* --- KING 'R' STYLE --- */
    .king-r { 
        position: relative; 
        font-family: 'Pinyon Script', cursive;
        font-weight: 900;
        font-size: 1.8em;
        background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        padding-top: 10px;
    }
    .king-r::before {
        content: url("https://img.icons8.com/color/48/crown.png");
        position: absolute;
        top: -38px;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        animation: crownFloat 2s infinite ease-in-out;
        pointer-events: none;
    }
    @keyframes crownFloat {
        0%, 100% { transform: translateX(-50%) scale(0.8) translateY(0); }
        50% { transform: translateX(-50%) scale(0.8) translateY(-10px); }
    }


/* --- ROYAL PREMIUM CTA BLOCK --- */
.royal-cta-box {
    background: #ead8c9;
    max-width: 950px;
    margin: 80px auto;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.royal-cta-box .sparkle-icon {
    font-size: 2.5rem;
    color: #000; /* Black Color - Fixed */
    position: relative;
    display: block;
    text-align: left;
    margin-bottom: 25px; /* Added gap */
    opacity: 1;
}

@keyframes blingBlink {
    0%, 15%, 30%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    5%, 20% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

.royal-cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #050a18;
    margin-bottom: 20px;
    line-height: 1.1;
}

.royal-cta-box p {
    font-size: 1.2rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.btn-royal-black {
    background: #001f3f; /* Deep navy/black */
    color: #fff;
    padding: 12px 35px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid #001f3f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-royal-black:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    background: #000;
    color: #fff;
}

@media (max-width: 992px) {
    .royal-cta-box { margin: 60px 20px; padding: 50px 30px; }
    .royal-cta-box h2 { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    .royal-cta-box { border-radius: 30px; margin: 40px 10px; padding: 40px 20px; }
    .royal-cta-box h2 { font-size: 1.8rem; }
    .royal-cta-box p { font-size: 1.05rem; }
    .btn-royal-black { width: auto; min-width: 180px; justify-content: center; padding: 10px 20px; font-size: 0.85rem; }
    .royal-cta-box .sparkle-icon { font-size: 1.6rem; text-align: left; margin-bottom: 20px; opacity: 1; position: relative; top: auto; left: auto; }
}
