* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100vh;
    background-color: #FCF8F4;
    font-family: manrope, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
} 


/* navigation bar  */
nav {
    width: 100%;
    height: 6rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    /* background-color: rgb(247, 97, 202); */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;    
    padding: 0.3rem 0;
    font-family: poppins, manrope;
    position: relative;
}

/* .menu ul li a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 1rem;
    background-color: #EC744A;

}

.menu ul li a:hover::after   {
    width: 100%;   
    transition: width 0.4s ease;
}

.menu ul li a:hover {
    color: #EC744A;
    font-weight: bold;
    transition: color 0.4s ease;
}

.menu ul li a:focus {
    color: #EC744A;
    font-weight: bold;
    transition: color 0.4s ease;
}

.menu ul li a:focus::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 1rem;
    background-color: #EC744A;
    transition: width 0.4s ease;
} */

.menu ul li a:hover {
    font-weight: bold;
    transition: font-weight 0.3s ease;
}

.menu ul li a:focus {
    font-weight: bold;
    transition: font-weight 0.3s ease;
}

.menu ul li a.active {
    font-weight: bold;
}

.contact-btn {

    background-color: transparent;
    border: 2px solid #EC744A;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;


}

.contact-btn a {
    text-decoration: none;
    color: #EC744A;
    font-size: 1rem;
    font-weight: 500;
    font-family: poppins, manrope;

}

.contact-btn:hover {
    background-color: #EC744A;
    transition: background-color 0.3s ease;
}

.contact-btn:hover a {
    color: white;
    transition: color 0.3s ease;
}

/* ////////////////////////////////////////// */
/* hero-section  */
/* ////////////////////////////////////////// */

.hero-section {
    width: 100%;
    height: 100%;
}

.hero-section .container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-section .container .hero-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.hero-section .container .hero-content h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #1a1a1a
}

.hero-section .container .hero-content h1 span {
    color: #EC744A;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    text-decoration-color: #EC744A;
}

.hero-section .container .hero-content p {
    width: 95%;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.hero-section .container .hero-content .city-input {
    width: 70%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    /* gap: 1rem; */
    border-radius: 0.5rem;
    padding: 0.2rem;
    border: 0.1px solid #d6d6d6;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.hero-section .container .hero-content .city-input input {
    border: none;
    height: 2rem;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    flex: 1;
    outline: none;
    background-color: transparent;
    /* background-color: antiquewhite; */
    /* border-radius: 0.5rem; */

}

.hero-section .container .hero-content .city-input button {
    background-color: #EC744A;
    height: 2rem;
    outline: none;
    border: none;
    border-radius: 0.5rem;
    padding: 0rem 1rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.hero-section .container .hero-content .city-input button:hover {
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
    transition: all 0.3s ease;
}




.hero-section .container .hero-content .google-reviews {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
}


.hero-section .container .hero-content .google-reviews .google-review-logo {
    width: 5rem;
}

.hero-section .container .hero-content .google-reviews .google-review-logo img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    object-fit: contain;
}

.hero-section .container .hero-content .google-reviews .review-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-section .container .hero-content .google-reviews .review-container .review-stars {
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-section .container .hero-content .google-reviews .review-container .review-stars i {
    font-size: 0.8rem;
    color: #2d2d2d;
}

.hero-section .container .hero-content .google-reviews .review-container .review-stars p {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d2d2d;
}

/* hero-section-image  */
.hero-section .container .hero-images {
    width: 50%;
    height: 100%;
    /* background-color: violet; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section .container .hero-images img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    border-radius: 0.5rem;
    position: absolute;
}

.hero-section .container .hero-images .hero-image-text {
    width: 40%;
    height: 15%;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    /* background-image: linear-gradient(to right, #007D6E, #5EB47C); */
    color: white;
    background-color: #EC744A;
    position: absolute;
    box-shadow: 0 0 10px 0 #007d6e4f;
    transform: translate(80%, -270%);
}


/* ////////////////////////////////////////// */
/* work-achievement section  */
/* ////////////////////////////////////////// */

.work-achievement {
    width: 100%;
    height: 20vh;
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
    color: white;
}

.work-achievement .container .work-achievement-box {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work-achievement .container .work-achievement-box p {
    font-size: 1rem;
    font-weight: 500;
}

.work-achievement .container .work-achievement-box h2 {
    font-size: 2rem;
    font-weight: bold;
    font-family: poppins, manrope;
    margin-top: 0.5rem;
}

/* ////////////////////////////////////////// */
/* location-friendly section  */
/* ////////////////////////////////////////// */

.location-friendly-section {
    width: 100%;
    height: 100%;
}

.location-friendly-section .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.location-friendly-content {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    flex: 4;
    gap: 2rem;
}

.location-friendly-header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.location-friendly-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.location-friendly-header h2 span {
    color: #EC744A;
    font-weight: bolder;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    text-decoration-color: #EC744A;
}

.location-friendly-header p {
    font-size: 1rem;
    font-weight: 500;
    color: #767676;
}



.location-friendly-cards{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex: 3;
    gap: 2rem;
}

.location-friendly-card {
    width: 60%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-friendly-card:hover {
    transform: translateY(-1rem);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
}

.location-friendly-card:hover i {
    color: white;
    -webkit-text-fill-color: initial;
    transition: color 0.3s ease;
}

.location-friendly-card:hover h1 {
    color: white;
    transition: color 0.3s ease;
}

.location-friendly-card:hover p {
    color: white;
    transition: color 0.3s ease;
}


.location-friendly-card i {
    font-size: 3rem;
    /* color: #EC744A; */
    background: -webkit-linear-gradient(#007D6E, #5EB47C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.3s ease;
}

.location-friendly-card h1 {
    font-size: 1rem;
    font-weight: bold;
    color: #3e3e3e;
    transition: color 0.3s ease;
}

.location-friendly-card p {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 2;
    color: #767676;
    text-align: center;
    transition: color 0.3s ease;
}

/* ////////////////////////////////////////// */
/* why-us section  */
/* ////////////////////////////////////////// */

.why-us {
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.why-us .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.why-us .container .why-us-header {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.why-us .container .why-us-header h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #3f3f3f;
    text-align: center;
}

.why-us .container .why-us-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
}

.why-us .container .why-us-header h1 span {
    color: #EC744A;
    font-family: poppins, manrope;
    font-weight: bolder;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    text-decoration-color: #EC744A;
}

span{
    font-family: poppins, manrope;
}

.why-us .container .why-us-info {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .container .why-us-info .why-us-info-card {
    width: 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid black;
    padding: 0 2rem;
    border-radius: 1rem;
}

.why-us .container .why-us-info .why-us-info-card img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

#expertise-team-card {
    height: 100%;
    color: white;
    border:none;
    transform: scale(1.1);
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
}

#expertise-team-card img {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
}



/* ////////////////////////////////////////// */
/* services section  */
/* ////////////////////////////////////////// */

.services {
    width: 100%;
    height: 100%;
}

.services .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services .container .services-header {
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.services .container .services-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
}

.services .container .services-header h1 span {
    color: #EC744A;
    font-family: poppins, manrope;
    font-weight: bolder;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    text-decoration-color: #EC744A;
}

.services .container .services-header h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #3f3f3f;
    text-align: center;
}

.services .container .services-content {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 1rem;
    padding: 0 2rem;
}

.services .container .services-content .service-content-card {
    min-width: calc(25% - 1rem); /* Show 4 cards with gap */
    height: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.services .container .services-content .service-content-card {
    --border-size: 3px;
    --border-angle: 0turn;
    background-image: conic-gradient(
        from var(--border-angle),
        #007D6E,
        #5EB47C 50%,
        #EC744A
    );
    background-size: calc(100% - (var(--border-size) * 2))
        calc(100% - (var(--border-size) * 2)),
        cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: bg-spin 3s linear infinite;
    overflow: hidden;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.services .container .services-content .service-content-card:hover {
    animation-play-state: paused;
}

.services .container .services-content .service-content-card {
    background-image: 
        linear-gradient(white, white),
        conic-gradient(
            from var(--border-angle),
            #007D6E,
            #5EB47C 50%,
            #EC744A
        );
    background-size: calc(100% - (var(--border-size) * 2))
        calc(100% - (var(--border-size) * 2)),
        cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.services .container .services-content .service-content-card-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.services .container .services-content .service-content-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.services .container .services-content .service-content-card:hover img {
    transform: scale(1.1);
}

.services .container .services-content .service-content-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.services .container .services-content .service-content-card:hover .service-content-card-text {
    transform: translateY(0);
}

.services .container .services-content .service-content-card-text h1 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.services .container .services-content .service-content-card-text p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.services .container .services-content .service-content-card-text button {
    background: #EC744A;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.services .container .services-content .service-content-card-text button:hover {
    background: linear-gradient(to right, #007D6E, #5EB47C);
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

.services .container .services-button {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
}

.services .container .services-button button {
    width: 2rem;
    height: 2rem;
    border: 1px solid black;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.1s ease;
}

.services .container .services-button button:hover {
    border: none;
    color: white;
    transform: scale(1.1);
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
    transition: all 0.1s ease;
}

.services .container .services-button button i {
    font-size: 1rem;
}

/* ////////////////////////////////////////// */
/* mentor section  */
/* ////////////////////////////////////////// */

.mentor {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.mentor .container {
    width: 100%;
    height: 100%;
    /* background-image: url(./assets/mentor-bg.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor .container .mentor-images {
    width: 50%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
    /* padding: 0 2rem; */
    /* background-color: #007D6E; */
}

.mentor .container .mentor-images img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.mentor .container .mentor-content {
    width: 50%;
    height: 80%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 2rem;
}

.mentor .container .mentor-content .mentor-content-header {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.mentor .container .mentor-content .mentor-content-header h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #3f3f3f;
}

.mentor .container .mentor-content .mentor-content-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.mentor .container .mentor-content .mentor-content-header h1 span {
    color: #EC744A; 
    font-family: poppins, manrope;
    font-weight: bolder;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    text-decoration-color: #EC744A;
}

.mentor .container .mentor-content .mentor-content-body {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.mentor .container .mentor-content .mentor-content-body .mentor-content-body-card {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 1rem 0;
    gap: 1rem;
}

.mentor .container .mentor-content .mentor-content-body .mentor-content-body-card img {
    width: 20%;
    height: 70%;
    padding: 0.5rem 0;
    /* filter: grayscale(100%); */
    background-color: #EC744A;
    object-fit: contain;
    border-radius: 1rem;
}

.mentor-content-body-card-text {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0.5rem;
    
}

.mentor-content-body-card-text h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.mentor-content-body-card-text p {
    width: 70%;
    font-size: 0.8rem;
    font-weight: 500;
    color: #767676;
}

















/* ////////////////////////////////////////// */
/* team section  */
/* ////////////////////////////////////////// */

.team {
    width: 100%;
    height: 100%;
    /* background-color: #ff840a;    */
}

.team .container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

}

.team .container .team-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.team .container .team-content h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #3f3f3f;
}

.team .container .team-content h1 {
    width:80%;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.team .container .team-content p {
    width: 80%;
    font-size: 1rem;
    font-weight: 500;
    color: #767676;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.team .container .team-content button {
    background-color: #EC744A;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team .container .team-content button:hover {
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
    transition: all 0.3s ease;
}

.team .container .team-images {
    width: 50%;
    height: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.team .container .team-images .team-imgages-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .container .team-images .team-imgages-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.team .container .team-images .team-imgages-right {
    width: 50%;
    height: 100%;
    padding: 0.5rem 0;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team .container .team-images .team-imgages-right img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 1rem;
}

/* ////////////////////////////////////////// */
/* quote section  */
/* ////////////////////////////////////////// */

.quote {
    width: 100%;
    height: 50vh;
    background-image: url(./assets/mentor-bg.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote .container .quote-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote .container .quote-content i {
    font-size: 4rem;
    color: white;
}

#quote-left {
    display: flex;
    align-items: start;
    justify-content: start;
    inline-size: 75%;
}

#quote-right {
    display: flex;
    align-items: end;
    justify-content: end;
    /* padding-right: 4rem; */
    inline-size: 75%;
}
.quote .container .quote-content h3 {
    width: 75%;
    font-size: 2rem;
    font-weight: bolder;
    text-align: center;
    color: white;
}

/* ////////////////////////////////////////// */
/* testimonial section  */
/* ////////////////////////////////////////// */

.testimonial {
    width: 100%;
    height: 100%;
}

.testimonial .container {
    width: 100%;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
}

.testimonial .container .testimonial-content {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.testimonial .container .testimonial-content h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #3f3f3f;
}

.testimonial .container .testimonial-content h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.testimonial .container .testimonial-cards {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    
}

.testimonial .container .testimonial-cards .testimonial-card {
    width: 40%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    border-radius: 1rem;
    padding: 2rem;
    /* gap: 1rem; */
}

.testimonial .container .testimonial-cards .testimonial-card .testimonial-card-img {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .container .testimonial-cards .testimonial-card .testimonial-card-img img {
    width: 55%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .container .testimonial-cards .testimonial-card .testimonial-card-text {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonial .container .testimonial-cards .testimonial-card .testimonial-card-text p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    color: #363636;
}

.testimonial .container .testimonial-cards .testimonial-card .testimonial-card-text h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
}

#left-testimonial-card {
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
    border: none;
}

#left-testimonial-card .testimonial-card-text p {
    color: white;
}

#left-testimonial-card .testimonial-card-text h3 {
    color: white;
}


/* ////////////////////////////////////////// */
/* newsletter section  */
/* ////////////////////////////////////////// */

.newsletter {
    width: 100%;
    height: 50vh;
}

.newsletter .container {
    width: 100%;
    height: 100%;
    background-image: url(./assets/newsletter-bg.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter .container h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

.newsletter .container p {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.newsletter .container .newsletter-form {
    width: 70%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    /* gap: 1rem; */
    border-radius: 0.5rem;
    /* padding: 0.2rem; */
    border: 0.1px solid #d6d6d6;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.newsletter .container .newsletter-form input {
    border: none;
    height: 100%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    flex: 3;
    outline: none;
    background-color: transparent;
    color: white;
    /* background-color: antiquewhite; */
    /* border-radius: 0.5rem; */

}

.newsletter .container .newsletter-form input::placeholder {
    color: #ffffffa2;
}


.newsletter .container .newsletter-form button {
    background-color: #EC744A;
    height: 100%;
    outline: none;
    border: none;
    flex: 1;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0rem 1rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.newsletter .container .newsletter-form button:hover {
    background-image: linear-gradient(to right, #007D6E, #5EB47C);
    transition: all 0.3s ease;
}


/* ////////////////////////////////////////// */
/* footer section  */
/* ////////////////////////////////////////// */

.footer {
    width: 100%;
    height: 80%;
}

.footer .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .container .footer-upper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .container .footer-upper .footer-left {
    width: 120%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .container .footer-upper .footer-left .logo {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer .container .footer-upper .footer-left .logo img {
    width: 30%;
    height: 100%;
    object-fit: contain;
}

.footer .container .footer-upper .footer-left .logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.footer .container .footer-upper .footer-left p {
    font-size: 0.8rem;
    font-weight: 500;
    color: #363636;
}

.footer .container .footer-upper .services {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.footer .container .footer-upper .services h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.footer .container .footer-upper .services ul {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.5rem;
}

.footer .container .footer-upper .services ul li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #363636;
    list-style: none;
}

.footer .container .footer-upper .services ul li:hover {
    color: #EC744A;
}

.footer .container .footer-upper .contact {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.footer .container .footer-upper .contact h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.footer .container .footer-upper .contact ul {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.5rem;
}

.footer .container .footer-upper .contact ul li {
    font-size: 1.2rem;
    font-weight: 500;
    color: #363636;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer .container .footer-upper .contact ul li img {
    width: 0.9rem;
    height: 0.9rem;
    object-fit: cover;
    border-radius: 50%;
}

.footer .container .footer-upper .contact ul li p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #363636;
}

.footer .container .footer-upper .links {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.footer .container .footer-upper .links h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.footer .container .footer-upper .links ul {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.footer .container .footer-upper .links ul li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #363636;
    list-style: none;
}

.footer .container .footer-upper .links ul li:hover {
    color: #EC744A;
}

.footer .container .footer-upper .map {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.footer .container .footer-upper .map h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.footer .container .footer-upper .map .map-image {
    width: 100%;
    height: 50%;
    border-radius: 1rem;
}

.footer .container .footer-upper .map .map-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.footer .container .footer-line {
    width: 80%;
    height: 2px;
    background-color: #363636;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .container .footer-lower {
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.footer .container .footer-lower .lower-social {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.footer .container .footer-lower .lower-social i {
    object-fit: cover;
    border-radius: 1rem;
}

.footer .container .footer-lower .lower-copyright {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .container .footer-lower .lower-copyright p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #363636;
}



/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* Responsive Design */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */


@media screen and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    /* Navigation */
    .menu ul {
        gap: 1rem;
    }

    /* Hero Section */
    .hero-section .container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-section .container .hero-content,
    .hero-section .container .hero-images {
        width: 100%;
    }

    .hero-section .container .hero-content .city-input {
        width: 100%;
    }

    /* Work Achievement */
    .work-achievement .container {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .work-achievement .container .work-achievement-box {
        width: 45%;
    }

    /* Services */
    .services .container .services-content .service-content-card {
        min-width: calc(33.33% - 1rem);
    }

    /* Mentor Section */
    .mentor .container {
        flex-direction: column;
        gap: 2rem;
    }

    .mentor .container .mentor-images,
    .mentor .container .mentor-content {
        width: 100%;
    }

    /* Team Section */
    .team .container {
        flex-direction: column;
        gap: 2rem;
    }

    /* Newsletter */
    .newsletter .container .newsletter-form {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    /* Navigation */
    nav .container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        gap: 1rem;
    }

    .menu ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Services */
    .services .container .services-content .service-content-card {
        min-width: calc(50% - 1rem);
    }

    /* Team Images */
    .team .container .team-images {
        flex-direction: column;
        gap: 1rem;
    }

    .team .container .team-images .team-imgages-left,
    .team .container .team-images .team-imgages-right {
        width: 100%;
    }

    /* Footer */
    .footer .container .footer-upper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer .container .footer-upper > div {
        width: 100%;
        align-items: center;
    }

    .footer .container .footer-lower .lower-social {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero-section .container .hero-content h1 {
        font-size: 2rem;
    }

    /* Work Achievement */
    .work-achievement .container .work-achievement-box {
        width: 100%;
    }

    /* Services */
    .services .container .services-content .service-content-card {
        min-width: 100%;
    }

    /* Newsletter */
    .newsletter .container .newsletter-form {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .newsletter .container .newsletter-form input,
    .newsletter .container .newsletter-form button {
        width: 100%;
        border-radius: 0.5rem;
    }

    /* Footer */
    .footer .container .footer-lower {
        flex-direction: column;
        gap: 1rem;
    }

    .footer .container .footer-lower .lower-social {
        width: 80%;
    }
}





























































