/* =========================================================
HERO
========================================================= */
.cb-hero{
position: relative;
padding: 50px 0 60px;
overflow: hidden;
background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 60%);
}
.cb-hero-bg{
position:absolute; inset:0; z-index:0;
background:
radial-gradient(circle at 85% 15%, rgba(200,163,77,0.14), transparent 45%),
radial-gradient(circle at 5% 90%, rgba(11,31,58,0.06), transparent 40%);
}
.cb-hero .container{ position: relative; z-index: 1; }
.cb-hero-title{
font-size: clamp(2.2rem, 4vw, 3.4rem);
font-weight: 700;
line-height: 1.15;
color: var(--navy);
margin-bottom: 22px;
}
.cb-hero-title span{ color: var(--gold); }
.cb-hero-sub{ font-size: 1.08rem; max-width: 520px; margin-bottom: 34px; }
.cb-hero-actions{ display:flex; flex-wrap:wrap; gap: 16px; margin-bottom: 46px; }
.cb-hero-actions .cb-btn-outline-light{ color: var(--navy); border-color: rgba(11,31,58,0.25); }
.cb-hero-actions .cb-btn-outline-light:hover{ background: rgba(11,31,58,0.06); color: var(--navy); border-color: var(--navy); }
.cb-trust-row{ display:flex; gap: 40px; flex-wrap: wrap; }
.cb-trust-row div{ display:flex; flex-direction:column; }
.cb-trust-row strong{ font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); }
.cb-trust-row span{ font-size: 0.82rem; color: var(--text-soft); }
.cb-hero-visual{ position: relative; padding: 30px 20px 20px 0; }
/* Signature element: gold viewfinder frame */
.cb-frame{
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-soft);
}
.cb-frame img{ width:100%; height:100%; object-fit: cover; transition: transform .6s ease; }
.cb-frame:hover img{ transform: scale(1.05); }
.cb-frame::before, .cb-frame::after{
content:"";
position:absolute;
width: 46px; height: 46px;
border: 2.5px solid var(--gold);
z-index: 2;
transition: width .35s ease, height .35s ease, top .35s ease, left .35s ease, right .35s ease, bottom .35s ease;
pointer-events: none;
}
.cb-frame::before{
top: 16px; left: 16px;
border-right:none; border-bottom:none;
border-top-left-radius: 8px;
}
.cb-frame::after{
bottom: 16px; right: 16px;
border-left:none; border-top:none;
border-bottom-right-radius: 8px;
}
.cb-frame:hover::before{ top: 10px; left: 10px; width: 54px; height: 54px; }
.cb-frame:hover::after{ bottom: 10px; right: 10px; width: 54px; height: 54px; }
.cb-float-card{
position:absolute;
background: #fff;
border-radius: var(--radius-md);
box-shadow: var(--shadow-card);
padding: 14px 18px;
display:flex; align-items:center; gap: 12px;
z-index: 3;
animation: cbFloat 5s ease-in-out infinite;
}
.cb-float-card i{ font-size: 1.3rem; color: var(--gold); }
.cb-float-card strong{ display:block; font-family: var(--font-head); font-size: 1.02rem; color: var(--navy); }
.cb-float-card span{ font-size: 0.76rem; color: var(--text-soft); }
.cb-float-card--top{ top: -6px; left: -20px; }
.cb-float-card--bottom{ bottom: 6px; right: -18px; animation-delay: 1.2s; }
.cb-hero-shape{
position:absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
border-radius: 50%;
background: radial-gradient(circle, rgba(200,163,77,0.22), transparent 70%);
z-index: 0;
}
@keyframes cbFloat{
0%,100%{ transform: translateY(0); }
50%{ transform: translateY(-10px); }
}
/* =========================================================
TRUSTED BY
========================================================= */
.cb-trustedby{ padding: 36px 0; border-bottom: 1px solid rgba(11,31,58,0.06); }
.cb-trustedby-label{
text-align:center; font-family: var(--font-head); font-weight:600; font-size:0.78rem;
letter-spacing:0.12em; text-transform:uppercase; color: var(--text-soft); margin-bottom: 24px;
}
.cb-logo-strip-sldr .owl-nav{
display: none;
}
.cb-logo-strip-box{
border: 1px solid rgba(11,31,58,0.06);
padding: 10px;
}
/* =========================================================
ABOUT + STATS
========================================================= */
.cb-frame--about{ aspect-ratio: 4/5; }
.cb-frame--about img{ height:100%; }
.cb-check-list{ list-style:none; padding:0; margin: 0 0 32px; display:flex; flex-direction:column; gap: 12px; }
.cb-check-list li{ display:flex; align-items:flex-start; gap:10px; font-size: 0.98rem; color: var(--text); }
.cb-check-list i{ color: var(--success); margin-top: 3px; }
.cb-stats-grid{
margin-top: 90px;
display:grid;
grid-template-columns: repeat(4, 1fr);
gap: 22px;
}
.cb-stat-card{
background: var(--section-bg);
border-radius: var(--radius-md);
padding: 30px 24px;
text-align:center;
transition: transform .3s ease, box-shadow .3s ease;
}
.cb-stat-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cb-stat-card i{ font-size: 1.7rem; color: var(--gold); margin-bottom: 12px; display:block; }
.cb-stat-card > div{ font-family: var(--font-head); font-weight:700; font-size: 1.8rem; color: var(--navy); }
.cb-stat-card span{ font-size: 0.85rem; color: var(--text-soft); }
/* =========================================================
SERVICES
========================================================= */
.cb-service-card{
background: #fff;
border: 1px solid rgba(11,31,58,0.07);
border-radius: var(--radius-md);
padding: 34px 26px;
height: 100%;
transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cb-service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: transparent; }
.cb-service-card i{
font-size: 1.6rem; color: var(--navy);
width: 56px; height: 56px;
display:flex; align-items:center; justify-content:center;
background: linear-gradient(135deg, #9fc5ff, #fff);
border-radius: 14px;
margin-bottom: 20px;
}
.cb-service-card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.cb-service-card p{ font-size: 0.92rem; margin-bottom: 18px; }
.cb-service-card a{
font-family: var(--font-head); font-weight:600; font-size:0.85rem; color: var(--gold);
display:inline-flex; align-items:center; gap:6px;
}
.cb-service-card a i{ all:unset; font-size: 0.8rem; transition: transform .2s ease; }
.cb-service-card a:hover i{ transform: translateX(4px); }
/* =========================================================
INDUSTRIES
========================================================= */
.cb-industry-grid{
display:grid;
grid-template-columns: repeat(6, 1fr);
gap: 18px;
}
.cb-industry{
background: var(--section-bg);
border-radius: var(--radius-md);
padding: 28px 14px;
text-align:center;
transition: background .3s ease, transform .3s ease;
}
.cb-industry:hover{ background: var(--navy); transform: translateY(-4px); }
.cb-industry:hover i, .cb-industry:hover span{ color: #fff; }
.cb-industry i{ font-size: 1.5rem; color: var(--navy); display:block; margin-bottom: 10px; transition: color .3s ease; }
.cb-industry span{ font-family: var(--font-head); font-weight:600; font-size: 0.85rem; color: var(--text); transition: color .3s ease; }
/* =========================================================
PROCESS TIMELINE
========================================================= */
.cb-timeline{
display:grid;
grid-template-columns: repeat(6, 1fr);
gap: 20px;
position: relative;
}
.cb-timeline::before{
content:"";
position:absolute; top: 26px; left: 3%; right: 8%; height: 1px;
background: rgba(200,163,77,0.35);
z-index: 0;
}
.cb-tl-step{ position: relative; z-index:1; }
.cb-tl-num{
display:flex; align-items:center; justify-content:center;
width: 52px; height:52px;
border-radius: 50%;
background: var(--navy-soft);
border: 1.5px solid var(--gold);
color: var(--gold-light);
font-family: var(--font-head); font-weight:700; font-size: 0.95rem;
margin-bottom: 20px;
}
.cb-tl-num:hover{
background: var(--gold);
color: var(--navy-soft);
}
.cb-tl-step h4{ color: #fff; font-size: 1rem; margin-bottom: 8px; }
.cb-tl-step p{ color: #A9B4C9; font-size: 0.85rem; }
/* =========================================================
WHY CHOOSE
========================================================= */
.cb-why-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.cb-why-item{
background: var(--section-bg);
border-radius: var(--radius-sm);
padding: 22px 18px;
display:flex; flex-direction:column; gap: 10px;
transition: transform .3s ease, box-shadow .3s ease;
}
.cb-why-item:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cb-why-item i{ font-size: 1.4rem; color: var(--gold); }
.cb-why-item h5{ font-size: 0.92rem; margin:0; }
.cb-frame--why{ aspect-ratio: 4/3.4; }
.cb-frame--why img{ height: 100%; }
/* =========================================================
TESTIMONIALS
========================================================= */
.cb-testimonial{
background: #fff;
border-radius: var(--radius-md);
padding: 34px 28px;
height: 100%;
box-shadow: var(--shadow-card);
}
.cb-testimonial > i{ font-size: 2rem; color: var(--gold); opacity: 0.5; }
.cb-testimonial p{ color: var(--text); font-size: 0.98rem; margin: 16px 0 24px; }
.cb-testimonial-person{ display:flex; align-items:center; gap: 12px; }
.cb-avatar-frame{
position: relative; width: 48px; height: 48px; border-radius: 50%; overflow:hidden;
}
.cb-avatar-frame img{ width:100%; height:100%; object-fit:cover; }
.cb-testimonial-person strong{ display:block; font-family: var(--font-head); font-size: 0.9rem; color: var(--navy); }
.cb-testimonial-person span{ font-size: 0.78rem; }
/* =========================================================
INSIGHTS
========================================================= */
.cb-insight-card{ display:block; }
.cb-insight-img{ border-radius: var(--radius-md); overflow:hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.cb-insight-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.cb-insight-card:hover .cb-insight-img img{ transform: scale(1.06); }
.cb-insight-date{ font-size: 0.78rem; color: var(--gold); font-weight:600; font-family: var(--font-head); }
.cb-insight-card h4{ font-size: 1.08rem; margin-top: 8px; line-height: 1.4; }
/* =========================================================
DOWNLOAD + FAQ
========================================================= */
.cb-download-card{
background: var(--navy);
border-radius: var(--radius-lg);
padding: 44px 34px;
height: 100%;
color: #fff;
}
.cb-download-card i{ font-size: 2rem; }
.cb-download-card h3{ color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.cb-download-card p{ color: #B7C1D6; margin-bottom: 26px; }
.cb-accordion .accordion-item{ background: transparent; border: none; border-bottom: 1px solid rgba(11,31,58,0.1); }
.cb-accordion .accordion-button{
font-family: var(--font-head); font-weight:600; color: var(--navy);
background: transparent; box-shadow: none; padding: 18px 0;
}
.cb-accordion .accordion-button:not(.collapsed){ color: var(--gold); background: transparent; box-shadow:none; }
.cb-accordion .accordion-button::after{ filter: none; }
.cb-accordion .accordion-body{ padding: 0 0 20px; color: var(--text-soft); }
/* =========================================================
FINAL CTA
========================================================= */
.cb-final-cta{
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
padding: 90px 0;
position: relative;
overflow: hidden;
}
.cb-final-cta::before{
content:"";
position:absolute; inset:0;
background: radial-gradient(circle at 80% 20%, rgba(200,163,77,0.18), transparent 50%);
}
.cb-final-cta-inner{ position:relative; text-align:center; max-width: 680px; margin: 0 auto; }
.cb-final-cta-inner h2{ color:#fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cb-final-cta-inner p{ color: #B7C1D6; font-size: 1.05rem; margin-bottom: 34px; }
.cb-final-cta-actions{ display:flex; justify-content:center; gap: 16px; flex-wrap: wrap; }
/* =========================================================
FOOTER
========================================================= */
.cb-footer{ background: var(--navy-deep); padding: 80px 0 0; color: #B7C1D6; }
.cb-footer h5{ color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.cb-footer a{ display:block; font-size: 0.9rem; color: #B7C1D6; margin-bottom: 12px; transition: color .2s ease; }
.cb-footer a:hover{ color: var(--gold-light); }
.cb-logo--footer{ margin-bottom: 18px; }
.cb-logo--footer .cb-logo-text{ color: #fff; }
.cb-footer > .container > .row > div > p{ font-size: 0.9rem; margin-bottom: 20px; }
.cb-social{ display:flex; gap: 10px; }
.cb-social a{
width: 38px; height:38px; border-radius: 50%;
background: rgba(255,255,255,0.06);
display:flex; align-items:center; justify-content:center;
margin:0;
}
.cb-social a:hover{ background: var(--gold); color: var(--navy); }
.cb-newsletter{ display:flex; margin-bottom: 22px; }
.cb-newsletter input{
flex:1; border:none; border-radius: 999px 0 0 999px;
padding: 12px 18px; font-size: 0.88rem; background: rgba(255,255,255,0.08); color:#fff;
}
.cb-newsletter input::placeholder{ color: #7C89A3; }
.cb-newsletter button{
border:none; background: var(--gold); color: var(--navy-deep);
padding: 0 18px; border-radius: 0 999px 999px 0;
}
.cb-footer-contact{ display:flex !important; align-items:center; gap:13px; font-size: 0.85rem; margin-bottom: 8px; }
.cb-footer-contact i{
color: var(--gold);
}
.cb-footer-bottom{
border-top: 1px solid rgba(255,255,255,0.08);
margin-top: 50px;
padding: 24px 0;
display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px;
font-size: 0.82rem;
}
.cb-footer-bottom div{ display:flex; gap: 20px; }
.cb-footer-bottom a{ margin:0; }
/* =========================================================
FLOATING BUTTONS
========================================================= */
.cb-whatsapp-btn{
position: fixed; right: 26px; bottom: 26px; z-index: 999;
width: 56px; height:56px; border-radius: 50%;
background: #25D366; color:#fff;
display:flex; align-items:center; justify-content:center;
font-size: 1.6rem;
box-shadow: 0 12px 26px -8px rgba(37,211,102,0.6);
transition: transform .25s ease;
}
.cb-whatsapp-btn:hover{ transform: scale(1.08); color:#fff; }
.cb-backtotop{
position: fixed; right: 26px; bottom: 92px; z-index: 999;
width: 44px; height:44px; border-radius: 50%;
background: var(--navy); color: var(--gold-light); border:none;
display:flex; align-items:center; justify-content:center;
opacity:0; visibility:hidden; transform: translateY(10px);
transition: all .3s ease;
}
.cb-backtotop.show{ opacity:1; visibility:visible; transform: translateY(0); }
/* Modern Floating Input */
.cb-modern .modal-content{
background: var(--navy);
padding-bottom: 10px;
}
.cb-modern .modal-header .btn-close {
background: #ffffff var(--bs-btn-close-bg) center / 1em auto no-repeat;
opacity: 1;
}
.cb-modern-floating-group {
position: relative;
}
.cb-modern-form .form-control {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 15px 20px;
color: #fff;
}
.cb-modern-form .form-control:focus {
border-color: #0d6efd;
background: rgba(255, 255, 255, 0.08);
}
.cb-modern-floating-group label {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
color: rgba(255, 255, 255, 0.4);
pointer-events: none;
transition: 0.3s;
}
.cb-modern-form .form-control:focus~label,
.cb-modern-form .form-control:not(:placeholder-shown)~label {
top: -10px;
left: 10px;
font-size: 0.75rem;
background: #0b0f19;
padding: 0 8px;
color: #0d6efd;
}
/* =========================================================
SCROLL REVEAL
========================================================= */
.cb-reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.cb-reveal.cb-in{ opacity:1; transform: translateY(0); }
.cb-reveal-delay.cb-in{ transition-delay: .15s; }
@media (prefers-reduced-motion: reduce){
.cb-reveal{ opacity:1; transform:none; transition:none; }
.cb-float-card{ animation: none; }
}