/*======================================================
  KEJARI.ORG
  Premium Government Template
  Version : 1.0
======================================================*/

:root{

--primary:#012B6D;
--primary-dark:#001B47;
--secondary:#C99A2E;
--danger:#B71C1C;
--success:#0F8B5F;

--white:#ffffff;
--light:#f5f7fb;
--border:#e4e9f2;
--text:#263238;
--muted:#6b7280;

--shadow-sm:0 5px 12px rgba(0,0,0,.05);
--shadow:0 12px 30px rgba(0,0,0,.08);
--shadow-lg:0 25px 70px rgba(0,0,0,.12);

--radius:18px;
--radius-sm:10px;

--transition:.35s ease;

--container:1320px;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:
"Segoe UI",
Arial,
Helvetica,
sans-serif;

font-size:16px;

line-height:1.7;

background:#fff;

color:var(--text);

overflow-x:hidden;

}

img{

display:block;

max-width:100%;

height:auto;

}

a{

text-decoration:none;

transition:var(--transition);

color:inherit;

}

ul{

list-style:none;

}

.container{

width:min(100% - 40px,var(--container));

margin:auto;

}

section{

padding:90px 0;

position:relative;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

display:inline-block;

padding:8px 18px;

border-radius:50px;

background:#eef5ff;

color:var(--primary);

font-size:13px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:18px;

}

.section-title h2{

font-size:42px;

font-weight:800;

margin-bottom:20px;

color:var(--primary);

}

.section-title p{

max-width:760px;

margin:auto;

color:var(--muted);

}

/*==========================================
LOADER
==========================================*/

#loader{

position:fixed;

inset:0;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:.5s;

}

.loader-logo{

text-align:center;

}

.loader-logo img{

height:90px;

margin:auto;

margin-bottom:25px;

animation:loader 2s infinite;

}

.loader-logo h2{

font-size:32px;

color:var(--primary);

margin-bottom:10px;

}

.loader-logo p{

color:#666;

}

@keyframes loader{

0%{

transform:scale(.95);

opacity:.5;

}

50%{

transform:scale(1);

opacity:1;

}

100%{

transform:scale(.95);

opacity:.5;

}

}

/*==========================================
TOPBAR
==========================================*/

.topbar{

background:var(--primary);

color:#fff;

font-size:14px;

}

.topbar .container{

display:flex;

justify-content:space-between;

align-items:center;

height:46px;

}

.top-right{

display:flex;

gap:22px;

}

.top-right a{

opacity:.9;

}

.top-right a:hover{

opacity:1;

color:#FFD54F;

}

/*==========================================
HEADER
==========================================*/

.header{

position:sticky;

top:0;

background:#fff;

z-index:9999;

box-shadow:var(--shadow-sm);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:90px;

}

.logo-area a{

display:flex;

align-items:center;

gap:18px;

}

.logo-area img{

height:58px;

}

.logo-area h1{

font-size:28px;

font-weight:800;

color:var(--primary);

}

.logo-area p{

font-size:13px;

color:#666;

margin-top:4px;

}

/*==========================================
NAVIGATION
==========================================*/

.navigation>ul{

display:flex;

gap:35px;

align-items:center;

}

.navigation>ul>li{

position:relative;

}

.navigation>ul>li>a{

font-weight:700;

padding:32px 0;

display:block;

position:relative;

}

.navigation>ul>li>a::after{

content:"";

position:absolute;

left:0;

bottom:20px;

height:3px;

width:0;

background:var(--secondary);

transition:.3s;

}

.navigation>ul>li:hover>a::after{

width:100%;

}

.dropdown{

position:absolute;

top:100%;

left:0;

background:#fff;

width:270px;

border-radius:14px;

box-shadow:var(--shadow);

padding:12px 0;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

}

.navigation li:hover .dropdown{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.dropdown a{

display:block;

padding:14px 25px;

}

.dropdown a:hover{

background:#f5f7fb;

padding-left:35px;

color:var(--primary);

}

/*==========================================
SEARCH BUTTON
==========================================*/

.search-button a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:var(--primary);

color:#fff;

transition:.3s;

}

.search-button a:hover{

transform:rotate(90deg);

background:var(--secondary);

}

/*==========================================
BUTTON
==========================================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

border-radius:60px;

background:var(--primary);

color:#fff;

font-weight:700;

transition:.35s;

box-shadow:var(--shadow);

}

.btn-primary:hover{

transform:translateY(-4px);

background:var(--secondary);

}

.btn-secondary{

display:inline-flex;

padding:16px 36px;

border-radius:60px;

border:2px solid var(--primary);

color:var(--primary);

font-weight:700;

}

.btn-secondary:hover{

background:var(--primary);

color:#fff;

}
/*======================================================
  HERO SLIDER PREMIUM
======================================================*/

.hero-slider{

position:relative;

height:92vh;

min-height:760px;

overflow:hidden;

background:#000;

}

.hero-slider::before{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(90deg,
rgba(1,43,109,.88),
rgba(1,43,109,.35));

z-index:2;

}

.hero-slider::after{

content:"";

position:absolute;

left:0;
right:0;
bottom:0;

height:180px;

background:

linear-gradient(to top,
#fff,
transparent);

z-index:2;

}

.hero-slide{

position:absolute;

inset:0;

opacity:0;

visibility:hidden;

transition:
opacity 1.2s ease,
transform 10s linear;

overflow:hidden;

}

.hero-slide.active{

opacity:1;

visibility:visible;

z-index:1;

}

.hero-slide img{

position:absolute;

width:100%;

height:100%;

object-fit:cover;

animation:heroZoom 18s linear infinite;

filter:brightness(.82);

}

@keyframes heroZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.12);

}

}

/*====================================
Overlay
====================================*/

.overlay{

position:absolute;

inset:0;

background:

linear-gradient(
90deg,
rgba(1,43,109,.88),
rgba(1,43,109,.45),
rgba(0,0,0,.15)
);

z-index:2;

}

/*====================================
Hero Content
====================================*/

.hero-content{

position:relative;

z-index:3;

max-width:760px;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

padding-left:8%;

color:#fff;

}

.hero-content span{

display:inline-block;

width:max-content;

padding:10px 20px;

border-radius:50px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.18);

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:24px;

text-transform:uppercase;

}

.hero-content h2{

font-size:64px;

font-weight:800;

line-height:1.1;

margin-bottom:28px;

text-shadow:

0 6px 18px rgba(0,0,0,.35);

}

.hero-content p{

font-size:20px;

line-height:1.9;

max-width:640px;

opacity:.95;

margin-bottom:40px;

}

.hero-content .btn-primary{

width:max-content;

font-size:17px;

padding:18px 40px;

}

/*====================================
Navigation Arrow
====================================*/

.hero-slider-navigation{

position:absolute;

left:0;

right:0;

top:50%;

transform:translateY(-50%);

display:flex;

justify-content:space-between;

padding:0 40px;

z-index:5;

pointer-events:none;

}

.hero-slider-navigation button{

pointer-events:auto;

width:62px;

height:62px;

border:none;

border-radius:50%;

cursor:pointer;

background:rgba(255,255,255,.18);

backdrop-filter:blur(15px);

color:#fff;

font-size:26px;

transition:.35s;

}

.hero-slider-navigation button:hover{

background:#C99A2E;

transform:scale(1.08);

}

/*====================================
Indicator
====================================*/

.hero-slider-indicator{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:12px;

z-index:6;

}

.hero-slider-indicator span{

width:13px;

height:13px;

border-radius:50%;

background:rgba(255,255,255,.45);

cursor:pointer;

transition:.3s;

}

.hero-slider-indicator span.active{

width:42px;

border-radius:30px;

background:#fff;

}

/*====================================
Scroll Indicator
====================================*/

.hero-scroll{

position:absolute;

bottom:30px;

right:45px;

z-index:6;

display:flex;

flex-direction:column;

align-items:center;

color:#fff;

font-size:12px;

letter-spacing:3px;

text-transform:uppercase;

}

.hero-scroll::after{

content:"";

width:2px;

height:70px;

margin-top:15px;

background:#fff;

animation:scrollLine 2s infinite;

}

@keyframes scrollLine{

0%{

transform:scaleY(0);

transform-origin:top;

}

50%{

transform:scaleY(1);

transform-origin:top;

}

100%{

transform:scaleY(0);

transform-origin:bottom;

}

}

/*====================================
Floating Shapes
====================================*/

.hero-slider .shape{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

animation:floatShape 8s ease-in-out infinite;

z-index:2;

}

.hero-slider .shape.one{

width:120px;

height:120px;

top:12%;

right:10%;

}

.hero-slider .shape.two{

width:80px;

height:80px;

bottom:22%;

right:20%;

animation-delay:2s;

}

.hero-slider .shape.three{

width:160px;

height:160px;

bottom:12%;

left:6%;

animation-delay:4s;

}

@keyframes floatShape{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}
/*======================================================
 QUICK ACCESS
======================================================*/

.quick-access{

background:#fff;

margin-top:-80px;

position:relative;

z-index:50;

}

.quick-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.quick-card{

background:#fff;

border-radius:24px;

padding:40px 30px;

text-align:center;

box-shadow:0 20px 60px rgba(0,0,0,.06);

border:1px solid rgba(0,0,0,.05);

transition:.35s;

position:relative;

overflow:hidden;

}

.quick-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:6px;

width:100%;

background:linear-gradient(90deg,#012B6D,#C99A2E);

transform:scaleX(0);

transition:.35s;

}

.quick-card:hover::before{

transform:scaleX(1);

}

.quick-card:hover{

transform:translateY(-14px);

box-shadow:0 35px 80px rgba(0,0,0,.12);

}

.quick-card .icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:40px;

background:#EEF5FF;

color:#012B6D;

transition:.35s;

}

.quick-card:hover .icon{

background:#012B6D;

color:#fff;

transform:rotate(12deg);

}

.quick-card h3{

font-size:22px;

margin-bottom:15px;

font-weight:700;

color:#012B6D;

}

.quick-card p{

color:#666;

line-height:1.8;

}

/*======================================================
 RUNNING INFO
======================================================*/

.running-info{

padding:22px 0;

background:#012B6D;

color:#fff;

overflow:hidden;

}

.running-info .container{

display:flex;

align-items:center;

}

.running-label{

padding:12px 25px;

background:#C99A2E;

font-weight:700;

letter-spacing:2px;

margin-right:30px;

border-radius:50px;

white-space:nowrap;

}

.running-text{

flex:1;

font-size:15px;

}

/*======================================================
 WELCOME
======================================================*/

.welcome{

background:#f8fafd;

}

.welcome-grid{

display:grid;

grid-template-columns:520px 1fr;

gap:80px;

align-items:center;

}

.welcome-image{

position:relative;

}

.welcome-image::before{

content:"";

position:absolute;

left:-20px;

top:-20px;

width:100%;

height:100%;

border:6px solid #C99A2E;

border-radius:28px;

z-index:0;

}

.welcome-image img{

position:relative;

z-index:1;

border-radius:28px;

box-shadow:0 35px 90px rgba(0,0,0,.12);

}

.welcome-content span{

display:inline-block;

padding:10px 20px;

background:#EEF5FF;

border-radius:40px;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:20px;

color:#012B6D;

}

.welcome-content h2{

font-size:48px;

line-height:1.2;

margin-bottom:30px;

color:#012B6D;

font-weight:800;

}

.welcome-content p{

margin-bottom:22px;

font-size:17px;

line-height:2;

color:#555;

}

/*======================================================
 STATISTICS
======================================================*/

.statistics{

background:linear-gradient(135deg,#012B6D,#001B47);

color:#fff;

position:relative;

overflow:hidden;

}

.statistics::before{

content:"";

position:absolute;

width:700px;

height:700px;

border-radius:50%;

background:rgba(255,255,255,.04);

top:-350px;

right:-200px;

}

.statistics::after{

content:"";

position:absolute;

width:500px;

height:500px;

border-radius:50%;

background:rgba(255,255,255,.04);

bottom:-250px;

left:-150px;

}

.statistics .section-title h2{

color:#fff;

}

.statistics .section-title p{

color:rgba(255,255,255,.75);

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

z-index:2;

}

.stats-card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.12);

padding:50px 30px;

border-radius:24px;

text-align:center;

transition:.35s;

}

.stats-card:hover{

transform:translateY(-12px);

background:rgba(255,255,255,.14);

}

.stats-card h2{

font-size:54px;

font-weight:800;

margin-bottom:15px;

color:#FFD54F;

}

.stats-card p{

font-size:18px;

color:#fff;

}

/*======================================================
 FEATURE ARTICLE
======================================================*/

.featured-article{

background:#fff;

}

.article-box{

max-width:1050px;

margin:auto;

padding:60px;

border-radius:30px;

background:#fff;

box-shadow:0 30px 80px rgba(0,0,0,.08);

}

.article-box p{

font-size:18px;

line-height:2.1;

margin-bottom:26px;

color:#555;

text-align:justify;

}

.article-box p:last-child{

margin-bottom:0;

}
/*======================================================
 NEWS SECTION
======================================================*/

.news-section{

background:#f7f9fc;

position:relative;

overflow:hidden;

}

.news-section::before{

content:"";

position:absolute;

width:600px;

height:600px;

background:rgba(1,43,109,.04);

border-radius:50%;

left:-250px;

top:-180px;

}

.news-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

position:relative;

z-index:2;

}

.news-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 18px 45px rgba(0,0,0,.06);

transition:.4s;

position:relative;

}

.news-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 90px rgba(0,0,0,.15);

}

.news-image{

position:relative;

overflow:hidden;

height:260px;

}

.news-image img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.news-card:hover img{

transform:scale(1.12);

}

.news-category{

position:absolute;

top:20px;

left:20px;

padding:9px 18px;

border-radius:40px;

background:#012B6D;

color:#fff;

font-size:12px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

}

.news-content{

padding:30px;

}

.news-date{

display:block;

margin-bottom:15px;

font-size:13px;

color:#777;

font-weight:600;

}

.news-content h3{

font-size:24px;

line-height:1.4;

color:#012B6D;

margin-bottom:18px;

font-weight:700;

transition:.3s;

}

.news-card:hover h3{

color:#C99A2E;

}

.news-content p{

color:#666;

line-height:1.9;

margin-bottom:22px;

}

.news-content a{

font-weight:700;

color:#012B6D;

display:inline-flex;

align-items:center;

gap:8px;

}

.news-content a:hover{

gap:16px;

color:#C99A2E;

}

/*======================================================
 ANNOUNCEMENT
======================================================*/

.announcement-section{

background:#fff;

}

.announcement-list{

margin-top:50px;

}

.announcement-item{

display:flex;

align-items:center;

gap:35px;

padding:28px;

border-radius:18px;

background:#f8fafd;

margin-bottom:20px;

transition:.35s;

border-left:6px solid transparent;

}

.announcement-item:hover{

border-left-color:#012B6D;

background:#eef5ff;

transform:translateX(8px);

}

.announcement-date{

min-width:120px;

font-weight:700;

font-size:15px;

color:#012B6D;

}

.announcement-item a{

font-size:18px;

font-weight:600;

color:#263238;

transition:.3s;

}

.announcement-item:hover a{

color:#012B6D;

}

/*======================================================
 AGENDA
======================================================*/

.agenda-section{

background:linear-gradient(135deg,#012B6D,#001B47);

color:#fff;

}

.agenda-section .section-title h2,

.agenda-section .section-header h2{

color:#fff;

}

.agenda-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.agenda-card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.15);

border-radius:22px;

padding:45px 25px;

text-align:center;

transition:.35s;

}

.agenda-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.14);

}

.agenda-card h3{

font-size:58px;

font-weight:800;

color:#FFD54F;

line-height:1;

margin-bottom:12px;

}

.agenda-card span{

display:block;

font-size:14px;

letter-spacing:3px;

font-weight:700;

margin-bottom:25px;

color:#fff;

}

.agenda-card p{

font-size:17px;

line-height:1.8;

color:#f4f4f4;

}

/*======================================================
 SECTION HEADER
======================================================*/

.section-header{

text-align:center;

max-width:760px;

margin:0 auto 60px;

}

.section-subtitle{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:#eef5ff;

color:#012B6D;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:18px;

text-transform:uppercase;

}

.section-header h2{

font-size:44px;

font-weight:800;

color:#012B6D;

margin-bottom:18px;

}

.section-description{

font-size:17px;

line-height:1.9;

color:#666;

}
/*======================================================
 SERVICE SECTION
======================================================*/

.service-section{

background:#ffffff;

position:relative;

overflow:hidden;

}

.service-section::before{

content:"";

position:absolute;

right:-220px;

top:-220px;

width:650px;

height:650px;

border-radius:50%;

background:rgba(1,43,109,.04);

}

.service-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:32px;

position:relative;

z-index:2;

}

.service-card{

background:#fff;

padding:42px 28px;

border-radius:22px;

text-align:center;

box-shadow:0 18px 45px rgba(0,0,0,.06);

transition:.35s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:0;

background:linear-gradient(180deg,#012B6D,#001B47);

transition:.45s;

z-index:0;

}

.service-card:hover::before{

height:100%;

}

.service-card>*{

position:relative;

z-index:2;

}

.service-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:24px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:38px;

background:#EEF5FF;

color:#012B6D;

transition:.35s;

}

.service-card:hover .service-icon{

background:#fff;

color:#012B6D;

transform:rotate(15deg);

}

.service-card h3{

font-size:23px;

margin-bottom:15px;

font-weight:700;

color:#012B6D;

transition:.3s;

}

.service-card p{

line-height:1.9;

color:#666;

transition:.3s;

}

.service-card:hover h3,

.service-card:hover p{

color:#fff;

}

/*======================================================
 GALLERY
======================================================*/

.gallery-section{

background:#f8fafd;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:22px;

}

.gallery-grid img{

width:100%;

height:320px;

object-fit:cover;

border-radius:22px;

transition:.8s;

cursor:pointer;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

transform:scale(1.05);

filter:brightness(.88);

}

/*======================================================
 PARTNER
======================================================*/

.partner-section{

background:#fff;

padding:90px 0;

}

.partner-slider{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:40px;

align-items:center;

}

.partner-slider img{

width:100%;

filter:grayscale(100%);

opacity:.55;

transition:.35s;

}

.partner-slider img:hover{

filter:none;

opacity:1;

transform:scale(1.08);

}

/*======================================================
 CTA
======================================================*/

.cta-section{

padding:120px 0;

background:

linear-gradient(135deg,

#012B6D,

#001B47);

position:relative;

overflow:hidden;

}

.cta-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.05);

border-radius:50%;

right:-180px;

top:-180px;

}

.cta-box{

position:relative;

z-index:2;

text-align:center;

color:#fff;

max-width:900px;

margin:auto;

}

.cta-box h2{

font-size:54px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.cta-box p{

font-size:19px;

line-height:2;

opacity:.92;

margin-bottom:40px;

}

.cta-button{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/*======================================================
 FOOTER
======================================================*/

footer{

background:#081B36;

color:#d9e3ef;

padding-top:90px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.3fr;

gap:60px;

padding-bottom:60px;

}

.footer-grid h3{

color:#fff;

margin-bottom:24px;

font-size:22px;

}

.footer-grid p{

line-height:2;

margin-bottom:15px;

}

.footer-grid ul li{

margin-bottom:14px;

}

.footer-grid ul li a{

transition:.3s;

}

.footer-grid ul li a:hover{

padding-left:10px;

color:#FFD54F;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding:25px 0;

text-align:center;

font-size:15px;

opacity:.8;

}

/*======================================================
 SCROLL TO TOP
======================================================*/

#scrollTop{

position:fixed;

right:30px;

bottom:30px;

width:58px;

height:58px;

border:none;

border-radius:50%;

background:#012B6D;

color:#fff;

font-size:24px;

cursor:pointer;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 20px 45px rgba(0,0,0,.20);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9999;

}

#scrollTop.show{

opacity:1;

visibility:visible;

}

#scrollTop:hover{

transform:translateY(-8px);

background:#C99A2E;

}

/*======================================================
 CUSTOM SCROLLBAR
======================================================*/

::-webkit-scrollbar{

width:12px;

}

::-webkit-scrollbar-track{

background:#edf2f7;

}

::-webkit-scrollbar-thumb{

background:#012B6D;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#C99A2E;

}

/*======================================================
 SELECTION
======================================================*/

::selection{

background:#012B6D;

color:#fff;

}

/*======================================================
 IMAGE HOVER
======================================================*/

img{

transition:.45s;

}

img:hover{

transform:translateZ(0);

}
/*======================================================
 INTERNAL PAGE
======================================================*/

.page-hero{

position:relative;

padding:140px 0 90px;

background:

linear-gradient(

rgba(1,43,109,.88),

rgba(1,43,109,.88)

),

url("../assets/images/hero/internal.jpg")

center/cover;

color:#fff;

text-align:center;

}

.page-label{

display:inline-block;

padding:8px 18px;

border-radius:100px;

background:rgba(255,255,255,.15);

margin-bottom:20px;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

}

.page-hero h1{

font-size:52px;

margin-bottom:18px;

font-weight:700;

}

.page-hero p{

max-width:760px;

margin:auto;

font-size:18px;

line-height:1.9;

opacity:.95;

}
.breadcrumb-section{

background:#fff;

padding:22px 0;

border-bottom:1px solid #ececec;

}

.breadcrumb{

display:flex;

gap:10px;

align-items:center;

font-size:15px;

}

.breadcrumb a{

color:var(--primary);

font-weight:600;

text-decoration:none;

}

.breadcrumb span{

color:#777;

}
.page-content{

padding:80px 0;

}

.page-grid{

display:grid;

grid-template-columns:2fr 360px;

gap:50px;

align-items:start;

}

.content-area{

min-width:0;

}

.sidebar{

position:sticky;

top:110px;

}
.sidebar-widget{

background:#fff;

border-radius:18px;

padding:30px;

margin-bottom:30px;

box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.sidebar-widget h3{

margin-bottom:20px;

font-size:24px;

color:var(--primary);

}

.sidebar-widget ul{

list-style:none;

padding:0;

margin:0;

}

.sidebar-widget li{

padding:14px 0;

border-bottom:1px solid #eee;

}

.sidebar-widget li:last-child{

border:none;

}

.sidebar-widget a{

text-decoration:none;

color:#333;

font-weight:500;

}

.sidebar-widget a:hover{

color:var(--primary);

}