/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
header {
    background: #1565c0;
    box-shadow: 0 2px 12px #21212122;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 1.1rem 2.2rem;
    box-sizing: border-box;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    line-height: 1;
    flex: 1 1 auto;
    margin-right: 0;
}

.logo:hover {
    color: #ffd700;
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    height: 44px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nav-links a:hover, .nav-links a.active {
    background: #fff;
    color: #1565c0;
}

#lang-toggle { display: none !important; }

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 900px) {
    nav { padding: 1rem 1.1rem; }
    .logo { font-size: 1.3rem; }
    .nav-links { gap: 1.1rem; }
    .nav-links a { font-size: 1rem; padding: 0.5rem 1rem; height: 40px; }
}

@media (max-width: 600px) {
    nav { padding: 0.7rem 0.7rem; }
    .logo { font-size: 1.1rem; letter-spacing: 1px; }
    .nav-links a { font-size: 1.05rem; padding: 0.7rem 0.5rem; height: 44px; }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

/* Statistics Section */
.stats {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.stat-item p {
    font-size: 1.1rem;
    line-height: 1.4;
    opacity: 0.9;
}

.stats h2[data-translate="stats-title"] {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
    text-align: center;
}

.stats h2[data-translate="stats-title"]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    background: rgba(52, 152, 219, 0.2);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2634 100%);
    color: var(--white);
    overflow: hidden;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.testimonial-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: #b3b3b3;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.customer-info {
    margin-bottom: 1.5rem;
}

.customer-details h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rating {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #e6e6e6;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 2;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc((100% - 2rem) / 2);
        min-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonial-container h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .customer-details h3 {
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-description {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--light-bg);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: var(--white);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content div,
.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.accordion-content ul {
    margin: 0.5rem 0;
    padding: 0 2.5rem 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.5;
    color: var(--text-color);
}

.accordion-content li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 1rem;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq h2 {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .accordion-content div,
    .accordion-content p {
        padding: 0 1rem 1rem;
    }

    .accordion-content ul {
        padding: 0 2rem 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.4;
    font-size: 1rem;
}

.info-content p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content p a:hover {
    color: var(--secondary-color);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
    border: none;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Form Validation Styles */
input:invalid,
textarea:invalid {
    border-color: #ff4444;
}

input:valid,
textarea:valid {
    border-color: #00C851;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 1.5rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .info-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact h2 {
        font-size: 1.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .whatsapp-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-about {
    max-width: 600px;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-about p {
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-bottom {
    width: 100%;
    background-color: #141414;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.copyright {
    color: #b3b3b3;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.developer-info {
    color: #b3b3b3;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.developer-info .developer-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.developer-info .developer-link:hover {
    color: #2980b9;
}

.developer-info .fa-heart {
    color: #e74c3c;
    font-size: 0.9rem;
    margin: 0 0.2rem;
}

/* Responsive Footer */
@media (max-width: 480px) {
    footer {
        padding: 2rem 0 0 0;
    }

    .footer-content {
        padding: 0 1.5rem;
    }

    .footer-about h3 {
        font-size: 1.3rem;
    }

    .footer-about p {
        font-size: 0.95rem;
    }

    .footer-bottom-content {
        padding: 0 1.5rem;
    }

    .copyright, .developer-info {
        font-size: 0.9rem;
    }
}

/* Print Styles for Footer */
@media print {
    footer {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter {
        font-size: 2.5rem;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .nav-links,
    .cta-button,
    .social-links {
        display: none;
    }

    body {
        color: #000;
    }
}

/* Blog Section */
.blog {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2634 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 600;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    color: #b3b3b3;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.1);
}

.blog-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--secondary-color);
}

.blog-content p {
    color: #e6e6e6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1.1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.read-time {
    color: #b3b3b3;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-time::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    color: var(--secondary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Blog Section */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 4rem 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 2rem 4rem;
    min-height: calc(100vh - 100px);
}

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.policy-section ul li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: var(--text-color);
}

.policy-section ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.contact-details {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 1rem 3rem;
    }

    .legal-content .container {
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 90px 1rem 2rem;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .contact-details {
        padding: 1rem;
    }
}

/* Print Styles for Legal Pages */
@media print {
    .legal-content {
        padding: 0;
    }

    .legal-content .container {
        box-shadow: none;
        padding: 0;
    }

    .nav-links,
    footer {
        display: none;
    }
}

/* Blog Page Styles */
.blog-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.blog-hero .hero-content {
    max-width: 800px;
    padding: 2rem;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-articles {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-image {
    position: relative;
    padding-top: 60%;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

.read-more i {
    font-size: 0.9rem;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--secondary-color);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero {
        height: 30vh;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    .blog-articles {
        padding: 3rem 1.5rem;
    }

    .articles-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .articles-container {
        grid-template-columns: 1fr;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

.accordion h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 2.5rem 0 1.2rem 0;
    padding-left: 0.5rem;
    border-left: 5px solid var(--secondary-color);
    background: linear-gradient(90deg, #f8f9fa 80%, transparent 100%);
    letter-spacing: 0.5px;
}

.hero-modern {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1E3C 0%, #1A1A1A 100%);
    overflow: hidden;
    z-index: 1;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(10,30,60,0.95) 60%, rgba(0,212,255,0.18) 100%);
    z-index: 2;
}
.hero-city {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 120px;
    background: url('images/city-silhouette.svg') repeat-x bottom center;
    background-size: cover;
    opacity: 0.18;
    z-index: 3;
    pointer-events: none;
}
.headline-glow {
    position: absolute;
    left: 0; top: 0; width: 420px; height: 120px;
    background: radial-gradient(circle at 40% 60%, #00D4FF88 0%, transparent 80%);
    filter: blur(18px);
    z-index: 6;
    pointer-events: none;
    animation: glow-fade 2.5s infinite alternate;
}
@keyframes glow-fade { from { opacity: 0.7; } to { opacity: 1; } }
.hero-cam-img {
    position: absolute;
    right: 5%; bottom: 0;
    width: 420px; max-width: 45vw;
    filter: drop-shadow(0 8px 32px #00D4FF88) blur(0.5px);
    z-index: 4;
    object-fit: contain;
    opacity: 0.95;
    animation: cam-fadein 1.2s ease;
}
@keyframes cam-fadein { from { opacity: 0; transform: translateY(40px);} to { opacity: 0.95; transform: none; } }
.hero-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 29px, #00D4FF0A 30px),
                repeating-linear-gradient(0deg, transparent, transparent 29px, #00D4FF0A 30px);
    z-index: 2;
    pointer-events: none;
    animation: grid-parallax 8s linear infinite alternate;
}
@keyframes grid-parallax { 0% { background-position: 0 0, 0 0; } 100% { background-position: 40px 20px, 0 40px; } }
.hero-scan {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 80%, #00D4FF22 100%);
    z-index: 3;
    pointer-events: none;
    animation: scan-move 3s linear infinite;
}
@keyframes scan-move { 0% { opacity: 0.2; top: -20%; } 50% { opacity: 0.5; top: 60%; } 100% { opacity: 0.2; top: 100%; } }
.hero-content-modern {
    position: relative;
    z-index: 7;
    max-width: 600px;
    margin-left: 5vw;
    color: #fff;
    text-align: left;
    padding: 3rem 0 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: hero-fadein 1.2s cubic-bezier(.4,1.4,.6,1) 0.2s both;
}
@keyframes hero-fadein { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: none; } }
.hero-headline {
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 24px #00D4FF, 0 2px 8px #1A1A1A, 0 0 2px #39FF14, 0 0 8px #B300FF;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    filter: brightness(1.2);
    animation: text-glow 2s ease-in-out infinite alternate;
    position: relative;
}
@keyframes text-glow { from { text-shadow: 0 0 8px #00D4FF, 0 2px 8px #1A1A1A, 0 0 2px #39FF14; } to { text-shadow: 0 0 32px #00D4FF, 0 2px 12px #1A1A1A, 0 0 8px #B300FF; } }
.hero-subheadline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    color: #B3E6FF;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px #0A1E3C;
    letter-spacing: 0.5px;
    opacity: 0.92;
    transition: font-size 0.3s, opacity 0.3s;
}
.cta-button-modern {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(90deg, #00D4FF 0%, #B300FF 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    box-shadow: 0 4px 24px #00D4FF44;
    text-decoration: none;
    letter-spacing: 1px;
    transition: box-shadow 0.3s, transform 0.2s, background 0.3s;
    cursor: pointer;
    animation: cta-pulse 2s infinite;
    position: relative;
    overflow: hidden;
}
.cta-button-modern:hover {
    box-shadow: 0 0 32px #B300FF99, 0 4px 24px #00D4FF44;
    background: linear-gradient(90deg, #B300FF 0%, #00D4FF 100%);
    transform: scale(1.07);
}
@keyframes cta-pulse { 0% { box-shadow: 0 0 0 0 #00D4FF44; } 70% { box-shadow: 0 0 0 16px #00D4FF00; } 100% { box-shadow: 0 0 0 0 #00D4FF44; } }
.cctv-feed-widget {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(10,30,60,0.92);
    border: 2px solid #00D4FF;
    border-radius: 12px;
    box-shadow: 0 2px 12px #00D4FF33;
    padding: 0.7rem 1.2rem 1rem 1.2rem;
    z-index: 10;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: feed-fadein 1.5s 0.5s both;
}
@keyframes feed-fadein { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: none; } }
.feed-label {
    font-size: 0.95rem;
    color: #00D4FF;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feed-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: #ff2d2d;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff2d2d, 0 0 2px #fff;
    animation: dot-blink 1s infinite alternate;
}
@keyframes dot-blink { 0% { opacity: 1; } 100% { opacity: 0.3; } }
.feed-mock {
    width: 100%;
    height: 60px;
    background: #222;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px #00D4FF33;
}
.feed-static {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(135deg, #00D4FF22 0 4px, #1A1A1A 4px 8px);
    opacity: 0.7;
    animation: static-noise 0.4s steps(2) infinite;
    z-index: 1;
}
@keyframes static-noise { 0% { opacity: 0.7; } 50% { opacity: 0.9; } 100% { opacity: 0.7; } }
.feed-overlay-text {
    position: absolute;
    top: 6px; right: 10px;
    color: #ff2d2d;
    font-size: 0.95rem;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px #ff2d2d, 0 0 2px #fff;
    z-index: 2;
    opacity: 0.85;
}

/* Responsive Styles for Hero Modern */
@media (max-width: 992px) {
    .hero-modern { min-height: 60vh; }
    .hero-cam-img { width: 260px; max-width: 50vw; right: 2%; }
    .hero-content-modern { padding: 2rem 0 2rem 1rem; }
    .cctv-feed-widget { bottom: 1rem; left: 1rem; min-width: 140px; }
    .headline-glow { width: 260px; height: 80px; }
}
@media (max-width: 600px) {
    .hero-modern { min-height: 48vh; flex-direction: column; }
    .hero-cam-img { display: none; }
    .hero-content-modern { padding: 1.2rem 0 1.2rem 0.5rem; margin-left: 0; text-align: center; align-items: center; }
    .hero-headline { font-size: 1.3rem; letter-spacing: 1px; }
    .hero-subheadline { font-size: 1rem; }
    .cta-button-modern { font-size: 1rem; padding: 0.8rem 1.5rem; }
    .cctv-feed-widget { position: static; width: 100%; min-width: 0; max-width: 100%; margin: 1.2rem auto 0 auto; align-items: center; }
    .feed-mock { height: 36px; }
    .headline-glow { display: none; }
    .hero-city { height: 60px; }
    .hero-grid, .hero-scan { animation: none !important; }
}

/* --- HERO FUTURE SECTION --- */
.hero-future {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #0A1E3C 0%, #1A1A1A 100%);
    overflow: hidden;
    z-index: 1;
}
.hero-future-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-future-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(10,30,60,0.95) 60%, rgba(0,212,255,0.18) 100%);
    z-index: 2;
}
.hero-future-city {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 120px;
    background: url('images/city-silhouette.svg') repeat-x bottom center;
    background-size: cover;
    opacity: 0.18;
    z-index: 3;
    pointer-events: none;
}
.hero-future-scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(180deg, transparent, transparent 18px, #00D4FF0A 20px);
    z-index: 4;
    pointer-events: none;
    animation: scanlines-move 6s linear infinite;
}
@keyframes scanlines-move {
    0% { background-position-y: 0; }
    100% { background-position-y: 40px; }
}
.hero-future-cam {
    position: absolute;
    right: 5%; bottom: 0;
    width: 420px; max-width: 45vw;
    filter: drop-shadow(0 8px 32px #00D4FF88) blur(0.5px);
    z-index: 5;
    object-fit: contain;
    opacity: 0.97;
    animation: cam-fadein 1.2s ease;
    background: radial-gradient(circle at 60% 80%, #00D4FF33 0%, transparent 80%);
}
@keyframes cam-fadein { from { opacity: 0; transform: translateY(40px);} to { opacity: 0.97; transform: none; } }
.hero-future-content {
    position: relative;
    z-index: 7;
    max-width: 600px;
    margin-left: 7vw;
    color: #fff;
    text-align: left;
    padding: 3rem 0 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: hero-fadein 1.2s cubic-bezier(.4,1.4,.6,1) 0.2s both;
}
@keyframes hero-fadein { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: none; } }
.hero-future-headline {
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 24px #00D4FF, 0 2px 8px #1A1A1A, 0 0 2px #39FF14, 0 0 8px #B300FF;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    filter: brightness(1.2);
    animation: text-glow 2s ease-in-out infinite alternate;
    position: relative;
}
@keyframes text-glow { from { text-shadow: 0 0 8px #00D4FF, 0 2px 8px #1A1A1A, 0 0 2px #39FF14; } to { text-shadow: 0 0 32px #00D4FF, 0 2px 12px #1A1A1A, 0 0 8px #B300FF; } }
.hero-future-subheadline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    color: #B3E6FF;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px #0A1E3C;
    letter-spacing: 0.5px;
    opacity: 0.92;
    animation: fadein-sub 1.2s 0.5s both;
}
@keyframes fadein-sub { from { opacity: 0; transform: translateY(20px);} to { opacity: 0.92; transform: none; } }
.hero-future-cta {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(90deg, #00D4FF 0%, #B300FF 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    box-shadow: 0 4px 24px #00D4FF44;
    text-decoration: none;
    letter-spacing: 1px;
    transition: box-shadow 0.3s, transform 0.2s, background 0.3s;
    cursor: pointer;
    animation: cta-pulse 2s infinite;
    position: relative;
    overflow: hidden;
}
.hero-future-cta:hover {
    box-shadow: 0 0 32px #B300FF99, 0 4px 24px #00D4FF44;
    background: linear-gradient(90deg, #B300FF 0%, #00D4FF 100%);
    transform: scale(1.07);
}
@keyframes cta-pulse { 0% { box-shadow: 0 0 0 0 #00D4FF44; } 70% { box-shadow: 0 0 0 16px #00D4FF00; } 100% { box-shadow: 0 0 0 0 #00D4FF44; } }
.hero-future-feed-widget {
    position: absolute;
    left: 2vw; bottom: 2vw;
    min-width: 180px;
    background: rgba(10,30,60,0.92);
    border: 2px solid #00D4FF;
    border-radius: 16px;
    box-shadow: 0 2px 16px #00D4FF33;
    z-index: 10;
    padding: 1rem 1.2rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s;
    cursor: pointer;
}
.hero-future-feed-widget:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 32px #00D4FF55;
}
.hero-future-feed-label {
    color: #00D4FF;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}
.hero-future-feed-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 0 8px #e74c3c, 0 0 2px #fff;
    animation: dot-blink 1.2s infinite alternate;
}
@keyframes dot-blink { from { opacity: 1; } to { opacity: 0.5; } }
.hero-future-feed-mock {
    width: 160px; height: 48px;
    background: repeating-linear-gradient(135deg, #222 0 8px, #333 8px 16px);
    border-radius: 8px;
    margin-top: 0.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px #00D4FF33;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-future-feed-static {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(90deg, #222 0 2px, #444 2px 4px);
    opacity: 0.18;
    animation: static-move 0.7s steps(2) infinite;
}
@keyframes static-move { 0% { opacity: 0.18; } 100% { opacity: 0.28; } }
.hero-future-feed-overlay-text {
    position: absolute;
    right: 10px; bottom: 6px;
    color: #e74c3c;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #e74c3c, 0 0 2px #fff;
    opacity: 0.92;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-future { min-height: 60vh; }
    .hero-future-cam { width: 260px; max-width: 50vw; right: 2%; }
    .hero-future-content { padding: 2rem 0 2rem 1rem; }
    .hero-future-feed-widget { bottom: 1rem; left: 1rem; min-width: 140px; }
}
@media (max-width: 600px) {
    .hero-future { min-height: 48vh; flex-direction: column; }
    .hero-future-cam { display: none; }
    .hero-future-content { padding: 1.2rem 0 1.2rem 0.5rem; margin-left: 0; text-align: center; align-items: center; }
    .hero-future-headline { font-size: 1.3rem; letter-spacing: 1px; }
    .hero-future-subheadline { font-size: 1rem; }
    .hero-future-cta { font-size: 1rem; padding: 0.8rem 1.5rem; }
    .hero-future-feed-widget { position: static; width: 100%; min-width: 0; max-width: 100%; margin: 1.2rem auto 0 auto; align-items: center; }
    .hero-future-feed-mock { height: 36px; }
    .hero-future-city { height: 60px; }
    .hero-future-scanlines { animation: none !important; }
}

/* --- HERO LOCAL SECTION --- */
.hero-local {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #1565c0 0%, #212121 100%);
    overflow: hidden;
    z-index: 1;
    padding: 0 0 3.5rem 0;
}
.hero-local-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    display: flex;
}
.hero-local-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #1565c0cc 0%, #212121ee 100%);
    opacity: 0.92;
    z-index: 2;
}
.hero-local-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.09);
    border-radius: 22px;
    box-shadow: 0 6px 40px #1565c033;
    padding: 5rem 3.5rem 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadein-content 1.2s 0.2s both;
}
.hero-local-headline {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px #1565c0cc, 0 1px 2px #212121;
    margin-bottom: 1.1rem;
    letter-spacing: 1.5px;
    line-height: 1.13;
    animation: fadein-headline 1.1s 0.3s both;
}
.hero-local-headline .hindi {
    display: block;
    font-size: 1.3rem;
    color: #90caf9;
    font-weight: 600;
    margin-top: 0.3rem;
    letter-spacing: 0.7px;
}
.hero-local-subheadline {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.3rem;
    color: #e3f2fd;
    margin-bottom: 2.2rem;
    line-height: 1.6;
    animation: fadein-sub 1.1s 0.5s both;
}
.hero-local-subheadline .hindi {
    display: block;
    color: #fffde7;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.3rem;
}
.hero-local-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-local-cta {
    display: inline-block;
    padding: 1.2rem 2.7rem;
    border-radius: 36px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 16px #1565c033;
    margin-top: 0.2rem;
}
.hero-local-cta.primary {
    background: #fff;
    color: #1565c0;
    border: 2px solid #1565c0;
}
.hero-local-cta.primary:hover {
    background: #1565c0;
    color: #fff;
    transform: scale(1.09);
    box-shadow: 0 4px 28px #1565c055;
}
.hero-local-cta.secondary {
    background: #1565c0;
    color: #fff;
    border: 2px solid #fff;
}
.hero-local-cta.secondary:hover {
    background: #003c8f;
    color: #fffde7;
    transform: scale(1.09);
    box-shadow: 0 4px 28px #1565c055;
}
/* Responsive Styles */
@media (max-width: 900px) {
    .hero-local-content { padding: 3rem 1.2rem 1.2rem 1.2rem; max-width: 98vw; }
    .hero-local-headline { font-size: 2.1rem; }
    .hero-local-headline .hindi { font-size: 1.05rem; }
    .hero-local-subheadline { font-size: 1.05rem; }
    .hero-local-subheadline .hindi { font-size: 0.95rem; }
}
@media (max-width: 600px) {
    .hero-local { min-height: 60vh; padding: 0 0 1.2rem 0; }
    .hero-local-bg { display: block; }
    .hero-local-content {
        box-shadow: none;
        background: #1565c0ee;
        padding: 1.2rem 0.5rem;
        border-radius: 0 0 18px 18px;
        max-width: 100vw;
    }
    .hero-local-headline { font-size: 1.25rem; letter-spacing: 0.5px; }
    .hero-local-headline .hindi { font-size: 0.85rem; }
    .hero-local-subheadline { font-size: 0.95rem; }
    .hero-local-subheadline .hindi { font-size: 0.8rem; }
    .hero-local-cta-group {
        flex-direction: column;
        gap: 1.1rem;
        width: 100%;
        align-items: center;
    }
    .hero-local-cta {
        width: 100%;
        font-size: 1.15rem;
        padding: 1.1rem 0;
        margin: 0 auto;
        max-width: 340px;
        box-sizing: border-box;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Footer CTA Button */
.footer-cta {
    display: inline-block;
    margin: 2rem auto 0 auto;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.15);
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.footer-cta:hover, .footer-cta:focus {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.18);
    text-decoration: none;
}
@media (max-width: 600px) {
    .footer-cta {
        width: 90%;
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
}

/* CCTV Camera in Barmer Page Styles */
.hero-cctv-barmer {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  color: #fff;
  overflow: hidden;
}
.hero-cctv-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-cctv-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 62, 80, 0.7);
  z-index: 2;
}
.hero-cctv-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem 2rem;
}
.hero-cctv-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-shadow: 0 4px 24px #0008;
}
.hero-cctv-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-cctv-cta.primary {
  display: inline-block;
  background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
  color: #fff;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(44,62,80,0.15);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.hero-cctv-cta.primary:hover {
  background: linear-gradient(90deg, #2ecc71 0%, #3498db 100%);
  transform: translateY(-2px) scale(1.04);
}

.features-cctv {
  background: #f8f9fa;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.features-cctv h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #232526;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.feature-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  width: 240px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item i {
  font-size: 2.2rem;
  color: #3498db;
  margin-bottom: 1rem;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.trust-barmer {
  background: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.trust-barmer h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #232526;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.trust-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.process-cctv {
  background: #eaf1f7;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.process-cctv h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #232526;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.step-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  width: 220px;
  text-align: center;
  position: relative;
}
.step-number {
  display: inline-block;
  background: #3498db;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin-bottom: 1rem;
}

.pricing-cctv {
  background: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.pricing-cctv h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #232526;
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.pricing-card {
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 2.5rem 1.5rem;
  width: 240px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.pricing-card.popular {
  border: 2px solid #3498db;
  background: #eaf6fb;
}
.price {
  font-size: 2rem;
  font-weight: bold;
  color: #3498db;
  margin: 1rem 0;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.pricing-card ul li {
  margin-bottom: 0.7rem;
  color: #232526;
}
.pricing-note {
  font-size: 0.95rem;
  color: #888;
  margin-top: 1.5rem;
}

.reviews-cctv {
  background: #f8f9fa;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.reviews-cctv h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #232526;
}
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.review-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-stars {
  color: #f1c40f;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.review-item span {
  display: block;
  margin-top: 1rem;
  color: #888;
  font-size: 0.95rem;
}
.review-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.faq-cctv-barmer {
  background: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.faq-cctv-barmer h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #232526;
}
.faq-barmer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.faq-barmer-item {
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 2rem 1.5rem;
  width: 340px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.faq-barmer-item h3 {
  color: #3498db;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.faq-barmer-item p {
  color: #232526;
  font-size: 1rem;
}
.faq-barmer-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.cta-cctv-barmer {
  background: linear-gradient(90deg, #3498db 0%, #2c3e50 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem 4rem 2rem;
}
.cta-cctv-barmer h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.cta-cctv-barmer p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-cctv-btn {
  display: inline-block;
  background: #fff;
  color: #3498db;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  margin: 0 1rem 1rem 1rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.cta-cctv-btn.secondary {
  background: #232526;
  color: #fff;
}
.cta-cctv-btn:hover {
  background: #3498db;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .features-grid, .trust-grid, .process-steps, .pricing-grid, .reviews-grid, .faq-barmer-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .feature-item, .trust-item, .step-item, .pricing-card, .review-item, .faq-barmer-item {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .hero-cctv-content {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .hero-cctv-content h1 {
    font-size: 1.5rem;
  }
  .features-cctv, .trust-barmer, .process-cctv, .pricing-cctv, .reviews-cctv, .faq-cctv-barmer {
    padding: 2rem 0 1rem 0;
  }
  .cta-cctv-barmer {
    padding: 2rem 1rem 2rem 1rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0.7rem;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
    z-index: 1200;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #1565c0;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0 1.2rem 0;
    display: none;
    box-shadow: 0 8px 24px #21212122;
    border-radius: 0 0 18px 18px;
    transition: all 0.3s;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 90vw;
    margin: 0.2rem 0;
    text-align: center;
    font-size: 1.15rem;
    padding: 1rem 0;
    border-radius: 8px;
    background: none;
    color: #fff;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
} 