/* =========================
   PDP Ventures Group
   Corporate Theme
========================= */

:root{
    --navy:#0A2540;
    --gold:#D4AF37;
    --white:#ffffff;
    --light:#f8f9fa;
    --dark:#212529;
}

/* =========================
   Global
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
    color:#333;
    background:#fff;
    line-height:1.7;
}

a{
    text-decoration:none;
}

/* =========================
   Navbar
========================= */

.custom-navbar{
    background:rgba(10,37,64,.95);
    padding:15px 0;
    transition:all .3s ease;
    z-index:9999;
}

.navbar-scrolled{
    background:#0A2540;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.logo{
    height:65px;
    width:auto;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--gold) !important;
}

.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.dropdown-item{
    padding:10px 15px;
    border-radius:8px;
    transition:.3s;
}

.dropdown-item:hover{
    background:var(--gold);
    color:#000;
}

/* =========================
   Buttons
========================= */

.btn-gold{
    background:var(--gold);
    color:#000;
    border:none;
    font-weight:600;
    padding:10px 25px;
    border-radius:6px;
    transition:.3s;
}

.btn-gold:hover{
    background:#c99d15;
    color:#000;
}

/* =========================
   Hero Section
========================= */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    color:#fff;

    background:
    linear-gradient(
        rgba(10,37,64,.80),
        rgba(10,37,64,.80)
    ),
    url('../images/hero/hero-bg.jpg');

    background-size:cover;
    background-position:center;
}

.hero-title{
    font-size:72px;
    font-weight:700;
}

.hero-subtitle{
    font-size:24px;
    margin-top:15px;
}

/* =========================
   Section
========================= */

section{
    position:relative;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:20px;
}

/* =========================
   Cards
========================= */

.card-custom{
    background:#fff;
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card-custom:hover{
    transform:translateY(-8px);
}

/* =========================
   Images
========================= */

img{
    max-width:100%;
}

.rounded-img{
    border-radius:15px;
}

/* =========================
   Statistics
========================= */

.counter{
    font-size:48px;
    font-weight:700;
    color:var(--gold);
}

/* =========================
   Footer
========================= */

.footer-section{
    background:var(--navy);
    color:#fff;
    padding:70px 0 30px;
}

.footer-section h4,
.footer-section h5{
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding-left:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
}

/* =========================
   WhatsApp
========================= */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    border-radius:50%;
    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#fff;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

/* =========================
   Responsive
========================= */

@media(max-width:991px){

    .navbar-nav{
        margin-top:15px;
    }

    .nav-link{
        margin-left:0;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .logo{
        height:50px;
    }

    .section-title{
        font-size:30px;
    }

}