/* Services Hero */
.services-hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #f6f6f6;
    overflow: hidden;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.services-hero h1{
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #1f4374;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .5px;
}

/* Remove the underline */
.services-hero h1::after{
    display: none;
}

/* Decorative circles */
.services-hero::before,
.services-hero::after{
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(0,0,0,.04);
}

.services-hero::before{
    top: -85px;
    left: -85px;
}

.services-hero::after{
    bottom: -85px;
    right: -85px;
}

@media(max-width:768px){
    .services-hero{
        height: 80px;
    }

    .services-hero h1{
        font-size: 38px;
    }
}

.whatsapp_main1 {
  position: fixed;
  right: 25px;   /* 👈 moved to right side */
  bottom: 90px;
  z-index: 9999;
}

.whatsapp_img1 {
  width: 55px;
  height: 55px;
  cursor: pointer;
  transition: 0.3s ease;
}

.whatsapp_img1:hover {
  transform: scale(1.1);
}

/*==========================
    IMPACT SECTION
===========================*/

.impact-section{
    padding:80px 0;
    background:#0b1b2b;
}

.impact-title{
    color:#fff;
    margin-bottom:5px;
}

.impact-section .heading-line{
    margin:0 auto 60px;
}

/* Row */

.impact-flow{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Item */

.impact-item{
    flex:1;
    text-align:center;
}

/* Number */

.impact-item h2{
    margin:0;
    font-size:68px;
    font-weight:700;
    color:#ffffff;
    line-height:1;
    transition:.35s;
}

/* Label */

.impact-item p{
    margin-top:15px;
    margin-bottom:0;
    font-size:15px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,.75);
}

/* Divider */

.divider{
    width:1px;
    height:75px;
    background:rgba(255,255,255,.15);
}

/* Hover */

.impact-item:hover h2{
    color:#caa256;
    transform:translateY(-5px);
}

.impact-item:hover p{
    color:#ffffff;
}

/*==========================
      Responsive
===========================*/

@media(max-width:991px){

    .impact-flow{
        flex-wrap:wrap;
    }

    .impact-item{
        width:50%;
        flex:none;
        margin-bottom:40px;
    }

    .divider{
        display:none;
    }

}

@media(max-width:767px){

    .impact-section{
        padding:60px 0;
    }

    .impact-flow{
        flex-direction:column;
        gap:35px;
    }

    .impact-item{
        width:100%;
        margin:0;
    }

    .impact-item h2{
        font-size:52px;
    }

    .impact-item p{
        font-size:13px;
        letter-spacing:1.5px;
    }

}

.team-section {
  padding: 70px 20px;
  background: #f3f4f6;
}

.team-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111827;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.team-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.team-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  border-radius: 50%;
   overflow:hidden;  
  border: 5px solid #e5e7eb;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.team-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111827;
}

.team-card p {
  font-size: 14px;
  color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img {
    width: 110px;
    height: 110px;
  }
}

/* Header */
.header-navigation{
    width:100%;
    position:relative;
    background:#fff;
    z-index:999;
    transition:all .3s ease;
    box-shadow:0 1px 8px rgba(0,0,0,.08);
}

/* Fixed on scroll */
.header-navigation.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.12);
    animation:fadeInDown .35s ease;
}

/* Prevent content from hiding behind fixed header */


@keyframes fadeInDown{
    from{
        opacity:0;
        transform:translateY(-100%);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tabs */
.service-content{
    display:none;
    padding:35px;
    background:#fff;
    border:1px solid #ececec;
    border-top:none;
}

.service-content>p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.service-item{
    padding:18px 0;
    border-bottom:1px solid #efefef;
}

.service-item:last-child{
    border-bottom:none;
}

.service-item h5{
    font-size:20px;
    color:#444;
    font-weight:600;
    margin-bottom:8px;
}

.service-item p{
    font-size:15px;
    color:#777;
    line-height:1.8;
    margin:0;
}

.service-item:hover h5{
    color:#d4a24d;
    transition:.3s;
}

/* Tabs */

/* ===========================
   FAQ Accordion
=========================== */

.faq-wrapper{
    width:80%;
    max-width:1100px;
    margin:60px auto;
}

.acc{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.acc-head{
    position:relative;
    padding:20px 70px 20px 25px;
    cursor:pointer;
    transition:.3s;
}

.acc-head p{
    margin:0;
    font-size:20px;
    font-weight:600;
    color:#1b1b1b;
}

.acc-head.active{
    background:#1A2E47
}

.acc-head.active p{
    color:#fff;
}

/* Plus/Minus Icon */

.acc-icon{
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border-radius:50%;
    background:#eef4ff;
}

.acc-head.active .acc-icon{
    background:rgba(255,255,255,.2);
}

.acc-icon::before,
.acc-icon::after{
    content:"";
    position:absolute;
    background:#0d6efd;
    transition:.3s;
}

.acc-icon::before{
    width:16px;
    height:2px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.acc-icon::after{
    width:2px;
    height:16px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.acc-head.active .acc-icon::before{
    background:#fff;
}

.acc-head.active .acc-icon::after{
    opacity:0;
}

/* Content */

.acc-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#f7f7f7;
    padding:0 25px;
}

.acc-content-inner{
    padding:25px 0;
}

.acc-content p{
    color:#1a1a1a;
    line-height:1.8;
    margin-bottom:20px;
    margin-top:30px;
    font-weight:400;
}

.service-list{
    padding-left:20px;
    margin:0;
}

.service-list li{
    margin-bottom:16px;
    line-height:1.8;
    color:#1a1a1a;
    font-size: 18px;
}

.service-list li strong{
    color:#222;
}
.services-hero,
.faq-wrapper,
.acc-container{
    z-index: 1;
}
@media(max-width:768px){

    .faq-wrapper{
        width:85%;
    }

    .acc-head{
        padding:18px 60px 18px 18px;
    }

    .acc-head p{
        font-size:17px;
    }

    .acc-content{
        padding:0 18px;
    }

    .acc-content-inner{
        padding:18px 0;
    }

    .acc-icon{
        right:18px;
        width:30px;
        height:30px;
    }
}