/* Hero Section ------------------------------------------------*/
.hero {
    background-color: #A6A98D; /* Matches the website's background */
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

/* Left Side - Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 5px;
}

/* Right Side - Text Content */
.hero-text {
    flex: 1;
    padding-left: 40px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

.hero-text h2 {
    font-size: 28px;
    color: #000;
    margin: 10px 0;
}

.hero-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

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

.btn {
    padding: 10px 20px;
    border: 2px solid black;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: black;
}

.btn.primary {
    background: black;
    color: white;
}

.btn.primary:hover {
    background: white;
    color: black;
}

.btn.secondary {
    border: 2px solid black;
}

.btn.secondary:hover {
    background: black;
    color: white;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-left: 0;
        margin-top: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }
}





/* Services Section -----------------------------------------------------*/


/* Services Section */
.services {
    background: #F3EED3;
    padding: 80px 0;
    text-align: center;
}

.services .section-title {
    font-size: 34px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.services .section-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 80%;
    margin: auto;
}

/* Service Item */
.service-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item .material-icons {
    font-size: 45px;
    color: #000;
    margin-bottom: 12px;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 17px;
    color: #555;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack items */
        width: 90%;
    }
}





/* Why Us Section -------------------------------------------------------*/
.why-us {
    background: #ECE7D5; /* Soft beige shade */
    padding: 80px 0;
    text-align: center;
}

.why-us .section-title {
    font-size: 38px;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 85%;
    margin: auto;
}

/* Why Us Items */
.why-item {
    text-align: center;
}

.why-item h3 {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Underline effect */
.underline {
    width: 80%;
    height: 2px;
    background: #000;
    margin: 10px auto 0;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr; /* Stack items */
        width: 90%;
    }
}






/* Client Section -------------------------------------------------------*/
.client {
    background: #FFFFFF; /* Clean white background */
    padding: 80px 0;
    text-align: center;
}

.client .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.client-name {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

/* Discover Button */
.client-button {
    margin-bottom: 30px;
}

.client-button .btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid black;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.client-button .btn:hover {
    background: white;
    color: black;
}

/* Client Logo */
.client-logo img {
    max-width: 120px;
    margin-bottom: 40px;
}

/* Two-Column Layout */
.client-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* Increase Image Size */
.client-image img {
    width: 100%;
    max-width: 550px; /* Increased size */
    height: auto;
    border-radius: 8px;
}

/* Client Text */
.client-text {
    max-width: 500px;
    text-align: left;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .client-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .client-text {
        text-align: center;
    }

    .client-image img {
        max-width: 100%; /* Full width on smaller screens */
    }
}



/* Programs Section -------------------------------------------------------*/
.programs {
    background: #D6D6D6; /* Light gray background */
    padding: 80px 0;
    text-align: center;
}

.programs .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.programs .section-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 90%;
    margin: auto;
}

/* Program Card */
.program-card {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

/* Text Content */
.program-content {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

/* Image Content */
.program-image img {
    max-width: 80px;
    height: auto;
}

/* Hover Effect */
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Learn More Button */
.programs-button {
    margin-top: 30px;
}

.programs-button .btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid black;
    background: transparent;
    color: black;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.programs-button .btn:hover {
    background: black;
    color: white;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablets */
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr; /* Stacks on Mobile */
    }
}



/* Contact Section -------------------------------------------------------*/
.contact {
    background: #F9F5E8; /* Soft beige background */
    padding: 80px 0;
    text-align: center;
}

.contact .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
}

/* Contact Content - Two Columns */
.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 85%;
    margin: auto;
}

/* Left Side: Contact Details */
.contact-details {
    text-align: left;
    font-size: 18px;
    color: #333;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-details .material-icons {
    font-size: 24px;
    color: #000;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    font-size: 24px;
    color: #000;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #555;
}

/* Right Side: Contact Form */
.contact-form {
    flex: 1;
    text-align: center;
    align-items: center;
}

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

/* Name Fields */
.form-group {
    display: flex;
    gap: 15px;
}

.form-group input {
    flex: 1;
}

/* Input & Textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    font-size: 16px;
}

/* Send Button */
.contact-form .btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form .btn:hover {
    background: white;
    color: black;
    border: 2px solid black;
}



/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        text-align: center;
    }

    .contact-form {
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }
}
