/* ==========================================
   GLOBAL SETTINGS
========================================== */

:root{
    --primary:#081c36;
    --secondary:#102d5a;
    --accent:#ffc107;
    --light:#f8f9fa;
    --dark:#212529;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#444;
    overflow-x:hidden;
    line-height:1.7;
    background:#fff;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    padding:80px 0;
}

/* ==========================================
   NAVBAR
========================================== */

.custom-navbar{
    background:rgba(8,28,54,.95);
    backdrop-filter:blur(15px);
    padding:15px 0;
    transition:.3s;
    box-shadow:0 3px 20px rgba(0,0,0,.15);
}

.logo-gradient{
    font-size:32px;
    font-weight:800;
    background:linear-gradient(45deg,#FFD700,#FF9800);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.navbar-nav .nav-link{
    color:white !important;
    font-weight:500;
    margin-left:20px;
    position:relative;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#ffc107;
    transition:.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.btn-hire{
    background:#ffc107;
    color:#000;
    font-weight:600;
    padding:10px 25px;
    border-radius:50px;
}

.btn-hire:hover{
    background:#fff;
    color:#000;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,28,54,.85),
        rgba(16,45,90,.90)
    ),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;
}

.hero-section h1{
    font-size:4rem;
    font-weight:800;
}

.hero-section p{
    font-size:1.2rem;
}

.typing-text{
    color:#ffc107;
    font-weight:600;
}

.hero-image{
    max-width:420px;
    border-radius:50%;
    border:10px solid white;

    box-shadow:
    0 0 40px rgba(255,193,7,.4),
    0 20px 50px rgba(0,0,0,.35);

    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==========================================
   PAGE BANNER
========================================== */

.page-banner{

    background:
    linear-gradient(
        rgba(8,28,54,.85),
        rgba(8,28,54,.85)
    ),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;

    color:white;

    padding:180px 0 100px;
}

.page-banner h1{
    font-size:55px;
    font-weight:800;
}

.page-banner p{
    font-size:20px;
}

/* ==========================================
   COMMON SECTION TITLE
========================================== */

.section-subtitle{
    color:#ffc107;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

h2{
    font-weight:700;
}

/* ==========================================
   STATS
========================================== */

.stats-section{
    background:#f8f9fa;
}

.stats-section h2,
.achievement-section h2{
    color:#ffc107;
    font-size:50px;
    font-weight:800;
}

/* ==========================================
   SERVICE CARDS
========================================== */

.service-card,
.service-box{

    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    height:100%;
}

.service-card:hover,
.service-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);

}

.service-card i,
.service-box i{

    width:90px;
    height:90px;
    line-height:90px;

    border-radius:50%;

    background:#fff8e1;

    font-size:38px;

    color:#ffc107;

    margin-bottom:20px;
}

/* ==========================================
   ABOUT PAGE
========================================== */

.about-list{
    list-style:none;
    padding:0;
}

.about-list li{
    margin-bottom:15px;
}

.about-list i{
    color:#28a745;
    margin-right:10px;
}

.timeline{
    max-width:900px;
    margin:auto;
}

.timeline-item{

    background:white;

    border-left:5px solid #ffc107;

    border-radius:10px;

    padding:25px;

    transition:.3s;

    margin-bottom:25px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.timeline-item:hover{
    transform:translateX(10px);
}

.achievement-section{
    background:#081c36;
    color:white;
}

.progress{
    height:25px;
}

/* ==========================================
   PORTFOLIO
========================================== */

.portfolio-card,
.project-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    height:100%;
}

.portfolio-card:hover,
.project-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

.portfolio-card img,
.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.portfolio-content{
    padding:25px;
}

.project-category{
    background:#ffc107;
    color:#000;
    padding:5px 15px;
    border-radius:20px;
    font-size:12px;
    display:inline-block;
    margin-bottom:10px;
}

.portfolio-stats{
    background:#081c36;
    color:#fff;
}

.tech-box,
.tech-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* ==========================================
   PROCESS
========================================== */

.process-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.process-card span{
    font-size:40px;
    font-weight:bold;
    color:#ffc107;
}

/* ==========================================
   WHY CHOOSE ME
========================================== */

.why-section{
    background:#081c36;
    color:white;
}

.why-list{
    list-style:none;
    padding:0;
}

.why-list li{
    margin-bottom:15px;
    font-size:18px;
}

/* ==========================================
   CONTACT
========================================== */

.contact-page{
    background:#f8f9fa;
}

.contact-info-box{
    background:#081c36;
    color:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-item i{
    width:50px;
    height:50px;
    background:#ffc107;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.social-links a{
    width:45px;
    height:45px;
    background:#ffc107;
    color:#000;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
}

.service-mini{
    background:#fff;
    padding:20px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.map-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
}

textarea.form-control{
    height:auto;
}

.form-control:focus,
.form-select:focus{
    border-color:#ffc107;
    box-shadow:0 0 0 .2rem rgba(255,193,7,.25);
}

/* ==========================================
   CTA SECTION
========================================== */

.cta-section{
    background:#081c36;
    color:white;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-warning{
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-warning:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,193,7,.35);
}

/* ==========================================
   FOOTER
========================================== */

.footer-section{
    background:#081c36;
    color:white;
    padding:80px 0 20px;
}

.footer-logo{
    color:#ffc107;
}

.footer-text{
    color:#ddd;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ddd;
}

.footer-links a:hover{
    color:#ffc107;
}

.footer-social a{
    width:45px;
    height:45px;
    background:#102d5a;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
}

.footer-social a:hover{
    background:#ffc107;
    color:#000;
}

.footer-line{
    border-color:rgba(255,255,255,.15);
}

/* ==========================================
   WHATSAPP FLOAT
========================================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.whatsapp-float:hover{
    color:white;
    transform:scale(1.1);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.hero-section h1{
    font-size:2.5rem;
}

.page-banner h1{
    font-size:38px;
}

.hero-image{
    max-width:280px;
    margin-top:40px;
}

section{
    padding:60px 0;
}

.navbar-nav{
    text-align:center;
    padding-top:20px;
}

.navbar-nav .nav-link{
    margin-left:0;
}

}
.process-card{
    background:#102d5a;
    color:#fff;
    padding:30px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.1);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-card h5{
    color:#fff;
}

.process-card p{
    color:#ddd;
}

.process-card span{
    color:#ffc107;
    font-size:42px;
    font-weight:700;
}