/* =========================
   HEADER STYLES
========================= */
.navbar {
    background-color: #fdf8f1;
    height: 95px;
    padding: 0;
}

.navbar-brand img {
    height: 60px;
}

/* NAV LINKS */
.nav-link {
    position: relative;
    color: #000;
    font-weight: 500;
    margin: 0 14px;
    padding: 8px 0;
}

/* UNDERLINE (DESKTOP HOVER) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* REMOVE TOGGLER BORDER */
.navbar-toggler {
    border: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* SOCIAL ICONS */
.social-icons a {
    color: #000;
    font-size: 18px;
    margin-left: 14px;
}

/* =========================
   MOBILE VIEW FIX
========================= */
@media (max-width: 991px) {

    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .navbar-collapse {
        background: #fdf8f1;
        padding: 20px 0;
    }

    .nav-link {
        margin: 12px 0;
        font-size: 18px;
    }

    /* MOBILE UNDERLINE (ACTIVE / TAP) */
    .nav-link::after {
        bottom: -4px;
    }

    .nav-link:hover::after {
        width: 0;   /* disable hover */
    }

    .nav-link.active::after {
        width: 100%;
    }

    .social-icons {
        margin-top: 20px;
    }
}
/***************/

/*About */

/**********************page 2*************/

.section-area {
  padding: 80px 0;
}

.title {
 margin-left: 10%;
    font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-left: 30%;
  margin-bottom: 20px;
}

.desc {
   margin-left: 30%;
    font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 460px;
}

/* IMAGE STYLING */
.img-big {
  width: 90%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.img-small {
  position: absolute;
  width: 50%;
  right: -10%;
  bottom: 3%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media(max-width: 991px){
  .img-big {
    width: 100%;
  }
  .img-small {
    position: relative;
    width: 80%;
    right: 0;
    bottom: -10px;
    margin-top: 20px;
  }
  .title {
    font-size: 32px;
  }
}
/*page 3 */
.testimonial-section {
  padding: 80px 0;
}

.testi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-box {
  background: #d28b14; /* Same mustard/orange color */
  color: #fff;
  padding: 90px 60px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testi-text {
  font-size: 18px;
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 25px auto;
}

.avatar img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
}

.name {
  font-size: 16px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 991px){
  .testi-box {
    padding: 50px 30px;
    text-align: center;
  }
  .testi-text {
    font-size: 16px;
  }
}
/*****************/

/* Services Page */

/* SERVICES SECTION */
.services-section {
  padding: 80px 15px;
}

.services-title {
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

/* HEADINGS */
.service-heading {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* BULLET POINTS */
.service-list {
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5;
}

/* IMAGES */
.service-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
  .service-heading {
    font-size: 22px;
  }
}
/**************/


/*footer */
/* =========================
   FOOTER STYLES
========================= */
.footer {
    background: linear-gradient(135deg, #1b2a41, #172337);
    color: #fff;
    padding: 70px 0 30px;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CONTACT LIST */
.footer-contact {
    padding-left: 0;
    margin: 0;
}

.footer-contact li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #d1d5db;
    font-size: 15px;
}

.footer-contact i {
    font-size: 18px;
    margin-top: 2px;
}

/* SUPPORT FORM */
.footer input {
    border-radius: 14px;
    padding: 12px 16px;
    border: none;
    margin-top: 10px;
}

.footer button {
    background: #f2b233;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: #000;
    font-weight: 500;
    margin-top: 18px;
}

/* DIVIDER */
.footer-divider {
    border-top: 2px solid rgba(255,255,255,0.6);
    margin: 45px 0 25px;
}

/* SOCIAL ICONS */
.footer-social a {
    color: #fff;
    font-size: 20px;
    margin-right: 18px;
    text-decoration: none;
}

/* BOTTOM TEXT */
.footer-bottom {
    font-size: 14px;
    color: #d1d5db;
}

/* KEEP LEFT ALIGN EVEN ON MOBILE */
@media (max-width: 768px) {
    .footer {
        text-align: start;
    }
    .footer-bottom {
    text-align: center;
}
}
/*******************/

/**************/
/******** PAGE 1 ********/

.about-img {
  width: 90%;
  height: 80%;
  object-fit: cover;
  border-radius: 12px;
}

.about-btn {
  background: #000;
  color: #fff;
  padding: 12px 36px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: .3s;
  margin: 20px auto 0 auto;
  width: 35%;
}

.about-btn:hover {
  background: #333;
}

.section-spacing {
  padding: 70px 0;
}

/******** PAGE 2 ********/

.section-area {
  padding: 5px 0;
}

.title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  margin-left: 30%;
}

.desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 460px;
  margin-left: 30%;
}

.img-big {
  width: 90%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.img-small {
  position: absolute;
  width: 50%;
  right: -10%;
  bottom: 3%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/******** PAGE 3 ********/

.testimonial-section {
  padding: 80px 0;
}

.testi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-box {
  background: #d28b14;
  color: #fff;
  padding: 90px 60px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testi-text {
  font-size: 18px;
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 25px auto;
}

.avatar img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
}

.name {
  font-size: 16px;
  font-weight: 500;
}

/******** RESPONSIVE FIX ********/

@media(max-width: 991px){

  .section-spacing {
    padding: 50px 0;
  }

  /* page 1 */
  .about-img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .about-btn {
    margin: 10px auto 0 auto;
    display: block;
  }

  h1.text-mobile-center {
    text-align: center;
  }

  /* page 2 */
  .title, .desc {
    margin-left: 0 !important;
    text-align: center;
    max-width: 100%;
  }

  .img-big {
    width: 100%;
    margin: 0 auto;
  }

  .img-small {
    width: 70%;
    right: 50%;
    bottom: -10px;
    transform: translateX(50%);
    position: absolute;
  }

  .section-area {
    padding-bottom: 0px;
  }

  /* page 3 */
  .testi-box {
    padding: 50px 20px;
    text-align: center;
  }

  .testi-text {
    font-size: 16px;
  }
}
/***************/


/*****************/


        .carousel-item {
            height: 100vh;
            position: relative;
            min-height: 500px;
        }

        .carousel-item video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(122, 119, 119, 0.4);
            z-index: 1;
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            width: 90%;
            max-width: 800px;
            padding: 0 20px;
        }

        .carousel-caption h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.3;
        }

        .carousel-caption p {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            font-weight: 400;
        }

        .start-btn {
            background: linear-gradient(135deg, #cfa344 0%, #be8416 100%);
            color: white;
            border: none;
            padding: 14px 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
            text-transform: capitalize;
        }

        .start-btn:hover {
            background: linear-gradient(135deg, #f8f8f8 0%, #e2dbd6 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5);
            color: #000;
        }

        .rating-section {
            margin-top: 1.8rem;
        }

        .stars {
            color: #f7f7f7;
            font-size: 1.5rem;
            margin-bottom: 0.6rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            letter-spacing: 0 rem;
        }

        .rating-text {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        

        /* Responsive Design */
        @media (min-width: 1200px) {
            .carousel-item {
                height: 100vh;
            }

            .carousel-caption h1 {
                font-size: 3.2rem;
            }

            .carousel-caption p {
                font-size: 1.3rem;
            }

            .start-btn {
                padding: 16px 60px;
                font-size: 1.2rem;
            }

            .stars {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 992px) {
            .carousel-item {
                height: 85vh;
                min-height: 600px;
            }

            .carousel-caption h1 {
                font-size: 2.2rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }

            .start-btn {
                padding: 13px 45px;
                font-size: 1.05rem;
            }

            .stars {
                font-size: 1.4rem;
            }

            .rating-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 75vh;
                min-height: 550px;
            }

            .carousel-caption h1 {
                font-size: 1.9rem;
                margin-bottom: 0.8rem;
            }

            .carousel-caption p {
                font-size: 0.95rem;
                margin-bottom: 1.6rem;
            }

            .start-btn {
                padding: 12px 40px;
                font-size: 1rem;
            }

            .stars {
                font-size: 1.3rem;
                letter-spacing: 0.2rem;
            }

            .rating-text {
                font-size: 0.85rem;
                letter-spacing: 1.5px;
            }

            .rating-section {
                margin-top: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .carousel-item {
                height: 65vh;
                min-height: 500px;
            }

            .carousel-caption {
                width: 95%;
                padding: 0 15px;
            }

            .carousel-caption h1 {
                font-size: 1.6rem;
                margin-bottom: 0.7rem;
            }

            .carousel-caption p {
                font-size: 0.85rem;
                margin-bottom: 1.4rem;
            }

            .start-btn {
                padding: 11px 35px;
                font-size: 0.95rem;
            }

            .stars {
                font-size: 1.2rem;
                letter-spacing: 0.15rem;
            }

            .rating-text {
                font-size: 0.75rem;
                letter-spacing: 1.2px;
            }

            .rating-section {
                margin-top: 1.3rem;
            }
        }

        @media (max-width: 400px) {
            .carousel-item {
                height: 60vh;
                min-height: 450px;
            }

            .carousel-caption h1 {
                font-size: 1.4rem;
            }

            .carousel-caption p {
                font-size: 0.8rem;
            }

            .start-btn {
                padding: 10px 30px;
                font-size: 0.9rem;
            }

            .stars {
                font-size: 1.1rem;
            }

            .rating-text {
                font-size: 0.7rem;
            }
        }

        /* Placeholder for video - you can replace with actual video */
        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #98a0c2 0%, #764ba2 100%);
            position: absolute;
            top: 0;
            left: 0;
        }

        .slide-1 {
            background: linear-gradient(135deg, rgba(162, 164, 173, 0.8) 0%, rgba(166, 161, 172, 0.8) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23667eea" width="1920" height="1080"/></svg>');
            background-size: cover;
            background-position: center;
        }

       /* carousel finished  */

       
/* Section spacing */
.about-section{
    padding:100px 0;
}

/* Title */
.about-title{
    font-size:48px;
    font-weight:700;
    color:#000;
    margin-bottom:30px;
}

/* Paragraph text */
.about-text{
    font-size:19px;
    line-height:1.9;
    color:#5f6f82;
    text-align:justify;
    margin-bottom:20px;
}

/* Button */
.learn-btn{
    background:#f2a116;
    color:#fff;
    padding:14px 50px;
    border-radius:40px;
    border:none;
    font-size:18px;
    font-weight:600;
    transition:0.3s ease;
}
.learn-btn:hover{
    background:#d98f12;
}

/* Image */
.about-img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

/* Caption */
.caption{
    text-align:center;
    font-size:18px;
    font-weight:600;
    margin-top:18px;
}

/* Responsive */
@media(max-width:768px){
    .about-title{
        font-size:36px;
        text-align:center;
    }
    .about-text{
        font-size:17px;
    }
    .learn-btn{
        display:block;
        margin:0 auto;
    }
}
/* about finished  */


        .services-section {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: -60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            font-weight: 400;
        }

        .carousel-wrapper {
            position: relative;
            padding: 0 80px;
        }

        .cards-viewport {
            overflow: hidden;
            padding: 40px 0;
        }

        .cards-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .service-card {
            flex: 0 0 calc(33.333% - 20px);
            margin-right: 30px;
        }

        .service-card:last-child {
            margin-right: 0;
        }

        .card-inner {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-inner:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image-section {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .card-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card-inner:hover .card-image-section img {
            transform: scale(1.05);
        }

        .card-body-section {
            padding: 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .card-service-description {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .card-more-btn {
            background: transparent;
            color: #f39c12;
            border: 2px solid #f39c12;
            padding: 8px 30px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
                width: 139px;
    margin-left: 75px;
        }

        .card-more-btn:hover {
            background: #f39c12;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #f39c12;
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
            z-index: 10;
        }

        .nav-arrow:hover {
            background: #e67e22;
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
            transform: translateY(-50%) scale(1.05);
        }

        .nav-arrow.left {
            left: 0;
        }

        .nav-arrow.right {
            right: 0;
        }

        .nav-arrow i {
            font-size: 20px;
            color: white;
        }

        /* Placeholder images with gradients */
        .img-placeholder-1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .img-placeholder-2 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .img-placeholder-3 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .img-placeholder-4 {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .img-placeholder-5 {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .img-placeholder-6 {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .img-placeholder-7 {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .img-placeholder-8 {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
        }

        .img-placeholder-9 {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .placeholder-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .service-card {
                flex: 0 0 calc(33.333% - 20px);
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .service-card {
                flex: 0 0 calc(50% - 15px);
            }

            .carousel-wrapper {
                padding: 0 70px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .card-image-section {
                height: 220px;
            }

            .nav-arrow {
                width: 50px;
                height: 50px;
            }

            .nav-arrow i {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .service-card {
                flex: 0 0 calc(100% - 10px);
            }

            

            .carousel-wrapper {
                padding: 0 60px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .card-image-section {
                height: 200px;
            }

            .card-body-section {
                padding: 25px;
            }

            .card-service-title {
                font-size: 1.3rem;
            }

            .card-service-description {
                font-size: 0.95rem;
            }

            .card-more-btn {
                padding: 8px 28px;
                font-size: 0.85rem;
            }

            .nav-arrow {
                width: 45px;
                height: 45px;
            }

            .nav-arrow i {
                font-size: 16px;
            }

            .placeholder-icon {
                font-size: 60px;
            }
        }

        @media (max-width: 576px) {
            .carousel-wrapper {
                padding: 0 55px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }

            .card-image-section {
                height: 180px;
            }

            .card-body-section {
                padding: 20px;
            }

            .card-service-title {
                font-size: 1.2rem;
            }

            .card-service-description {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .card-more-btn {
                padding: 7px 25px;
                font-size: 0.85rem;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
            }

            .nav-arrow i {
                font-size: 14px;
            }

            .placeholder-icon {
                font-size: 50px;
            }

            #bn{
            margin-left: 49px;
        margin-top: -11px;
            }
        }

        /* service finished */


         .testimonial-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            background: #1a1a1a;
        }

        /* Background Image with Overlay */
        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.4;
            z-index: 0;
        }

        .container {
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: #f5f3ed;
              border-radius: 1px 246px 0px 227px;
            padding: 60px 50px 50px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
        }

        .stars1 {
            margin-bottom: 30px;
        }

        .stars1 i {
            color: #f5a623;
            font-size: 22px;
            margin: 0 3px;
        }

        .testimonial-text {
            color: #333;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .author-name {
            color: #000;
            font-size: 17px;
            font-weight: 600;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .testimonial-card {
                border-radius: 60px 60px 60px 0;
                padding: 50px 40px 40px;
            }

            .testimonial-text {
                font-size: 17px;
            }
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 60px 15px;
            }

            .testimonial-card {
                border-radius: 50px 50px 50px 0;
                padding: 40px 30px 35px;
                margin-bottom: 25px;
            }

            .testimonial-text {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .stars i {
                font-size: 20px;
            }

            .author-image {
                width: 55px;
                height: 55px;
            }

            .author-name {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .testimonial-card {
                border-radius: 40px 40px 40px 0;
                padding: 35px 25px 30px;
            }

            .testimonial-text {
                font-size: 15px;
                line-height: 1.6;
            }

            .stars i {
                font-size: 18px;
                margin: 0 2px;
            }

            .author-image {
                width: 50px;
                height: 50px;
            }
        }

        /* testimonal section finished */