/* ==========================================
   SHUBH LABH DISTRIBUTIONS
   Premium Corporate Theme
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=========================
HEADER
=========================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:transparent;
    transition:.35s;
    z-index:1000;
}

header.scrolled{
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.navbar{
    display:flex;
    align-items:center;
    height:90px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.logo img{
    height:65px;
}

.logo-text h2{
    font-size:28px;
    line-height:1;
    color:#fff;
    font-weight:700;
}

.logo-text span{
    color:#D4AF37;
    font-size:12px;
    letter-spacing:2px;
    font-weight:600;
}

header.scrolled .logo-text h2{
    color:#0B2D5C;
}

/* Push menu to right */
.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
    margin-left:auto;
}

.nav-links a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

header.scrolled .nav-links a{
    color:#0B2D5C;
}

.nav-links a:hover,
.nav-links a.active{
    color:#D4AF37;
}

.login-btn{
    background:#D4AF37;
    color:#fff !important;
    padding:13px 28px;
    border-radius:40px;
    font-weight:600;
}

.login-btn:hover{
    background:#0B2D5C;
    color:#fff !important;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}

header.scrolled .menu-toggle{
    color:#0B2D5C;
}

/*=========================
HERO
=========================*/

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:flex-start;
z-index:0;
    background: url("hero1.jpg") center center / cover no-repeat;
background-color: #000;

    padding-top:510px;
    overflow:hidden;
}

/* Very light overlay only for readability */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,.08),
        rgba(255,255,255,.12)
    );
    z-index:1;
}

.hero-container{
    position:relative;
    z-index:2;
    width:100%;
    display:flex;
    justify-content:center;
}

.hero-content{
    max-width:700px;
    color:#0B2D5C;
    text-align:center;

    /* Move content down */
    margin-top:240px;
}

.hero-tagline{
    display:inline-block;
    background:rgba(212,175,55,.18);
    color:#B8860B;
    padding:12px 24px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:40px;
    backdrop-filter:blur(6px);
}

/* Hidden because text already exists in image */
.hero h1,
.hindi-tagline,
.hero p{
    display:none;
}

.hero-buttons{
    display:flex;
    justify-content:column;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn-primary{
    display:inline-block;
    background:#D4AF37;
    color:#fff;
    padding:16px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 12px 25px rgba(212,175,55,.35);
}

.btn-primary:hover{
    transform:translateY(-3px);
    background:#b8901f;
}

.btn-secondary{
    display:inline-block;
    border:2px solid #0B2D5C;
    color:#0B2D5C;
    background:rgba(255,255,255,.7);
    padding:16px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
    backdrop-filter:blur(6px);
}

.btn-secondary:hover{
    background:#0B2D5C;
    color:#fff;
}

/* Tablet */
@media(max-width:992px){

.hero{
    background-size:cover;
    background-position:center top;
}

.hero-content{
    margin-top:180px;
}

}

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

.hero{
    min-height:100vh;
    background-size:cover;
    background-position:center top;
    padding-top:140px;
}

.hero-content{
    margin-top:340px;   /* Move buttons lower */
    text-align:center;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    margin-top:40px;
}

.hero-buttons a{
    width:280px;
    text-align:center;
}

}

/*=========================================
SECTION HEADINGS
=========================================*/

section{
    padding:100px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    display:inline-block;
    color:#D4AF37;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    color:#0B2D5C;
    margin-bottom:20px;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*=========================================
ABOUT
=========================================*/

.about{
    background:#ffffff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.about-content h3{
    font-size:34px;
    color:#0B2D5C;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.about-content .btn-primary{
    margin-bottom:40px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-item{
    display:flex;
    gap:18px;
    padding:25px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-8px);
}

.feature-item i{
    width:60px;
    height:60px;
    background:#D4AF37;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:24px;
}

.feature-item h4{
    color:#0B2D5C;
    margin-bottom:8px;
}

.feature-item p{
    margin:0;
    font-size:15px;
}

/*=========================================
HOW IT WORKS
=========================================*/

.how-we-work{
    background:#F7F9FC;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:42px;
    font-weight:700;
    color:#eef2f8;
}

.process-card i{
    font-size:50px;
    color:#D4AF37;
    margin-bottom:20px;
}

.process-card h3{
    color:#0B2D5C;
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.8;
}

/*=========================================
BUSINESS FLOW
=========================================*/

.workflow-note{
    margin-top:60px;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.workflow-note h3{
    text-align:center;
    color:#0B2D5C;
    margin-bottom:35px;
}

.business-flow{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.flow-item{
    width:180px;
    background:#0B2D5C;
    color:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
}

.flow-item i{
    font-size:34px;
    color:#D4AF37;
    margin-bottom:12px;
}

.flow-arrow{
    font-size:28px;
    color:#D4AF37;
}

.flow-description{
    margin-top:35px;
    text-align:center;
    color:#666;
    line-height:1.9;
}
/*=========================================
WHY JOIN SHUBH LABH
=========================================*/

.why-choose{
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
    border-top:5px solid transparent;
}

.why-card:hover{
    transform:translateY(-10px);
    border-top:5px solid #D4AF37;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.why-card i{
    font-size:52px;
    color:#D4AF37;
    margin-bottom:25px;
}

.why-card h3{
    color:#0B2D5C;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/*=========================================
OUR SERVICES
=========================================*/

.services{
    background:#F7F9FC;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
    overflow:hidden;
    position:relative;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#D4AF37;
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-card i{
    width:90px;
    height:90px;
    margin:auto;
    background:#0B2D5C;
    color:#D4AF37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:25px;
    transition:.35s;
}

.service-card:hover i{
    background:#D4AF37;
    color:#fff;
}

.service-card h3{
    color:#0B2D5C;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/*=========================================
COMMON BUTTON ALIGNMENT
=========================================*/

.services .btn-primary,
.products .btn-primary,
.careers .btn-primary{
    margin-top:10px;
}

/*=========================================
CARD ANIMATION
=========================================*/

.feature-item,
.process-card,
.why-card,
.service-card{
    transition:all .35s ease;
}

.feature-item:hover,
.process-card:hover,
.why-card:hover,
.service-card:hover{
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/*=========================================
OUR PRODUCTS
=========================================*/

.products{
    background:#ffffff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-content{
    padding:30px;
}

.product-content h3{
    color:#0B2D5C;
    margin-bottom:15px;
    font-size:24px;
}

.product-content p{
    color:#666;
    line-height:1.8;
}

.products .section-heading h3{
    color:#0B2D5C;
    font-size:30px;
    margin-bottom:15px;
}

/*=========================================
CAREERS
=========================================*/

.careers{
    background:#F7F9FC;
}

.careers .service-card{
    min-height:340px;
}

.careers .service-card h3{
    margin-top:15px;
}

/*=========================================
JOIN OUR TEAM BANNER
=========================================*/

.contact-banner{

    background:linear-gradient(135deg,#0B2D5C,#184D90);

    color:#fff;

    padding:80px 0;

}

.contact-banner-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.contact-banner h2{

    font-size:42px;

    margin:15px 0;

}

.contact-banner h3{

    color:#D4AF37;

    margin-bottom:20px;

}

.contact-banner p{

    color:#f2f2f2;

    line-height:1.9;

}

.contact-banner .btn-primary{

    margin-right:15px;

}

.contact-banner .btn-secondary{

    border:2px solid #fff;

}
.contact-form{
    width:100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:16px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:8px;
    margin-bottom:18px;
    box-sizing:border-box;
}

.contact-form textarea{
    min-height:140px;
}
/*=========================================
SECTION SPACING
=========================================*/

.about,
.how-we-work,
.why-choose,
.services,
.products,
.careers{

    padding:110px 0;

}

/*=========================================
HOVER EFFECTS
=========================================*/

.product-card:hover img{

    transform:scale(1.08);

}

.product-card img{

    transition:.5s;

}

.service-card:hover i,
.why-card:hover i,
.feature-item:hover i{

    transform:rotate(10deg) scale(1.08);

    transition:.35s;

}

.btn-primary:hover,
.btn-secondary:hover,
.login-btn:hover{

    transform:translateY(-3px);

}
/*=========================================
FOOTER
=========================================*/

footer{
    background:#081C3A;
    color:#ffffff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding-bottom:50px;
}

.footer-about img{
    width:90px;
    margin-bottom:20px;
}

.footer-about h3{
    font-size:28px;
    margin-bottom:15px;
}

.footer-about p{
    color:#d7d7d7;
    line-height:1.9;
}

.footer-grid h4{
    color:#D4AF37;
    margin-bottom:25px;
}

.footer-grid ul li{
    margin-bottom:15px;
}

.footer-grid ul li a{
    color:#d7d7d7;
    transition:.3s;
}

.footer-grid ul li a:hover{
    color:#D4AF37;
    padding-left:6px;
}

.footer-grid p{
    color:#d7d7d7;
    margin-bottom:12px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#D4AF37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.social-icons a:hover{
    background:#fff;
    color:#0B2D5C;
    transform:translateY(-5px);
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    padding:25px;
    color:#cccccc;
}

/*=========================================
BACK TO TOP BUTTON
=========================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

#topBtn.show-btn{
    opacity:1;
    visibility:visible;
}

#topBtn:hover{
    background:#0B2D5C;
}

/*=========================================
SCROLL ANIMATION
=========================================*/
/*
section{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}*/
section{
    opacity:1;
    transform:none;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.about-wrapper{
grid-template-columns:1fr;
}

.process-grid,
.services-grid,
.product-grid,
.why-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

.contact-banner-content{
flex-direction:column;
text-align:center;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
height:auto;
padding:20px 0;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:18px;
margin:20px 0;
}

.hero{
text-align:center;
padding-top:140px;
}

.hero h1{
font-size:38px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.hero-buttons a{
width:230px;
text-align:center;
}

.process-grid,
.services-grid,
.product-grid,
.why-grid,
.about-features,
.footer-grid{
grid-template-columns:1fr;
}

.business-flow{
flex-direction:column;
}

.flow-arrow{
transform:rotate(90deg);
}

.contact-banner .btn-primary,
.contact-banner .btn-secondary{
display:block;
margin:15px auto;
width:240px;
text-align:center;
}

.section-heading h2{
font-size:34px;
}

}

@media(max-width:480px){

.container{
width:92%;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

.section-heading h2{
font-size:28px;
}

.logo img{
height:55px;
}

.logo-text h2{
font-size:22px;
}

.login-btn{
padding:12px 22px;
}

}

/*=========================================
MOBILE HAMBURGER MENU
=========================================*/

/* Hide hamburger on desktop 
.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

header.scrolled .menu-toggle{
    color:#0B2D5C;
}

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

    .navbar{
        position:relative;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        height:80px;
    }

    .logo{
        gap:10px;
    }

    .logo img{
        height:55px;
    }

    .logo-text h2{
        font-size:22px;
    }

    .logo-text span{
        font-size:11px;
    }

    .menu-toggle{
        display:block;
        z-index:1001;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#0B2D5C;

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:0;

        max-height:0;
        overflow:hidden;

        transition:0.4s ease;
    }

    .nav-links.active{
        max-height:600px;
        padding:20px 0;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        padding:15px;
        color:#fff;
    }

    .login-btn{
        display:inline-block;
        margin:20px auto;
    }

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
        max-width:260px;
        text-align:center;
    }
}
.nav-links.active{
    display:flex;
    flex-direction:column;
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    background:#0B2D5C;
    max-height:calc(100vh - 80px);
    overflow-y:auto;
    padding:15px 0;
    z-index:999;
}

.nav-links.active li{
    width:100%;
}

.nav-links.active li a{
    display:block;
    padding:15px 20px;
    text-align:center;
    color:#fff;
}

.nav-links.active .login-btn{
    width:220px;
    margin:20px auto;
    text-align:center;
}*/

/*=========================================
MOBILE MENU
=========================================*/

@media(max-width:768px){

.navbar{
    height:80px;
    display:flex;
    align-items:center;
}

.logo img{
    height:55px;
}

.logo-text h2{
    font-size:22px;
}

.logo-text span{
    font-size:11px;
}

.menu-toggle{
    display:block;
    margin-left:auto;
    z-index:1001;
}

.nav-links{
    position:fixed;
    top:80px;
    left:0;
    right:0;
    bottom:0;
    width:100%;

    background:#0B2D5C;

    display:flex;
    flex-direction:column;

    max-height:0;
    overflow-y:auto;

    transition:.35s;

    z-index:9999;
}

.nav-links.active{
    max-height:calc(100vh - 80px);
    overflow-y:auto;
    padding:15px 0;
}

.nav-links li{
    width:100%;
}

.nav-links li a{
    display:block;
    text-align:center;
    padding:16px;
    color:#fff;
}

.login-btn{
    width:220px;
    margin:20px auto;
    text-align:center;
}

}
@media(max-width:768px){

.contact-form{
    padding:20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    font-size:16px;
}

}
/* ===== CONTACT FORM FIX ===== */

.contact-section{
    background:#F7F9FC;
    padding:100px 0;
}

.contact-form{
    max-width:900px;
    margin:40px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
}

.contact-form textarea{
    grid-column:1 / 3;
    min-height:180px;
}

.contact-form .btn-primary{
    grid-column:1 / 3;
    justify-self:center;
}

@media(max-width:768px){

    .contact-form{
        grid-template-columns:1fr;
        padding:0;
    }

    .contact-form textarea,
    .contact-form .btn-primary{
        grid-column:auto;
    }

    .contact-form .btn-primary{
        width:100%;
    }

}
.product-features{
    list-style:none;
    padding:0;
    margin-top:18px;
}

.product-features li{
    padding:8px 0;
    color:#555;
    font-size:15px;
}

.product-features i{
    color:#D4AF37;
    margin-right:8px;
}

/* Gallery Popup */

.gallery-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.gallery-content{
    background:#fff;
    width:90%;
    max-width:950px;
    padding:30px;
    border-radius:18px;
    text-align:center;
    max-height:90vh;
    overflow-y:auto;
}

.gallery-content h2{
    color:#B8860B;
    margin-bottom:25px;
}

.gallery-content img{
    width:100%;
    border-radius:12px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.gallery-close{
    position:absolute;
    top:25px;
    right:40px;
    font-size:45px;
    color:#fff;
    cursor:pointer;
}
.chocolate-showcase{

    padding:80px 0;

    background:#faf8f4;

}

.chocolate-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    margin-top:40px;

}

.chocolate-grid img{

    width:100%;

    border-radius:18px;

    cursor:pointer;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.chocolate-grid img:hover{

    transform:translateY(-8px) scale(1.02);

}

.flavour-box{

    margin-top:50px;

    text-align:center;

}

.flavour-box h3{

    color:#B8860B;

    margin-bottom:25px;

}

.flavour-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.flavour-list span{

    background:#fff;

    padding:12px 20px;

    border-radius:30px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    font-weight:600;

}

@media(max-width:768px){

.chocolate-grid{

grid-template-columns:1fr;

}

}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.close-image {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.image-modal img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}
/* =========================
   SPLASH SCREEN
========================= */

#splash h1{
    color:#0B2D5C;
    font-size:42px;
    margin-bottom:10px;
    transition:.5s;
}

#splash p{
    color:#B8860B;
    font-size:22px;
    font-weight:600;
}

@keyframes logoZoom{
    from{
        transform:scale(.95);
    }
    to{
        transform:scale(1.05);
    }
}

.fade-out{
    opacity:0;
    visibility:hidden;
}

#splash{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .8s;
}

.splash-logo{
    width:190px;
    margin-bottom:35px;
    animation: heartbeat 1.8s infinite;
}

@keyframes heartbeat{

    0%{

        transform:scale(1);

    }

    14%{

        transform:scale(1.12);

    }

    28%{

        transform:scale(1);

    }

    42%{

        transform:scale(1.12);

    }

    70%{

        transform:scale(1);

    }

    100%{

        transform:scale(1);

    }

}

#welcomeText{
    font-family:'Noto Sans',sans-serif;
    font-size:56px;
    font-weight:700;
    color:#0B2D5C;
    min-height:70px;
    transition:opacity .35s ease, transform .35s ease;
}

#splash p{
    margin-top:15px;
    font-size:22px;
    color:#D4AF37;
    font-family:'Poppins',sans-serif;
}

/* ==========================================
   PAGE BANNER
========================================== */
/*
.page-banner{
    background:linear-gradient(135deg,#111,#1b1b1b);
    color:#fff;
    padding:100px 0;
    text-align:center;
}
*/
.page-banner{
    background:linear-gradient(135deg,#111,#1b1b1b);
    color:#fff;
    text-align:center;

    padding:130px 0 70px;

    margin:0;
}
.page-banner + section{
    padding-top:70px;
}
.page-banner span{
    color:#D4AF37;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.page-banner h1{
    font-size:48px;
    margin:18px 0;
    font-weight:700;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    color:#d8d8d8;
    line-height:1.8;
}

.breadcrumb{
    margin-top:25px;
    color:#aaa;
}

.breadcrumb a{
    color:#D4AF37;
    text-decoration:none;
}

.breadcrumb span{
    margin:0 10px;
    color:#888;
}

@media(max-width:768px){

.page-banner{
    padding:110px 20px 60px;
}

.page-banner h1{
    font-size:32px;
}

}