/* ===============================
   GLOBAL RESET
================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', Arial, sans-serif;
    background:#f4f6f9;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:80px 0;
}

/* ===============================
   TOP BAR
================================= */
.top-bar{
    background:#150135;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
}

/* ===============================
   HEADER & NAVIGATION
================================= */
header{
    background:#fff;
    padding:18px 0;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    position:sticky;
    top:0;
    z-index:1000;
    transition:0.3s ease;
}

header.scrolled{
    padding:10px 0;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:45px;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
}

nav ul li{
    margin-left:30px;
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:15px;
    transition:0.3s ease;
    position:relative;
}

/* Underline Animation */
nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#e30613;
    transition:0.3s ease;
}

nav ul li a:hover{
    color:#e30613;
}

nav ul li a:hover::after{
    width:100%;
}

/* Active */
nav ul li a.active{
    color:#e30613;
}

nav ul li a.active::after{
    width:100%;
    background:#000;
}

/* Contact Button */
.contact-btn{
    background:#e30613;
    color:#fff !important;
    padding:10px 18px;
    border-radius:6px;
    transition:0.3s ease;
}

.contact-btn:hover{
    background:#000;
}

/* ===============================
   HERO SECTION
================================= */
.hero{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:url("../images/hero-security.jpg") center/cover no-repeat;
    padding:0 !important;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.15)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1100px;
}

.hero-panel{
    background:rgba(0,0,0,0.4);
    padding:50px;
    border-radius:12px;
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.15);
    max-width:900px;
}

.hero-content h1{
    font-size:48px;
    color:#fff;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    color:#ddd;
    margin-bottom:35px;
}

/* Hero Buttons */
.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    padding:15px 32px;
    background:#e30613;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:0.3s ease;
}

.btn-primary:hover{
    background:#000;
}

.btn-secondary{
    padding:15px 32px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:0.3s ease;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}
/* ===============================
   FOUNDERS SECTION
================================= */

.founders-section{
    background:#f4f6f9;
    padding:110px 0;
}

.founders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:40px;
}

.founder-card{
    background:#fff;
    padding:40px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.founder-card:hover{
    transform:translateY(-8px);
}

/* IMAGE FIX */
.founder-image{
    width:220px;
    height:260px;   /* fixed height */
    margin:0 auto 25px;
    border-radius:16px;
    overflow:hidden;
}

.founder-image img{
    width:100%;
    height:100%;
    object-fit:cover;     /* keeps image proportional */
    object-position:center top; /* prevents head cutting */
    display:block;
}

/* Text */
.founder-card h3{
    font-size:22px;
    margin-bottom:8px;
}

.founder-card span{
    display:block;
    color:#e30613;
    font-weight:600;
    margin-bottom:15px;
}

.founder-card p{
    color:#555;
    font-size:15px;
    line-height:1.6;
}

/* ===============================
   SERVICES SECTION
================================= */

.services-section{
    background:#ffffff;
    padding:110px 0;
}

.section-header{
    max-width:750px;
    margin:0 auto 60px auto;   /* centers it */
    text-align:center;         /* centers text */
}

.section-header h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

.section-header p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

/* Card */
.service-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    border:1px solid #f0f0f0;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:all 0.35s ease;
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* Red Accent Bar */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#e30613;
    border-radius:16px 0 0 16px;
}

/* Icon */
.service-icon{
    width:60px;
    height:60px;
    background:#be7ddeb3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    font-size:22px;
    color:#e30613;
}

/* Heading */
.service-card h3{
    font-size:20px;
    margin-bottom:18px;
    color:#111;
}

/* Paragraph */
.service-card p{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
}

/* Link */
.service-link{
    text-decoration:none;
    color:#e30613;
    font-weight:600;
    transition:0.3s ease;
}

.service-link:hover{
    letter-spacing:0.5px;
}

/* Card Grid */
.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* Cards */
.card{
    background:#fff;
    padding:35px;
    border-radius:12px;
    border:1px solid #f1f1f1;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#111;
}

.card p{
    color:#555;
    line-height:1.6;
}
/* Service Bullet List */
.service-list{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.service-list li{
    position:relative;
    padding-left:25px;
    margin-bottom:12px;
    font-size:15px;
    color:#555;
}

/* Custom Red Bullet */
.service-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:8px;
    background:#e30613;
    border-radius:50%;
}
/* ===============================
   LOCATIONS SECTION
================================= */

.locations-section{
    padding:80px 0;
    background:#f4f6f9;
}

/* Grid Layout */
.locations-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap:25px;
    margin-top:40px;
}

/* Equal Size Cards */
.location-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:12px;
    font-weight:600;
    font-size:16px;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s ease;
    cursor:pointer;
}

/* Hover Effect */
.location-card:hover{
    background:#e30613;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* ===============================
   SERVICES HORIZONTAL SCROLL
================================= */

.services-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Scroll viewport */
.services-scroll-container{
    overflow:hidden;
    width:100%;
}

/* Horizontal track */
.services-grid{
    display:flex;
    gap:35px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:20px 0;
}

.services-grid::-webkit-scrollbar{
    display:none;
}

.service-card{
    min-width:340px;
    flex-shrink:0;
}

/* Scroll Buttons */
.scroll-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    cursor:pointer;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
    z-index:5;
}

.scroll-btn:hover{
    background:#e30613;
    color:#fff;
}

#scrollLeft{
    left:30px;
}

#scrollRight{
    right:30px;
}
/* ===============================
   CLIENTS SECTION (ONE ROW)
================================= */

.clients-section{
    padding:50px 0;
    background:#ffffff;
}

.section-header.center{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

/* Row Layout */
.clients-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* Logo Container */
.client-item{
    flex:1;
    min-width:300px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    transition:0.3s ease;
}

/* Logo */
.client-item img{
    max-width:280px;
    max-height:120px;
    object-fit:contain;
    filter:grayscale(50%);
    opacity:0.5;
    transition:0.3s ease;
}

/* Hover Effect */
.client-item:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.08);
}

/* ===============================
   CTA SECTION
================================= */

.cta-section{
    background:#150135;
    color:#fff;
    padding:80px 0;
    text-align:center;
    border-bottom:5px solid #eae4e4;
}

.cta-section h2{
    font-size:32px;
    margin-bottom:30px;
    color:#fff;
}
.cta-section .btn-primary{
    padding:15px 40px;
    font-size:16px;
}

/* ===============================
   GALLERY SECTION
================================= */

.gallery-section{
    padding:100px 0;
    background:#f4f6f9;
}

.gallery-title{
    font-size:36px;
    margin-bottom:50px;
}

/* 4 Images Per Row */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

/* Image Card */
.gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s ease;
}

/* Hover Zoom Effect */
.gallery-item:hover img{
    transform:scale(1.1);
}

/* Responsive */
@media(max-width:1024px){
    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }
}

/* ===============================
   ENTERPRISE FOOTER
================================= */

.main-footer{
    background:#150135;
    color:#ccc;
    padding:80px 0 0;
    font-size:14px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:50px;
}

.footer-col h3{
    color:#fff;
    margin-bottom:20px;
    font-size:18px;
}

.footer-logo{
    height:55px;
    margin-bottom:20px;
}

.footer-desc{
    color:#aaa;
    line-height:1.6;
    margin-bottom:25px;
}

/* Links */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-col ul li a:hover{
    color:#e30613;
    padding-left:5px;
}

/* Contact text */
.footer-col p{
    margin-bottom:12px;
    line-height:1.6;
}

/* Emergency highlight */
.hotline{
    color:#e30613;
    font-weight:600;
    margin-top:10px;
}

/* Social Section */
.footer-social h4{
    color:#fff;
    margin-bottom:15px;
    font-size:16px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:38px;
    height:38px;
    background:#222;
    color:#ccc;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:0.3s ease;
    font-size:14px;
}

.social-icons a:hover{
    background:#e30613;
    color:#fff;
    transform:translateY(-3px);
}

/* ===============================
   SUB FOOTER
================================= */

.sub-footer{
    background:#150135;
    border-top:1px solid #222;
    padding:20px 0;
}

.sub-footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.sub-footer p{
    color:#888;
    font-size:14px;
}

.sub-links a{
    color:#888;
    text-decoration:none;
    margin-left:20px;
    font-size:14px;
    transition:0.3s ease;
}

.sub-links a:hover{
    color:#e30613;
}

/* Mobile */
@media(max-width:768px){
    .sub-footer-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .sub-links a{
        margin:0 10px;
    }
}


/* Responsive */
@media(max-width:768px){
    .footer-grid{
        gap:35px;
    }

    .main-footer{
        padding:60px 0 0;
    }
}

/* ===============================
   CONTACT PAGE
================================= */
.contact-section{
    padding:100px 0;
    background:#f4f6f9;
}

.contact-wrapper{
    max-width:650px;
    margin:0 auto;
    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:20px;
}

.submit-btn{
    width:100%;
    padding:16px;
    background:#e30613;
    color:#fff;
    border:none;
    border-radius:8px;
}

.submit-btn:hover{
    background:#000;
}

/* ===============================
   CAREER HERO SECTION
================================= */

.career-hero{
    background:linear-gradient(135deg, #f4f6f9, #e9edf2);
    padding:120px 0;
    text-align:left;
}

.career-content{
    max-width:650px;
}

.career-hero h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.career-hero p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

/* ===============================
   RESPONSIVE
================================= */
.menu-toggle{
    display:none;
}

@media(max-width:768px){

    nav ul{
        display:none;
        flex-direction:column;
        background:#fff;
        position:absolute;
        right:20px;
        top:70px;
        padding:20px;
    }

    nav ul.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-panel{
        padding:30px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}
