/*==================================================
  PT ARTHA REKA NUSANTARA
  Design System v1.0
==================================================*/

:root{

    /* Primary Colors */
    --primary:#0B2D5C;
    --primary-light:#17467E;
    --accent:#D49A1F;

    /* Neutral */
    --white:#FFFFFF;
    --light:#F8F9FB;
    --gray:#6B7280;
    --dark:#1F2937;

    /* Border */
    --border:#E5E7EB;

    /* Radius */
    --radius-sm:10px;
    --radius-md:18px;
    --radius-lg:30px;

    /* Shadow */
    --shadow-sm:0 8px 20px rgba(0,0,0,.05);
    --shadow-md:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    /* Transition */
    --transition:.35s ease;

    /* Container */
    --container:1320px;

    /* Section */
    --section-padding:120px;

}

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

h1{

    font-size:72px;
    font-weight:700;
    line-height:1.1;

}

h2{

    font-size:46px;
    font-weight:700;

}

h3{

    font-size:34px;
    font-weight:700;

}

h4{

    font-size:26px;
    font-weight:600;

}

p{

    font-size:17px;
    color:var(--gray);
    line-height:1.9;

}

.container-custom{

    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 20px;

}

.btn-primary{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:var(--accent);

    color:white;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid white;

    color:white;

    padding:15px 34px;

    border-radius:50px;

}

.section-heading{

    margin-bottom:60px;

}

.section-subtitle{

    color:var(--accent);

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

}

.section-title{

    color:var(--primary);

    margin-top:15px;

}

.card-custom{

    background:white;

    border-radius:20px;

    padding:40px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card-custom:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.section{

    padding:var(--section-padding) 0;

}

.bg-light{

    background:var(--light);

}

.text-center{

    text-align:center;

}

.fade-up{

    transition:.6s;

}

/*=========================================
    SECTION HEADER
=========================================*/

.section-header{

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    color:var(--accent);

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    font-size:48px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:20px;

    line-height:1.2;

}

.section-description{

    max-width:700px;

    color:var(--gray);

    line-height:1.9;

    font-size:17px;

}

/*==================================================
    CTA SECTION
==================================================*/

.cta-section{

    padding:120px 0;

}

.cta-wrapper{

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    border-radius:28px;

    padding:70px;

    overflow:hidden;

    position:relative;

    color:#fff;

}

.cta-wrapper::before{

    content:'';

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;

    right:-80px;

}

.cta-tag{

    display:inline-block;

    color:rgba(255,255,255,.75);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:18px;

}

.cta-title{

    color:#fff;

    font-size:44px;

    margin-bottom:20px;

    line-height:1.2;

}

.cta-text{

    color:rgba(255,255,255,.85);

    max-width:650px;

}

.cta-wrapper .btn-primary-custom{

    margin-right:12px;

}

.cta-wrapper .btn-secondary-custom{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

}

.cta-wrapper .btn-secondary-custom:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
    FOOTER
==================================================*/

.footer{

    background:#0A2245;

    color:#fff;

    padding-top:90px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-about{

    color:rgba(255,255,255,.75);

    line-height:1.9;

}

.footer-title{

    color:#fff;

    font-size:20px;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links{

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--accent);

    padding-left:5px;

}

.footer-contact{

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:18px;

    color:rgba(255,255,255,.75);

}

.footer-contact i{

    color:var(--accent);

    font-size:20px;

}

.footer-social{

    margin-top:30px;

    display:flex;

    gap:12px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--accent);

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

}

.copyright,
.developer{

    color:rgba(255,255,255,.6);

    margin:0;

}

.developer strong{

    color:#fff;

}

/*==================================================
    BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--accent);

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.3s;

    box-shadow:var(--shadow-md);

}

#backToTop:hover{

    transform:translateY(-5px);

}

/*==================================================
    REVEAL ANIMATION
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
    PAGE HERO
==================================================*/

.page-hero{

    padding-top:180px;
    padding-bottom:120px;

    background:#F8F9FB;

}

.page-subtitle{

    display:inline-block;

    color:var(--accent);

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.page-title{

    color:var(--primary);

    margin-bottom:25px;

    line-height:1.15;

}

.page-description{

    font-size:18px;

    max-width:650px;

    margin-bottom:40px;

}

.page-image{

    position:relative;

}

.page-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow-lg);

}

/*==================================================
    COMPANY ABOUT
==================================================*/

.company-about-image{

    position:relative;

}

.company-about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.about-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:20px 25px;

    box-shadow:var(--shadow-md);

}

.experience-card{

    top:30px;

    left:-35px;

    text-align:center;

}

.experience-card h3{

    color:var(--primary);

    margin:0;

    font-size:36px;

}

.experience-card span{

    font-size:14px;

    color:var(--gray);

}

.customer-card{

    right:-30px;

    bottom:40px;

    display:flex;

    align-items:center;

    gap:15px;

}

.customer-card i{

    color:var(--accent);

    font-size:36px;

}

.customer-card strong{

    display:block;

    color:var(--primary);

}

.customer-card small{

    color:var(--gray);

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

}

.feature-item i{

    color:#28a745;

}

/*==================================================
    VISION & MISSION
==================================================*/

.vision-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.vision-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.vision-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:rgba(11,45,92,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.vision-icon i{

    font-size:34px;

    color:var(--primary);

}

.vision-card h3{

    margin-bottom:20px;

    color:var(--primary);

}

.vision-card p{

    margin-bottom:0;

}

.mission-list{

    margin:0;

    padding:0;

    list-style:none;

}

.mission-list li{

    position:relative;

    padding-left:32px;

    margin-bottom:18px;

    color:var(--gray);

    line-height:1.8;

}

.mission-list li:last-child{

    margin-bottom:0;

}

.mission-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#198754;

    color:#fff;

    font-size:12px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*==================================================
    COMPANY VALUES
==================================================*/

.value-card{

    background:#fff;

    padding:40px 35px;

    border-radius:24px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    border:1px solid #eef2f7;

    transition:var(--transition);

    height:100%;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.value-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:22px;

    background:rgba(11,45,92,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.value-icon i{

    font-size:36px;

    color:var(--primary);

}

.value-card h4{

    color:var(--primary);

    margin-bottom:15px;

}

.value-card p{

    margin-bottom:0;

    line-height:1.8;

}

/*==================================================
    COMPANY TIMELINE
==================================================*/

.timeline{

    position:relative;

    max-width:900px;

    margin:70px auto 0;

}

.timeline::before{

    content:"";

    position:absolute;

    left:130px;

    top:0;

    bottom:0;

    width:3px;

    background:#dbe4ef;

}

.timeline-item{

    display:flex;

    position:relative;

    margin-bottom:60px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-year{

    width:110px;

    min-width:110px;

    height:55px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    z-index:2;

}

.timeline-content{

    flex:1;

    margin-left:60px;

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    position:relative;

}

.timeline-content::before{

    content:"";

    position:absolute;

    left:-43px;

    top:28px;

    width:16px;

    height:16px;

    background:var(--accent);

    border-radius:50%;

    border:5px solid #fff;

    box-shadow:0 0 0 4px rgba(212,154,31,.2);

}

.timeline-content h4{

    color:var(--primary);

    margin-bottom:15px;

}

.timeline-content p{

    margin-bottom:0;

}

/*==================================================
    WHY CHOOSE US
==================================================*/

.why-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

    align-items:flex-start;

}

.why-item:last-child{

    margin-bottom:0;

}

.why-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:18px;

    background:rgba(11,45,92,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.why-icon i{

    font-size:24px;

    color:var(--primary);

}

.why-item h5{

    color:var(--primary);

    margin-bottom:10px;

    font-size:20px;

}

.why-item p{

    margin-bottom:0;

}

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.why-floating-card{

    position:absolute;

    left:-40px;

    bottom:35px;

    background:#fff;

    padding:25px 30px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.why-floating-card h3{

    margin:0;

    color:var(--primary);

    font-size:40px;

}

.why-floating-card span{

    color:var(--gray);

    font-size:15px;

}

/*==================================================
    SERVICES
==================================================*/

.service-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    height:100%;

    border:1px solid #edf2f7;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    background:rgba(11,45,92,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    font-size:34px;

    color:var(--primary);

}

.service-card h4{

    color:var(--primary);

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:0;

    line-height:1.8;

}

/*==================================================
    WORK PROCESS
==================================================*/

.process-card{

    position:relative;

    background:#fff;

    padding:45px 30px;

    border-radius:24px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:14px;

    font-weight:700;

    color:var(--accent);

    opacity:.4;

}

.process-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:22px;

    background:rgba(11,45,92,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-icon i{

    font-size:36px;

    color:var(--primary);

}

.process-card h4{

    margin-bottom:15px;

    color:var(--primary);

}

.process-card p{

    margin-bottom:0;

    line-height:1.8;

}

/*==================================================
    WHY OUR SERVICES
==================================================*/

.why-service-image{

    position:relative;

}

.why-service-image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.service-badge{

    position:absolute;

    right:-20px;

    bottom:30px;

    background:#fff;

    padding:25px 30px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    text-align:center;

}

.service-badge h3{

    color:var(--primary);

    margin-bottom:5px;

}

.service-badge span{

    color:var(--gray);

    font-size:14px;

}

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:25px;

    background:#fff;

    border-radius:18px;

    border:1px solid #edf2f7;

    transition:var(--transition);

}

.feature-box:hover{

    transform:translateX(8px);

    box-shadow:var(--shadow-md);

}

.feature-box i{

    width:60px;

    height:60px;

    border-radius:18px;

    background:rgba(11,45,92,.08);

    color:var(--primary);

    font-size:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.feature-box h5{

    color:var(--primary);

    margin-bottom:8px;

}

.feature-box p{

    margin-bottom:0;

    line-height:1.7;

}

/*==================================================
    FAQ
==================================================*/

.custom-accordion .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:var(--shadow-sm);

}

.custom-accordion .accordion-button{

    background:#fff;

    color:var(--primary);

    font-weight:600;

    padding:22px 28px;

    box-shadow:none;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.custom-accordion .accordion-button:focus{

    box-shadow:none;

}

.custom-accordion .accordion-body{

    padding:25px 28px;

    line-height:1.8;

    background:#fff;

}

/*==================================================
    FEATURED PRODUCTS
==================================================*/

.product-card{

    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    height:100%;
    border:1px solid #edf2f7;

}

.product-card:hover{

    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);

}

.product-image{

    overflow:hidden;

}

.product-image img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;

}

.product-card:hover .product-image img{

    transform:scale(1.05);

}

.product-content{

    padding:30px;

}

.product-category{

    display:inline-block;
    background:rgba(11,45,92,.08);
    color:var(--primary);
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;

}

.product-content h4{

    color:var(--primary);
    margin-bottom:15px;

}

.product-content p{

    line-height:1.8;
    margin-bottom:25px;

}

/*==================================================
    BRANDS
==================================================*/

.brand-card{

    background:#fff;

    height:140px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid #edf2f7;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    padding:20px;

}

.brand-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.brand-card img{

    max-width:140px;

    max-height:70px;

    width:auto;

    height:auto;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:.3s;

}

.brand-card:hover img{

    filter:none;

    opacity:1;

}

/*==================================================
    WHY OUR PRODUCTS
==================================================*/

.product-feature{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:25px;

    background:#fff;

    border-radius:18px;

    border:1px solid #edf2f7;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.product-feature:hover{

    transform:translateX(8px);

    box-shadow:var(--shadow-lg);

}

.product-why-image{

    position:relative;

}

.product-why-image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.product-floating-card{

    position:absolute;

    bottom:30px;

    left:-30px;

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    max-width:260px;

}

.product-floating-card h3{

    color:var(--primary);

    margin-bottom:10px;

    font-size:42px;

}

.product-floating-card p{

    margin:0;

    color:var(--gray);

}

/*==================================================
    PORTFOLIO
==================================================*/

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    cursor:pointer;

}

.portfolio-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:30px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    color:#fff;

}

.portfolio-overlay span{

    display:inline-block;

    margin-bottom:8px;

    color:#FFD56A;

    font-size:14px;

    font-weight:600;

}

.portfolio-overlay h4{

    margin:0;

    color:#fff;

}

/*==================================================
    COMPANY ACTIVITIES
==================================================*/

.activity-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:24px;

    border:1px solid #edf2f7;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.activity-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.activity-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:22px;

    background:rgba(11,45,92,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.activity-icon i{

    font-size:34px;

    color:var(--primary);

}

.activity-card h4{

    margin-bottom:15px;

    color:var(--primary);

}

.activity-card p{

    margin-bottom:0;

    line-height:1.8;

}

/*==================================================
    CONTACT INFO
==================================================*/

.contact-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:24px;

    border:1px solid #edf2f7;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.contact-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:22px;

    background:rgba(11,45,92,.08);

    display:flex;

    align-items:center;

    justify-content:center;

}

.contact-icon i{

    font-size:32px;

    color:var(--primary);

}

.contact-card h4{

    color:var(--primary);

    margin-bottom:15px;

}

.contact-card p{

    margin:0;

    line-height:1.8;

}

/*==================================================
    CONTACT FORM
==================================================*/

.contact-form-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:var(--shadow-md);

}

.custom-input{

    border-radius:14px;

    border:1px solid #dbe4ef;

    padding:14px 18px;

    transition:.3s;

}

.custom-input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(11,45,92,.12);

}

.contact-side-card{

    background:var(--primary);

    color:#fff;

    padding:45px;

    border-radius:24px;

    position:sticky;

    top:120px;

}

.contact-side-card h3{

    color:#fff;

    margin-bottom:20px;

}

.contact-side-card p{

    opacity:.9;

    margin-bottom:35px;

    line-height:1.8;

}

.contact-benefit{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.contact-benefit:last-child{

    margin-bottom:0;

}

.contact-benefit i{

    color:#FFD56A;

    font-size:22px;

}

/*==================================================
    OFFICE LOCATION
==================================================*/

.office-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow-md);

    height:100%;

}

.office-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:30px;

}

.office-item:last-child{

    margin-bottom:0;

}

.office-item i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(11,45,92,.08);

    border-radius:18px;

    color:var(--primary);

    font-size:24px;

}

.office-item h5{

    color:var(--primary);

    margin-bottom:8px;

}

.office-item p{

    margin:0;

    line-height:1.7;

}

.map-wrapper{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-md);

}

.map-wrapper iframe{

    width:100%;

    height:520px;

    border:0;

}

/*==================================================
    CONTACT FAQ
==================================================*/

.custom-accordion .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:var(--shadow-sm);

}

.custom-accordion .accordion-button{

    padding:22px 28px;

    font-weight:600;

    color:var(--primary);

    background:#fff;

    box-shadow:none;

}

.custom-accordion .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.custom-accordion .accordion-button:focus{

    box-shadow:none;

}

.custom-accordion .accordion-body{

    padding:25px 28px;

    line-height:1.9;

}

/*==================================================
    NAVBAR
==================================================*/

.navbar{

    transition:.35s ease;

}

/* ===============================
   NAVBAR BRAND
================================= */

.navbar-brand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.navbar-brand img{
    width:60px;
    height:auto;
    display:block;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.company-name{
    font-size:18px;
    font-weight:700;
    color:#ffffff;
}

.navbar-scrolled .company-name{
    color:#0B2D5C;
}

.brand-text small{
    color:#ddd;
    font-size:12px;
}

.navbar-scrolled .brand-text small{
    color:#666;
}

.nav-link{

    position:relative;

    font-weight:500;

    margin:0 12px;

    transition:.3s;

}

.nav-link.active{

    color:var(--primary)!important;

    font-weight:700;

}

.nav-link.active::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:3px;

    border-radius:30px;

    background:var(--accent);

}

.nav-link:hover{

    color:var(--primary);

}

.navbar{

    background:transparent;

    transition:.35s;

}

.navbar-scrolled{

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding-top:12px;

    padding-bottom:12px;

}

/*==================================================
    PRELOADER
==================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    transition:.6s ease;

}

#preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-wrapper{

    text-align:center;

}

.loader-logo{

    width:90px;

    margin-bottom:25px;

    animation:logoFloat 2s infinite ease-in-out;

}

.loader-spinner{

    width:55px;

    height:55px;

    border:4px solid #e8eef5;

    border-top:4px solid var(--primary);

    border-radius:50%;

    margin:auto;

    animation:spin .9s linear infinite;

}

.loader-text{

    margin-top:25px;

    font-size:15px;

    font-weight:600;

    color:var(--primary);

    letter-spacing:1px;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes logoFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

body.loading{

    overflow:hidden;

}

body{

    opacity:0;

    transition:opacity .4s ease;

}

body.loaded{

    opacity:1;

}

[data-aos]{

    will-change:transform,opacity;

}
