﻿
/* dk.css — Dhan Kalyan Unified Stylesheet v1.0 */

/* ═══════════════════════════════════════════════
   BRAND COLOURS — change only these two lines
   to retheme the entire site instantly.
   ═══════════════════════════════════════════════ */
:root{
    /* Accent 1 — primary green (buttons, active nav, highlights) */
    --color1: #2abd70;
    /* Accent 2 — secondary orange (CTA buttons, icons, tags)     */
    --color2: #e86e1c;
}

/* TOKENS — wired to the two brand colours above */
:root{
    /* Derived shades (auto-calculated look-alikes; adjust if needed) */
    --g:  var(--color1);
    --g2: color-mix(in srgb, var(--color1) 85%, black);
    --o:  var(--color2);

    /* Page / UI neutrals */
    --dk:#111;--dk2:#1a1a1a;--tx:#333;--mu:#777;--lt:#f7f8fa;--wh:#fff;--bd:#e8e8e8;
    --r:14px;
    --sh:0 4px 24px rgba(0,0,0,.09);--sh2:0 14px 40px rgba(0,0,0,.16);
    --f1:'DM Sans',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
    --f2:'Hanken Grotesk',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;

    /* Background colour of the whole site (default white) */
    --site-bg: #ffffff;
    /* Background of light-toned sections (e.g. service cards, FAQ) */
    --section-bg: #f7f8fa;
}

/* RESET */
*, *::before, *::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:110%}
body{font-family:var(--f1);color:var(--tx);background:var(--site-bg);overflow-x:hidden;top:0!important;position:static!important}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
ul{list-style:none}

/* LAYOUT */
.ck-container{max-width:1280px;margin:0 auto;padding:0 24px}
.ck-section{padding:80px 0}
.ck-section-sm{padding:50px 0}
.section-header{text-align:center;margin-bottom:50px}
.flex-between{display:flex;align-items:center;justify-content:space-between}

/* TYPOGRAPHY */
.ck-badge{display:inline-block;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--o);background:rgba(232,110,28,.1);padding:5px 14px;border-radius:50px;margin-bottom:12px}
.ck-title{font-family:var(--f2);font-size:36px;font-weight:800;color:var(--dk);line-height:1.2}
.ck-title span{color:var(--g)}
.ck-subtitle{font-size:16px;color:var(--mu);margin-top:10px}

/* BUTTONS */
.ck-btn{display:inline-flex;align-items:center;gap:8px;padding:13px 28px;border-radius:50px;font-weight:700;font-size:14px;font-family:var(--f1);transition:all .3s;cursor:pointer;border:none}
.ck-btn-primary{background:var(--g);color:#fff}
.ck-btn-primary:hover{background:var(--g2);color:#fff;transform:translateY(-2px)}
.ck-btn-orange{background:var(--o);color:#fff}
.ck-btn-orange:hover{background:#cf5e10;color:#fff;transform:translateY(-2px)}
.ck-btn-outline{background:transparent;color:var(--dk);border:2px solid var(--dk)}
.ck-btn-outline:hover{background:var(--dk);color:#fff}

/* ANNOUNCE BAR */
.ck-announce{background:var(--dk);color:#fff;padding:9px 0;font-size:13px;font-weight:500;overflow:hidden}
.ck-announce .marquee{display:inline-block;white-space:nowrap;animation:dk-ticker 25s linear infinite;padding-left:100%}
.ck-announce .marquee:hover{animation-play-state:paused}
.ck-announce .marquee span{margin:0 40px}
.ck-announce .marquee i{color:var(--o);margin-right:6px}
@keyframes dk-ticker{from{transform:translateX(0)}to{transform:translateX(-100%)}}

/* HEADER */
.ck-header{background:var(--wh);position:sticky;top:0;z-index:999;box-shadow:0 2px 16px rgba(0,0,0,.08)}
.ck-header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:24px}
.ck-logo img{height:70px;width:auto}
.ck-nav{display:flex;align-items:center;gap:4px}
.ck-nav a{font-size:14px;font-weight:600;color:var(--dk);padding:8px 14px;border-radius:8px;transition:all .2s}
.ck-nav a:hover,.ck-nav a.active{color:var(--g);background:rgba(42,189,112,.08)}
.ck-nav .has-drop{position:relative}
.ck-nav .has-drop>a::after{content:'\f107';font-family:'Font Awesome 6 Free';font-weight:900;margin-left:5px;font-size:11px}
.ck-dropdown{display:none;position:absolute;top:calc(100% + 6px);left:0;background:#fff;border-radius:12px;min-width:220px;box-shadow:0 8px 32px rgba(0,0,0,.15);padding:8px;z-index:9999;border:1px solid var(--bd)}
.ck-nav .has-drop:hover .ck-dropdown{display:block}
.ck-dropdown a{display:block!important;padding:10px 14px!important;font-size:14px!important;font-weight:500!important;color:var(--tx)!important;border-radius:8px!important;background:transparent!important;text-decoration:none!important;transition:all .2s!important}
.ck-dropdown a:hover{background:var(--lt)!important;color:var(--g)!important}
.ck-header-right{display:flex;align-items:center;gap:12px}
.ck-header-right .ck-btn{padding:9px 20px;font-size:13px;color:#fff; background:#e86e1c;}
.ck-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px}
.ck-hamburger span{display:block;width:24px;height:2px;background:var(--dk);border-radius:2px;transition:all .3s}
@media (max-width: 767px) { .ck-header-right .ck-btn { display: none !important;}}

/* MOBILE MENU */
.ck-mobile-menu{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:9998}
.ck-mobile-menu.open{display:block}
.ck-mobile-panel{position:fixed;top:0;left:0;width:300px;height:100%;background:#fff;z-index:9999;padding:24px;overflow-y:auto;transform:translateX(-100%);transition:transform .35s ease}
.ck-mobile-menu.open .ck-mobile-panel{transform:translateX(0)}
.ck-mobile-close{font-size:22px;cursor:pointer;float:right;color:var(--dk)}
.ck-mobile-nav{margin-top:40px}
.ck-mobile-nav a{display:block;padding:13px 0;font-size:15px;font-weight:600;color:var(--dk);border-bottom:1px solid var(--bd)}
.ck-mobile-nav a:hover{color:var(--g)}
.ck-mobile-nav .sub{padding-left:16px;font-size:14px;font-weight:500;color:var(--mu)}

/* HERO */
.ck-hero{position:relative;overflow:hidden}
.ck-hero-slide{position:relative;height:580px;display:flex;align-items:center}
.ck-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.ck-hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,25,50,.78) 0%,rgba(10,25,50,.4) 60%,transparent 100%)}
.ck-hero-content{position:relative;z-index:2;max-width:600px;color:#fff;padding:0 24px}
.ck-hero-content .ck-badge{background:rgba(42,189,112,.25);color:#7ef5b8}
.ck-hero-content h1{font-family:var(--f2);font-size:50px;font-weight:900;line-height:1.1;margin:14px 0 18px}
.ck-hero-content p{font-size:17px;color:rgba(255,255,255,.82);margin-bottom:30px;line-height:1.7}
.ck-hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.ck-hero-panel{position:absolute;right:5%;top:50%;transform:translateY(-50%);background:#fff;border-radius:16px;width:300px;box-shadow:0 8px 40px rgba(0,0,0,.18);z-index:10;overflow:hidden}
.ck-hero-panel h4{background:var(--o);color:#fff;text-align:center;padding:16px;font-size:16px;font-weight:700}
.ck-hero-panel ul{padding:12px}
.ck-hero-panel ul li a{display:flex;justify-content:space-between;align-items:center;padding:11px 16px;font-size:14px;font-weight:600;color:var(--dk);background:var(--lt);border-radius:8px;margin-bottom:8px;transition:all .25s}
.ck-hero-panel ul li a:hover{background:var(--g);color:#fff}
.ck-hero-panel ul li a i{font-size:12px;color:var(--mu)}
.ck-hero-panel ul li a:hover i{color:#fff}
.ck-hero-panel ul li:first-child a{color:var(--o)}
.ck-hero .owl-nav{position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);display:flex;justify-content:space-between;padding:0 18px;pointer-events:none;z-index:5}
.ck-hero .owl-nav button{pointer-events:all;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.15)!important;border:2px solid rgba(255,255,255,.35)!important;color:#fff!important;font-size:16px!important;display:flex;align-items:center;justify-content:center;transition:all .25s;backdrop-filter:blur(4px)}
.ck-hero .owl-nav button:hover{background:var(--g)!important;border-color:var(--g)!important}
.ck-hero .owl-nav button span{display:none}
.ck-hero .owl-dots{position:absolute;bottom:22px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:5}
.ck-hero .owl-dot span{display:block;width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.4)!important;transition:all .3s}
.ck-hero .owl-dot.active span{background:var(--g)!important;width:28px!important;border-radius:5px!important}

/* STATS */
.ck-stats{background:var(--dk);padding:28px 0}
.ck-stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.ck-stat-item{text-align:center;padding:16px 20px;border-right:1px solid rgba(255,255,255,.08)}
.ck-stat-item:last-child{border-right:none}
.ck-stat-item .num{font-family:var(--f2);font-size:36px;font-weight:900;color:var(--g);line-height:1}
.ck-stat-item p{font-size:13px;font-weight:600;color:rgba(255,255,255,.65);margin-top:6px;text-transform:uppercase;letter-spacing:.8px}
.ck-stats .odometer{display:inline-block;vertical-align:middle;font-family:var(--f2);font-size:36px;font-weight:900;color:var(--g);line-height:1}
.ck-stats .odometer .odometer-digit{display:inline-block}
.ck-stats .odometer .odometer-digit-inner{display:block;overflow:hidden;height:1em}
.ck-stats .odometer .odometer-ribbon{display:block}
.ck-stats .odometer .odometer-ribbon-inner{display:block;backface-visibility:hidden}
.ck-stats .odometer .odometer-value{display:block;text-align:center}

/* SERVICE CARDS */
.ck-cards{background:var(--section-bg)}
.ck-cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.ck-card{position:relative;display:block;border-radius:var(--r);overflow:hidden;height:240px;box-shadow:var(--sh);transition:transform .35s cubic-bezier(.25,.8,.25,1),box-shadow .35s}
.ck-card:hover{transform:translateY(-8px) scale(1.02);box-shadow:var(--sh2)}
.ck-card-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .5s}
.ck-card:hover .ck-card-bg{transform:scale(1.08)}
.ck-card-overlay{position:absolute;inset:0;background:linear-gradient(170deg,rgba(10,30,60,.38) 0%,rgba(10,30,60,.80) 100%);transition:background .3s}
.ck-card:hover .ck-card-overlay{background:linear-gradient(170deg,rgba(10,30,60,.52) 0%,rgba(10,30,60,.88) 100%)}
.ck-card-body{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:22px 20px;color:#fff}
.ck-card-icon{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.15);border:1.5px solid rgba(255,255,255,.28);display:flex;align-items:center;justify-content:center;font-size:18px;margin-bottom:10px;transition:background .3s,border-color .3s}
.ck-card:hover .ck-card-icon{background:var(--o);border-color:var(--o)}
.ck-card-body h3{font-size:17px;font-weight:700;margin-bottom:3px;color:#fff;line-height:1.3}
.ck-card-body p{font-size:12px;color:rgba(255,255,255,.72);margin-bottom:12px}
.ck-card-cta{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:700;background:rgba(232,110,28,.85);color:#fff;padding:6px 15px;border-radius:50px;transition:background .3s,gap .3s}
.ck-card:hover .ck-card-cta{background:var(--o);gap:11px}

/* FEATURED */
.ck-featured{background:var(--wh)}
.ck-featured-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center}
.ck-featured-image{position:relative;border-radius:var(--r);overflow:hidden;height:420px}
.ck-featured-image img{width:100%;height:100%;object-fit:cover}
.ck-badge-float{position:absolute;top:20px;left:20px;background:var(--g);color:#fff;padding:6px 16px;border-radius:50px;font-size:13px;font-weight:700}
.ck-featured-text .ck-title{font-size:30px}
.ck-featured-text p{color:var(--mu);line-height:1.8;margin:16px 0 28px;font-size:15px}
.ck-feature-list{margin-bottom:30px}
.ck-feature-list li{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px;font-size:14px;font-weight:500;color:var(--tx)}
.ck-feature-list li i{color:var(--g);font-size:16px;margin-top:2px;flex-shrink:0}

/* RATES */
.ck-rates{background:var(--section-bg)}
.ck-rates-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.ck-rate-card{background:#fff;border-radius:var(--r);box-shadow:var(--sh);overflow:hidden;transition:transform .3s,box-shadow .3s}
.ck-rate-card:hover{transform:translateY(-5px);box-shadow:var(--sh2)}
.ck-rate-card-header{padding:18px 22px;display:flex;align-items:center;gap:14px}
.ck-rate-card-header.green{background:linear-gradient(135deg,#22a862,var(--g))}
.ck-rate-card-header.orange{background:linear-gradient(135deg,#cf5e10,var(--o))}
.ck-rate-card-header.blue{background:linear-gradient(135deg,#1a6fd4,#3d8ef0)}
.ck-rate-card-header.purple{background:linear-gradient(135deg,#6b2fa0,#9b59b6)}
.ck-rate-card-header .icon{width:48px;height:48px;border-radius:12px;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:22px;color:#fff}
.ck-rate-card-header h3{color:#fff;font-size:18px;font-weight:700;margin:0}
.ck-rate-card-header p{color:rgba(255,255,255,.8);font-size:12px;margin:2px 0 0}
.ck-rate-table{width:100%;border-collapse:collapse}
.ck-rate-table tr{border-bottom:1px solid var(--bd)}
.ck-rate-table tr:last-child{border-bottom:none}
.ck-rate-table td{padding:13px 22px;font-size:14px;color:var(--tx)}
.ck-rate-table td:last-child{text-align:right;font-weight:700;color:var(--g)}
.ck-rate-table tr:hover td{background:rgba(42,189,112,.04)}
.ck-rate-card-footer{padding:14px 22px;border-top:1px solid var(--bd);text-align:center}
.ck-rate-card-footer a{font-size:13px;font-weight:700;color:var(--o);display:inline-flex;align-items:center;gap:6px}
.ck-rate-card-footer a:hover{color:var(--g)}

/* APPLY FORM */
.ck-apply{background:var(--dk);position:relative;overflow:hidden}
.ck-apply::before{content:'';position:absolute;top:-60px;right:-60px;width:400px;height:400px;border-radius:50%;background:rgba(42,189,112,.07)}
.ck-apply::after{content:'';position:absolute;bottom:-80px;left:-40px;width:300px;height:300px;border-radius:50%;background:rgba(232,110,28,.06)}
.ck-apply-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:center;position:relative;z-index:2}
.ck-apply-left .ck-title{color:#fff;font-size:32px}
.ck-apply-left p{color:rgba(255,255,255,.65);margin:16px 0 28px;font-size:15px;line-height:1.8}
.ck-apply-perks{display:flex;flex-direction:column;gap:14px}
.ck-perk{display:flex;align-items:center;gap:14px}
.ck-perk-icon{width:42px;height:42px;border-radius:10px;background:rgba(42,189,112,.15);display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--g);flex-shrink:0}
.ck-perk-text h5{font-size:14px;font-weight:700;color:#fff;margin:0}
.ck-perk-text p{font-size:12px;color:rgba(255,255,255,.55);margin:2px 0 0}
.ck-form-box{background:#fff;border-radius:20px;padding:36px;box-shadow:0 20px 60px rgba(0,0,0,.3)}
.ck-form-box h3{font-size:22px;font-weight:800;color:var(--dk);margin-bottom:6px;font-family:var(--f2)}
.ck-form-box .sub{font-size:13px;color:var(--mu);margin-bottom:24px}
.ck-form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.ck-form-row.full{grid-template-columns:1fr}
.ck-input,.ck-select{width:100%;padding:12px 16px;border:1.5px solid var(--bd);border-radius:10px;font-size:14px;font-family:var(--f1);color:var(--dk);background:var(--lt);transition:border-color .2s;outline:none}
.ck-input:focus,.ck-select:focus{border-color:var(--g);background:#fff}
.ck-input::placeholder{color:#aaa}
.ck-form-submit{width:100%;padding:14px;background:var(--g);color:#fff;border:none;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;font-family:var(--f1);margin-top:6px;transition:background .3s,transform .2s}
.ck-form-submit:hover{background:var(--g2);transform:translateY(-2px)}

/* NEWS */
.ck-news{background:var(--section-bg)}
.ck-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ck-news-card{background:#fff;border-radius:var(--r);overflow:hidden;box-shadow:var(--sh);transition:transform .3s,box-shadow .3s;display:flex;flex-direction:column}
.ck-news-card:hover{transform:translateY(-6px);box-shadow:var(--sh2)}
.ck-news-thumb{position:relative;height:200px;overflow:hidden}
.ck-news-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.ck-news-card:hover .ck-news-thumb img{transform:scale(1.06)}
.ck-news-tag{position:absolute;top:14px;left:14px;background:var(--g);color:#fff;font-size:11px;font-weight:700;padding:4px 12px;border-radius:50px;text-transform:uppercase;letter-spacing:.8px}
.ck-news-body{padding:22px;flex:1;display:flex;flex-direction:column}
.ck-news-meta{font-size:12px;color:var(--mu);margin-bottom:10px;display:flex;align-items:center;gap:8px}
.ck-news-meta i{color:var(--o)}
.ck-news-body h3{font-size:16px;font-weight:700;color:var(--dk);line-height:1.4;margin-bottom:10px;flex:1}
.ck-news-body h3 a:hover{color:var(--g)}
.ck-news-body p{font-size:13px;color:var(--mu);line-height:1.7;margin-bottom:18px}
.ck-news-link{font-size:13px;font-weight:700;color:var(--o);display:inline-flex;align-items:center;gap:6px;margin-top:auto}
.ck-news-link:hover{color:var(--g);gap:10px}

/* FAQ */
.ck-faq{background:var(--section-bg)}
.ck-faq-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:50px;align-items:start}
.ck-faq-sidebar{background:#fff;border-radius:var(--r);padding:30px;box-shadow:var(--sh)}
.ck-faq-sidebar h3{font-size:20px;font-weight:800;color:var(--dk);margin-bottom:6px;font-family:var(--f2)}
.ck-faq-sidebar p{font-size:13px;color:var(--mu);margin-bottom:20px}
.ck-faq-cats{display:flex;flex-direction:column;gap:8px}
.ck-faq-cat{padding:11px 16px;border-radius:9px;font-size:14px;font-weight:600;color:var(--tx);cursor:pointer;border:1.5px solid var(--bd);transition:all .2s;display:flex;align-items:center;gap:10px}
.ck-faq-cat i{font-size:15px;color:var(--mu)}
.ck-faq-cat:hover,.ck-faq-cat.active{background:var(--g);color:#fff;border-color:var(--g)}
.ck-faq-cat:hover i,.ck-faq-cat.active i{color:#fff}
.ck-faq-help{margin-top:24px;background:var(--dk);border-radius:10px;padding:18px;text-align:center}
.ck-faq-help p{color:rgba(255,255,255,.7);font-size:13px;margin-bottom:10px}
.ck-faq-help a{font-size:13px;font-weight:700;color:var(--g);display:inline-flex;align-items:center;gap:6px}
.ck-accordion{display:flex;flex-direction:column;gap:12px}
.ck-acc-item{background:#fff;border-radius:12px;box-shadow:var(--sh);overflow:hidden;border:1.5px solid transparent;transition:border-color .2s}
.ck-acc-item.open{border-color:var(--g)}
.ck-acc-head{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;cursor:pointer}
.ck-acc-head h4{font-size:15px;font-weight:700;color:var(--dk);margin:0;line-height:1.4}
.ck-acc-head .num{font-size:13px;font-weight:800;color:var(--g);margin-right:12px;flex-shrink:0}
.ck-acc-head .left{display:flex;align-items:flex-start}
.ck-acc-head .arrow{font-size:14px;color:var(--mu);transition:transform .3s;flex-shrink:0}
.ck-acc-item.open .ck-acc-head .arrow{transform:rotate(180deg);color:var(--g)}
.ck-acc-body{display:none;padding:0 22px 18px}
.ck-acc-item.open .ck-acc-body{display:block}
.ck-acc-body p{font-size:14px;color:var(--mu);line-height:1.8}
.ck-acc-body a{color:var(--g);font-weight:600}

/* FOOTER */
.ck-footer{background:var(--dk2)}
.ck-footer-top{padding:60px 0 40px;border-bottom:1px solid rgba(255,255,255,.06)}
.ck-footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px}
.ck-footer-brand img{height:150px;margin-bottom:16px}
.ck-footer-brand p{font-size:13px;color:rgba(255,255,255,.55);line-height:1.8;margin-bottom:20px}
.ck-footer-socials{display:flex;gap:10px;flex-wrap:wrap}
.ck-footer-socials a{width:36px;height:36px;border-radius:9px;background:rgba(255,255,255,.07);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);font-size:15px;transition:all .25s}
.ck-footer-socials a:hover{background:var(--g);color:#fff}
.ck-footer-col h4{font-size:14px;font-weight:800;color:#fff;text-transform:uppercase;letter-spacing:1px;margin-bottom:18px;position:relative;padding-bottom:12px}
.ck-footer-col h4::after{content:'';position:absolute;bottom:0;left:0;width:36px;height:2px;background:var(--g);border-radius:2px}
.ck-footer-col ul{display:flex;flex-direction:column;gap:10px}
.ck-footer-col ul li a{font-size:13px;color:rgba(255,255,255,.55);display:flex;align-items:center;gap:8px;transition:all .2s}
.ck-footer-col ul li a i{font-size:10px;color:var(--o)}
.ck-footer-col ul li a:hover{color:var(--g);padding-left:4px}
.ck-footer-contact li{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:rgba(255,255,255,.55);margin-bottom:10px}
.ck-footer-contact li i{color:var(--o);font-size:14px;margin-top:2px;flex-shrink:0}
.ck-footer-contact li a{color:rgba(255,255,255,.55)}
.ck-footer-contact li a:hover{color:var(--g)}
.ck-footer-hours li{display:flex;justify-content:space-between;font-size:13px;color:rgba(255,255,255,.55);padding:7px 0;border-bottom:1px solid rgba(255,255,255,.06)}
.ck-footer-hours li span{color:var(--g);font-weight:700}
.ck-footer-bottom{padding:18px 0;display:flex;align-items:center;justify-content:space-between}
.ck-footer-bottom p{font-size:13px;color:rgba(255,255,255,.4)}
.ck-footer-bottom p a{color:var(--g)}
.ck-footer-bottom-links{display:flex;gap:20px}
.ck-footer-bottom-links a{font-size:12px;color:rgba(255,255,255,.4);transition:color .2s}
.ck-footer-bottom-links a:hover{color:var(--g)}

/* SOCIAL SIDEBAR */
.ck-social-bar{position:fixed;top:50%;right:0;transform:translateY(-50%);z-index:1000;display:flex;flex-direction:column}
.ck-social-bar a{display:flex;align-items:center;justify-content:flex-end;color:#fff;height:38px;width:40px;overflow:hidden;transition:width .3s;padding-right:10px;white-space:nowrap;margin:2px 0;font-size:17px}
.ck-social-bar a span{margin-right:10px;opacity:0;transition:opacity .3s;font-size:12px;font-weight:700}
.ck-social-bar a:hover{width:150px}
.ck-social-bar a:hover span{opacity:1}
.ck-social-bar .sb-fb{background:#3b5998}
.ck-social-bar .sb-yt{background:#f00}
.ck-social-bar .sb-wa{background:#25d366}
.ck-social-bar .sb-x{background:#000}
.ck-social-bar .sb-and{background:#a4c639}

/* MOBILE BAR */
.ck-mob-bar{display:none;position:fixed;bottom:0;left:0;width:100%;background:#fff;box-shadow:0 -2px 16px rgba(0,0,0,.1);padding:8px 12px 12px;z-index:9999;gap:10px}
.ck-mob-bar a{flex:1;text-align:center;padding:10px 6px;border-radius:8px;font-size:13px;font-weight:700;color:#fff;display:flex;align-items:center;justify-content:center;gap:6px}
.ck-mob-bar .mb-login{background:var(--o)}
.ck-mob-bar .mb-support{background:var(--g)}

/* SCROLL TOP */
.ck-scroll-top{position:fixed;bottom:80px;right:48px;width:44px;height:44px;background:var(--g);color:#fff;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:18px;cursor:pointer;z-index:999;opacity:0;pointer-events:none;transition:all .3s;box-shadow:0 4px 16px rgba(42,189,112,.4)}
.ck-scroll-top.visible{opacity:1;pointer-events:all}
.ck-scroll-top:hover{background:var(--g2);transform:translateY(-3px)}

/* PAGE TITLE (inner pages) */
.ck-page-title{position:relative;height:280px;display:flex;align-items:center;overflow:hidden}
.ck-page-title-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.ck-page-title-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,25,50,.80) 0%,rgba(10,25,50,.55) 60%,rgba(10,25,50,.35) 100%)}
.ck-page-title-content{position:relative;z-index:2}
.ck-page-title-content h1{font-family:var(--f2);font-size:40px;font-weight:900;color:#fff;margin-bottom:14px;line-height:1.1}
.ck-breadcrumb{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.ck-breadcrumb a{font-size:14px;color:rgba(255,255,255,.75);font-weight:500;transition:color .2s}
.ck-breadcrumb a:hover{color:var(--g)}
.ck-breadcrumb .sep{color:rgba(255,255,255,.4);font-size:12px}
.ck-breadcrumb span{font-size:14px;color:var(--g);font-weight:600}

/* INNER CONTENT (inner pages) */
.ck-inner-wrap{padding:60px 0 80px;background:var(--wh)}
.ck-inner-wrap h2{font-family:var(--f2);font-size:28px;font-weight:800;color:var(--dk);margin-bottom:16px}
.ck-inner-wrap h3{font-size:20px;font-weight:700;color:var(--dk);margin-bottom:12px}
.ck-inner-wrap h4{font-size:17px;font-weight:700;color:var(--dk);margin-bottom:10px}
.ck-inner-wrap p{font-size:15px;color:#555;line-height:1.85;margin-bottom:16px}
.ck-inner-wrap ul.list-item li{position:relative;padding:7px 0 7px 24px;font-size:14px;color:var(--tx);border-bottom:1px solid var(--bd)}
.ck-inner-wrap ul.list-item li::before{content:'\f058';font-family:'Font Awesome 6 Free';font-weight:900;position:absolute;left:0;color:var(--g);font-size:13px;top:8px}
@media(min-width:992px){.ck-sticky{position:sticky;top:90px}}
.ck-info-card{background:var(--lt);border-radius:var(--r);padding:28px;border-left:4px solid var(--g);margin-bottom:24px}
.ck-info-card.orange{border-left-color:var(--o)}
.ck-info-card h3{font-size:18px;font-weight:700;color:var(--dk);margin-bottom:14px}
.ck-info-card p{font-size:14px;color:var(--mu);line-height:1.8;margin:0}
.ck-feat-list{display:flex;flex-direction:column;gap:12px;margin-bottom:24px}
.ck-feat-list li{display:flex;align-items:flex-start;gap:12px;font-size:14px;color:var(--tx);line-height:1.6}
.ck-feat-list li i{color:var(--g);font-size:15px;margin-top:2px;flex-shrink:0}
.ck-table-wrap{overflow-x:auto;margin-bottom:24px}
.ck-table{width:100%;border-collapse:collapse;min-width:480px}
.ck-table th{background:var(--dk);color:#fff;padding:13px 16px;font-size:14px;font-weight:700;text-align:left}
.ck-table th:first-child{border-radius:8px 0 0 0}
.ck-table th:last-child{border-radius:0 8px 0 0}
.ck-table td{padding:12px 16px;font-size:14px;border-bottom:1px solid var(--bd);color:var(--tx)}
.ck-table tr:hover td{background:rgba(42,189,112,.04)}
.ck-table td.highlight{font-weight:700;color:var(--g)}
.ck-table tfoot td{background:var(--g);color:#fff;font-weight:700}

/* GOOGLE TRANSLATE */
#google_translate_element{display:inline-flex;align-items:center}
#google_translate_element .goog-te-gadget{font-size:0!important;display:flex;align-items:center}
#google_translate_element .goog-te-gadget .goog-te-combo{font-family:var(--f1);font-size:13px;font-weight:600;color:var(--dk);background:#fff;border:1.5px solid var(--bd);border-radius:8px;padding:7px 28px 7px 10px;cursor:pointer;outline:none;max-width:160px;-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23777'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;transition:border-color .2s}
#google_translate_element .goog-te-gadget .goog-te-combo:focus,
#google_translate_element .goog-te-gadget .goog-te-combo:hover{border-color:var(--g)}
.goog-te-gadget>span{display:none!important}
.goog-te-banner-frame.skiptranslate{display:none!important}

/* RESPONSIVE */
@media(max-width:1200px){
    .ck-cards-grid{grid-template-columns:repeat(3,1fr)}
    .ck-footer-grid{grid-template-columns:1fr 1fr;gap:32px}
}
@media(max-width:1024px){
    .ck-nav{display:none}
    .ck-hamburger{display:flex}
    .ck-hero-panel{display:none}
    .ck-featured-grid,.ck-apply-grid{grid-template-columns:1fr}
    .ck-featured-image{height:280px}
    .ck-apply-grid{gap:36px}
    .ck-faq-grid{grid-template-columns:1fr}
    .ck-news-grid{grid-template-columns:repeat(2,1fr)}
    .ck-rates-grid{grid-template-columns:1fr}
    .ck-stats-grid{grid-template-columns:repeat(2,1fr)}
    .ck-stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.08)}
    .ck-social-bar{display:none}
    .ck-page-title{height:220px}
    .ck-page-title-content h1{font-size:30px}
}
@media(max-width:768px){
    .ck-section{padding:50px 0}
    .ck-inner-wrap{padding:40px 0 60px}
    .ck-title{font-size:26px}
    .ck-cards-grid{grid-template-columns:repeat(2,1fr);gap:14px}
    .ck-card{height:200px}
    .ck-hero-slide{height:420px}
    .ck-hero-content h1{font-size:32px}
    .ck-hero-content p{font-size:14px}
    .ck-hero-btns{flex-direction:column}
    .ck-hero .owl-nav button{width:36px;height:36px;font-size:13px!important}
    .ck-hero .owl-nav{padding:0 8px}
    .ck-news-grid{grid-template-columns:1fr}
    .ck-footer-grid{grid-template-columns:1fr}
    .ck-footer-bottom{flex-direction:column;gap:10px;text-align:center}
    .ck-footer-bottom-links{flex-wrap:wrap;justify-content:center}
    .ck-form-row{grid-template-columns:1fr}
    .ck-mob-bar{display:flex}
    .ck-scroll-top{bottom:70px;right:16px}
    .ck-page-title{height:180px}
    .ck-page-title-content h1{font-size:24px}
}
@media(max-width:480px){
    .ck-container{padding:0 16px}
    .ck-title{font-size:22px}
    .ck-cards-grid{grid-template-columns:1fr}
    .ck-stats-grid{grid-template-columns:1fr 1fr}
    .ck-hero-slide{height:360px}
    .ck-hero-content h1{font-size:26px}
}

/* ── SMALL ANDROID DEVICES (≤ 380px) ── */
@media (max-width: 380px){
    html{font-size:100%;-webkit-text-size-adjust:100%;text-size-adjust:100%}
    body{-webkit-tap-highlight-color:rgba(42,189,112,.18)}
    .ck-container{padding:0 14px}
    .ck-header-inner{height:64px;gap:12px}
    .ck-logo img{height:54px}
    .ck-header-right{gap:6px}
    .ck-mobile-panel{width:88vw;padding:18px}
    .ck-mobile-nav{margin-top:30px}
    .ck-mobile-nav a{font-size:14px;padding:11px 0}
    .ck-announce{font-size:12px}
    .ck-hero-slide{height:340px}
    .ck-hero-content{padding:0 14px}
    .ck-hero-content h1{font-size:22px;margin:12px 0 14px}
    .ck-hero-content p{font-size:13px;margin-bottom:22px}
    .ck-hero-btns{gap:10px;width:100%}
    .ck-hero-btns .ck-btn{width:100%;justify-content:center;padding:12px 16px}
    .ck-hero .owl-nav button{width:32px;height:32px;font-size:11px!important}
    .ck-hero-panel{width:250px}
    .ck-stat-item{padding:12px 8px}
    .ck-stat-item .num,.ck-stats .odometer{font-size:24px}
    .ck-stat-item p{font-size:9px;letter-spacing:.3px;margin-top:4px}
    .ck-title{font-size:20px}
    .ck-subtitle{font-size:14px}
    .ck-section{padding:42px 0}
    .ck-card{height:185px}
    .ck-card-body{padding:16px 14px}
    .ck-card-body h3{font-size:15px}
    .ck-card-cta{font-size:11px;padding:5px 12px}
    .ck-page-title{height:145px}
    .ck-page-title-content h1{font-size:20px;margin-bottom:10px}
    .ck-breadcrumb a,.ck-breadcrumb span{font-size:12px}
    .ck-input,.ck-select{font-size:16px;padding:11px 14px}
    .ck-form-box{padding:22px 16px}
    .ck-form-box h3{font-size:19px}
    .ck-footer-brand img{height:120px}
    .ck-footer-top{padding:44px 0 28px}
    .ck-footer-bottom{flex-direction:column;gap:8px;text-align:center}
    .ck-footer-bottom p{font-size:12px}
    .ck-footer-bottom-links{flex-wrap:wrap;justify-content:center;gap:12px}
    .ck-footer-bottom-links a{font-size:11px}
    .ck-mob-bar{gap:6px;padding:6px 8px 8px}
    .ck-mob-bar a{font-size:11px;padding:8px 4px;gap:4px}
    .ck-scroll-top{width:40px;height:40px;right:10px;bottom:64px;font-size:16px}
    .ck-acc-head{padding:14px 16px}
    .ck-acc-head h4{font-size:14px}
    .ck-acc-body{padding:0 16px 14px}
    .ck-acc-body p{font-size:13px}
    .ck-hero .owl-dots{bottom:14px}
}
/* ── VERY SMALL DEVICES (≤ 320px) ── */
@media (max-width: 320px){
    .ck-container{padding:0 12px}
    .ck-mobile-panel{width:92vw}
    .ck-hero-content h1{font-size:20px}
    .ck-hero-slide{height:320px}
    .ck-stats-grid{grid-template-columns:1fr 1fr}
    .ck-stat-item .num,.ck-stats .odometer{font-size:22px}
    .ck-btn{font-size:13px;padding:11px 20px}
    .ck-btn-group{width:100%}
    .ck-btn-group .ck-btn{width:100%;justify-content:center}
    .ck-social-bar{width:36px}
    .ck-social-bar a{width:36px;height:34px;font-size:15px}
}

/* ═══════════════════════════════════════════════
   UNIFIED DATA TABLE — single design used across
   every page (deposit plans, loans, calculators).
   Apply class="aold-table" inside .aold-table-wrap.
   ═══════════════════════════════════════════════ */
.aold-table-wrap{
    overflow-x:auto;
    border-radius:16px;
    border:1px solid var(--bd);
    background:#fff;
    margin:16px 0;
}

.aold-table{
    width:100%;
    min-width:620px;
    border-collapse:collapse;
    background:#fff;
}

.aold-table th,
.aold-table td{
    padding:14px 16px;
    border-bottom:1px solid var(--bd);
    text-align:left;
    font-size:14px;
    line-height:1.5;
}

.aold-table th{
    background:#122644;
    color:#fff;
    font-weight:700;
}

.aold-table tbody tr:nth-child(even){
    background:#fafbfc;
}

.aold-table tbody tr:hover{
    background:rgba(42,189,112,.05);
}

.aold-table tr:last-child td{
    border-bottom:none;
}

.aold-table-center th,
.aold-table-center td{
    text-align:center;
}

.aold-table-caption{
    font-size:13px;
    color:var(--mu);
    margin-top:10px;
}

/* Hide scrollbars but keep scrolling */
*{scrollbar-width:none;-ms-overflow-style:none;}*::-webkit-scrollbar{display:none;width:0;height:0;}

