/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a365d;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e53e3e;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: #e53e3e;
    color: white;
}

.btn-primary:hover {
    background-color: #c53030;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}
    
.btn-secondary:hover {
    background-color: #1a365d;
    color: white;
    transform: translateY(-3px);
}


/* Header & Navigation */
.header {
    /* Change from #1a365d to red */
    background-color: #e53e3e; /* Red color matching the logo */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    color: white;
    text-align: left;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}

.logo .protector {
    color: black;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.logo .tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 5px;
    color: #cbd5e0;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    /* Change from red to dark red for better contrast */
    background-color: #c53030;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/guards.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image .image-placeholder {
    background-color: #f7fafc;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e0;
}

.about-image .image-placeholder i {
    font-size: 8rem;
    color: #1a365d;
}

/* Services Section */
.services {
    background-color: #f7fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.service-card p {
    color: #666;
}

/* Why Choose Us Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 20px;
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a365d;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #e53e3e;
    background-color: #fed7d7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1a365d;
}

.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.footer-logo p {
    color: #cbd5e0;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #e53e3e;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e53e3e;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav {
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a365d;
        padding: 20px;
        border-radius: 8px;
        gap: 10px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-link {
        margin: 0;
        padding: 12px;
        text-align: center;
        position: relative;
        z-index: 1;
        border-radius: 4px;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link.active {
        transform: none;
        box-shadow: none;
        background-color: #e53e3e;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero {
        margin-top: 120px;
        height: auto;
        padding: 100px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
/* Logo Styles */
.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-link {
    display: inline-block;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

/* Logo Placeholder for demonstration */
.logo-placeholder {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e53e3e;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-placeholder h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
    margin: 0;
}

.logo-placeholder .protector {
    color: #e53e3e;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-placeholder .tagline {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-top: 2px;
    color: #cbd5e0;
}

.footer-logo-placeholder {
    background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e53e3e;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 220px;
}

.footer-logo-placeholder h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0;
    color: white;
}

.footer-logo-placeholder p {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
    margin-top: 2px;
    color: #cbd5e0;
}
/* ===== NEW STYLES FROM PDF CONTENT ===== */

/* About Section Updates */
.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e53e3e;
}

.info-card h3 {
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card h3:first-child {
    margin-top: 0;
}

.info-card h3 i {
    color: #e53e3e;
    margin-right: 10px;
}

.accreditations {
    list-style: none;
    padding: 0;
}

.accreditations li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.accreditations li:last-child {
    border-bottom: none;
}

.accreditations li i {
    color: #38a169;
    margin-right: 10px;
}

/* Detailed Services */
.detailed-services {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 40px;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-category {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category h4 {
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #e53e3e;
    padding-bottom: 10px;
}

.service-category h4 i {
    color: #e53e3e;
    margin-right: 10px;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f7f7f7;
    color: #666;
}

.service-category li:last-child {
    border-bottom: none;
}

/* Our Approach Section */
.approach {
    background-color: #f8f9fa;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.approach-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background-color: #e53e3e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.approach-card h3 {
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding-top: 10px;
}

.approach-card ul {
    list-style: none;
    padding: 0;
}

.approach-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.approach-card li:last-child {
    border-bottom: none;
}

.approach-card li strong {
    color: #1a365d;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background-color: #1a365d;
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-size: 1.4rem;
}

.pricing-body {
    padding: 25px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-body li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-body li:last-child {
    border-bottom: none;
}

.price {
    background-color: #f0f7ff;
    color: #1a365d;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.pricing-note {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffb300;
    font-size: 0.95rem;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.client-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.client-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
}

.client-card p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.client-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.client-services span {
    background-color: #f0f7ff;
    color: #1a365d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section Updates */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

.business-hours {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.business-hours h4 {
    color: #1a365d;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.business-hours h4 i {
    color: #e53e3e;
    margin-right: 10px;
}

.business-hours p {
    margin: 5px 0;
    color: #666;
}

.contact-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Footer Updates */
.footer-tagline {
    font-style: italic;
    color: #cbd5e0;
    margin: 10px 0 20px;
}

.footer-credentials {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 15px;
}

.footer-credentials p {
    margin: 5px 0;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin: 8px 0;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #e53e3e;
    margin-right: 10px;
    width: 20px;
}

.footer-psira {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 20px;
    }
}
/* Footer Attribution Styles */
.footer-attribution {
    text-align: center;
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-attribution a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-attribution a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Make footer bottom more spacious */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-psira {
    font-size: 0.9rem;
    color: #cbd5e0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-attribution {
        font-size: 0.8rem;
        padding-top: 10px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        gap: 8px;
    }
}