
   *{
   margin:0;
   padding:0;
   box-sizing:border-box;
   }
   .author-card{
   width:100%;
   max-width:1290px;
   background:#dfe6dc;
   border-radius:18px;
   padding:40px 50px;
   display:flex;
   align-items:center;
   gap:40px;
   margin-bottom:40px;
   position: relative;   /* ADD THIS */
   overflow: hidden;
   }
   /* Quote Icon */
   .author-card .quote-icon{
   position:absolute;
   top:20px;
   right:25px;
   font-size:90px;
   color:#cfd8cb;
   z-index:0;
   line-height:1;
   }
   .author-image img{
   width:180px;
   height:180px;
   border-radius:10%;
   object-fit:cover;
   }
   .author-content h2{
   font-family:'Playfair Display', serif;
   font-size:48px;
   color:#16213b;
   margin-bottom:8px;
   }
   .author-content h4{
   font-size:20px;
   font-weight:400;
   color:#1f2b3d;
   margin-bottom:25px;
   }
   .author-content p{
   font-size:20px;
   line-height:1.8;
   color:#1f2b3d;
   max-width:941px;
   margin-bottom:25px;
   text-align: justify;
   }
   .social-icons{
   display:flex;
   gap:18px;
   }
   .social-icons a{
   width:55px;
   height:55px;
   background:#f3f3f3;
   border-radius:50%;
   display:flex;
   justify-content:center;
   align-items:center;
   text-decoration:none;
   color:#666;
   font-size:22px;
   transition:0.3s ease;
   }
   .social-icons a:hover{
   background:#16213b;
   color:#fff;
   }
   @media(max-width:768px){
   .author-card{
   flex-direction:column;
   text-align:center;
   }
   .author-content h2{
   font-size:36px;
   }
   .author-content p{
   font-size:18px;
   }
   .social-icons{
   justify-content:center;
   }
   }

   .services-section{
   position:relative;
   overflow:hidden;
   padding:80px 0;
   background:#dfe8f1;
   box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
   }
   /* Background Shape */
   .services-section::before{
   content:"";
   position:absolute;
   top:120px;
   right:-180px;
   width:700px;
   height:700px;
   background:#b8cee7;
   border-radius:50%;
   z-index:0;
   }
   .container{
   width:1200px;
   max-width:95%;
   margin:auto;
   position:relative;
   z-index:2;
   }
   .services-wrapper{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:40px;
   }
   /* Left Grid */
   .cards-grid{
   width:60%;
   display:grid;
   grid-template-columns:repeat(2, 1fr);
   gap:22px;
   position:relative;
   z-index:3;
   }
   .service-card{
   background:#fff;
   padding:45px 35px;
   text-align:center;
   box-shadow:0 10px 30px rgba(0,0,0,0.05);
   transition:0.3s ease;
   }
   .service-card:hover{
   transform:translateY(-8px);
   }
   .service-number{
   font-size:72px;
   font-weight:300;
   color:#111;
   margin-bottom:25px;
   line-height:1;
   }
   .service-text{
   font-size:18px;
   line-height:1.8;
   color:#111;
   margin-bottom:30px;
   }
   .service-btn{
   display:inline-block;
   text-decoration:none;
   color:#000;
   font-weight:700;
   font-size:18px;
   text-transform:uppercase;
   position:relative;
   padding-bottom:8px;
   letter-spacing:1px;
   }
   .service-btn::after{
   content:"";
   position:absolute;
   left:0;
   bottom:0;
   width:55px;
   height:2px;
   background:#3d73d8;
   }
   /* Right Image */
   .image-box1{
   width:40%;
   position:relative;
   z-index:2;
   }
   .image-box1 img{
   width:100%;
   height:802px;
   object-fit:cover;
   display:block;
   }
   /* Responsive */
   @media(max-width:992px){
   .services-wrapper{
   flex-direction:column;
   }
   .cards-grid,
   .image-box{
   width:100%;
   }
   .image-box1 img{
   height:500px;
   }
   }
   @media(max-width:768px){
   .cards-grid{
   grid-template-columns:1fr;
   }
   .service-card{
   padding:40px 25px;
   }
   .service-number{
   font-size:58px;
   }
   .service-text{
   font-size:16px;
   }
   }
   /* SECTION */
.mission-section{
    padding:80px 0;
}

.container{
    width:1200px;
    max-width:95%;
    margin:auto;
}

/* FLEX */
.mission-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* IMAGE SIDE */
.mission-image-area{
    position:relative;
    width:50%;
    min-height:500px;
}

/* Green Background Box */
.green-bg{
    position:absolute;
    top:0;
    left:0;
    width:370px;
    height:270px;
    background:#3a9e1e;
}

/* Main Image */
.mission-image{
    position:absolute;
    top:40px;
    left:40px;
    width:420px;
    height:330px;
    overflow:hidden;
}

.mission-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Name Card */
.profile-card{
    position:absolute;
    left:210px;
    bottom:60px;
    background:#9acd6b;
    padding:18px 35px;
    min-width:240px;
}

.profile-card h4{
    font-size:24px;
    color:#1b1b1b;
    margin-bottom:8px;
    font-weight:700;
}

.profile-card p{
    font-size:18px;
    color:#333;
}

/* CONTENT SIDE */
.mission-content{
    width:45%;
}

.quote-icon{
    font-size:170px;
    line-height:0.7;
    color:#3a9e1e;
    font-weight:bold;
    margin-bottom:10px;
}

.mission-title{
    font-size:58px;
    color:#202040;
    margin-bottom:25px;
    font-weight:800;
}

.mission-text{
    font-size:22px;
    line-height:1.9;
    color:#444;
    max-width:520px;
}

/* RESPONSIVE */
@media(max-width:992px){

    .mission-wrapper{
        flex-direction:column;
    }

    .mission-image-area,
    .mission-content{
        width:100%;
    }

    .mission-image-area{
        min-height:450px;
    }

    .mission-content{
        text-align:center;
    }

    .mission-text{
        max-width:100%;
    }
}

@media(max-width:768px){

    .green-bg{
        width:260px;
        height:220px;
    }

    .mission-image{
        width:300px;
        height:260px;
        left:20px;
    }

    .profile-card{
        left:100px;
        bottom:40px;
        padding:15px 20px;
    }

    .profile-card h4{
        font-size:20px;
    }

    .profile-card p{
        font-size:15px;
    }

    .mission-title{
        font-size:42px;
    }

    .quote-icon{
        font-size:120px;
    }

    .mission-text{
        font-size:18px;
    }
}