* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.text-red {
    color: #9d0405;
}

.text-white {
    color: #ffffff;
}



.btn {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    background-color: #9d0405;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #9d0405;
}

.btn svg {
    margin-left: 10px;
}

section {
    padding: 60px 0;
}

.mobile-break {
    display: none;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;              
    left: 0;              
    width: 100%;
    z-index: 100;
    padding: 10px 0;
    background-color: #ffffff;
  }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #9d0405;
}

.logo img {
    height: 100px;
    max-width: 100%;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 30px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #111111;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #9d0405;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #111;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 60px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #111;
}

.mobile-logo {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-logo img {
    height: 50px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav ul li a.active {
    color: #9d0405;
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10px;
    overflow-x: hidden;
}

.left-section {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.right-section {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px 30px 10px 30px;
    border-radius: 5px;
    border: solid 1px #ddd;
}

.heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.subheading {
    font-size: 18px;
    margin-bottom: 30px;
}

.highlight {
    color: #9d0405;
}

.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 10px;
    border: 1px solid #111;
    flex: 1;
    gap: 10px;
    border-radius: 5px;
}

.info-icon {
    background-color: #000;
    justify-items: center;
    color: #fff;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    min-height: 45px;
}

/* Form Styles */
.form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}


.form-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

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

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
    width: 100%;
}

input, textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #9d0405;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .submit-btn {
        width: 40%;
        padding: 15px;
        background-color: #9d0405;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 10px;
        margin-left: auto; /* <-- this will push it to the right */
        display: block; /* keep it as block so margin works */
    }
}


.submit-btn:hover {
    background-color: #9d0405;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .main-content {
        max-width: 100%;
        padding: 30px 10px;
        gap: 30px;
    }
    
    .left-section,
    .right-section {
        min-width: 300px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 20px 10px;
        gap: 30px;
    }
    
    .left-section,
    .right-section {
        min-width: 100%;
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .heading {
        font-size: 28px;
    }
    
    .left-section {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 95%;
        padding: 0 10px;
    }
    
    .heading {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 22px;
    }
}