/*=========================================================
    SIS SECURITY SERVICE MANAGEMENT SYSTEM
    File : assets/css/style.css
    Section : CSS RESET
=========================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* HTML */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* Body Reset */

body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    min-height:100vh;
}

/* Images */

img{
    max-width:100%;
    height:auto;
    display:block;
    border:0;
}

/* Media */

picture,
video,
canvas,
svg{
    display:block;
    max-width:100%;
}

/* Forms */

input,
button,
textarea,
select{
    font:inherit;
    outline:none;
    border:none;
}

/* Buttons */

button{
    cursor:pointer;
    background:none;
}

/* Links */

a{
    text-decoration:none;
    color:inherit;
    transition:all .3s ease;
}

/* Lists */

ul,
ol{
    list-style:none;
}

/* Tables */

table{
    border-collapse:collapse;
    border-spacing:0;
    width:100%;
}

/* Horizontal Rule */

hr{
    border:none;
}

/* Quotes */

blockquote,
q{
    quotes:none;
}

blockquote::before,
blockquote::after,
q::before,
q::after{
    content:'';
}

/* Selection */

::selection{
    background:#ffc107;
    color:#000;
}

::-moz-selection{
    background:#ffc107;
    color:#000;
}

/* Scrollbar (WebKit) */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#ececec;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{
    background:#0b5ed7;
}

/* Firefox Scrollbar */

*{
    scrollbar-width:thin;
    scrollbar-color:#0d6efd #ececec;
}

/* Disabled Elements */

button:disabled,
input:disabled,
textarea:disabled,
select:disabled{
    cursor:not-allowed;
    opacity:.7;
}

/* Placeholder */

::placeholder{
    color:#888;
    opacity:1;
}

/* Focus */

:focus{
    outline:none;
}

/* Remove blue tap highlight */

a,
button,
input,
textarea,
select{
    -webkit-tap-highlight-color:transparent;
}

/* Hidden */

[hidden]{
    display:none !important;
}

/* Utility */

.clearfix::after{
    content:"";
    display:block;
    clear:both;
}

/*=========================================================
    ROOT VARIABLES
=========================================================*/

:root{

    /*=================================================
        BRAND COLORS
    =================================================*/

    --primary:#0d6efd;
    --primary-dark:#0b5ed7;
    --secondary:#1c1f26;

    --warning:#ffc107;
    --warning-dark:#e0a800;

    --success:#198754;
    --danger:#dc3545;

    --info:#0dcaf0;

    --light:#f8f9fa;
    --white:#ffffff;

    --dark:#212529;
    --black:#000000;

    --gray:#6c757d;
    --gray-light:#adb5bd;
    --gray-bg:#f4f6f9;

    /*=================================================
        SECURITY THEME COLORS
    =================================================*/

    --security-blue:#002147;
    --security-gold:#ffb300;
    --security-red:#c62828;
    --security-green:#2e7d32;

    /*=================================================
        TYPOGRAPHY
    =================================================*/

    --font-family:'Poppins',sans-serif;

    --font-size-xs:12px;
    --font-size-sm:14px;
    --font-size-md:16px;
    --font-size-lg:18px;
    --font-size-xl:22px;
    --font-size-xxl:30px;
    --font-size-display:48px;

    --font-light:300;
    --font-regular:400;
    --font-medium:500;
    --font-semibold:600;
    --font-bold:700;
    --font-extra-bold:800;

    --line-height:1.7;

    /*=================================================
        SPACING
    =================================================*/

    --space-5:5px;
    --space-10:10px;
    --space-15:15px;
    --space-20:20px;
    --space-25:25px;
    --space-30:30px;
    --space-40:40px;
    --space-50:50px;
    --space-60:60px;
    --space-80:80px;
    --space-100:100px;

    /*=================================================
        BORDER RADIUS
    =================================================*/

    --radius-sm:4px;
    --radius-md:8px;
    --radius-lg:12px;
    --radius-xl:18px;
    --radius-round:50px;

    /*=================================================
        SHADOWS
    =================================================*/

    --shadow-sm:
        0 2px 8px rgba(0,0,0,.08);

    --shadow-md:
        0 5px 15px rgba(0,0,0,.10);

    --shadow-lg:
        0 12px 35px rgba(0,0,0,.15);

    --shadow-xl:
        0 20px 50px rgba(0,0,0,.20);

    /*=================================================
        TRANSITIONS
    =================================================*/

    --transition-fast:.2s ease;

    --transition:.3s ease;

    --transition-slow:.5s ease;

    /*=================================================
        HEADER
    =================================================*/

    --topbar-height:45px;

    --navbar-height:80px;

    /*=================================================
        CONTAINER
    =================================================*/

    --container-width:1320px;

    /*=================================================
        Z INDEX
    =================================================*/

    --z-loader:99999;

    --z-topbar:1000;

    --z-navbar:999;

    --z-dropdown:1050;

    --z-modal:2000;

    --z-tooltip:3000;

}



/*=========================================================
    BODY & GLOBAL STYLES
=========================================================*/

/* Body */

body{

    font-family:var(--font-family);

    font-size:var(--font-size-md);

    font-weight:var(--font-regular);

    line-height:var(--line-height);

    color:var(--dark);

    background:var(--gray-bg);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;

}

/* Container */

.container{

    max-width:var(--container-width);

}

/* Sections */

section{

    position:relative;

    padding:80px 0;

}

/* Alternating Background */

.section-light{

    background:#ffffff;

}

.section-gray{

    background:#f8f9fa;

}

.section-dark{

    background:#1c1f26;

    color:#ffffff;

}

/* Common Heading */

.section-title{

    margin-bottom:20px;

    text-align:center;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:var(--security-blue);

    margin-bottom:15px;

    position:relative;

}

.section-title h2::after{

    content:"";

    width:80px;

    height:4px;

    background:var(--warning);

    display:block;

    margin:15px auto 0;

    border-radius:50px;

}

.section-title p{

    max-width:750px;

    margin:auto;

    color:var(--gray);

    font-size:17px;

}

/* Paragraph */

p{

    margin-bottom:15px;

    color:#555;

}

/* Images */

img{

    max-width:100%;

    height:auto;

}

/* Responsive Video */

.video-responsive{

    position:relative;

    overflow:hidden;

    width:100%;

    padding-top:56.25%;

}

.video-responsive iframe{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

}

/* Wrapper */

#wrapper{

    position:relative;

    min-height:100vh;

}

/* Loader */

#loader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

/* Page Banner */

.page-banner{

    background:linear-gradient(rgba(0,0,0,.65),
               rgba(0,0,0,.65)),
               url("../images/hero/banner.jpg")
               center center/cover no-repeat;

    padding:90px 0;

    color:#ffffff;

}

.page-banner h1{

    font-size:46px;

    font-weight:700;

    margin-bottom:15px;

}

.page-banner .breadcrumb{

    background:none;

    margin:0;

}

.page-banner .breadcrumb a{

    color:#ffffff;

    text-decoration:none;

}

.page-banner .breadcrumb-item.active{

    color:var(--warning);

}

/* Content Spacing */

.content-space{

    padding-top:80px;

    padding-bottom:80px;

}

/* Card */

.card{

    border:none;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/* Shadow Utilities */

.shadow-soft{

    box-shadow:var(--shadow-sm);

}

.shadow-medium{

    box-shadow:var(--shadow-md);

}

.shadow-large{

    box-shadow:var(--shadow-lg);

}

/* Rounded Utilities */

.rounded-lg{

    border-radius:var(--radius-lg);

}

.rounded-xl{

    border-radius:var(--radius-xl);

}

/* Background Utilities */

.bg-primary-gradient{

    background:linear-gradient(135deg,
               var(--primary),
               var(--security-blue));

}

.bg-warning-gradient{

    background:linear-gradient(135deg,
               var(--warning),
               #ff9800);

}

.bg-dark-gradient{

    background:linear-gradient(135deg,
               #0f172a,
               #1c1f26);

}

/* Border Utility */

.border-light-gray{

    border:1px solid #e9ecef;

}

/* Transition */

.transition{

    transition:var(--transition);

}


/*=========================================================
    TYPOGRAPHY
=========================================================*/

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0 0 15px;

    font-family:var(--font-family);

    font-weight:var(--font-bold);

    color:var(--security-blue);

    line-height:1.25;

}

h1{

    font-size:56px;

}

h2{

    font-size:42px;

}

h3{

    font-size:34px;

}

h4{

    font-size:28px;

}

h5{

    font-size:22px;

}

h6{

    font-size:18px;

}

/* Paragraph */

p{

    font-size:16px;

    line-height:1.8;

    color:#555;

    margin-bottom:20px;

}

/* Small */

small{

    font-size:13px;

    color:var(--gray);

}

/* Strong */

strong{

    font-weight:700;

}

/* Emphasis */

em{

    font-style:italic;

}

/* Mark */

mark{

    background:var(--warning);

    color:#000;

    padding:2px 6px;

    border-radius:4px;

}

/* Code */

code{

    background:#f1f3f5;

    color:#d63384;

    padding:2px 6px;

    border-radius:4px;

    font-size:14px;

}

/* Pre */

pre{

    background:#212529;

    color:#ffffff;

    padding:20px;

    border-radius:10px;

    overflow:auto;

}

/* Lists */

ul{

    margin-bottom:20px;

    padding-left:20px;

}

ol{

    margin-bottom:20px;

    padding-left:25px;

}

li{

    margin-bottom:8px;

}

/* Blockquote */

blockquote{

    background:#ffffff;

    border-left:5px solid var(--warning);

    padding:20px;

    margin:25px 0;

    font-style:italic;

    box-shadow:var(--shadow-sm);

}

/* Lead */

.lead{

    font-size:20px;

    font-weight:400;

    color:#555;

}

/* Display Headings */

.display-1{

    font-size:72px;

    font-weight:800;

}

.display-2{

    font-size:64px;

    font-weight:800;

}

.display-3{

    font-size:56px;

    font-weight:700;

}

.display-4{

    font-size:48px;

    font-weight:700;

}

.display-5{

    font-size:40px;

    font-weight:700;

}

.display-6{

    font-size:34px;

    font-weight:700;

}

/* Font Weight */

.fw-light{

    font-weight:300 !important;

}

.fw-normal{

    font-weight:400 !important;

}

.fw-medium{

    font-weight:500 !important;

}

.fw-semibold{

    font-weight:600 !important;

}

.fw-bold{

    font-weight:700 !important;

}

.fw-extra-bold{

    font-weight:800 !important;

}

/* Text Transform */

.text-uppercase{

    text-transform:uppercase;

}

.text-lowercase{

    text-transform:lowercase;

}

.text-capitalize{

    text-transform:capitalize;

}

/* Letter Spacing */

.letter-spacing-1{

    letter-spacing:1px;

}

.letter-spacing-2{

    letter-spacing:2px;

}

.letter-spacing-3{

    letter-spacing:3px;

}

/* Line Height */

.lh-1{

    line-height:1;

}

.lh-sm{

    line-height:1.4;

}

.lh-normal{

    line-height:1.7;

}

.lh-lg{

    line-height:2;

}

/* Text Colors */

.text-primary{

    color:var(--primary) !important;

}

.text-warning{

    color:var(--warning) !important;

}

.text-success{

    color:var(--success) !important;

}

.text-danger{

    color:var(--danger) !important;

}

.text-dark{

    color:var(--dark) !important;

}

.text-white{

    color:#ffffff !important;

}

.text-muted{

    color:var(--gray) !important;

}

.text-security{

    color:var(--security-blue) !important;

}

.text-gold{

    color:var(--security-gold) !important;

}

/* Text Alignment */

.text-justify{

    text-align:justify;

}

/* Responsive Typography */

@media (max-width:992px){

    h1{
        font-size:46px;
    }

    h2{
        font-size:36px;
    }

    h3{
        font-size:30px;
    }

    .display-1{
        font-size:58px;
    }

    .display-2{
        font-size:50px;
    }

}

@media (max-width:768px){

    h1{
        font-size:38px;
    }

    h2{
        font-size:32px;
    }

    h3{
        font-size:28px;
    }

    h4{
        font-size:24px;
    }

    .display-1{
        font-size:48px;
    }

    .display-2{
        font-size:42px;
    }

    .display-3{
        font-size:36px;
    }

    .display-4{
        font-size:32px;
    }

    p{

        font-size:15px;

    }

}

@media (max-width:576px){

    h1{
        font-size:32px;
    }

    h2{
        font-size:28px;
    }

    h3{
        font-size:24px;
    }

    .display-1{
        font-size:40px;
    }

    .display-2{
        font-size:36px;
    }

    .display-3{
        font-size:30px;
    }

}


/*=========================================================
    LINKS
=========================================================*/

/* Default Link */

a{

    color:var(--primary);

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    color:var(--primary-dark);

    text-decoration:none;

}

/* Focus */

a:focus{

    outline:none;

}

/* Active */

a:active{

    color:var(--warning);

}

/* Navigation Links */

.navbar-nav .nav-link{

    position:relative;

    color:#ffffff !important;

    font-size:16px;

    font-weight:500;

    padding:12px 16px;

    transition:var(--transition);

}

.navbar-nav .nav-link:hover{

    color:var(--warning) !important;

}

.navbar-nav .nav-link.active{

    color:var(--warning) !important;

}

/* Animated Underline */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:5px;

    width:0;

    height:2px;

    background:var(--warning);

    transform:translateX(-50%);

    transition:var(--transition);

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:70%;

}

/* Dropdown */

.dropdown-menu{

    border:none;

    border-radius:10px;

    box-shadow:var(--shadow-md);

    padding:10px 0;

}

.dropdown-item{

    padding:10px 20px;

    transition:var(--transition);

    color:var(--dark);

    font-weight:500;

}

.dropdown-item:hover{

    background:var(--warning);

    color:#000;

    padding-left:28px;

}

/* Footer Links */

.footer-links{

    padding:0;

    margin:0;

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#dcdcdc;

    transition:var(--transition);

    display:inline-block;

}

.footer-links a:hover{

    color:var(--warning);

    transform:translateX(6px);

}

/* Breadcrumb */

.breadcrumb a{

    color:#ffffff;

    transition:var(--transition);

}

.breadcrumb a:hover{

    color:var(--warning);

}

/* Social Links */

.social-links{

    display:flex;

    align-items:center;

    gap:10px;

}

.social-links a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    color:var(--security-blue);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.social-links a:hover{

    background:var(--warning);

    color:#000;

    transform:translateY(-5px);

}

/* Top Header Social */

.top-social a{

    color:#ffffff;

    margin-left:12px;

    transition:var(--transition);

}

.top-social a:hover{

    color:var(--warning);

}

/* Contact Links */

.contact-link{

    color:var(--dark);

    font-weight:500;

}

.contact-link:hover{

    color:var(--primary);

}

/* Utility Link */

.link-primary{

    color:var(--primary);

}

.link-primary:hover{

    color:var(--primary-dark);

}

.link-warning{

    color:var(--warning);

}

.link-warning:hover{

    color:var(--warning-dark);

}

.link-dark{

    color:var(--dark);

}

.link-dark:hover{

    color:var(--primary);

}

.link-light{

    color:#ffffff;

}

.link-light:hover{

    color:var(--warning);

}

/* Read More Link */

.read-more{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:600;

    color:var(--primary);

}

.read-more i{

    transition:var(--transition);

}

.read-more:hover{

    color:var(--warning);

}

.read-more:hover i{

    transform:translateX(5px);

}


/*=========================================================
    BUTTONS - PART 2
=========================================================*/

/*=================================================
    OUTLINE BUTTONS
=================================================*/

.btn-outline-primary{

    background:transparent;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#ffffff;

}

.btn-outline-warning{

    background:transparent;

    color:var(--warning);

    border:2px solid var(--warning);

}

.btn-outline-warning:hover{

    background:var(--warning);

    color:#000;

}

.btn-outline-light{

    background:transparent;

    color:#ffffff;

    border:2px solid #ffffff;

}

.btn-outline-light:hover{

    background:#ffffff;

    color:var(--security-blue);

}

.btn-outline-dark{

    background:transparent;

    color:var(--dark);

    border:2px solid var(--dark);

}

.btn-outline-dark:hover{

    background:var(--dark);

    color:#ffffff;

}

/*=================================================
    ROUNDED / PILL BUTTONS
=================================================*/

.btn-rounded{

    border-radius:50px;

}

.btn-pill{

    border-radius:999px;

    padding:12px 30px;

}

/*=================================================
    HERO CTA BUTTONS
=================================================*/

.hero-btn{

    min-width:200px;

    min-height:54px;

    font-size:16px;

    font-weight:700;

    border-radius:50px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.hero-btn-primary{

    background:var(--warning);

    color:#000;

    border:2px solid var(--warning);

}

.hero-btn-primary:hover{

    background:#ffffff;

    color:var(--security-blue);

    border-color:#ffffff;

}

.hero-btn-secondary{

    background:transparent;

    color:#ffffff;

    border:2px solid #ffffff;

}

.hero-btn-secondary:hover{

    background:#ffffff;

    color:var(--security-blue);

}

/*=================================================
    ICON BUTTONS
=================================================*/

.btn-icon{

    width:50px;

    height:50px;

    padding:0;

    border-radius:50%;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.btn-icon i{

    font-size:18px;

}

.btn-icon:hover{

    transform:translateY(-4px) rotate(5deg);

}

/*=================================================
    SOCIAL BUTTONS
=================================================*/

.btn-facebook{

    background:#1877f2;

    color:#fff;

}

.btn-twitter{

    background:#1da1f2;

    color:#fff;

}

.btn-linkedin{

    background:#0a66c2;

    color:#fff;

}

.btn-instagram{

    background:#e4405f;

    color:#fff;

}

.btn-facebook:hover,
.btn-twitter:hover,
.btn-linkedin:hover,
.btn-instagram:hover{

    filter:brightness(1.08);

    color:#fff;

}

/*=================================================
    FLOATING ACTION BUTTON
=================================================*/

.fab{

    position:fixed;

    right:25px;

    bottom:100px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--warning);

    color:#000;

    font-size:22px;

    box-shadow:var(--shadow-lg);

    z-index:1000;

    transition:var(--transition);

}

.fab:hover{

    transform:translateY(-5px) scale(1.08);

}

/*=================================================
    LOADING BUTTON
=================================================*/

.btn-loading{

    position:relative;

    pointer-events:none;

    opacity:.85;

}

.btn-loading::after{

    content:"";

    width:18px;

    height:18px;

    margin-left:10px;

    border:2px solid rgba(255,255,255,.35);

    border-top-color:#ffffff;

    border-radius:50%;

    animation:btnSpin .8s linear infinite;

}

/*=================================================
    BACK TO TOP BUTTON
=================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--warning);

    color:#000;

    display:none;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

    z-index:999;

}

#backToTop:hover{

    background:var(--primary);

    color:#ffffff;

    transform:translateY(-5px);

}

/*=================================================
    GLOW EFFECT
=================================================*/

.btn-glow:hover{

    box-shadow:0 0 20px rgba(255,193,7,.45);

}

/*=================================================
    BUTTON ANIMATION
=================================================*/

@keyframes btnSpin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:768px){

    .hero-btn{

        width:100%;

        min-width:auto;

    }

    .fab{

        width:52px;

        height:52px;

        right:18px;

        bottom:90px;

    }

    #backToTop{

        width:46px;

        height:46px;

        right:18px;

        bottom:18px;

    }

}

/*=========================================================
    TOP HEADER
=========================================================*/

.top-header{

    background:var(--security-blue);

    color:#ffffff;

    height:var(--topbar-height);

    display:flex;

    align-items:center;

    position:relative;

    z-index:var(--z-topbar);

    border-bottom:1px solid rgba(255,255,255,.08);

}

/* Container */

.top-header .container{

    height:100%;

}

/* Row */

.top-header .row{

    height:100%;

    align-items:center;

}

/*=================================================
    CONTACT INFO
=================================================*/

.top-contact{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:25px;

    font-size:14px;

}

.top-contact span{

    display:flex;

    align-items:center;

    color:#ffffff;

}

.top-contact i{

    color:var(--warning);

    margin-right:8px;

    font-size:14px;

}

.top-contact a{

    color:#ffffff;

    transition:var(--transition);

}

.top-contact a:hover{

    color:var(--warning);

}

/*=================================================
    SOCIAL LINKS
=================================================*/

.top-social{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:10px;

}

.top-social a{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#ffffff;

    transition:var(--transition);

}

.top-social a:hover{

    background:var(--warning);

    color:#000000;

    transform:translateY(-3px);

}

/*=================================================
    EMPLOYEE LOGIN BUTTON
=================================================*/

.top-social .btn{

    margin-left:12px;

    padding:7px 16px;

    font-size:13px;

    border-radius:30px;

    font-weight:600;

}

.top-social .btn:hover{

    transform:translateY(-2px);

}

/*=================================================
    TOP HEADER HOVER EFFECT
=================================================*/

.top-header::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

}

/*=================================================
    CONTACT ICON ANIMATION
=================================================*/

.top-contact i{

    transition:var(--transition);

}

.top-contact span:hover i{

    transform:rotate(15deg) scale(1.1);

}

/*=================================================
    RESPONSIVE
=========================================================*/

@media (max-width:991px){

    .top-header{

        height:auto;

        padding:10px 0;

    }

    .top-header .row{

        row-gap:10px;

    }

    .top-contact{

        justify-content:center;

        gap:15px;

        text-align:center;

    }

    .top-social{

        justify-content:center;

    }

}

@media (max-width:767px){

    .top-contact{

        flex-direction:column;

        gap:8px;

        font-size:13px;

    }

    .top-social{

        flex-wrap:wrap;

        gap:8px;

    }

    .top-social .btn{

        width:100%;

        margin-left:0;

        margin-top:8px;

    }

}

@media (max-width:480px){

    .top-header{

        display:none;

    }

}


/*=========================================================
    MAIN NAVBAR - PART 1
=========================================================*/

/*=================================================
    NAVBAR
=================================================*/

.navbar{

    background:#ffffff;

    min-height:80px;

    padding:12px 0;

    transition:all .35s ease;

    z-index:999;

    border-bottom:1px solid rgba(0,0,0,.06);

}

.navbar>.container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*=================================================
    BRAND
=================================================*/

.navbar-brand{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    padding:0;

    margin:0;

}

/*=================================================
    LOGO
=================================================*/

.navbar-brand img{

    width:60px;

    height:60px;

    object-fit:contain;

    transition:var(--transition);

}

.navbar-brand:hover img{

    transform:rotate(-5deg) scale(1.05);

}

/*=================================================
    BRAND TEXT
=================================================*/

.brand-text{

    display:flex;

    flex-direction:column;

    line-height:1.2;

}

.brand-text h2{

    margin:0;

    font-size:22px;

    font-weight:700;

    color:var(--security-blue);

    letter-spacing:.3px;

}

.brand-text span{

    margin-top:2px;

    font-size:13px;

    font-weight:500;

    color:var(--gray);

    text-transform:uppercase;

    letter-spacing:1px;

}

/*=================================================
    NAVBAR COLLAPSE
=================================================*/

.navbar-collapse{

    justify-content:flex-end;

}

/*=================================================
    NAVIGATION SPACING
=================================================*/

.navbar-nav{

    align-items:center;

    gap:4px;

}

.navbar-nav .nav-item{

    margin:0 3px;

}

/*=================================================
    BOOTSTRAP OVERRIDES
=================================================*/

.navbar-light{

    background:#ffffff !important;

}

.navbar-light .navbar-nav .nav-link{

    color:var(--dark);

}

.navbar-light .navbar-brand{

    color:var(--security-blue);

}

.navbar-expand-lg .navbar-nav .nav-link{

    padding:.85rem 1rem;

}

/*=================================================
    TOGGLER BUTTON
=================================================*/

.navbar-toggler{

    border:0;

    padding:8px;

    border-radius:8px;

    background:transparent;

    box-shadow:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    width:28px;

    height:28px;

}

/*=================================================
    NAVBAR SHADOW
=================================================*/

.navbar.shadow{

    box-shadow:var(--shadow-md);

}

/*=================================================
    HOVER EFFECT
=================================================*/

.navbar:hover{

    box-shadow:var(--shadow-sm);

}

/*=================================================
    RESPONSIVE
=================================================*/

@media (max-width:991px){

    .navbar{

        padding:10px 0;

    }

    .navbar-brand img{

        width:52px;

        height:52px;

    }

    .brand-text h2{

        font-size:19px;

    }

    .brand-text span{

        font-size:11px;

    }

    .navbar-collapse{

        margin-top:15px;

    }

}

@media (max-width:576px){

    .navbar-brand{

        gap:10px;

    }

    .navbar-brand img{

        width:45px;

        height:45px;

    }

    .brand-text h2{

        font-size:17px;

    }

    .brand-text span{

        display:none;

    }

}


/*=========================================================
    MAIN NAVBAR - PART 2
    Navigation Links • Active Menu • CTA Buttons
=========================================================*/

/*=================================================
    NAVIGATION LINKS
=================================================*/

.navbar-nav .nav-link{

    position:relative;

    display:flex;

    align-items:center;

    color:var(--security-blue);

    font-size:15px;

    font-weight:600;

    padding:12px 16px;

    transition:var(--transition);

    text-transform:uppercase;

    letter-spacing:.4px;

}

.navbar-nav .nav-link:hover{

    color:var(--warning);

}

/*=================================================
    ACTIVE LINK
=================================================*/

.navbar-nav .nav-link.active{

    color:var(--warning);

}

/*=================================================
    ANIMATED UNDERLINE
=================================================*/

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:6px;

    width:0;

    height:3px;

    border-radius:50px;

    background:var(--warning);

    transform:translateX(-50%);

    transition:var(--transition);

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:70%;

}

/*=================================================
    DROPDOWN TOGGLE
=================================================*/

.navbar-nav .dropdown-toggle::after{

    margin-left:8px;

    vertical-align:middle;

}

.navbar-nav .dropdown-toggle:hover{

    color:var(--warning);

}

/*=================================================
    CTA BUTTON (GET QUOTE)
=================================================*/

.navbar .btn-quote{

    margin-left:18px;

    padding:12px 28px;

    border-radius:50px;

    background:var(--warning);

    color:#000;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    border:2px solid var(--warning);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.navbar .btn-quote:hover{

    background:var(--security-blue);

    color:#fff;

    border-color:var(--security-blue);

    transform:translateY(-3px);

    box-shadow:var(--shadow-lg);

}

/*=================================================
    LOGIN BUTTON
=================================================*/

.navbar .btn-login{

    margin-left:12px;

    padding:12px 26px;

    border-radius:50px;

    border:2px solid var(--security-blue);

    background:#ffffff;

    color:var(--security-blue);

    font-weight:600;

    transition:var(--transition);

}

.navbar .btn-login:hover{

    background:var(--security-blue);

    color:#ffffff;

}

/*=================================================
    NAV ICONS
=================================================*/

.navbar .nav-link i{

    margin-right:6px;

    font-size:14px;

    transition:var(--transition);

}

.navbar .nav-link:hover i{

    transform:translateY(-2px);

}

/*=================================================
    NAVBAR ACTIONS
=================================================*/

.navbar-actions{

    display:flex;

    align-items:center;

    gap:12px;

}

/*=================================================
    DESKTOP SPACING
=================================================*/

@media (min-width:992px){

    .navbar-nav{

        margin-left:auto;

    }

}

/*=================================================
    TABLET
=================================================*/

@media (max-width:991px){

    .navbar-nav{

        margin-top:15px;

        align-items:flex-start;

        gap:2px;

    }

    .navbar-nav .nav-link{

        width:100%;

        padding:14px 12px;

        border-bottom:1px solid rgba(0,0,0,.06);

    }

    .navbar-nav .nav-link::after{

        display:none;

    }

    .navbar-actions{

        width:100%;

        margin-top:18px;

        flex-direction:column;

        gap:10px;

    }

    .navbar .btn-quote,

    .navbar .btn-login{

        width:100%;

        margin-left:0;

        justify-content:center;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .navbar-nav .nav-link{

        font-size:14px;

        padding:12px 10px;

    }

    .navbar .btn-quote,

    .navbar .btn-login{

        font-size:14px;

        padding:12px 20px;

    }

}


/*=========================================================
    DROPDOWN MENU
=========================================================*/

/*=================================================
    DROPDOWN CONTAINER
=================================================*/

.dropdown-menu{

    min-width:240px;

    margin-top:12px;

    padding:10px 0;

    border:none;

    border-radius:12px;

    background:#ffffff;

    box-shadow:var(--shadow-lg);

    overflow:hidden;

    animation:dropdownFade .25s ease;

    z-index:var(--z-dropdown);

}

/* Desktop */

@media (min-width:992px){

    .navbar .dropdown:hover > .dropdown-menu{

        display:block;

    }

}

/*=================================================
    DROPDOWN ITEMS
=================================================*/

.dropdown-item{

    display:flex;

    align-items:center;

    padding:12px 22px;

    font-size:15px;

    font-weight:500;

    color:var(--dark);

    transition:var(--transition);

    position:relative;

}

.dropdown-item i{

    width:20px;

    margin-right:10px;

    color:var(--primary);

    transition:var(--transition);

}

.dropdown-item:hover{

    background:rgba(255,193,7,.12);

    color:var(--security-blue);

    padding-left:30px;

}

.dropdown-item:hover i{

    color:var(--warning);

    transform:scale(1.1);

}

/* Active */

.dropdown-item.active{

    background:var(--warning);

    color:#000;

    font-weight:600;

}

/* Divider */

.dropdown-divider{

    margin:8px 0;

    border-color:rgba(0,0,0,.08);

}

/*=================================================
    DROPDOWN HEADER
=================================================*/

.dropdown-header{

    padding:10px 22px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    color:var(--gray);

}

/*=================================================
    MEGA DROPDOWN (Optional)
=================================================*/

.dropdown-menu.mega-menu{

    width:700px;

    padding:25px;

}

.dropdown-menu.mega-menu .row{

    margin:0;

}

.dropdown-menu.mega-menu h6{

    margin-bottom:15px;

    color:var(--security-blue);

    font-weight:700;

}

.dropdown-menu.mega-menu a{

    display:block;

    padding:8px 0;

    color:var(--dark);

}

.dropdown-menu.mega-menu a:hover{

    color:var(--warning);

}

/*=================================================
    SUBMENU SUPPORT
=================================================*/

.dropdown-submenu{

    position:relative;

}

.dropdown-submenu>.dropdown-menu{

    top:0;

    left:100%;

    margin-top:0;

    margin-left:2px;

}

@media (min-width:992px){

    .dropdown-submenu:hover>.dropdown-menu{

        display:block;

    }

}

/*=================================================
    MOBILE DROPDOWN
=================================================*/

@media (max-width:991px){

    .dropdown-menu{

        position:static !important;

        float:none;

        width:100%;

        margin-top:0;

        border:none;

        box-shadow:none;

        border-radius:0;

        background:#f8f9fa;

        padding:0;

    }

    .dropdown-item{

        padding:14px 18px;

        border-bottom:1px solid rgba(0,0,0,.05);

    }

    .dropdown-submenu>.dropdown-menu{

        left:0;

    }

}

/*=================================================
    ANIMATION
=================================================*/

@keyframes dropdownFade{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*=========================================================
    STICKY NAVIGATION
=========================================================*/

/*=================================================
    STICKY NAVBAR
=================================================*/

.navbar.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    padding:8px 0;

    z-index:var(--z-navbar);

    box-shadow:0 8px 30px rgba(0,0,0,.10);

    animation:stickySlideDown .35s ease;

}

/*=================================================
    STICKY BRAND
=================================================*/

.navbar.sticky .navbar-brand img{

    width:50px;

    height:50px;

}

.navbar.sticky .brand-text h2{

    font-size:20px;

}

.navbar.sticky .brand-text span{

    font-size:11px;

}

/*=================================================
    STICKY NAVIGATION LINKS
=================================================*/

.navbar.sticky .nav-link{

    padding:10px 15px;

}

.navbar.sticky .btn-quote,

.navbar.sticky .btn-login{

    padding:10px 22px;

    font-size:14px;

}

/*=================================================
    BODY OFFSET
=================================================*/

body.has-sticky-navbar{

    padding-top:80px;

}

/*=================================================
    SHADOW EFFECT
=================================================*/

.navbar.sticky.shadow-lg{

    box-shadow:0 12px 35px rgba(0,0,0,.18);

}

/*=================================================
    SMOOTH TRANSITIONS
=================================================*/

.navbar,

.navbar *{

    transition:

        background .3s ease,

        color .3s ease,

        padding .3s ease,

        transform .3s ease,

        box-shadow .3s ease,

        width .3s ease,

        height .3s ease,

        font-size .3s ease;

}

/*=================================================
    LOGO HOVER
=================================================*/

.navbar.sticky .navbar-brand:hover img{

    transform:scale(1.08);

}

/*=================================================
    ACTIVE LINK
=================================================*/

.navbar.sticky .nav-link.active{

    color:var(--warning);

}

/*=================================================
    NAVBAR BORDER
=================================================*/

.navbar.sticky{

    border-bottom:1px solid rgba(0,0,0,.06);

}

/*=================================================
    SCROLL PROGRESS BAR (OPTIONAL)
=================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--warning),
        var(--primary)
    );

    z-index:9999;

    transition:width .15s linear;

}

/*=================================================
    ANIMATION
=================================================*/

@keyframes stickySlideDown{

    from{

        opacity:0;

        transform:translateY(-100%);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=================================================
    TABLET
=================================================*/

@media (max-width:991px){

    .navbar.sticky{

        padding:10px 0;

    }

    body.has-sticky-navbar{

        padding-top:72px;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .navbar.sticky .navbar-brand img{

        width:42px;

        height:42px;

    }

    .navbar.sticky .brand-text h2{

        font-size:17px;

    }

    .navbar.sticky .brand-text span{

        display:none;

    }

    body.has-sticky-navbar{

        padding-top:68px;

    }

}

/*=========================================================
    MOBILE NAVIGATION
=========================================================*/

/*=================================================
    MOBILE TOGGLER
=================================================*/

.navbar-toggler{

    width:48px;

    height:48px;

    padding:0;

    border:none;

    border-radius:10px;

    background:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

}

.navbar-toggler:hover{

    background:var(--warning);

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*=================================================
    CUSTOM HAMBURGER
=================================================*/

.navbar-toggler .bar{

    display:block;

    width:24px;

    height:2px;

    background:var(--security-blue);

    margin:5px auto;

    transition:all .3s ease;

    border-radius:2px;

}

/* Animated Hamburger */

.navbar-toggler[aria-expanded="true"] .bar:nth-child(1){

    transform:translateY(7px) rotate(45deg);

}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(2){

    opacity:0;

}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(3){

    transform:translateY(-7px) rotate(-45deg);

}

/*=================================================
    MOBILE MENU
=================================================*/

@media (max-width:991px){

    .navbar-collapse{

        margin-top:15px;

        background:#ffffff;

        border-radius:14px;

        box-shadow:var(--shadow-lg);

        padding:15px;

    }

    .navbar-nav{

        width:100%;

        gap:0;

    }

    .navbar-nav .nav-item{

        width:100%;

        margin:0;

    }

    .navbar-nav .nav-link{

        display:flex;

        align-items:center;

        justify-content:space-between;

        width:100%;

        padding:15px 18px;

        border-radius:8px;

        font-size:15px;

        font-weight:600;

        color:var(--security-blue);

        transition:var(--transition);

    }

    .navbar-nav .nav-link:hover{

        background:rgba(255,193,7,.15);

        color:var(--security-blue);

        padding-left:24px;

    }

    .navbar-nav .nav-link.active{

        background:var(--warning);

        color:#000;

    }

}

/*=================================================
    MOBILE DROPDOWN
=================================================*/

@media (max-width:991px){

    .dropdown-menu{

        background:#f8f9fa;

        border-radius:10px;

        margin-top:6px;

        padding:8px;

        box-shadow:none;

    }

    .dropdown-item{

        padding:12px 15px;

        border-radius:6px;

    }

    .dropdown-item:hover{

        padding-left:20px;

    }

}

/*=================================================
    MOBILE ACTION BUTTONS
=================================================*/

@media (max-width:991px){

    .navbar-actions{

        display:flex;

        flex-direction:column;

        width:100%;

        margin-top:20px;

        gap:12px;

    }

    .navbar-actions .btn{

        width:100%;

        justify-content:center;

    }

}

/*=================================================
    MOBILE OVERLAY
=================================================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:998;

}

.mobile-overlay.show{

    opacity:1;

    visibility:visible;

}

/*=================================================
    MOBILE CLOSE BUTTON
=================================================*/

.mobile-close{

    display:none;

}

@media (max-width:991px){

    .mobile-close{

        display:flex;

        align-items:center;

        justify-content:center;

        width:40px;

        height:40px;

        margin-left:auto;

        margin-bottom:10px;

        border-radius:50%;

        background:#f1f1f1;

        cursor:pointer;

        transition:var(--transition);

    }

    .mobile-close:hover{

        background:var(--danger);

        color:#ffffff;

    }

}

/*=================================================
    MOBILE MENU ANIMATION
=================================================*/

@media (max-width:991px){

    .navbar-collapse.collapsing{

        transition:height .35s ease;

    }

    .navbar-collapse.show{

        animation:mobileMenuFade .30s ease;

    }

}

@keyframes mobileMenuFade{

    from{

        opacity:0;

        transform:translateY(-12px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=================================================
    EXTRA SMALL DEVICES
=================================================*/

@media (max-width:576px){

    .navbar{

        min-height:70px;

    }

    .navbar-collapse{

        padding:12px;

    }

    .navbar-nav .nav-link{

        font-size:14px;

        padding:14px 15px;

    }

    .navbar-toggler{

        width:44px;

        height:44px;

    }

}

/*=========================================================
    HERO SECTION - PART 1
=========================================================*/

/*=================================================
    HERO SECTION
=================================================*/

.hero{

    position:relative;

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero/hero-bg.jpg") center center/cover no-repeat;

}

/*=================================================
    HERO OVERLAY
=================================================*/

.hero::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        rgba(0,33,71,.92),
        rgba(0,33,71,.75),
        rgba(0,0,0,.45)
    );

    z-index:1;

}

/*=================================================
    HERO WRAPPER
=================================================*/

.hero .container{

    position:relative;

    z-index:2;

}

.hero-wrapper{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

/*=================================================
    HERO CONTENT
=================================================*/

.hero-content{

    max-width:650px;

    color:#ffffff;

}

.hero-content>*{

    position:relative;

    z-index:3;

}

/*=================================================
    HERO SUBTITLE
=================================================*/

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    margin-bottom:25px;

    background:rgba(255,193,7,.15);

    border:1px solid rgba(255,193,7,.35);

    border-radius:50px;

    color:var(--warning);

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.hero-subtitle i{

    color:var(--warning);

    font-size:16px;

}

/*=================================================
    HERO TITLE
=================================================*/

.hero-title{

    margin-bottom:25px;

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    color:#ffffff;

}

.hero-title span{

    color:var(--warning);

}

/*=================================================
    HERO DESCRIPTION
=================================================*/

.hero-description{

    max-width:620px;

    margin-bottom:35px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.90);

}

/*=================================================
    HERO HIGHLIGHTS
=================================================*/

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:35px;

}

.hero-highlights li{

    display:flex;

    align-items:center;

    color:#ffffff;

    font-weight:500;

    font-size:16px;

}

.hero-highlights li i{

    width:34px;

    height:34px;

    margin-right:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--warning);

    color:#000;

    border-radius:50%;

    font-size:14px;

}

/*=================================================
    HERO DIVIDER
=================================================*/

.hero-divider{

    width:120px;

    height:4px;

    margin-bottom:30px;

    background:var(--warning);

    border-radius:30px;

}

/*=================================================
    RESPONSIVE
=================================================*/

@media (max-width:1200px){

    .hero-title{

        font-size:56px;

    }

}

@media (max-width:992px){

    .hero{

        padding:120px 0 80px;

        min-height:auto;

    }

    .hero-wrapper{

        flex-direction:column;

        text-align:center;

        gap:50px;

        min-height:auto;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-title{

        font-size:48px;

    }

    .hero-description{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-highlights{

        justify-content:center;

    }

    .hero-divider{

        margin-left:auto;

        margin-right:auto;

    }

}

@media (max-width:768px){

    .hero-title{

        font-size:40px;

    }

    .hero-description{

        font-size:16px;

    }

    .hero-subtitle{

        font-size:13px;

        padding:8px 16px;

    }

}

@media (max-width:576px){

    .hero{

        padding:100px 0 60px;

    }

    .hero-title{

        font-size:32px;

        line-height:1.3;

    }

    .hero-description{

        font-size:15px;

    }

    .hero-highlights{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

}


/*=========================================================
    HERO SECTION - PART 2
    CTA • Statistics • Hero Image • Floating Cards
=========================================================*/

/*=================================================
    HERO BUTTONS
=================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:50px;

}

.hero-buttons .btn{

    min-width:190px;

    height:56px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.hero-buttons .btn-primary{

    background:var(--warning);

    border:2px solid var(--warning);

    color:#000;

}

.hero-buttons .btn-primary:hover{

    background:#ffffff;

    color:var(--security-blue);

    border-color:#ffffff;

}

.hero-buttons .btn-outline-light{

    border:2px solid #ffffff;

    color:#ffffff;

    background:transparent;

}

.hero-buttons .btn-outline-light:hover{

    background:#ffffff;

    color:var(--security-blue);

}

/*=================================================
    HERO STATISTICS
=================================================*/

.hero-stats{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-stat{

    min-width:140px;

}

.hero-stat h2{

    margin:0;

    font-size:42px;

    font-weight:800;

    color:var(--warning);

}

.hero-stat span{

    display:block;

    margin-top:8px;

    font-size:14px;

    color:rgba(255,255,255,.90);

    text-transform:uppercase;

    letter-spacing:1px;

}

/*=================================================
    HERO IMAGE
=================================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

    transition:all .45s ease;

}

.hero-image:hover img{

    transform:translateY(-10px) scale(1.02);

}

/*=================================================
    EXPERIENCE CARD
=================================================*/

.experience-card{

    position:absolute;

    left:-30px;

    bottom:40px;

    width:220px;

    background:#ffffff;

    border-radius:18px;

    padding:22px;

    box-shadow:var(--shadow-xl);

}

.experience-card h3{

    margin:0;

    font-size:40px;

    color:var(--warning);

    font-weight:800;

}

.experience-card p{

    margin:8px 0 0;

    color:var(--dark);

    font-size:15px;

    font-weight:600;

}

/*=================================================
    SECURITY BADGE
=================================================*/

.security-badge{

    position:absolute;

    top:25px;

    right:-20px;

    width:95px;

    height:95px;

    border-radius:50%;

    background:var(--warning);

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    font-weight:700;

    box-shadow:var(--shadow-lg);

}

.security-badge i{

    font-size:28px;

    margin-bottom:5px;

}

/*=================================================
    TRUST BADGE
=================================================*/

.trust-badge{

    position:absolute;

    top:55%;

    right:-45px;

    background:#ffffff;

    border-radius:16px;

    padding:16px 20px;

    display:flex;

    align-items:center;

    gap:12px;

    box-shadow:var(--shadow-lg);

}

.trust-badge i{

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--success);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.trust-badge h5{

    margin:0;

    font-size:16px;

    color:var(--security-blue);

}

.trust-badge small{

    color:var(--gray);

}

/*=================================================
    IMAGE GLOW
=================================================*/

.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(255,193,7,.15);

    border-radius:50%;

    filter:blur(60px);

    z-index:-1;

}

/*=================================================
    TABLET
=================================================*/

@media (max-width:992px){

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

        margin-bottom:50px;

    }

    .experience-card{

        left:10px;

        bottom:-20px;

    }

    .trust-badge{

        right:10px;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:768px){

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .hero-stat{

        width:100%;

        text-align:center;

    }

    .experience-card{

        position:relative;

        left:0;

        bottom:0;

        width:100%;

        margin-top:20px;

    }

    .security-badge{

        width:80px;

        height:80px;

        font-size:13px;

    }

    .trust-badge{

        position:relative;

        right:0;

        top:0;

        margin-top:20px;

        width:100%;

    }

}

@media (max-width:576px){

    .hero-image img{

        border-radius:18px;

    }

    .security-badge{

        display:none;

    }

}


/*=========================================================
    HERO SECTION - PART 3A.1
    Floating Decorative Shapes & Background Circles
=========================================================*/

/*=================================================
    HERO DECORATIVE CONTAINER
=================================================*/

.hero-decoration{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

    z-index:1;

}

/*=================================================
    FLOATING SHAPES
=================================================*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    opacity:.18;

    animation:floatShape 8s ease-in-out infinite;

    will-change:transform;

}

/* Large Circle */

.hero-shape.shape-1{

    width:260px;

    height:260px;

    top:8%;

    right:-80px;

    background:radial-gradient(circle,
        rgba(255,193,7,.70),
        rgba(255,193,7,0));

    animation-duration:10s;

}

/* Medium Circle */

.hero-shape.shape-2{

    width:180px;

    height:180px;

    bottom:12%;

    left:-60px;

    background:radial-gradient(circle,
        rgba(13,110,253,.55),
        rgba(13,110,253,0));

    animation-duration:8s;

    animation-delay:1.5s;

}

/* Small Circle */

.hero-shape.shape-3{

    width:90px;

    height:90px;

    top:35%;

    right:18%;

    background:radial-gradient(circle,
        rgba(255,255,255,.25),
        rgba(255,255,255,0));

    animation-duration:6s;

    animation-delay:.8s;

}

/* Gold Accent */

.hero-shape.shape-4{

    width:140px;

    height:140px;

    bottom:28%;

    right:8%;

    background:radial-gradient(circle,
        rgba(255,193,7,.45),
        rgba(255,193,7,0));

    animation-duration:9s;

}

/*=================================================
    BACKGROUND CIRCLES
=================================================*/

.hero-circle{

    position:absolute;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.08);

    animation:rotateCircle 24s linear infinite;

}

/* Circle One */

.hero-circle.circle-1{

    width:420px;

    height:420px;

    top:-120px;

    right:-120px;

}

/* Circle Two */

.hero-circle.circle-2{

    width:300px;

    height:300px;

    bottom:-100px;

    left:-100px;

    animation-direction:reverse;

    animation-duration:20s;

}

/* Circle Three */

.hero-circle.circle-3{

    width:160px;

    height:160px;

    top:45%;

    left:12%;

    border-color:rgba(255,193,7,.15);

    animation-duration:16s;

}

/*=================================================
    ANIMATIONS
=================================================*/

@keyframes floatShape{

    0%{

        transform:translateY(0) translateX(0);

    }

    25%{

        transform:translateY(-12px) translateX(8px);

    }

    50%{

        transform:translateY(-24px) translateX(0);

    }

    75%{

        transform:translateY(-12px) translateX(-8px);

    }

    100%{

        transform:translateY(0) translateX(0);

    }

}

@keyframes rotateCircle{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*=================================================
    RESPONSIVE
=================================================*/

@media (max-width:992px){

    .hero-shape.shape-1{

        width:200px;

        height:200px;

    }

    .hero-circle.circle-1{

        width:320px;

        height:320px;

    }

}

@media (max-width:768px){

    .hero-shape.shape-2,

    .hero-circle.circle-2{

        display:none;

    }

    .hero-shape.shape-1{

        width:160px;

        height:160px;

    }

    .hero-circle.circle-1{

        width:220px;

        height:220px;

    }

}

@media (max-width:576px){

    .hero-decoration{

        display:none;

    }

}

/*=========================================================
    HERO SECTION - PART 3A.2
    Gradient Blobs • Particles • Decorative Borders
=========================================================*/

/*=================================================
    GRADIENT BLOBS
=================================================*/

.hero-blob{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.25;

    z-index:1;

    animation:blobFloat 12s ease-in-out infinite;

}

/* Blob 1 */

.hero-blob.blob-1{

    width:320px;

    height:320px;

    top:15%;

    left:10%;

    background:radial-gradient(circle,
        rgba(255,193,7,.55),
        rgba(255,193,7,0));

}

/* Blob 2 */

.hero-blob.blob-2{

    width:280px;

    height:280px;

    bottom:10%;

    right:12%;

    background:radial-gradient(circle,
        rgba(13,110,253,.45),
        rgba(13,110,253,0));

    animation-delay:2s;

}

/* Blob 3 */

.hero-blob.blob-3{

    width:200px;

    height:200px;

    top:55%;

    left:40%;

    background:radial-gradient(circle,
        rgba(25,135,84,.35),
        rgba(25,135,84,0));

    animation-delay:4s;

}

/*=================================================
    BACKGROUND PARTICLES
=================================================*/

.hero-particles{

    position:absolute;

    inset:0;

    z-index:1;

    overflow:hidden;

}

/* Particle Base */

.hero-particle{

    position:absolute;

    width:6px;

    height:6px;

    background:rgba(255,255,255,.35);

    border-radius:50%;

    animation:particleFloat 10s linear infinite;

}

/* Particle Variants */

.hero-particle:nth-child(1){

    top:20%;

    left:15%;

    animation-duration:12s;

}

.hero-particle:nth-child(2){

    top:35%;

    left:70%;

    animation-duration:9s;

}

.hero-particle:nth-child(3){

    top:60%;

    left:25%;

    animation-duration:14s;

}

.hero-particle:nth-child(4){

    top:75%;

    left:80%;

    animation-duration:11s;

}

.hero-particle:nth-child(5){

    top:40%;

    left:50%;

    animation-duration:13s;

}

/*=================================================
    DECORATIVE BORDER FRAME
=================================================*/

.hero-frame{

    position:absolute;

    inset:40px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    z-index:1;

    pointer-events:none;

}

/* Inner glow border */

.hero-frame::before{

    content:"";

    position:absolute;

    inset:10px;

    border:1px solid rgba(255,193,7,.12);

    border-radius:25px;

}

/* Corner accents */

.hero-frame::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    background:
        linear-gradient(to right, rgba(255,193,7,.08), transparent 20%),
        linear-gradient(to left, rgba(13,110,253,.08), transparent 20%);

    opacity:.6;

}

/*=================================================
    ANIMATIONS
=================================================*/

@keyframes blobFloat{

    0%{

        transform:translate(0,0) scale(1);

    }

    50%{

        transform:translate(20px,-20px) scale(1.08);

    }

    100%{

        transform:translate(0,0) scale(1);

    }

}

@keyframes particleFloat{

    0%{

        transform:translateY(0) translateX(0);

        opacity:.2;

    }

    50%{

        opacity:.6;

    }

    100%{

        transform:translateY(-120px) translateX(30px);

        opacity:0;

    }

}

/*=================================================
    RESPONSIVE
=================================================*/

@media (max-width:992px){

    .hero-blob.blob-1{

        width:240px;

        height:240px;

    }

    .hero-frame{

        inset:25px;

    }

}

@media (max-width:768px){

    .hero-blob.blob-2{

        display:none;

    }

    .hero-frame{

        display:none;

    }

}

@media (max-width:576px){

    .hero-particles{

        display:none;

    }

    .hero-blob{

        opacity:.15;

    }

}

/*=========================================================
    HERO SECTION - PART 3B
    Scroll Indicator • Animations • Parallax Utilities
=========================================================*/

/*=================================================
    SCROLL DOWN INDICATOR
=================================================*/

.hero-scroll{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    z-index:5;

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#ffffff;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    opacity:.8;

}

.hero-scroll span{

    margin-bottom:8px;

}

.hero-scroll .mouse{

    width:26px;

    height:42px;

    border:2px solid rgba(255,255,255,.6);

    border-radius:20px;

    position:relative;

}

.hero-scroll .mouse::before{

    content:"";

    position:absolute;

    top:6px;

    left:50%;

    transform:translateX(-50%);

    width:4px;

    height:8px;

    background:#fff;

    border-radius:10px;

    animation:scrollDown 1.8s infinite;

}

/*=================================================
    FADE UP ANIMATIONS
=================================================*/

.fade-up{

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .8s ease forwards;

}

.fade-up.delay-1{ animation-delay:.2s; }

.fade-up.delay-2{ animation-delay:.4s; }

.fade-up.delay-3{ animation-delay:.6s; }

.fade-up.delay-4{ animation-delay:.8s; }

/*=================================================
    FLOATING HERO IMAGE ANIMATION
=================================================*/

.hero-image-float{

    animation:floatImage 6s ease-in-out infinite;

}

/*=================================================
    PARALLAX UTILITIES
=================================================*/

.parallax-slow{

    transform:translateY(0);

    will-change:transform;

}

.parallax-medium{

    transform:translateY(0);

    will-change:transform;

}

.parallax-fast{

    transform:translateY(0);

    will-change:transform;

}

/*=================================================
    PULSE EFFECT (BADGES / ICONS)
=================================================*/

.pulse{

    animation:pulse 2s infinite;

}

/*=================================================
    ANIMATIONS
=================================================*/

@keyframes scrollDown{

    0%{

        opacity:1;

        transform:translate(-50%,0);

    }

    50%{

        opacity:.4;

    }

    100%{

        opacity:0;

        transform:translate(-50%,12px);

    }

}

@keyframes fadeUp{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes pulse{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(255,193,7,.6);

    }

    70%{

        transform:scale(1.05);

        box-shadow:0 0 0 12px rgba(255,193,7,0);

    }

    100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(255,193,7,0);

    }

}

/*=================================================
    RESPONSIVE
=================================================*/

@media (max-width:768px){

    .hero-scroll{

        bottom:15px;

        font-size:11px;

    }

    .hero-scroll .mouse{

        width:22px;

        height:36px;

    }

}

/*=================================================
    ACCESSIBILITY
=================================================*/

@media (prefers-reduced-motion: reduce){

    .fade-up,

    .hero-image-float,

    .pulse,

    .hero-scroll .mouse::before{

        animation:none !important;

    }

}

/*=========================================================
    HERO SECTION - PART 3C
    Final Responsive • Utilities • Performance • Cleanup
=========================================================*/

/*=================================================
    HERO SPACING UTILITIES
=================================================*/

.hero-mt-sm{ margin-top:10px; }
.hero-mt-md{ margin-top:20px; }
.hero-mt-lg{ margin-top:40px; }

.hero-mb-sm{ margin-bottom:10px; }
.hero-mb-md{ margin-bottom:20px; }
.hero-mb-lg{ margin-bottom:40px; }

/*=================================================
    HERO TEXT UTILITIES
=================================================*/

.hero-text-light{

    color:rgba(255,255,255,.85);

}

.hero-text-bold{

    font-weight:800;

}

.hero-text-accent{

    color:var(--warning);

}

/*=================================================
    HERO ALIGNMENT HELPERS
=================================================*/

.hero-center{

    text-align:center;

    justify-content:center;

    align-items:center;

}

.hero-left{

    text-align:left;

}

.hero-right{

    text-align:right;

}

/*=================================================
    HERO LAYER FIXES (Z-INDEX CLEANUP)
=================================================*/

.hero-content{

    position:relative;

    z-index:5;

}

.hero-image{

    position:relative;

    z-index:5;

}

.hero-decoration,
.hero-blob,
.hero-shape,
.hero-circle,
.hero-particles{

    z-index:1;

}

/*=================================================
    PERFORMANCE OPTIMIZATION
=================================================*/

.hero *{

    backface-visibility:hidden;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* Reduce repaint issues */

.hero-image img{

    will-change:transform;

}

.hero-blob,
.hero-shape{

    will-change:transform;

}

/*=================================================
    PRINT SAFETY
=================================================*/

@media print{

    .hero{

        min-height:auto !important;

        background:none !important;

        color:#000 !important;

    }

    .hero::before,

    .hero-decoration,

    .hero-blob,

    .hero-shape,

    .hero-circle,

    .hero-particles,

    .hero-scroll{

        display:none !important;

    }

    .hero-title{

        color:#000 !important;

    }

}

/*=================================================
    FINAL RESPONSIVE CLEANUP
=================================================*/

@media (max-width:992px){

    .hero-content{

        padding:0 10px;

    }

}

@media (max-width:768px){

    .hero{

        text-align:center;

    }

    .hero-buttons{

        width:100%;

    }

    .hero-stats{

        width:100%;

    }

}

@media (max-width:576px){

    .hero-content{

        padding:0 5px;

    }

    .hero-title{

        word-break:break-word;

    }

}

/*=================================================
    HERO CLEAN RESET (SAFE OVERRIDES)
=================================================*/

.hero a{

    text-decoration:none;

}

.hero button{

    outline:none;

    border:none;

}

/*=================================================
    HERO FINAL TOUCH EFFECTS
=================================================*/

.hero-glow{

    box-shadow:0 0 80px rgba(255,193,7,.15);

}

.hero-soft-shadow{

    filter:drop-shadow(0 10px 30px rgba(0,0,0,.25));

}

/*=========================================================
    ABOUT SECTION
=========================================================*/

/*=================================================
    ABOUT WRAPPER
=================================================*/

.about-section{

    position:relative;

    padding:100px 0;

    background:#ffffff;

    overflow:hidden;

}

/* Soft background accent */

.about-section::before{

    content:"";

    position:absolute;

    top:-100px;

    right:-120px;

    width:400px;

    height:400px;

    background:radial-gradient(circle,
        rgba(255,193,7,.15),
        transparent 70%);

    z-index:0;

}

/*=================================================
    ABOUT CONTAINER LAYOUT
=================================================*/

.about-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

/*=================================================
    ABOUT IMAGE SECTION
=================================================*/

.about-image{

    position:relative;

    flex:1;

}

.about-image img{

    width:100%;

    max-width:520px;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:var(--transition);

}

.about-image:hover img{

    transform:scale(1.03);

}

/*=================================================
    EXPERIENCE BADGE
=================================================*/

.experience-badge{

    position:absolute;

    bottom:20px;

    left:-25px;

    background:var(--warning);

    color:#000;

    padding:18px 22px;

    border-radius:16px;

    box-shadow:var(--shadow-lg);

    text-align:center;

}

.experience-badge h2{

    margin:0;

    font-size:38px;

    font-weight:800;

}

.experience-badge span{

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

/*=================================================
    ABOUT CONTENT
=================================================*/

.about-content{

    flex:1;

}

.about-subtitle{

    display:inline-block;

    padding:8px 16px;

    background:rgba(255,193,7,.15);

    color:var(--warning);

    font-weight:600;

    border-radius:50px;

    font-size:14px;

    margin-bottom:15px;

}

/*=================================================
    ABOUT TITLE
=================================================*/

.about-title{

    font-size:42px;

    font-weight:800;

    color:var(--security-blue);

    margin-bottom:20px;

    line-height:1.2;

}

.about-title span{

    color:var(--warning);

}

/*=================================================
    ABOUT DESCRIPTION
=================================================*/

.about-text{

    font-size:16px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:25px;

}

/*=================================================
    FEATURE LIST
=================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:30px;

}

.about-feature{

    display:flex;

    align-items:flex-start;

    gap:12px;

    font-weight:500;

    color:var(--dark);

}

.about-feature i{

    color:var(--warning);

    font-size:18px;

    margin-top:3px;

}

/*=================================================
    ABOUT CARDS
=================================================*/

.about-cards{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.about-card{

    flex:1;

    min-width:180px;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.06);

    padding:20px;

    border-radius:14px;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.about-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.about-card h3{

    font-size:26px;

    color:var(--warning);

    margin:0 0 5px;

    font-weight:800;

}

.about-card p{

    margin:0;

    font-size:14px;

    color:var(--gray);

}

/*=================================================
    ABOUT CTA BUTTONS
=================================================*/

.about-buttons{

    margin-top:30px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.about-buttons .btn{

    padding:12px 26px;

    border-radius:50px;

    font-weight:600;

}

/*=================================================
    ANIMATION (OPTIONAL REVEAL)
=================================================*/

.about-section{

    animation:fadeUp .8s ease;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    .about-wrapper{

        flex-direction:column;

        text-align:center;

    }

    .about-image{

        display:flex;

        justify-content:center;

    }

    .experience-badge{

        left:10px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .about-cards{

        justify-content:center;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .about-title{

        font-size:30px;

    }

    .experience-badge{

        position:relative;

        left:0;

        margin-top:15px;

    }

    .about-buttons{

        justify-content:center;

    }

}


/*=========================================================
    SERVICES SECTION
=========================================================*/

/*=================================================
    SERVICES WRAPPER
=================================================*/

.services-section{

    position:relative;

    padding:100px 0;

    background:#f8f9fa;

    overflow:hidden;

}

/* Background decoration */

.services-section::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-120px;

    width:400px;

    height:400px;

    background:radial-gradient(circle,
        rgba(13,110,253,.08),
        transparent 70%);

    z-index:0;

}

/*=================================================
    SECTION HEADER
=================================================*/

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-subtitle{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,193,7,.15);

    color:var(--warning);

    font-weight:600;

    border-radius:50px;

    font-size:14px;

    margin-bottom:12px;

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:var(--security-blue);

    margin-bottom:15px;

}

.section-title span{

    color:var(--warning);

}

.section-description{

    max-width:650px;

    margin:0 auto;

    font-size:16px;

    color:var(--gray);

    line-height:1.8;

}

/*=================================================
    SERVICES GRID
=================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=================================================
    SERVICE CARD
=================================================*/

.service-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px 28px;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:all .35s ease;

    z-index:1;

}

/* Hover effect background */

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:0%;

    background:linear-gradient(
        180deg,
        rgba(255,193,7,.12),
        transparent
    );

    transition:all .4s ease;

    z-index:-1;

}

.service-card:hover::before{

    height:100%;

}

/* Hover lift */

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*=================================================
    SERVICE ICON
=================================================*/

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:var(--warning);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

    transition:var(--transition);

}

.service-icon i{

    font-size:28px;

    color:#000;

}

/* Icon hover */

.service-card:hover .service-icon{

    transform:rotate(8deg) scale(1.05);

}

/*=================================================
    SERVICE TITLE
=================================================*/

.service-title{

    font-size:22px;

    font-weight:700;

    color:var(--security-blue);

    margin-bottom:12px;

}

/*=================================================
    SERVICE DESCRIPTION
=================================================*/

.service-text{

    font-size:15px;

    color:var(--gray);

    line-height:1.8;

    margin-bottom:20px;

}

/*=================================================
    READ MORE BUTTON
=================================================*/

.service-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:600;

    font-size:14px;

    color:var(--security-blue);

    text-decoration:none;

    transition:var(--transition);

}

.service-link i{

    transition:var(--transition);

}

.service-link:hover{

    color:var(--warning);

}

.service-link:hover i{

    transform:translateX(5px);

}

/*=================================================
    SERVICE BADGE (OPTIONAL)
=================================================*/

.service-badge{

    position:absolute;

    top:15px;

    right:15px;

    background:rgba(255,193,7,.15);

    color:var(--warning);

    font-size:12px;

    padding:6px 10px;

    border-radius:50px;

    font-weight:600;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .section-title{

        font-size:34px;

    }

}

@media (max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        text-align:center;

    }

    .service-icon{

        margin:0 auto 20px;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .section-title{

        font-size:28px;

    }

    .section-description{

        font-size:14px;

    }

}

/*=========================================================
    INDUSTRIES SECTION
=========================================================*/

/*=================================================
    INDUSTRIES WRAPPER
=================================================*/

.industries-section{

    position:relative;

    padding:100px 0;

    background:#ffffff;

    overflow:hidden;

}

/* Decorative background */

.industries-section::before{

    content:"";

    position:absolute;

    bottom:-120px;

    right:-120px;

    width:420px;

    height:420px;

    background:radial-gradient(circle,
        rgba(255,193,7,.10),
        transparent 70%);

    z-index:0;

}

/*=================================================
    INDUSTRIES GRID
=================================================*/

industries-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    position:relative;

    z-index:2;

}

/*=================================================
    INDUSTRY CARD
=================================================*/

.industry-card{

    background:#f8f9fa;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:all .35s ease;

    border:1px solid rgba(0,0,0,.05);

}

/* Hover effect background */

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:0%;

    background:linear-gradient(
        180deg,
        rgba(13,110,253,.08),
        transparent
    );

    transition:all .4s ease;

    z-index:-1;

}

.industry-card:hover::before{

    height:100%;

}

/* Hover lift */

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.10);

    background:#ffffff;

}

/*=================================================
    INDUSTRY ICON
=================================================*/

.industry-icon{

    width:75px;

    height:75px;

    margin:0 auto 18px;

    border-radius:20px;

    background:var(--warning);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

}

.industry-icon i{

    font-size:30px;

    color:#000;

}

/* Icon hover */

.industry-card:hover .industry-icon{

    transform:rotate(-6deg) scale(1.08);

}

/*=================================================
    INDUSTRY TITLE
=================================================*/

.industry-title{

    font-size:20px;

    font-weight:700;

    color:var(--security-blue);

    margin-bottom:10px;

}

/*=================================================
    INDUSTRY TEXT
=================================================*/

.industry-text{

    font-size:14px;

    color:var(--gray);

    line-height:1.7;

    margin-bottom:15px;

}

/*=================================================
    INDUSTRY LINK
=================================================*/

.industry-link{

    display:inline-flex;

    align-items:center;

    gap:6px;

    font-size:14px;

    font-weight:600;

    color:var(--security-blue);

    text-decoration:none;

    transition:var(--transition);

}

.industry-link i{

    transition:var(--transition);

}

.industry-link:hover{

    color:var(--warning);

}

.industry-link:hover i{

    transform:translateX(5px);

}

/*=================================================
    INDUSTRY BADGE
=================================================*/

.industry-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:rgba(255,193,7,.15);

    color:var(--warning);

    font-size:11px;

    padding:5px 10px;

    border-radius:50px;

    font-weight:600;

}

/*=================================================
    SECTION HEADER (REUSE SAFE)
=================================================*/

.industries-section .section-header{

    margin-bottom:60px;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    industries-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    industries-grid{

        grid-template-columns:1fr;

    }

    .industry-card{

        text-align:center;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .industry-icon{

        width:65px;

        height:65px;

    }

    .industry-title{

        font-size:18px;

    }

}

/*=========================================================
    GALLERY SECTION
=========================================================*/

/*=================================================
    GALLERY WRAPPER
=================================================*/

.gallery-section{

    position:relative;

    padding:100px 0;

    background:#f8f9fa;

    overflow:hidden;

}

/* Background decoration */

.gallery-section::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-120px;

    width:400px;

    height:400px;

    background:radial-gradient(circle,
        rgba(255,193,7,.10),
        transparent 70%);

    z-index:0;

}

/*=================================================
    GALLERY GRID
=================================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    position:relative;

    z-index:2;

}

/*=================================================
    GALLERY ITEM
=================================================*/

.gallery-item{

    position:relative;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:var(--transition);

}

/* Hover lift */

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/*=================================================
    IMAGE STYLE
=================================================*/

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:transform .5s ease;

}

/* Zoom on hover */

.gallery-item:hover img{

    transform:scale(1.08);

}

/*=================================================
    OVERLAY EFFECT
=================================================*/

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,33,71,.85),
        rgba(0,33,71,.2)
    );

    opacity:0;

    transition:all .35s ease;

    display:flex;

    align-items:flex-end;

    padding:20px;

}

/* Show overlay on hover */

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

/*=================================================
    GALLERY CONTENT
=================================================*/

.gallery-content{

    color:#ffffff;

    transform:translateY(20px);

    transition:all .35s ease;

}

.gallery-item:hover .gallery-content{

    transform:translateY(0);

}

.gallery-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:5px;

}

.gallery-text{

    font-size:14px;

    opacity:.9;

}

/*=================================================
    CATEGORY BADGE
=================================================*/

.gallery-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:var(--warning);

    color:#000;

    font-size:12px;

    font-weight:600;

    padding:6px 12px;

    border-radius:50px;

    z-index:2;

}

/*=================================================
    ICON ACTION (VIEW)
=================================================*/

.gallery-icon{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%, -50%) scale(0.8);

    width:50px;

    height:50px;

    background:rgba(255,255,255,.9);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    color:var(--security-blue);

    opacity:0;

    transition:all .35s ease;

}

/* Show icon on hover */

.gallery-item:hover .gallery-icon{

    opacity:1;

    transform:translate(-50%, -50%) scale(1);

}

/*=================================================
    SECTION HEADER
=================================================*/

.gallery-section .section-header{

    margin-bottom:60px;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-item img{

        height:240px;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .gallery-item img{

        height:200px;

    }

    .gallery-title{

        font-size:16px;

    }

}

/*=========================================================
    CLIENTS SECTION
=========================================================*/

/*=================================================
    CLIENTS WRAPPER
=================================================*/

.clients-section{

    position:relative;

    padding:90px 0;

    background:#ffffff;

    overflow:hidden;

}

/* Soft background glow */

.clients-section::before{

    content:"";

    position:absolute;

    top:-100px;

    right:-120px;

    width:380px;

    height:380px;

    background:radial-gradient(circle,
        rgba(255,193,7,.12),
        transparent 70%);

    z-index:0;

}

/*=================================================
    CLIENTS GRID
=================================================*/

.clients-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*=================================================
    CLIENT CARD (LOGOS)
=================================================*/

.client-item{

    background:#f8f9fa;

    border-radius:14px;

    padding:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

    filter:grayscale(100%);

    opacity:.75;

    border:1px solid rgba(0,0,0,.05);

}

/* Hover effect */

.client-item:hover{

    filter:grayscale(0%);

    opacity:1;

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    background:#ffffff;

}

/* Logo image */

.client-item img{

    max-width:120px;

    max-height:60px;

    object-fit:contain;

}

/*=================================================
    CLIENT TESTIMONIAL CARD (OPTIONAL)
=================================================*/

.client-testimonial{

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    text-align:center;

    transition:var(--transition);

}

.client-testimonial:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.client-testimonial p{

    font-size:15px;

    color:var(--gray);

    line-height:1.8;

    margin-bottom:20px;

}

/* Client name */

.client-name{

    font-weight:700;

    color:var(--security-blue);

    margin-bottom:5px;

}

/* Client role */

.client-role{

    font-size:13px;

    color:var(--gray);

}

/*=================================================
    STAR RATING (OPTIONAL TESTIMONIALS)
=================================================*/

.client-rating{

    margin-bottom:15px;

}

.client-rating i{

    color:var(--warning);

    font-size:14px;

    margin:0 2px;

}

/*=================================================
    SECTION HEADER
=================================================*/

.clients-section .section-header{

    margin-bottom:50px;

}

/*=================================================
    DIVIDER LINE (OPTIONAL STYLE TOUCH)
=================================================*/

.clients-divider{

    width:100%;

    height:1px;

    background:rgba(0,0,0,.06);

    margin:40px 0;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    .clients-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media (max-width:768px){

    .clients-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .clients-grid{

        grid-template-columns:1fr;

    }

    .client-item{

        padding:25px;

    }

}

/*=========================================================
    CONTACT SECTION
=========================================================*/

/*=================================================
    CONTACT WRAPPER
=================================================*/

.contact-section{

    position:relative;

    padding:100px 0;

    background:#f8f9fa;

    overflow:hidden;

}

/* Background glow */

.contact-section::before{

    content:"";

    position:absolute;

    bottom:-120px;

    left:-120px;

    width:420px;

    height:420px;

    background:radial-gradient(circle,
        rgba(13,110,253,.10),
        transparent 70%);

    z-index:0;

}

/*=================================================
    CONTACT LAYOUT
=================================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:50px;

    align-items:start;

    position:relative;

    z-index:2;

}

/*=================================================
    CONTACT INFO BOX
=================================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-card{

    background:#ffffff;

    padding:20px;

    border-radius:16px;

    display:flex;

    align-items:flex-start;

    gap:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/* Icon */

.contact-icon{

    width:55px;

    height:55px;

    border-radius:14px;

    background:var(--warning);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.contact-icon i{

    font-size:22px;

    color:#000;

}

/* Text */

.contact-details h4{

    margin:0 0 5px;

    font-size:16px;

    font-weight:700;

    color:var(--security-blue);

}

.contact-details p{

    margin:0;

    font-size:14px;

    color:var(--gray);

    line-height:1.6;

}

/*=================================================
    CONTACT FORM
=================================================*/

.contact-form{

    background:#ffffff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/* Form title */

.contact-form h3{

    font-size:26px;

    font-weight:800;

    margin-bottom:25px;

    color:var(--security-blue);

}

.contact-form h3 span{

    color:var(--warning);

}

/*=================================================
    INPUT FIELDS
=================================================*/

.form-group{

    margin-bottom:18px;

}

.form-control{

    width:100%;

    padding:14px 16px;

    border-radius:12px;

    border:1px solid rgba(0,0,0,.08);

    font-size:15px;

    transition:var(--transition);

    outline:none;

}

.form-control:focus{

    border-color:var(--warning);

    box-shadow:0 0 0 3px rgba(255,193,7,.2);

}

/* Textarea */

textarea.form-control{

    resize:none;

    min-height:120px;

}

/*=================================================
    SUBMIT BUTTON
=================================================*/

.contact-form .btn-submit{

    width:100%;

    padding:14px;

    border-radius:50px;

    background:var(--warning);

    color:#000;

    font-weight:700;

    font-size:16px;

    border:none;

    cursor:pointer;

    transition:var(--transition);

    text-transform:uppercase;

    letter-spacing:.5px;

}

.contact-form .btn-submit:hover{

    background:var(--security-blue);

    color:#fff;

    transform:translateY(-3px);

}

/*=================================================
    MAP SECTION (OPTIONAL)
=================================================*/

.contact-map{

    margin-top:40px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.contact-map iframe{

    width:100%;

    height:320px;

    border:0;

}

/*=================================================
    SECTION HEADER
=================================================*/

.contact-section .section-header{

    margin-bottom:50px;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .contact-form{

        padding:25px;

    }

}

/*=================================================
    MOBILE
=================================================*/

@media (max-width:576px){

    .contact-form h3{

        font-size:22px;

    }

}


/*=========================================================
    FOOTER SECTION
=========================================================*/

.footer{

    position:relative;

    background:#0b1a2a;

    color:#ffffff;

    padding:80px 0 0;

    overflow:hidden;

}

/* Background glow */

.footer::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:400px;

    height:400px;

    background:radial-gradient(circle,
        rgba(255,193,7,.12),
        transparent 70%);

    z-index:0;

}

/*=================================================
    FOOTER TOP
=================================================*/

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    padding-bottom:50px;

    position:relative;

    z-index:2;

}

/*=================================================
    FOOTER ABOUT
=================================================*/

.footer-about img{

    width:160px;

    margin-bottom:15px;

}

.footer-about p{

    font-size:14px;

    color:rgba(255,255,255,.7);

    line-height:1.8;

    margin-bottom:20px;

}

/* Social icons */

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:var(--transition);

    text-decoration:none;

}

.footer-social a:hover{

    background:var(--warning);

    color:#000;

    transform:translateY(-4px);

}

/*=================================================
    FOOTER LINKS
=================================================*/

.footer-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:18px;

    color:#ffffff;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:10px;

}

.footer-links a{

    color:rgba(255,255,255,.7);

    font-size:14px;

    text-decoration:none;

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--warning);

    padding-left:6px;

}

/*=================================================
    FOOTER CONTACT INFO
=================================================*/

.footer-contact p{

    font-size:14px;

    color:rgba(255,255,255,.7);

    margin-bottom:10px;

    line-height:1.7;

}

/*=================================================
    NEWSLETTER BOX
=================================================*/

.footer-newsletter{

    margin-top:15px;

}

.footer-newsletter input{

    width:100%;

    padding:12px 15px;

    border-radius:8px;

    border:none;

    outline:none;

    margin-bottom:10px;

    font-size:14px;

}

.footer-newsletter button{

    width:100%;

    padding:12px;

    border:none;

    border-radius:8px;

    background:var(--warning);

    color:#000;

    font-weight:700;

    cursor:pointer;

    transition:var(--transition);

}

.footer-newsletter button:hover{

    background:#ffffff;

    color:#000;

}

/*=================================================
    FOOTER BOTTOM
=================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:20px 0;

    text-align:center;

    font-size:13px;

    color:rgba(255,255,255,.6);

    position:relative;

    z-index:2;

}

/*=================================================
    BACK TO TOP BUTTON
=================================================*/

.back-to-top{

    position:fixed;

    bottom:25px;

    right:25px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:var(--warning);

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

}

/* Active state */

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

/* Hover */

.back-to-top:hover{

    transform:translateY(-5px);

    background:#ffffff;

}

/*=================================================
    RESPONSIVE DESIGN
=================================================*/

@media (max-width:992px){

    .footer-top{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-social{

        justify-content:center;

    }

}