/* ==========================================
   TECHSENTRY V2
   Enterprise Technology Theme
========================================== */

:root {

    --primary: #00AEEF;
    --primary-hover: #0095d6;

    --secondary: #0F172A;
    --dark: #020617;

    --card: #1E293B;

    --light: #F8FAFC;

    --text: #CBD5E1;

    --success: #22C55E;

    --danger: #EF4444;

    --shadow:
        0 10px 30px rgba(0,0,0,0.25);

}

/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--dark);

    color:var(--light);

    overflow-x:hidden;

}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Poppins',sans-serif;

    font-weight:700;

    color:#fff;

}

p{

    color:var(--text);

    line-height:1.8;

}

a{

    text-decoration:none;

    transition:.3s ease;

}

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

.ts-navbar{

    background:rgba(2,6,23,.90);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:15px 0;

    transition:.4s ease;

    z-index:9999;

}

/* Logo */

.logo{

    max-height:70px;

    width:auto;

    transition:.3s;

}

.logo:hover{

    transform:scale(1.05);

}

/* Menu Links */

.navbar-nav .nav-link{

    color:#ffffff !important;

    font-weight:500;

    margin:0 10px;

    position:relative;

    transition:.3s;

}

/* Underline Animation */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:var(--primary) !important;

}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu{

    background:#111827;

    border:none;

    border-radius:15px;

    padding:10px;

    box-shadow:var(--shadow);

    min-width:260px;

}

.dropdown-item{

    color:#fff;

    border-radius:10px;

    padding:12px 15px;

    transition:.3s;

}

.dropdown-item:hover{

    background:rgba(0,174,239,.12);

    color:var(--primary);

}

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

.btn-tech{

    background:var(--primary);

    color:white;

    border:none;

    border-radius:10px;

    padding:12px 25px;

    font-weight:600;

    transition:.3s;

}

.btn-tech:hover{

    background:var(--primary-hover);

    color:#fff;

    transform:translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,174,239,.35);

}

.btn-outline-info{

    border-radius:10px;

    padding:12px 25px;

    font-weight:600;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(2,6,23,.88),
            rgba(2,6,23,.95)
        ),
        url('../images/hero-bg.jpg');

    background-size:cover;

    background-position:center;

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero h1{

    font-size:4rem;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:1.2rem;

    max-width:700px;

    margin-bottom:35px;

}

/* ==========================================
   FLOATING NETWORK EFFECT
========================================== */

.hero::before{

    content:"";

    position:absolute;

    width:800px;

    height:800px;

    background:
        radial-gradient(
            circle,
            rgba(0,174,239,.12),
            transparent 70%
        );

    top:-250px;

    right:-250px;

    animation:floatGlow 10s infinite ease-in-out;

}

@keyframes floatGlow{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ==========================================
   SECTION SPACING
========================================== */

.section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.5rem;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

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

.ts-card{

    background:var(--card);

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:35px;

    transition:.4s ease;

    height:100%;

}

.ts-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:
        0 20px 40px rgba(0,174,239,.15);

}

.ts-card i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:20px;

}

/* ==========================================
   PARTNER LOGOS
========================================== */

.partner-logo{

    max-height:80px;

    filter:grayscale(100%);

    opacity:.6;

    transition:.3s;

}

.partner-logo:hover{

    filter:none;

    opacity:1;

}

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

.stat-box{

    text-align:center;

    padding:25px;

}

.stat-number{

    font-size:3rem;

    font-weight:800;

    color:var(--primary);

}

.stat-label{

    color:var(--text);

}

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

footer{

    background:#000814;

    padding:70px 0 30px;

}

footer a{

    color:var(--text);

}

footer a:hover{

    color:var(--primary);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:40px;

    padding-top:25px;

    text-align:center;

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111827;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

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

@media(max-width:991px){

    .hero h1{

        font-size:2.6rem;

    }

    .navbar-collapse{

        margin-top:20px;

        background:#0F172A;

        padding:20px;

        border-radius:15px;

    }

    .navbar-nav{

        margin-bottom:20px;

    }

}

@media(max-width:768px){

    .hero{

        text-align:center;

    }

    .hero h1{

        font-size:2.2rem;

    }

    .section{

        padding:70px 0;

    }

}








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

.ts-footer{

    background:#000814;

    padding:80px 0 30px;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-logo{

    max-height:80px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#111827;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-4px);

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:var(--text);

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:5px;

}

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    margin-bottom:15px;

    color:var(--text);

}

.footer-contact i{

    color:var(--primary);

    width:25px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding-top:25px;

}

.back-to-top{

    position:fixed;

    bottom:25px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,174,239,.3);

    transition:.3s;

}

.back-to-top:hover{

    transform:translateY(-5px);

}


/*JS Scripts*/
/* Reveal Animation */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Back To Top Hidden Initially */

.back-to-top{
    opacity:0;
    visibility:hidden;
}

/*About Page*/
.hero-small{

    min-height:400px;

    display:flex;

    align-items:center;

    text-align:center;

}

.hero-small h1{

    font-size:3.5rem;

}

@media(max-width:768px){

    .hero-small h1{

        font-size:2.2rem;

    }

}

/* Services Dropdown */

.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
}

.dropdown-menu{
    margin-top:0;
    border-radius:15px;
}

/* Make Services Hub Stand Out */

.dropdown-menu::before{

    content:'All Services';

    display:block;

    font-size:.8rem;

    font-weight:700;

    text-transform:uppercase;

    color:var(--primary);

    padding:10px 15px;

    border-bottom:1px solid rgba(255,255,255,.08);

    margin-bottom:5px;

}

/*Netwroking Page*/
.service-list{
    list-style:none;
    padding:0;
}

.service-list li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.service-list li::before{
    content:"✓";
    color:var(--primary);
    font-weight:bold;
    margin-right:10px;
}

/*Contact*/
/* ==========================================
   CONTACT FORM
========================================== */

.contact-form{

    background: rgba(255,255,255,0.03);

    padding: 40px;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

}

.contact-form label{

    font-weight: 600;

    margin-bottom: 8px;

    color: #fff;

}

.contact-form .form-control,
.contact-form .form-select{

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.10);

    color: #fff;

    padding: 14px 16px;

    border-radius: 12px;

}

.contact-form .form-control:focus,
.contact-form .form-select:focus{

    border-color: var(--primary);

    box-shadow: 0 0 0 0.2rem rgba(0,174,239,0.25);

    background: rgba(255,255,255,0.08);

    color: #fff;

}

.contact-form textarea{

    resize: vertical;

}

.contact-form .btn-tech{

    min-width: 220px;

}

.contact-form .form-control::placeholder{

    color: rgba(255,255,255,0.50);

}

.alert-success{

    border: none;

    border-radius: 12px;

    background: rgba(25,135,84,0.15);

    color: #75ffb0;

}

.alert-danger{

    border: none;

    border-radius: 12px;

    background: rgba(220,53,69,0.15);

    color: #ff9ea7;

}

/*Cookie*/
/* ==========================================
   COOKIE NOTICE
========================================== */

.cookie-banner {

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    background: #0d1117;

    border-top: 1px solid rgba(255,255,255,.1);

    padding: 15px 0;

    z-index: 9999;

    display: none;

}

.cookie-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}

.cookie-content p {

    margin: 0;

}

.cookie-content a {

    color: #00aeef;

}

@media (max-width: 768px) {

    .cookie-content {

        flex-direction: column;

        text-align: center;

    }

}