/* =========================
   RS CONSULTANCY
   PROFESSIONAL CSS
========================= */

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

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.6;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#0A2540 !important;
    box-shadow:0 2px 15px rgba(0,0,0,.15);
    padding:12px 0;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-area img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo-area h4{
    margin:0;
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.logo-area small{
    color:#d8d8d8;
    font-size:12px;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:10px;
}

.nav-link:hover{
    color:#F4B400 !important;
}

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

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

.hero-section{
    background:
    linear-gradient(
    rgba(10,37,64,.85),
    rgba(10,37,64,.85)
    ),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;

    min-height:85vh;

    display:flex;
    align-items:center;

    color:#fff;
}

.hero-section h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-section h1 span{
    color:#F4B400;
}

.hero-section p{
    font-size:20px;
    margin-bottom:30px;
}

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

.btn-warning{
    background:#F4B400;
    border:none;
    color:#000;
    font-weight:600;
}

.btn-warning:hover{
    opacity:.9;
}

.btn-primary{
    background:#0A2540;
    border:none;
}

.btn-primary:hover{
    background:#133b69;
}

/* =========================
   STATS
========================= */

.stats-section{
    padding:60px 0;
    background:#fff;
}

.stats-section h2{
    color:#0A2540;
    font-size:42px;
    font-weight:700;
}

.stats-section p{
    color:#666;
    font-size:16px;
}

/* =========================
   SECTION TITLES
========================= */

section h2{
    color:#0A2540;
    font-weight:700;
    margin-bottom:20px;
}

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

.services-section{
    padding:80px 0;
    background:#f4f6f9;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:all .3s ease;
}

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

.service-card i{
    font-size:45px;
    color:#0A2540;
    margin-bottom:15px;
}

.service-card h4{
    color:#0A2540;
    font-weight:600;
    margin-bottom:15px;
}

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

.about-section{
    padding:80px 0;
    background:#fff;
}

.about-section img{
    border-radius:15px;
}

/* =========================
   FEATURE BOX
========================= */

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.feature-box h4{
    color:#0A2540;
    margin-bottom:15px;
}

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

.card{
    border:none;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* =========================
   FORMS
========================= */

form{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

input,
select,
textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;

    border:1px solid #ddd;
    border-radius:8px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#0A2540;
}

button{
    cursor:pointer;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    background:#0A2540;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.cta-section h2{
    color:#fff;
    margin-bottom:20px;
}

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

footer{
    background:#081c30;
    color:#fff;
    padding:40px 0;
    margin-top:50px;
}

footer a{
    color:#fff;
    text-decoration:none;
}

footer a:hover{
    color:#F4B400;
}

/* =========================
   PAGE BANNER
========================= */

.page-banner{
    background:#0A2540;
    color:#fff;
    padding:70px 0;
    text-align:center;
}

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

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    text-decoration:none;

    background:#25D366;
    color:#fff;

    z-index:9999;

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

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

@media(max-width:768px){

.hero-section{
    text-align:center;
    padding:60px 20px;
}

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

.hero-section p{
    font-size:18px;
}

.logo-area h4{
    font-size:18px;
}

.stats-section h2{
    font-size:32px;
}

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

}