/* Reset defaults and apply Google Font */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Test Style to Confirm CSS is Loading */
.test-body {
    background-color: lightgray;
}

/* Top Bar */
div.top-bar {
    background-color: #e6f4f6;
    font-size: 0.9rem;
    opacity: 0;
    animation: slideDown 0.8s ease-out forwards;
}

div.top-bar .tagline {
    color: #3c92d9;
}

div.top-bar .social-link {
    color: #3c92d9;
    transition: color 0.3s ease, transform 0.3s ease;
}

div.top-bar .social-link:hover {
    color: #094f5e;
    transform: scale(1.2);
}

/* Navbar */
nav.navbar.navbar-expand-lg {
    background-color: #3c92d9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideDown 0.8s ease-out 0.3s forwards;
}

nav.navbar.navbar-expand-lg .navbar-brand {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav.navbar.navbar-expand-lg .nav-link {
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav.navbar.navbar-expand-lg .nav-link:hover {
    color: #e6f4f6;
    transform: translateY(-2px);
}

/* Custom Button (Client Portal, View Our Packages) */
nav.navbar.navbar-expand-lg .btn-custom,
section.hero .btn-custom {
    background-color: #3c92d9;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav.navbar.navbar-expand-lg .btn-custom:hover,
section.hero .btn-custom:hover {
    background-color: #3c92d9;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-custom.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
section.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/hero-bg.jpg') center/cover no-repeat;
    background-color: #333;
    height: 100vh;
    color: white;
    position: relative;
    background-attachment: fixed; /* Parallax effect */
}

section.hero .text-light {
    color: #ffffff;
}

section.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

section.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

/* Placeholder Sections */
section {
    padding: 50px 0;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.3s; }
.fade-in:nth-child(2) { animation-delay: 0.6s; }
.fade-in:nth-child(3) { animation-delay: 0.9s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    /* Adjust Top Bar */
    div.top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    div.top-bar .tagline {
        margin-bottom: 10px;
    }

    div.top-bar .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    /* Navbar Adjustments */
    nav.navbar.navbar-expand-lg .navbar-nav {
        background-color: #3c92d9;
        padding: 10px 0;
    }

    nav.navbar.navbar-expand-lg .nav-item {
        text-align: center;
        margin: 5px 0;
    }

    nav.navbar.navbar-expand-lg .nav-link {
        padding: 10px 20px;
    }

    /* Client Portal Button */
    nav.navbar.navbar-expand-lg .btn-custom {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    /* Hero Section Adjustments */
    section.hero h1 {
        font-size: 2.5rem;
    }

    section.hero p {
        font-size: 1rem;
    }

    section.hero .btn-custom.btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    /* Disable Parallax on Mobile */
    section.hero {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    section.hero h1 {
        font-size: 2rem;
    }

    section.hero p {
        font-size: 0.9rem;
    }
}
/* About Us Section */
section.about-us {
    background-color: #f8f9fa; /* Light gray background for contrast */
    padding: 80px 0;
}

section.about-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c92d9; /* Teal color to match the navbar */
    margin-bottom: 1.5rem;
    position: relative;
}

section.about-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #3c92d9; /* Lighter teal for underline */
}

section.about-us .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

section.about-us p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

section.about-us .btn-custom {
    background-color: #3c92d9;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section.about-us .btn-custom:hover {
    background-color: #3c92d9;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

section.about-us .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

section.about-us .about-image img:hover {
    transform: scale(1.05);
}

/* Responsive Styles for About Us */
@media (max-width: 991.98px) {
    section.about-us {
        padding: 50px 0;
    }

    section.about-us .section-title {
        font-size: 2rem;
    }

    section.about-us .lead {
        font-size: 1.1rem;
    }

    section.about-us .btn-custom {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    section.about-us .about-image {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    section.about-us .section-title {
        font-size: 1.75rem;
    }

    section.about-us .lead {
        font-size: 1rem;
    }

    section.about-us p {
        font-size: 0.9rem;
    }
}
/* Services Section */
section.services {
    background-color: #ffffff; /* White background as in the image */
    padding: 80px 0;
}

section.services .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c92d9; /* Teal color to match the navbar */
    margin-bottom: 1rem;
    position: relative;
}

section.services .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Toggle Buttons */
section.services .toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

section.services .btn-toggle {
    background-color: #ffffff;
    border: 2px solid #3c92d9;
    color:#3c92d9;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

section.services .btn-toggle.active {
    background-color: #3c92d9;
    color: #ffffff;
}

/* Pricing Plans */
section.services .pricing-plans {
    display: none;
}

section.services .pricing-plans.active {
    display: block;
}

section.services .pricing-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

section.services .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section.services .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3c92d9;
    margin-bottom: 1rem;
}

section.services .plan-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

section.services .plan-price {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

section.services .plan-price span {
    font-size: 2rem;
    font-weight: 700;
    color: #3c92d9;
}

section.services .plan-installation {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

section.services .btn-buy-now {
    background-color: #3c92d9;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

section.services .btn-buy-now:hover {
    background-color: #3c92d9;
    transform: scale(1.05);
}

/* Responsive Styles for Services */
@media (max-width: 991.98px) {
    section.services {
        padding: 50px 0;
    }

    section.services .section-title {
        font-size: 2rem;
    }

    section.services .section-subtitle {
        font-size: 1rem;
    }

    section.services .btn-toggle {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    section.services .pricing-card {
        padding: 20px;
    }

    section.services .plan-name {
        font-size: 1.3rem;
    }

    section.services .plan-price span {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    section.services .section-title {
        font-size: 1.75rem;
    }

    section.services .section-subtitle {
        font-size: 0.9rem;
    }

    section.services .btn-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    section.services .plan-description {
        font-size: 0.85rem;
    }
}
/* FAQ Section */
section.faq {
    background-color: #ffffff; /* White background as in the image */
    padding: 80px 0;
}

section.faq .faq-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem;
}

section.faq .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c92d9; /* Teal color to match the navbar */
    margin-bottom: 2rem;
}

section.faq .faq-item {
    margin-bottom: 1rem;
}

section.faq .faq-question {
    width: 100%;
    background-color: #f8f9fa; /* Light gray background for questions */
    border: 1px solid #e0e0e0;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

section.faq .faq-question:hover {
    background-color: #e6f4f6; /* Light teal on hover */
}

section.faq .faq-icon {
    transition: transform 0.3s ease;
}

section.faq .faq-question.active .faq-icon {
    transform: rotate(180deg);
}

section.faq .faq-answer {
    display: none;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

section.faq .faq-answer.active {
    display: block;
}

/* Responsive Styles for FAQ */
@media (max-width: 991.98px) {
    section.faq {
        padding: 50px 0;
    }

    section.faq .section-title {
        font-size: 2rem;
    }

    section.faq .faq-subtitle {
        font-size: 0.9rem;
    }

    section.faq .faq-question {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    section.faq .faq-answer {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    section.faq .section-title {
        font-size: 1.75rem;
    }

    section.faq .faq-subtitle {
        font-size: 0.8rem;
    }

    section.faq .faq-question {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    section.faq .faq-answer {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}
/* Contact Us Section */
section.contact-us {
    background-color: #f8f9fa; /* Light gray background for contrast */
    padding: 80px 0;
}

section.contact-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c92d9; /* Teal color to match the navbar */
    margin-bottom: 1rem;
}

section.contact-us .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Contact Form */
section.contact-us .contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

section.contact-us .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3c92d9;
    margin-bottom: 1.5rem;
}

section.contact-us .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

section.contact-us .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

section.contact-us .form-control:focus {
    border-color: #3c92d9;
    box-shadow: 0 0 5px rgba(14, 141, 162, 0.3);
    outline: none;
}

section.contact-us .btn-submit {
    background-color: #3c92d9;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

section.contact-us .btn-submit:hover {
    background-color: #3c92d9;
    transform: scale(1.05);
}

/* Contact Information */
section.contact-us .contact-info {
    padding: 30px;
}

section.contact-us .info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3c92d9;
    margin-bottom: 1.5rem;
}

section.contact-us .info-list {
    list-style: none;
    padding: 0;
}

section.contact-us .info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

section.contact-us .info-list i {
    font-size: 1.2rem;
    color: #3c92d9;
    margin-right: 15px;
    margin-top: 5px;
}

section.contact-us .info-list strong {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: block;
}

section.contact-us .info-list p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsive Styles for Contact Us */
@media (max-width: 991.98px) {
    section.contact-us {
        padding: 50px 0;
    }

    section.contact-us .section-title {
        font-size: 2rem;
    }

    section.contact-us .section-subtitle {
        font-size: 1rem;
    }

    section.contact-us .contact-form,
    section.contact-us .contact-info {
        padding: 20px;
    }

    section.contact-us .form-title,
    section.contact-us .info-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    section.contact-us .section-title {
        font-size: 1.75rem;
    }

    section.contact-us .section-subtitle {
        font-size: 0.9rem;
    }

    section.contact-us .form-label {
        font-size: 0.85rem;
    }

    section.contact-us .form-control {
        font-size: 0.85rem;
        padding: 8px;
    }

    section.contact-us .btn-submit {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    section.contact-us .info-list i {
        font-size: 1rem;
        margin-right: 10px;
    }

    section.contact-us .info-list strong {
        font-size: 0.9rem;
    }

    section.contact-us .info-list p {
        font-size: 0.85rem;
    }
}
/* Footer */
.footer {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.footer-bg {
    background: linear-gradient(135deg, #3c92d9 50%, #2a6ea6 50%);
    padding: 50px 0;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer .social-icons .social-link {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-icons .social-link:hover {
    color: #e6f4f6; /* Light teal on hover */
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e6f4f6;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Styles for Footer */
@media (max-width: 991.98px) {
    .footer-bg {
        padding: 40px 0;
    }

    .footer-tagline {
        font-size: 1.3rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-links a,
    .footer-address,
    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-bg {
        padding: 30px 0;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-address,
    .footer-copyright {
        font-size: 0.8rem;
    }
}