/* R2Zone Professional Stylesheet 
    Theme: Modern SaaS / IT Solutions
*/

/* --- 1. Global Reset & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Navigation Bar --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: #0056b3;
    text-decoration: none;
    letter-spacing: -1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #0056b3;
}

.nav-btn {
    background: #0056b3;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
}

/* --- 3. Hero Section (Dark Theme) --- */
.hero {
    background: #1a1a1a;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: #00d1b2; /* Professional Teal Accent */
}

.hero p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px; /* Fixes the overlapping buttons */
}

/* --- 4. Buttons --- */
.btn-primary {
    background: #0056b3;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid #333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    background: transparent;
    transition: 0.3s;
}

.btn-primary:hover { background: #004494; transform: translateY(-2px); }
.btn-secondary:hover { border-color: #00d1b2; color: #00d1b2; }

/* --- 5. Product Grid --- */
.product-grid {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: left;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #0056b3;
}

.product-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-text {
    color: #0056b3;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.dl-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 1.3rem;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
    opacity: 0.8;
}

/* --- 6. Stats Bar --- */
.trust-bar {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: #0056b3;
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- 7. Footer --- */
footer {
    background: #111;
    color: #888;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

footer h3, footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #00d1b2;
}
/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    /* background: #fff; */
    background: #faf9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: #00d1b2;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stars {
    color: #ffc107; /* Gold stars */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.client-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
}

.client-info span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}/* --- Logo Styling --- */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-wrapper:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px; /* Adjust based on your logo design */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0056b3;
    letter-spacing: -0.5px;
    /* Remove this if you only want the image logo */
    display: inline-block; 
}

/* Ensure the nav container stays spread out */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Responsive fix: Hide logo text on very small screens if needed */
@media (max-width: 480px) {

}
.logo-text {
    font-family: 'Algerian', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: normal; /* Algerian is naturally bold */
    color: #0056b3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- About Us Section (Home Page) --- */
.about-section {
        border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 100px 0;
    background: #fff; /* Clean white background to contrast with reviews */
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.algerian-text {
    font-family: 'Algerian', serif;
    color: #0056b3;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.f-item {
    font-weight: 700;
    color: #00d1b2;
    font-size: 0.9rem;
}

/* Stats Cards on Right */
.about-stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 300px;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.stat-card.highlight {
    background: #0056b3;
    border-color: #0056b3;
}

.stat-card.highlight h3, .stat-card.highlight p {
    color: #fff;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .about-features {
        justify-content: center;
    }
}
/* --- Contact Us Section --- */
.contact-section {
    padding: 100px 0;
    background: #faf9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.info-item .icon {
    font-size: 1.5rem;
    background: #eef4ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    color: #0056b3;
}

/* Form Styling */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.1);
}

.btn-submit {
    width: 100%;
    background: #0056b3;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #004494;
    transform: translateY(-2px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- 8. Responsive Fixes & Mobile Menu --- */

/* Smooth Scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Container padding adjustment for mobile */
@media (max-width: 992px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 2.8rem; }
}

/* The Mobile Navigation Toggle */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #0056b3;
    border-radius: 5px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    /* Show Menu Toggle */
    .menu-toggle { display: flex; }

    /* Transform Nav List into Mobile Overlay */
    nav ul {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    nav ul.active {
        right: 0; /* Slide in */
    }

    /* Section adjustments */
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; gap: 10px; padding: 0 20px; }
    
    .section-title { font-size: 1.8rem; text-align: center; }
    
    /* Grid adjustments */
    .cards-container, .testimonial-grid, .about-stats-grid, .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .about-flex { gap: 30px; }
    .contact-form-container { padding: 25px; }

    /* Trust Bar Stack */
    .trust-bar .container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Animations for the Hamburger Menu when active */
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0056b3; /* Your R2Zone Blue */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* --- Responsive Media Query --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Shows only on mobile/tablets */
    }

    nav ul {
        display: none; /* Hide the long list on mobile */
    }

    nav ul.active {
        display: flex; /* Show when toggled via JS */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid #0056b3;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
}/* R2Zone Professional Stylesheet 
    Theme: Modern SaaS / IT Solutions
*/

/* --- 1. Global Reset & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Navigation Bar --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: #0056b3;
    text-decoration: none;
    letter-spacing: -1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #0056b3;
}

.nav-btn {
    background: #0056b3;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
}

/* --- 3. Hero Section (Dark Theme) --- */
.hero {
    background: #1a1a1a;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: #00d1b2; /* Professional Teal Accent */
}

.hero p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px; /* Fixes the overlapping buttons */
}

/* --- 4. Buttons --- */
.btn-primary {
    background: #0056b3;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid #333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    background: transparent;
    transition: 0.3s;
}

.btn-primary:hover { background: #004494; transform: translateY(-2px); }
.btn-secondary:hover { border-color: #00d1b2; color: #00d1b2; }

/* --- 5. Product Grid --- */
.product-grid {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: left;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #0056b3;
}

.product-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-text {
    color: #0056b3;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.dl-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 1.3rem;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
    opacity: 0.8;
}

/* --- 6. Stats Bar --- */
.trust-bar {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: #0056b3;
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- 7. Footer --- */
footer {
    background: #111;
    color: #888;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

footer h3, footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #00d1b2;
}
/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    /* background: #fff; */
    background: #faf9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: #00d1b2;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stars {
    color: #ffc107; /* Gold stars */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.client-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
}

.client-info span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}/* --- Logo Styling --- */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-wrapper:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px; /* Adjust based on your logo design */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0056b3;
    letter-spacing: -0.5px;
    /* Remove this if you only want the image logo */
    display: inline-block; 
}

/* Ensure the nav container stays spread out */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Responsive fix: Hide logo text on very small screens if needed */
@media (max-width: 480px) {
 
}
.logo-text {
    font-family: 'Algerian', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: normal; /* Algerian is naturally bold */
    color: #0056b3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- About Us Section (Home Page) --- */
.about-section {
        border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 100px 0;
    background: #fff; /* Clean white background to contrast with reviews */
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.algerian-text {
    font-family: 'Algerian', serif;
    color: #0056b3;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.f-item {
    font-weight: 700;
    color: #00d1b2;
    font-size: 0.9rem;
}

/* Stats Cards on Right */
.about-stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 300px;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.stat-card.highlight {
    background: #0056b3;
    border-color: #0056b3;
}

.stat-card.highlight h3, .stat-card.highlight p {
    color: #fff;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .about-features {
        justify-content: center;
    }
}
/* --- Contact Us Section --- */
.contact-section {
    padding: 100px 0;
    background: #faf9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.info-item .icon {
    font-size: 1.5rem;
    background: #eef4ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    color: #0056b3;
}

/* Form Styling */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.1);
}

.btn-submit {
    width: 100%;
    background: #0056b3;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #004494;
    transform: translateY(-2px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- 8. Responsive Fixes & Mobile Menu --- */

/* Smooth Scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Container padding adjustment for mobile */
@media (max-width: 992px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 2.8rem; }
}

/* The Mobile Navigation Toggle */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #0056b3;
    border-radius: 5px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    /* Show Menu Toggle */
    .menu-toggle { display: flex; }

    /* Transform Nav List into Mobile Overlay */
    nav ul {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    nav ul.active {
        right: 0; /* Slide in */
    }

    /* Section adjustments */
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; gap: 10px; padding: 0 20px; }
    
    .section-title { font-size: 1.8rem; text-align: center; }
    
    /* Grid adjustments */
    .cards-container, .testimonial-grid, .about-stats-grid, .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .about-flex { gap: 30px; }
    .contact-form-container { padding: 25px; }

    /* Trust Bar Stack */
    .trust-bar .container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Animations for the Hamburger Menu when active */
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0056b3; /* Your R2Zone Blue */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* --- Responsive Media Query --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Shows only on mobile/tablets */
    }

    nav ul {
        display: none; /* Hide the long list on mobile */
    }

    nav ul.active {
        display: flex; /* Show when toggled via JS */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid #0056b3;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
}