/* ==================================================
   DIGITAL HALI - MASTER STYLESHEET
   Version: 2.0
   Author: Digital Hali
================================================== */

/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================
   CSS VARIABLES
========================== */

:root{

    --primary:#14C5D8;
    --primary-dark:#0FAABC;
    --secondary:#111827;
    --text:#5B6472;
    --light:#F8FCFD;
    --white:#FFFFFF;

    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:16px;

    --transition:.35s ease;

}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--secondary);

    overflow-x:hidden;

    line-height:1.7;

}

/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3,h4,h5,h6{

    font-weight:700;

    color:var(--secondary);

}

p{

    color:var(--text);

    margin-bottom:1rem;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

/* ==========================
   SECTION SPACING
========================== */

section{

    padding: 20px ;

}

.container{

    max-width:1200px;

}

/* ==========================
   BUTTONS
========================== */

.btn-primary-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 28px;

    font-size: 15px;

    border-radius:50px;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

    font-weight:600;

    transition:var(--transition);

    border:none;

    white-space:nowrap;

}

.btn-primary-custom:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 20px 35px rgba(20,197,216,.35);

}

.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

    background:transparent;

    transition:var(--transition);

}

.btn-outline-custom:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    background:#fff;

    backdrop-filter:blur(12px);

    padding:8px 0;

    min-height:78px;

    transition:.35s ease;

    box-shadow:0 4px 18px rgba(0,0,0,.05);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.navbar-brand{
    margin-right:50px;
}

.logo-img{
    height:40px;
}

.navbar-toggler{

    font-size:24px;

    color:var(--secondary);

}

.nav-link{
    margin-left:18px;
    padding:10px 6px;
    font-size:16px;
}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.nav-link:hover,
.nav-link.active{

    color:var(--primary)!important;

}

/* ==========================
   COMMON TITLES
   (see consolidated .section-title / .section-subtitle rules below)
========================== */

/* ==================================================
   HERO SECTION
================================================== */

.hero-section{
    position:relative;
    overflow:hidden;
    padding:170px 0 90px;
    background:#fff;
}

.hero-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(20,197,216,.07);
    border-radius:50%;
    top:-150px;
    right:-120px;
}

.hero-section::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border:2px dashed rgba(20,197,216,.15);
    border-radius:50%;
    left:-90px;
    bottom:-100px;
}

.hero-left{
    position:relative;
    z-index:1;
}

.hero-badge{
    display:inline-block;
    padding:9px 20px;
    background:#EAFBFD;
    color:var(--primary);
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    margin-bottom:20px;
}

.hero-title{
    font-size:50px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
    color:var(--secondary);
}

.hero-title span{
    color:var(--primary);
}

.hero-description{
    font-size:17px;
    color:var(--text);
    line-height:1.8;
    margin-bottom:28px;
    max-width:520px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
    margin-bottom:32px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:9px;
    font-weight:600;
    font-size:15px;
}

.hero-features i{
    color:var(--primary);
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 32px;
    border-radius:50px;
    font-weight:600;
    white-space:nowrap;
    transition:var(--transition);
}

.btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    border:none;
}

.btn-primary:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 20px 35px rgba(20,197,216,.3);
}

.btn-secondary{
    border:2px solid var(--primary);
    color:var(--primary);
    background:transparent;
}

.btn-secondary:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-circle{
    position:absolute;
    width:380px;
    height:380px;
    background:var(--primary);
    opacity:.08;
    border-radius:50%;
}

.hero-dashboard-img{
    position:relative;
    width:100%;
    max-width:520px;
    border-radius:18px;
    border:1px solid rgba(20,197,216,.14);
    box-shadow:0 30px 60px rgba(17,24,39,.14);
    animation:heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-14px); }
}


/* ==================================================
   SERVICES SECTION
================================================== */

.services{
    background:#F8FCFD;
}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(20,197,216,.18);

}

.service-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EAFBFD;

    color:var(--primary);

    font-size:32px;

}

.service-card h4{

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:var(--text);

    margin-bottom:0;

}

/* ==================================================
   ABOUT SECTION
================================================== */

.about{
    background:#ffffff;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.02);
}

.section-subtitle{
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:12px;
    font-size:14px;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:18px;
    line-height:1.25;
}

.about p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:22px;
}

.about-list{
    display:grid;
    gap:15px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.about-list i{
    color:var(--primary);
    font-size:18px;
}

/* ==================================================
   STATS SECTION
================================================== */

.stats-section{

    padding:70px 0;

    background:#111827;

}

.stats-wrapper{

    background:linear-gradient(135deg,#151f34,#111827);

    border:1px solid rgba(20,197,216,.12);

    border-radius:25px;

    padding:10px 0;

}

.stat-box{

    padding:30px 20px;

    color:#fff;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:18px;

}

.stat-box h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

    color:#fff;

}

.stat-box p{

    margin:0;

    color:#d6d6d6;

    text-transform:uppercase;

    letter-spacing:.5px;

    font-size:14px;

} 

/* ==================================================
   WHY CHOOSE US
================================================== */

.why-us{

    background:#f8fbfc;

}

.why-us .section-description{

    max-width:700px;

}

.why-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border:1px solid rgba(20,197,216,.08);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.why-icon{

    width:70px;

    height:70px;

    background:linear-gradient(135deg,#14C5D8,#0FAABC);

    color:#fff;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.why-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#111827;

}

.why-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:0;

}
/* ==========================================
   LOGO
========================================== */
.logo-img{
    height: 48px;
    width:auto;
    max-width:320px;
    object-fit:contain;
}

/* ==========================================
   CTA SECTION
========================================== */
/* ===========================
   MODERN CTA
=========================== */

.cta-section{

    background:#F8FCFD;

    padding:110px 0;

    text-align:center;

}

.cta-wrapper{

    max-width:850px;

    margin:auto;

}

.cta-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

    margin-bottom:20px;

}

.cta-wrapper h2{

    font-size:56px;

    font-weight:800;

    line-height:1.2;

    color:#111827;

    margin-bottom:25px;

}

.cta-wrapper h2 span{

    color:var(--primary);

}

.cta-wrapper p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:20px;

    color:#6B7280;

    line-height:1.8;

}

.cta-wrapper .btn-primary-custom{

    padding:16px 40px;

    font-size:17px;

}
/* ==========================================
   FOOTER
========================================== */
.site-footer{
    background:#111827;
    color:#fff;
    padding:70px 0 25px;
}
.site-footer p{
    color:#fff;
    opacity:.75;
}
.footer-col{
    display:flex;
    flex-direction:column;
    height:100%;
}
.footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:38px;
    margin-bottom:16px;
}
.site-footer h6{
    color:#fff;
    font-weight:700;
    font-size:16px;
    min-height:24px;
    margin-bottom:16px;
}
.site-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}
.site-footer ul li{ margin-bottom:10px; }
.site-footer ul li a{
    color:#fff;
    opacity:.75;
    text-decoration:none;
    transition:.25s;
}
.site-footer ul li a:hover{
    color:var(--primary);
    opacity:1;
}
.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#fff;
    opacity:.75;
}
.footer-contact li i{
    color:var(--primary);
    width:16px;
    flex-shrink:0;
    margin-top:4px;
    opacity:1;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
    padding:20px 0;
    text-align:center;
    font-size:13px;
}
.footer-bottom p{
    color:#fff;
    opacity:.6;
    margin:0;
}

/* Footer logo + social */
.footer-logo-img{
    height:32px;
    width:auto;
    margin-bottom:14px;
    filter:brightness(0) invert(1);
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:auto;
    padding-top:16px;
}
.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.25s;
}
.footer-social a:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

/* ==========================================
   PAGE BANNER (About / Services / Contact)
========================================== */
.page-banner{
    background:linear-gradient(135deg,#0B1120,#123B44);
    padding:140px 0 60px;
    text-align:center;
    color:#fff;
}
.page-banner .section-subtitle{
    color:var(--primary);
}
.page-banner h1{
    font-size:40px;
    font-weight:800;
    margin:12px 0 14px;
}
.page-banner p{
    color:#CBD5E1;
    max-width:600px;
    margin:0 auto;
}

/* Value cards (About page) */
.value-card{
    background:#F8FBFC;
    border-radius:16px;
    padding:30px 26px;
    height:100%;
    transition:.3s;
}
.value-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.value-card i{
    font-size:28px;
    color:var(--primary);
    margin-bottom:14px;
}
.value-card h4{
    font-weight:700;
    margin-bottom:10px;
}
.value-card p{
    color:#6B7280;
    font-size:14px;
    margin:0;
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-detail{
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:24px;
}
.contact-detail i{
    width:46px;
    height:46px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#E6FBFD;
    color:var(--primary);
    font-size:18px;
}
.contact-detail h6{
    margin:0 0 4px;
    font-weight:700;
    color:#111827;
}
.contact-detail a,
.contact-detail span{
    color:#6B7280;
    text-decoration:none;
}
.contact-detail a:hover{ color:var(--primary); }

.contact-social a{
    background:#F1F5F9;
    color:#111827;
}
.contact-social a:hover{
    background:var(--primary);
    color:#fff;
}

.contact-form-card{
    background:#F8FBFC;
    border-radius:20px;
    padding:36px;
}
.contact-form-card .form-label{
    font-weight:600;
    font-size:14px;
    color:#111827;
    margin-bottom:6px;
}
.contact-form-card .form-control{
    border:1px solid #E5EDEF;
    border-radius:10px;
    padding:12px 14px;
    font-size:14px;
}
.contact-form-card .form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(20,197,216,.15);
}
.contact-form-card button{
    border:none;
    cursor:pointer;
}

/* Legal pages */
.legal-content{ max-width:800px; }
.legal-content h4{
    margin-top:28px;
    margin-bottom:10px;
    font-weight:700;
    color:#111827;
}
.legal-content p{
    color:#6B7280;
    line-height:1.8;
}
