/* ==========================================================
   DIAMOND AREA CDC
   OFFICIAL WEBSITE STYLESHEET
   Version: 1.0
   ========================================================== */


/*==========================
 GOOGLE FONT
===========================*/

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


/*==========================
 ROOT VARIABLES
===========================*/

:root{

    --primary:#0B2E4F;
    --secondary:#1FA74A;
    --accent:#F7941D;
    --gold:#F5B301;

    --white:#ffffff;
    --light:#f7f9fc;
    --dark:#222222;
    --text:#555555;

    --radius:12px;

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

    --transition:.35s ease;

}



/*==========================
 RESET
===========================*/

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}


/*==========================
 LINKS
===========================*/

a{

    text-decoration:none;

    transition:var(--transition);

}


a:hover{

    text-decoration:none;

}


/*==========================
 IMAGES
===========================*/

img{

    max-width:100%;

    display:block;

}


/*==========================
 SECTIONS
===========================*/

section{

    padding:100px 0;

}


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

h1,h2,h3,h4,h5,h6{

    color:var(--primary);

    font-weight:700;

}

.section-title{

    margin-bottom:60px;

    text-align:center;

}

.section-title span{

    color:var(--secondary);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-size:42px;

    margin-top:10px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}



/*==========================
 TOP BAR
===========================*/

.top-bar{

    background:var(--primary);

    color:white;

    font-size:14px;

    padding:10px 0;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-bar i{

    color:var(--gold);

    margin-right:6px;

}

.right-info a{

    color:white;

    margin-left:18px;

    font-size:16px;

}

.right-info a:hover{

    color:var(--accent);

}



/*==========================
 NAVIGATION
===========================*/

.navbar{

    background:white;

    padding:18px 0;

    transition:.4s;

}

.navbar-brand img{

    width:70px;

    margin-right:15px;

}

.brand-text h3{

    font-size:24px;

    margin:0;

    color:var(--primary);

}

.brand-text p{

    margin:0;

    color:#888;

    font-size:13px;

}

.navbar-nav .nav-link{

    color:var(--primary);

    font-weight:600;

    margin-left:15px;

    position:relative;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:3px;

    left:0;

    bottom:-5px;

    background:var(--secondary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:var(--secondary);

}

.dropdown-menu{

    border:none;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.dropdown-item{

    padding:12px 18px;

    transition:.3s;

}

.dropdown-item:hover{

    background:var(--primary);

    color:white;

}



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

.hero{

    position:relative;

    min-height:92vh;

    display:flex;

    align-items:center;

    background-position:center;

    background-size:cover;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(11,46,79,.82),
                               rgba(11,46,79,.72));

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero h5{

    color:white;

    letter-spacing:3px;

    text-transform:uppercase;

}

.hero h1{

    color:white;

    font-size:65px;

    font-weight:800;

    margin:15px 0;

}

.hero p{

    color:white;

    font-size:20px;

    max-width:700px;

    margin-bottom:35px;

}



/*==========================
 BUTTONS
===========================*/

.btn-main{

    background:var(--secondary);

    color:white;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    display:inline-block;

}

.btn-main:hover{

    background:var(--accent);

    color:white;

}

.btn-outline-custom{

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:50px;

    margin-left:15px;

}

.btn-outline-custom:hover{

    background:white;

    color:var(--primary);

}



/*==========================
 CARDS
===========================*/

.custom-card{

    background:white;

    border-radius:var(--radius);

    padding:30px;

    box-shadow:var(--shadow);

    transition:.4s;

}

.custom-card:hover{

    transform:translateY(-8px);

}



/*==========================
 STATISTICS
===========================*/

.stat-box{

    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:var(--shadow);

    text-align:center;

}

.stat-box h2{

    color:var(--secondary);

    font-size:50px;

}

.stat-box p{

    margin:0;

}



/*==========================
 GALLERY
===========================*/

.gallery img{

    border-radius:15px;

    transition:.4s;

}

.gallery img:hover{

    transform:scale(1.05);

}



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

footer{

    background:var(--primary);

    color:white;

    padding:70px 0 20px;

}

footer h5{

    color:white;

    margin-bottom:20px;

}

footer a{

    color:#ddd;

}

footer a:hover{

    color:var(--gold);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:40px;

    padding-top:20px;

    text-align:center;

}



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

@media(max-width:991px){

.brand-text h3{

font-size:18px;

}

.hero{

text-align:center;

}

.hero h1{

font-size:45px;

}

.hero p{

font-size:18px;

}

.btn-outline-custom{

margin-left:0;

margin-top:15px;

display:inline-block;

}

section{

padding:80px 0;

}

}

@media(max-width:768px){

.top-bar{

display:none;

}

.hero{

min-height:80vh;

}

.hero h1{

font-size:36px;

}

.section-title h2{

font-size:30px;

}

.stat-box{

margin-bottom:25px;

}

}
/*==================================
 HERO IMPROVEMENTS
==================================*/

.hero{

    min-height:88vh;

}

.hero::before{

    background:linear-gradient(
        rgba(11,46,79,.60),
        rgba(11,46,79,.60)
    );

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin:20px 0;

}

.hero-subtitle{

    font-size:24px;

    color:#fff;

    max-width:720px;

    font-weight:500;

}

.hero-tagline{

    font-size:18px;

    color:#f2f2f2;

    margin-top:20px;

    margin-bottom:40px;

}

.hero-buttons{

    margin-top:45px;

}

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:35px;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

0%{

transform:translate(-50%,0);

opacity:1;

}

50%{

transform:translate(-50%,12px);

opacity:.4;

}

100%{

transform:translate(-50%,0);

opacity:1;

}

}
/*==================================
QUICK ACCESS
==================================*/

.quick-access{

background:#ffffff;

padding:80px 0;

}

.quick-card{

display:block;

background:#fff;

padding:35px 20px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

text-align:center;

transition:.35s;

height:100%;

border-top:5px solid var(--secondary);

}

.quick-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.quick-card .icon{

font-size:48px;

margin-bottom:15px;

}

.quick-card h5{

color:var(--primary);

font-weight:700;

margin:0;

}