* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: white;
    font-family: 'TCHVEULH', sans-serif;
}

/* FULL WIDTH CONTAINER */
.container {
    width: 100%;
}

/* CENTER CONTENT */
.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    text-align: center;
    padding: 30px 0;
    background: #f7f7f7;
}

.header h1 {
    color: #000000;
}

.header p {
    margin-top: 6px;
    color: #444;
}

/* ABOUT SECTION */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 15px;
    color: #000000;
    font-size: 30px;
}

.about-text p {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.about-image img {
    width: 400px;
}

/* SERVICES SECTION */
.services {
    background: #9d56cb;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
    font-size: 25pt;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* .card {
    background: rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
} */

.card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-6px);
}

/* .card {
    background: rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 60px;
    height: 60px;
} */

.card {
    background: rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 8px;
    font-weight: bold;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.25);
}

.card-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 40px 0;
}

.contact button {
    background: #2f5fa3;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background: #1f4e79;
}



/* RESPONSIVE */
@media (max-width: 900px) {

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 220px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

        .why-content {
        flex-direction: column;
        text-align: center;
    }

    .why-item {
        justify-content: center;
    }


}

@media (max-width: 320px){
    .header{
        display: flex;
        justify-content: center;
        align-items: center;
    }

}



/*



*/

/* WHY CHOOSE US SECTION */

.why {
    background: #f7f7f7;
    padding: 70px 0;
}

.why-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-header h2 {
    color: #000000;
    margin-bottom: 8px;
    font-size: 25pt;
}

.why-header p {
    color: #555;
}

.why-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT LIST */

.why-list {
    flex: 1;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.why-item h3 {
    color: #000000;
    margin-bottom: 5px;
}

.why-item p {
    color: #444;
    line-height: 1.5;
}

/* ICONS */

.why-icon {
    width: 40px;
    height: 40px;
}

/* RIGHT IMAGE */

.why-image img {
    width: 450px;
    max-width: 100%;
}

/* RESPONSIVE */

.circle{
    background-color: rgb(150, 57, 227);
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;  /* Horizontal */
    align-items: center;  
    border-radius: 10px;
}


/*

*/


.contact.wrapper {
    text-align: center;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

/* Button styling */
#contactBtn {
    background-color: #007BFF; /* Blue button */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

#contactBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Info box styling */
#contactInfo {
    display: none; /* hidden by default */
    margin-top: 15px;
    background-color: #f1f1f1;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 300px;
    background-color: #b375dd;
}

#contactInfo a {
    color: #007BFF;
    text-decoration: none;
    font-size: 20px;
}

#contactInfo a:hover {
    text-decoration: underline;
}



/* =========================
   MOBILE (PHONES)
========================= */
@media (max-width: 768px) {

    /* Remove negative margin (important!) */
    .about-text {
        margin-left: 0;
    }

    /* Stack About section */
    .about {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }

    .about-image img {
        width: 100%;
        max-width: 280px;
    }

    /* Services grid → single column */
    .grid {
        grid-template-columns: 1fr;
    }

    /* Why section stack */
    .why-content {
        flex-direction: column;
        text-align: center;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-image img {
        width: 100%;
        max-width: 300px;
    }

    /* Header text smaller */
    .header h1 {
        font-size: 22px;
    }

    .header p {
        font-size: 14px;
    }

    /* Services title smaller */
    .services h2 {
        font-size: 20px;
    }

    /* Contact button full width */
    #contactBtn {
        width: 100%;
        max-width: 300px;
    }

}

footer{
    display: flex;
    justify-content: flex-end;
}

/* Step 1: Put your font file in your project, e.g., fonts/MyFont.ttf */

@font-face {
  font-family: 'TCHVEULH';
  src: url('fonts/TCHVEULH.ttf') format('truetype');
}

