/***************Hero***************/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Header */
.header {
    background: #0c1f35;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.logo i {
    margin-right: 8px;
    color: #00c9a7;
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
}
.nav-menu li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-menu li a:hover {
    color: #00c9a7;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}
.btn-outline {
    border: 2px solid #00c9a7;
    background: transparent;
    color: #00c9a7;
    transition: background 0.3s;
}
.btn-outline:hover {
    background: #00c9a7;
    color: #fff;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 6rem 0 4rem;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(12, 31, 53, 0.75);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.hero-text {
    flex: 1 1 500px;
}
.hero-title {
    font-size: 2.8rem;
    margin: 1rem 0;
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #00c9a7;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: bold;
    width: fit-content;
}
.hero-features {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.btn-primary {
    background: #00c9a7;
    color: #fff;
}
.btn-primary:hover {
    background: #009e88;
}
.btn-secondary {
    background: #fff;
    color: #00c9a7;
}
.btn-secondary:hover {
    background: #f1f1f1;
}

/* Security Dashboard */
.hero-image {
    flex: 1 1 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
}
.security-dashboard {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    color: #333;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}
.status-indicator .dot {
    width: 10px;
    height: 10px;
    background: #00c9a7;
    border-radius: 50%;
}
.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}
.security-item .status {
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
}
.status.secured {
    background: #00c9a7;
    color: white;
}
.status.active {
    background: #ffc107;
    color: black;
}

/* Hero Stats */
.hero-stats {
    background: #fff;
    padding: 2rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    font-weight: bold;
}
.stat-number {
    font-size: 2rem;
    color: #00c9a7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #0c1f35;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        padding: 1rem;
    }
    .nav-menu.show {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .hero-content {
        flex-direction: column;
    }
}

/*****************Aboput**********/

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #f2f6fa;
    color: #333;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-badge {
    display: inline-block;
    background: #00c9a7;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Layout */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

/* Text Column */
.about-text {
    flex: 1 1 500px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0c1f35;
}
.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.highlight-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #00c9a7;
    background: rgba(0, 201, 167, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
}
.highlight-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.highlight-content p {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #555;
}

/* Image Column */
.about-image {
    flex: 1 1 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #00c9a7;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.badge-number {
    font-size: 2rem;
    font-weight: bold;
}
.badge-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .about-image {
        order: -1;
    }
}

/*************Services*************/

/* Services Section */
.services {
    background-color: #ffffff;
    padding: 4rem 0;
    color: #333;
}

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

/* Section Header */
.services .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.services .section-badge {
    display: inline-block;
    background-color: #00c9a7;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.services .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.services .section-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: #00c9a7;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.service-card.featured {
    border-color: #00c9a7;
    background: #e6fdf9;
}

.service-icon {
    font-size: 2rem;
    color: #00c9a7;
    margin-bottom: 1rem;
    background: rgba(0, 201, 167, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0c1f35;
}
.service-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}
.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.service-features li i {
    color: #00c9a7;
    margin-right: 0.5rem;
}

/* Pricing */
.service-price {
    font-size: 1rem;
    font-weight: bold;
    color: #00c9a7;
    margin-top: 0.5rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    .service-icon {
        font-size: 1.8rem;
    }
}


/* Warranty Section */
.warranty {
    background-color: #ffffff;
    padding: 4rem 0;
    color: #333;
}

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

/* Warranty Layout */
.warranty-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

/* Text Column */
.warranty-text {
    flex: 1 1 550px;
}

.warranty-text .section-badge {
    display: inline-block;
    background-color: #00c9a7;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warranty-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warranty-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Features */
.warranty-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.warranty-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: #00c9a7;
    background: rgba(0, 201, 167, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #0c1f35;
}

.feature-content p {
    font-size: 0.95rem;
    color: #555;
}

/* CTA */
.warranty-cta {
    margin-top: 1rem;
}

.btn.btn-primary {
    background-color: #00c9a7;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn.btn-primary:hover {
    background-color: #009d86;
}

.warranty-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.warranty-note i {
    color: #00c9a7;
}

/* Visual Column */
.warranty-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.warranty-card {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}
.warranty-card:hover {
    transform: translateY(-5px);
}

/* Card Header */
.card-header {
    background: #00c9a7;
    color: #fff;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.warranty-badge {
    background: #fff;
    color: #00c9a7;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Card Body */
.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #333;
}
.warranty-item i {
    color: #00c9a7;
}

/* Card Footer */
.card-footer {
    padding: 1rem 1.5rem;
    background: #e0f7f3;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    color: #0c1f35;
}

/* Responsive */
@media (max-width: 992px) {
    .warranty-content {
        flex-direction: column;
    }
}



/* Why Choose Us Section */
.why-choose {
    background-color: #f2f6fa;
    padding: 4rem 0;
    color: #333;
}

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

/* Section Header */
.why-choose .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.why-choose .section-badge {
    display: inline-block;
    background-color: #00c9a7;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.why-choose .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.why-choose .section-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Content Layout */
.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Image Section */
.why-choose-image {
    flex: 1 1 450px;
    position: relative;
}
.why-choose-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Floating Award Card */
.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}
.floating-card .card-icon {
    font-size: 1.8rem;
    color: #00c9a7;
}
.floating-card .card-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.floating-card .card-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Reasons List */
.why-choose-list {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.choose-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    border-left: 5px solid #00c9a7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.choose-item:hover {
    transform: translateY(-5px);
}
.choose-icon {
    font-size: 1.5rem;
    color: #00c9a7;
    background: rgba(0, 201, 167, 0.1);
    padding: 0.6rem;
    border-radius: 50%;
}
.choose-content h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #0c1f35;
}
.choose-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
    }
    .why-choose-image {
        order: 1;
    }
    .why-choose-list {
        order: 2;
    }
}


/* Testimonials Section */
.testimonials {
    background-color: #f8f9fc;
    padding: 4rem 0;
    position: relative;
}

.testimonials .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* Section Header */
.section-header .section-badge {
    background-color: #00c9a7;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

/* Testimonial Cards */
.testimonial-card {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #111;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

.author-info .location {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #888;
}
.author-info .location i {
    margin-right: 5px;
    color: #00c9a7;
}

/* Navigation Buttons */
.testimonial-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background-color: #00c9a7;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #009e86;
}

/* Dots */
.testimonial-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #00c9a7;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-content p {
        font-size: 0.95rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
}


/* Contact Section */
.contact {
    background-color: #f4f8fb;
    padding: 4rem 0;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-badge {
    background-color: #00c9a7;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Layout */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

/* Contact Info Cards */
.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 1.8rem;
    color: #00c9a7;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #333;
}

.contact-details p {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #555;
}

.contact-details span {
    font-size: 0.85rem;
    color: #888;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.form-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #222;
}

.form-header p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Form Rows */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00c9a7;
}

/* Floating Label */
.form-group label {
    position: absolute;
    left: 0.75rem;
    top: 0.85rem;
    background-color: white;
    padding: 0 0.25rem;
    color: #888;
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 0.6rem;
    font-size: 0.75rem;
    color: #00c9a7;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group label {
    position: relative;
    top: 0;
}

/* Button */
.contact-form .btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background-color: #00c9a7;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #009e86;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}


/* Footer */
.site-footer {
  background-color: #1b1f2a;
  color: #cbd5e1;
  padding: 4rem 1rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #00c9a7;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-contact i,
.footer-links i {
  color: #00c9a7;
  margin-right: 0.5rem;
}

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

.footer-links a:hover {
  color: #00c9a7;
}

.footer-form {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.footer-form input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
}

.footer-form button {
  background-color: #00c9a7;
  color: white;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-form button:hover {
  background-color: #009e86;
}

.footer-socials {
  margin-top: 1.2rem;
}

.footer-socials a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #00c9a7;
}

.footer-bottom {
  border-top: 1px solid #2a2e3c;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
}


/* Basic Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 50px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.close-button {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

