/* ====================================
   ROOT VARIABLES
==================================== */

:root{
    --primary:#0d6efd;
    --secondary:#6610f2;
    --dark:#0f172a;
    --light:#f8fafc;
    --white:#ffffff;
    --success:#22c55e;
    --warning:#f59e0b;
    --danger:#ef4444;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:15px;
}

/* ====================================
   RESET
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#333;
    overflow-x:hidden;
    padding-top:130px;
}

/* ====================================
   PRELOADER
==================================== */

.preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#fff;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader{
    width:60px;
    height:60px;
    border:5px solid #eee;
    border-top:5px solid var(--primary);
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* ====================================
   TOPBAR
==================================== */

.topbar{
    background:var(--success);
    color:#fff;
    padding:10px 0;
    position:fixed;
    top:0;
    width:100%;
    z-index:9999;
    transition:.4s;
}

.topbar.hide{
    transform:translateY(-100%);
}

.top-left{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.top-left span{
    font-size:14px;
}

.top-left a{
    color:#fff;
    transition:.3s;
}

.top-left a:hover{
    color:var(--primary);
}

/* ====================================
   NAVIGATION
==================================== */

/*.sticky-navbar{
    position:fixed;
    top:45px;
    left:0;
    width:100%;
    z-index:9998;
    background:#fff;
    transition:.4s;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.sticky-navbar.scrolled{
    top:0;
}

.navbar-brand img{
    max-height:60px;
}

.navbar-nav .nav-link{
    font-size:15px;
    font-weight:600;
    color:#222 !important;
    margin-left:15px;
    position:relative;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.login-btn{
    background:var(--primary);
    color:#fff !important;
    border-radius:30px;
    padding:10px 20px !important;
}*/
/* ====================================
   TOP BAR
==================================== */

.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:45px;

    background:#0f172a;
    color:#fff;

    z-index:10000;

    transition:
        transform .4s ease,
        opacity .4s ease;

    display:flex;
    align-items:center;
}


/* TOP BAR HIDDEN */

.topbar.hide{
    transform:translateY(-100%);
    opacity:0;
}


/* ====================================
   STICKY NAVBAR
==================================== */

.sticky-navbar{

    position:fixed;

    top:45px;
    left:0;

    width:100%;

    min-height:80px;

    background:#fff;

    z-index:9999;

    transition:
        top .4s ease,
        box-shadow .3s ease,
        min-height .3s ease;

    box-shadow:0 2px 12px rgba(0,0,0,.08);
}


/* ====================================
   WHEN SCROLLING
==================================== */

.sticky-navbar.scrolled{

    top:0;

    box-shadow:
        0 5px 25px rgba(0,0,0,.12);

}


/* ====================================
   LOGO
==================================== */

.site-logo{

    max-height:60px;

    width:auto;

    display:block;

    transition:.3s;
}


.sticky-navbar.scrolled .site-logo{

    max-height:52px;

}


/* ====================================
   NAVIGATION LINKS
==================================== */

.sticky-navbar .nav-link{

    position:relative;

    font-size:15px;

    font-weight:600;

    color:#222 !important;

    padding:28px 12px;

    transition:.3s;

}


.sticky-navbar .nav-link:hover{

    color:#0d6efd !important;

}


/* ACTIVE / HOVER LINE */

.sticky-navbar .nav-link::after{

    content:"";

    position:absolute;

    left:12px;
    right:12px;

    bottom:18px;

    height:2px;

    background:#0d6efd;

    transform:scaleX(0);

    transform-origin:center;

    transition:.3s;

}


.sticky-navbar .nav-link:hover::after{

    transform:scaleX(1);

}


/* LOGIN BUTTON */

.sticky-navbar .login-btn{

    background:#0d6efd;

    color:#fff !important;

    border-radius:30px;

    padding:10px 20px !important;

    margin-left:10px;

}


.sticky-navbar .login-btn::after{

    display:none;

}


/* ====================================
   BODY SPACE
==================================== */

body{

    padding-top:125px;

}


/* ====================================
   MOBILE
==================================== */

@media(max-width:991px){

    body{

        padding-top:80px;

    }


    .topbar{

        display:none;

    }


    .sticky-navbar{

        top:0;

        min-height:70px;

    }


    .sticky-navbar .nav-link{

        padding:12px 15px;

    }


    .sticky-navbar .nav-link::after{

        display:none;

    }


    .sticky-navbar .login-btn{

        display:inline-block;

        margin:5px 15px;

    }


    .site-logo{

        max-height:50px;

    }

}

/* ====================================
   HERO SLIDER
==================================== */

.slider-item{
    height:100vh;

    position:relative;
    background-size:cover;
    background-position:center;
}

.slide-1{
    background:url('assets/images/slide1.jpg');
    width: 100%;
}

.slide-2{
    background:url('assets/images/slide2.jpeg');
}

.slide-3{
    background:url('assets/images/slide3.jpg');
}

.slider-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.slider-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
}

.slider-content h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
}

.slider-content p{
    font-size:22px;
    margin-bottom:30px;
}

.slider-content .btn{
    padding:15px 40px;
    border-radius:50px;
}

/* ====================================
   SECTION TITLE
==================================== */

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title::after{
    content:'';
    width:80px;
    height:4px;
    background:var(--primary);
    display:block;
    margin:15px auto;
}

/* ====================================
   ABOUT SECTION
==================================== */

.about-section{
    padding:100px 0;
}

.about-section img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* ====================================
   PRODUCTS
==================================== */

.product-card,
.service-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;
}

.product-card:hover,
.service-card:hover{
    transform:translateY(-10px);
}

.product-card img,
.service-card img{
    height:250px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

/* ====================================
   CTA
==================================== */

.cta-section{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    padding:100px 20px;
    text-align:center;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-section .btn{
    padding:15px 35px;
    border-radius:50px;
}

/* ====================================
   PAGE BANNER
==================================== */

.page-banner{
    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;

    padding:150px 20px;

    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:60px;
    font-weight:700;
}

/* ====================================
   CLIENT LOGOS
==================================== */

.client-logo{
    max-height:80px;
    transition:.4s;
    opacity:.7;
}

.client-logo:hover{
    opacity:1;
    transform:scale(1.1);
}

/* ====================================
   LOGIN PAGE
==================================== */

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
}

.login-box{
    width:420px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.login-box h2{
    text-align:center;
    margin-bottom:30px;
}

/* ====================================
   DASHBOARD
==================================== */

.dashboard-wrapper{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:280px;
    background:var(--dark);
    color:#fff;
    padding:30px;
}

.sidebar ul{
    list-style:none;
}

.sidebar li{
    margin-bottom:15px;
}

.sidebar a{
    color:#fff;
    text-decoration:none;
}

.dashboard-content{
    flex:1;
    padding:40px;
}

.dashboard-card{
    padding:35px;
    border-radius:20px;
    color:#fff;
}

/* ====================================
   ENQUIRY MODAL
==================================== */

.modal-content{
    border:none;
    border-radius:20px;
}

.form-control,
.form-select{
    height:50px;
    border-radius:10px;
}

textarea.form-control{
    height:120px;
}

/* ====================================
   FOOTER
==================================== */

.footer{
    background:var(--dark);
    color:#fff;
    padding:80px 0 0;
}

.footer-title{
    margin-bottom:20px;
    font-size:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer-social a{
    width:40px;
    height:40px;
    background:#1e293b;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    margin-right:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding:20px 0;
}

/* ====================================
   FLOATING BUTTONS
==================================== */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999;
}

.whatsapp-float a{
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:28px;
}

#backToTop{
    position:fixed;
    right:20px;
    bottom:95px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:none;
    z-index:999;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:991px){

    body{
        padding-top:100px;
    }

    .topbar{
        display:none;
    }

    .sticky-navbar{
        top:0;
    }

    .slider-content h1{
        font-size:45px;
    }

    .section-title{
        font-size:32px;
    }

}

@media(max-width:768px){

    .slider-content h1{
        font-size:34px;
    }

    .slider-content p{
        font-size:16px;
    }

    .cta-section h2{
        font-size:32px;
    }

    .page-banner h1{
        font-size:38px;
    }

    .dashboard-wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

}

@media(max-width:576px){

    .navbar-brand img{
        max-height:45px;
    }

    .slider-content h1{
        font-size:28px;
    }

    .section-title{
        font-size:26px;
    }

}