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

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0a500;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    margin-top: 60px;
    background-image: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.6) 30%,
                rgba(0, 0, 0, 0.3) 60%,
                rgba(0, 0, 0, 0.1) 80%,
                rgba(0, 0, 0, 0) 100%),
                url('images/534534534.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    animation: heroReveal 1.2s ease-out forwards;
}

@keyframes heroReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 10%;
    margin-top: 300px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #f0a500 0%, #e89b00 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(240, 165, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e89b00 0%, #e09200 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(240, 165, 0, 0.3);
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FF8C00;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(240, 165, 0, 0.1);
}

.mobile-menu-btn:hover span {
    background-color: #f0a500;
}

.mobile-menu-btn.active span {
    background-color: #f0a500;
}

.mobile-menu-btn.open span {
    background-color: #FF8C00;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        margin-right: 15px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: rgba(51, 51, 51, 0.65);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        padding-bottom: 30px;
        gap: 2.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        background: linear-gradient(
            to bottom,
            rgba(51, 51, 51, 0.68) 0%,
            rgba(51, 51, 51, 0.65) 100%
        );
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #f0a500;
        font-weight: 600;
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 15px 30px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        width: 80%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(240, 165, 0, 0.1);
        color: #f0a500;
        transform: translateY(-2px);
    }

    .nav-links a.active {
        background: rgba(240, 165, 0, 0.2);
        color: #f0a500;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #f0a500;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: #f0a500;
    }

    .overlay.active {
        background: rgba(0, 0, 0, 0.5);
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-links {
        width: 85%;
        padding: 60px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 25px;
        width: 85%;
    }

    .logo {
        height: 35px;
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

@supports (-webkit-backdrop-filter: none) {
    .overlay.active {
        -webkit-backdrop-filter: none;
    }
}

.nav-links::before {
    display: none;
}

/* Quality Showcase Section */
.quality-showcase {
    padding: 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.quality-content {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 95vh;
}

.quality-text {
    flex: 0.7;
    padding: 5% 5% 5% 10%;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease forwards;
}

.quality-text h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quality-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quality-features {
    list-style: none;
    margin-bottom: 40px;
}

.quality-features li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.quality-features li:nth-child(1) { animation-delay: 0.2s; }
.quality-features li:nth-child(2) { animation-delay: 0.4s; }
.quality-features li:nth-child(3) { animation-delay: 0.6s; }
.quality-features li:nth-child(4) { animation-delay: 0.8s; }

.quality-image {
    flex: 1.3;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s ease forwards;
    padding: 2rem;
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles for quality section */
@media screen and (max-width: 968px) {
    .quality-content {
        flex-direction: column;
        padding: 60px 0;
    }

    .quality-text {
        padding: 5%;
        text-align: center;
        order: 2;
    }

    .quality-text h2 {
        font-size: 2.5rem;
    }

    .quality-features {
        display: inline-block;
        text-align: left;
    }

    .quality-image {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
        padding: 1rem;
    }

    .quality-image img {
        border-radius: 15px;
        clip-path: none;
        max-height: 400px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .quality-text .cta-button {
        margin: 0 auto;
        display: block;
    }

    .product-info {
        text-align: center;
    }

    .product-btn {
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .quality-text h2 {
        font-size: 2rem;
    }

    .quality-description {
        font-size: 1rem;
    }

    .quality-features li {
        font-size: 1rem;
    }
}

/* Updated Contact Section Styles */
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #fff, #fff8e8);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Contact Details Styling */
.contact-details {
    flex: 1;
}

.office-block {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.office-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.office-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-icon {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 12px;
}

.title-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    margin-bottom: 5px;
}

.subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-info {
    flex: 1;
}

.item-label {
    display: block;
    color: #f0a500;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #333;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-item:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
    .office-block {
        padding: 25px;
    }
    
    .title-text h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 15px;
    }
}

/* Form Section Styling */
.contact-form-section {
    width: 100%;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.form-container h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.form-container p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.form-container textarea {
    height: 100px;
    resize: vertical;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #f0a500;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1);
}

.form-container button {
    padding: 12px;
    background: linear-gradient(135deg, #f0a500 0%, #e89b00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-container button:hover {
    background: linear-gradient(135deg, #e89b00 0%, #e09200 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .map-wrapper {
        min-height: 300px;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #f0a500;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f0a500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Update the brands section styles */
.brands-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brands-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brands-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.brands-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f0a500;
    margin-top: 10px;
}

.brands-header p {
    color: #666;
    font-size: 1.1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-item {
    width: 100%;
    max-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .brands-section {
        padding: 3rem 1rem;
    }

    .brands-header h2 {
        font-size: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 2rem;
    }

    .brand-item {
        max-width: 140px;
        height: 80px;
    }
}

@media screen and (max-width: 480px) {
    .brands-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Update the logo size adjustments */
.brand-logo[alt="CAT"],
.brand-logo[alt="MAN"] {
    max-width: 60%; /* Makes both CAT and MAN logos smaller */
}

.brand-logo[alt="JCB"] {
    max-width: 150%; /* Makes JCB logo even bigger */
}

.brand-logo[alt="Hitachi"] {
    max-width: 130%; /* Keeps Hitachi logo at previous size */
}

/* Update the brand-item for JCB and Hitachi to allow overflow */
.brand-item:has(.brand-logo[alt="JCB"]),
.brand-item:has(.brand-logo[alt="Hitachi"]) {
    overflow: visible;
    z-index: 1;
}

/* Add these styles for the branch sections */
.branch-section {
    margin-bottom: 3rem;
}

.branch-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0a500;
    display: inline-block;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media screen and (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .branch-section {
        margin-bottom: 2rem;
    }
}

/* Update the contact section responsive styles */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-details {
        gap: 30px;
    }

    .office-block {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .office-title {
        margin-bottom: 15px;
    }

    .office-title h3 {
        font-size: 1.3rem;
    }

    .contact-list {
        gap: 15px;
    }

    .contact-item {
        padding: 12px;
    }

    .form-container {
        padding: 20px;
    }

    .form-container h3 {
        font-size: 1.3rem;
    }

    .form-container input,
    .form-container textarea {
        padding: 12px;
        font-size: 1rem;
    }

    .map-wrapper {
        height: 300px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-container h2 {
        font-size: 1.8rem;
    }

    .office-title span {
        padding: 4px 8px;
        font-size: 0.9rem;
    }

    .office-title h3 {
        font-size: 1.2rem;
    }

    .item-label {
        font-size: 0.85rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 15px;
    }

    .map-wrapper {
        height: 250px;
    }
}

/* About Hero Section */
.about-hero {
    width: 100%;
    min-height: 60vh;
    position: relative;
    margin-top: 60px;
    background-image: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.6) 30%,
                rgba(0, 0, 0, 0.3) 60%,
                rgba(0, 0, 0, 0.1) 80%,
                rgba(0, 0, 0, 0) 100%),
                url('images/download.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
}

.about-hero-content {
    max-width: 800px;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Company Overview Section */
.company-overview {
    padding: 80px 5%;
    background: #fff;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f0a500;
}

.overview-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #fff, #fff8e8);
}

.values-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f0a500;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 5%;
    background: #fff;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f0a500;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

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

.feature p {
    color: #666;
    line-height: 1.5;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.2rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overview-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card,
    .feature {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .overview-text h2,
    .values-section h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }
}

/* Add these styles for form status messages */
.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(75, 181, 67, 0.1);
    color: #4BB543;
    border: 1px solid #4BB543;
}

.form-status.error {
    display: block;
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
}

/* Add loading state for button */
.form-container button.loading {
    position: relative;
    color: transparent;
}

.form-container button.loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Add these new styles for the message header */
.message-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mail-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.message-text {
    flex: 1;
}

.message-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.message-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Update existing form container styles */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.footer-office-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-office-details h4 {
    color: #f0a500;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-office-details p {
    color: #aaa;
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Update the office block styling without the header */
.office-block {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
}