/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}
form {
    max-width: 500px;
    margin: 0 auto; /* Center the form */
    display: flex;
    flex-direction: column;
}
/* Default Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: none;
    color: white;
}

/* Hide menu in mobile view */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Mobile Menu (Hidden by Default) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show Hamburger Menu */
    }

    .nav-links {
        display: none; /* Hide links initially */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: maroon;
        padding: 10px;
        text-align: center;
    }

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

    .nav-links.show {
        display: flex; /* Show menu when clicked */
    }
}

@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    nav a {
        padding: 8px 12px;
        font-size: 14px;
    }
}
header {
    height: 80vh; /* Reduce from 100vh to 80vh */
}
/* Total Reset to Kill Everything Unwanted */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/office-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    gap: 10px;
    padding: 20px;
}

/* Heading */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    text-transform: uppercase;
}

/* Brand Name Color */
.hero h1.brand-name {
    color: #b51f2c;
}

/* Subtext */
.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: none; /* No shadows */
}

/* Primary Button */
.primary-btn {
    background-color: #b51f2c;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    background-color: #911821;
}

/* Secondary Button */
.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
    color: #b51f2c;
}

/* No borders, no outlines anywhere */
a, button {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Optional: If you want to remove even focus outlines (but it's not great for accessibility) */
a:focus, button:focus {
    outline: none;
    box-shadow: none;
}

.services {
    padding: 40px 20px; /* Reduce top and bottom padding */
}

.services-grid {
    gap: 15px; /* Reduce space between services */
}

.team-section {
    margin-top: 20px; /* Reduce extra gap */
}
.clients-section {
    padding: 40px 20px; /* Reduce padding */
}

.clients-grid {
    gap: 10px; /* Reduce space between logos */
}
@media (max-width: 768px) {
    .floating-cta {
        bottom: 50px;
        right: 15px;
        font-size: 14px;
        padding: 10px 15px;
    }
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #800000;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
}

.back-to-top:hover {
    background: #b30000;
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #800000;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    transition: background 0.3s ease, transform 0.2s;
}

.floating-cta:hover {
    background: #b30000;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .floating-cta {
        bottom: 70px; /* Moves button up */
        right: 10px; /* Adjust for smaller screens */
        font-size: 14px;
        padding: 10px 15px;
    }
}
section {
    margin: 20px auto;
    padding: 30px 15px;
    max-width: 1100px;
}

@media (max-width: 768px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

section {
    margin: 20px auto; /* Reduce space between sections */
    padding: 30px; /* Reduce padding inside sections */
    max-width: 1100px; /* Keep content well-sized */
}

body {
    background: url('banner.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #333;
    padding: 0;
    margin: 0;
}
/* Smooth Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    p { font-size: 1rem; }
    .cta-button { padding: 10px 15px; font-size: 1rem; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
form input[name="_honey"] {
    display: none;
}

/* Sticky Navigation */
nav {
    position: fixed;
    top: 0;
    right: 40px;
    font-size: 18px;
    z-index: 10;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcccc;
}

/* Header Styling */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

header h1 {
    font-size: 4em;
    margin: 0;
    animation-delay: 0.5s;
}

header p {
    font-size: 1.5em;
    margin: 10px 0 20px;
    animation-delay: 1s;
}
.stats-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.stats-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #b51f2c;
    font-weight: bold;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    width: 120px;
    position: relative;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-icon img {
    width: 40px;
    height: 40px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.stat-item p {
    font-size: 0.9rem;
    color: #555;
    text-transform: lowercase;
}
.stats-section h2 {
    color: #8B0000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #990000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation-delay: 1.5s;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Navigation Bar */
nav {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 18px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcccc;
}

/* Header Styling */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 4em;
    margin: 0;
}

header p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}

.cta-button {
    background-color: #990000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

/* Header */
header {
    text-align: center;
    padding: 100px 20px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease;
}
header.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Section Styling */
section {
    background: white;
    margin: 30px auto;
    padding: 40px;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: slideUp 1s ease;
}


/* Section Titles */
section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    color: #800000;
}
.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #800000;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #444;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.highlighted-text {
    font-size: 30px;
    color: #800000;
    font-weight: bold;
    margin-bottom: 20px;
}
.cta-dropdown {
    position: relative;
    display: inline-block;
}

.cta-button {
    background-color: #800000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #b30000;
}

.cta-options {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 10;
}

.cta-options a {
    display: block;
    padding: 10px 20px;
    color: #800000;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-options a:hover {
    background-color: #f9f9f9;
}

.cta-dropdown:hover .cta-options {
    display: block;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* About */
.about {
    text-align: center;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: center;
}

.service-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item i {
    font-size: 2.5rem;
    color: #800000;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.services-section {
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.services-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.services-bg {
    background: rgba(255, 255, 255, 0.1);  /* Transparent white */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);  /* Soft shadow */
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);  /* Glass effect */
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #fff;
}

.service {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #fff;
}

.service p {
    font-size: 1em;
    color: #e0e0e0;
}

.services-bg 

.services-bg .service {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-bg .service h3 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 10px;
}

.services-bg .service p {
    color: #ccc;
}
.services-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.services-bg {
    background-image: url('2-.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);  /* Dark overlay */
    z-index: 1;
    border-radius: 10px;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #fff;
}

.service p {
    font-size: 1em;
    color: #e0e0e0;
}
.contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

.contact-info h2 {
    color: #800000;
    margin-bottom: 20px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.contact-details i {
    color: #800000;
    margin-right: 10px;
}

.contact-details a {
    color: #800000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #b30000;
}



/* Contact Form */
form input, form textarea, form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #800000;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #a52a2a;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
