:root {
    --primary-color: #fef1e4;
    --secondary-color: #3493ed;
    --button-color: #ff6210;
    --text-color: #333;
    --white-color: #fff;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

h1,
h2,
h3 {
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}
/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
.main-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px var(--shadow-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar img {
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li {
    border-radius: 5px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.nav-links li:hover {
    background-color: var(--button-color);
}

.nav-links a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   4. Main Content Sections
   ========================================================================== */
.hero-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
}

#highlighted-text {
    background-color: var(--button-color);
    color: white;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px var(--shadow-light);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--white-color);
    text-align: center;
}

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

/* Security Section */
.security-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-text {
    flex: 1;
}

.security-text h2 {
    color: var(--white-color);
}

.security-image {
    flex: 1;
    text-align: right;
}

.security-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px var(--shadow-light);
}

/* Collapse and Expand Feature CSS */
#security-content-wrapper {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0s ease-out;
    position: relative;
}

#security-content-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to top, rgba(52, 147, 237, 1), rgba(52, 147, 237, 0));
    pointer-events: none;
}

#security-content-wrapper.expanded {
    max-height: 1000px;
    overflow: visible;
}

#security-content-wrapper.expanded::after {
    display: none;
}

.tertiary-button {
    background: none;
    border: none;
    color: var(--white-color);
    text-decoration: underline;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tertiary-button:hover {
    color: var(--button-color);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn {
    margin-top: 30px;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-form {
    flex: 2;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}
.chat-with-us {
    padding: 10px;
    background-color: rgb(13, 227, 13);
    border-radius: 4px;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bolder;
}

.contact-info-map {
    flex: 1;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-info-form form {
    user-select: none;
}

.contact-info-form h2,
.contact-info-map h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-info-form p {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 147, 237, 0.2);
}

.primary-button {
    width: auto;
    display: inline-block;
    padding: 12px 24px;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 8px;
}

.contact-info-map address {
    font-style: normal;
}

.contact-info-map address p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* ==========================================================================
   5. Footer
   ========================================================================== */
.main-footer {
    background-color: #222;
    color: #ccc;
    padding: 4rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--button-color);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a:hover {
    color: var(--white-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */
.primary-button,
.secondary-button,
.footer-contact-button {
    display: inline-block;
    background-color: var(--button-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover,
.secondary-button:hover,
.footer-contact-button:hover {
    background-color: #d1500f;
    transform: translateY(-3px);
}

.secondary-button {
    margin-top: 1rem;
}

/* ==========================================================================
   8. Media Queries (Mobile-specific styles)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0px;
    }

    .hero-content {
        flex-direction: column-reverse;
    }

    /* Mobile Navigation Specifics */
    .nav-links {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0.5rem 0;
        padding: 10px;
    }

    .hamburger {
        display: block;
    }

    /* Hamburger animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info-form, .contact-info-map {
        flex: 1;
    }
}