/* Add font-face declarations at the top of the file */
@font-face {
    font-family: 'Comfortaa';
    src: url('assets/font/Comfortaa-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('assets/font/Comfortaa-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('assets/font/Comfortaa-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary: #89223F;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #198754;
    --bg-light: #f0f7ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 15rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.hero {
    margin-top: 1rem;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 50vh;
    border-radius: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--secondary);
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Update the why-us section styles */
.why-us {
    padding: 80px 0;
}

.why-us-container {
    display: flex;
    gap: 50px;
}

.why-us-heading {
    margin-top: 10rem;
    flex: 0 0 25%;
}

.why-us-heading h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    line-height: 1.2;
    text-transform: uppercase;
}

.why-us-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #8b2332; /* Burgundy/maroon color */
    
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
   
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .why-us-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .why-us-heading {
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.cta {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 2rem ;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

footer {
   
    color: black;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Contact Form Styles */
.contact-form-container {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    font-family: 'Comfortaa', sans-serif;
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 35px;
}

select option {
    background-color: var(--primary);
    color: white;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}
/* Add this to your existing contact form styles */
button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
    min-width: 200px;
}

/* Project Management Section */
.project-management {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.project-management-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-management-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.project-management-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.project-management-content .btn {
    margin-top: 20px;
}

.project-management-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .project-management-container {
        grid-template-columns: 1fr;
    }
    
    .project-management-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        border-radius: 0;
    }

    .cta {
        border-radius: 0;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 200;
    }
    
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .mobile-cta {
        display: none;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .mobile-menu-toggle {
            display: flex;
        }
        
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            padding: 80px 20px 20px;
            flex-direction: column;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 150;
        }
        
        .nav-menu.active {
            right: 0;
        }
        
        nav ul {
            flex-direction: column;
            gap: 20px;
        }
        
        .desktop-cta {
            display: none;
        }
        
        .mobile-cta {
            display: inline-block;
            margin-top: 30px;
        }
        
        /* Add this to your existing media query */
        .header-container {
            padding: 10px 0;
        }
        
        .logo {
            height: 40px;
        }
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Consultation Page Styles */
.consult-hero {
    margin-top: 2rem;
    background-color: var(--primary);
    color: white;
    min-height: 40vh;
    padding: 80px 0 60px;
    border-radius: 2rem;
    text-align: center;
}

.consult-hero h1 {
    margin-top: 3rem;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consult-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.consult-form-section {
    padding: 60px 0;
    
}

.consult-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.consult-intro h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.consult-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Add active state for navigation */
.nav-menu ul li a.active {
    color: var(--primary);
    position: relative;
}

.nav-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Responsive styles for the form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .consult-form {
        padding: 20px;
    }
}
/* Add this to your existing contact form styles */
button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
    min-width: 200px;
}

/* Project Management Section */
.project-management {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.project-management-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-management-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.project-management-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.project-management-content .btn {
    margin-top: 20px;
}

.project-management-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .project-management-container {
        grid-template-columns: 1fr;
    }
    
    .project-management-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        border-radius: 0;
    }

    .cta {
        border-radius: 0;
    }
    
    .consult-hero{
        border-radius: 0;
    }
    /* Keep any existing mobile styles */
}

/* Page Hero Section */
.page-hero {
    margin-top: 2rem;
    padding: 80px 0 60px;
    min-height: 40vh;
    border-radius: 2rem;
    text-align: center;
    background-color: var(--primary);
}

.page-hero h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: white;
}

.page-hero p {
    color: white;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Detailed Services Section */
.services-detailed {
    padding: 80px 0;
}

.service-detailed-item {
    display: flex;
    margin-bottom: 80px;
    gap: 40px;
    align-items: center;
}

.service-detailed-item.reverse {
    flex-direction: row-reverse;
}

.service-detailed-content {
    flex: 1;
}

.service-detailed-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detailed-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detailed-content h2 {
    color: #89223F;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-detailed-content h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
    color: #333;
}

.service-detailed-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-detailed-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detailed-content li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Service CTA Section */
.service-cta {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.service-cta h2 {
    color: #89223F;
    margin-bottom: 20px;
}

.service-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-detailed-item,
    .service-detailed-item.reverse {
        flex-direction: column;
    }
    
    .service-detailed-image {
        margin-top: 30px;
        order: 2;
    }
    
    .service-detailed-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .services-detailed {
        padding: 50px 0;
    }
    
    .service-detailed-item {
        margin-bottom: 60px;
    }
    
    .service-detailed-content h2 {
        font-size: 1.8rem;
    }
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cookie-consent-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-consent-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background-color: #6d1a31;
}

.cookie-decline {
    background-color: #f1f1f1;
    color: #333;
}

.cookie-decline:hover {
    background-color: #e1e1e1;
}

.cookie-customize {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cookie-customize:hover {
    background-color: rgba(137, 34, 63, 0.1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-settings-content {
    background-color: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-option-header h4 {
    margin-left: 15px;
    margin-bottom: 0;
}

.cookie-settings-buttons {
    margin-top: 20px;
    text-align: center;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}