/* =============================
   HEADER BASE
============================= */
.top-img-thr img{
        width: 123px;
}
    .ta-header {
      width: 100%;
      background: #fff;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .ta-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
    }

    .ta-logo img {
    height: 62px;
    }

    /* =============================
   DESKTOP NAV
============================= */
    .ta-nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .ta-menu {
      list-style: none;
      display: flex;
          gap: 34px;    
      margin-top: 23px;
    }

    .ta-menu li {
      position: relative;
    }

    .ta-menu a {
      text-decoration: none;
      color: #1aa39c;
      font-weight: 500;
      transition: .3s;
           font-size: 17px;
    }

    .ta-menu a:hover {
      color: #117e77;
    }

    /* DESKTOP DROPDOWN BEAUTIFUL */
    .ta-submenu {
      position: absolute;
      top: 216%;
      left: 0;
      min-width: 240px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 15px 0;
      /* border-radius:12px; */
      /*box-shadow: 0 25px 50px rgba(0, 0, 0, .08);*/
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all .35s ease;
    }

    .ta-has-sub:hover>.ta-submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .ta-submenu li {
      padding: 2px 17px;
      list-style: none;
    }

    .ta-submenu li a {
      color: #777;
      font-size: 14px;
      transition: .3s;
    }

    .ta-submenu li a:hover {
      color: #1aa39c;
      padding-left: 5px;
    }

    .ta-submenu .ta-submenu {
      left: 100%;
      top: 0;
    }

    /* CTA */
    .ta-btn {
      background: linear-gradient(135deg, #1aa39c, #009cb9);
      color: #fff;
         padding: 8px 16px;
      text-decoration: none;
      /* border-radius:30px; */
      font-size: 19px;
    }
     .ta-btn:hover {
      color: #fff;
}

    /* =============================
   TOGGLE
============================= */
    .ta-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 999;
    }

    .ta-toggle span {
      width: 28px;
      height: 3px;
      background: #1aa39c;
      border-radius: 3px;
      transition: .4s;
    }

    /* ACTIVE ANIMATION */
    .ta-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .ta-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .ta-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* =============================
   MOBILE MENU
============================= */
    /* =============================
   MOBILE SIDEBAR - FINAL FIX
============================= */

.ta-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: 0.4s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.08);

  overflow-y: auto;          /* ðŸ”¥ SCROLL HERE */
  -webkit-overflow-scrolling: touch;
}

.ta-mobile-menu.active {
  right: 0;
}

/* TOP AREA */
.ta-mobile-top {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

/* REMOVE FLEX FROM LINKS */
.ta-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

    /* Smooth scrollbar */
    .ta-mobile-links::-webkit-scrollbar {
      width: 5px;
    }

    .ta-mobile-links::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 10px;
    }

    /* LINKS */
    .ta-mobile-links li {
      border-bottom: 1px solid #f1f1f1;
    }

    .ta-mobile-links a {
      display: block;
      padding: 14px 20px;
      text-decoration: none;
      color: #222;
      font-weight: 500;
      position: relative;
    }

    /* SUB MENU DEFAULT HIDDEN */
    .ta-mobile-links ul {
      list-style: none;
      padding-left: 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    /* OPEN STATE */
    .ta-mobile-has-sub.active>ul {
      max-height: 2000px;
    }

    /* ARROW */
    .ta-mobile-has-sub>a::after {
      content: "â–¸";
      position: absolute;
      right: 20px;
      transition: 0.3s;
    }

    .ta-mobile-has-sub.active>a::after {
      transform: rotate(90deg);
    }

    /* Disable body scroll when open */
    body.menu-open {
      overflow: hidden;
    }

    /* =============================
   RESPONSIVE
============================= */
    @media(max-width:992px) {

      .ta-nav,
      .ta-cta {
        display: none;
      }

      .ta-toggle {
        display: flex;
      }
    }
@media(max-width:992px){
  .your-social-class{
    display:none;
  }
}



    /* ============================= Footer============================ */
     .footer-area {
    background: linear-gradient(135deg, #1aa39c, #009cb9);
    padding: 80px 0 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 90px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 25px;
}

.footer-about p {
    max-width: 340px;
    line-height: 1.7;
    opacity: 0.95;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col p {
    margin-bottom: 8px;
    opacity: 0.9;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* ========================= */
/* Tablet (1024px and below) */
/* ========================= */
@media (max-width: 1024px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-about {
        grid-column: span 2;
        max-width: 100%;
    }

    .footer-about p {
        max-width: 100%;
    }
}

/* ========================= */
/* Small Tablet (768px) */
/* ========================= */
/* ========================= */
/* Mobile Responsive (Single Column) */
/* ========================= */
@media (max-width: 768px) {

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
        /* text-align: center; */
    }

    .footer-about,
    .footer-col {
        width: 100%;
    }

    .footer-about p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 5px;
    }
}
/* ========================= */
/* Mobile (480px) */
/* ========================= */
@media (max-width: 480px) {

    .footer-area {
        padding: 60px 0 25px;
    }

    .footer-logo {
        width: 130px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

/* ================================= Index page ============================= */
  .about-section {
                /* background: #ff; */
                padding: 90px 20px;
            }

            .hero-wrap {
                max-width: 1200px;
                margin: auto;
                display: grid;
                grid-template-columns: 1.1fr 1fr;
                align-items: center;
                gap: 70px;
            }

            /* LEFT CONTENT */
            .about-content h2 {
                font-size: 33px;
                font-weight: 300;
                margin-bottom: 52px;
                font-family: "Manrope", sans-serif;
                color: #111;
            }

            .about-content h2 span {
                color: #27c0ab;
            }

            .about-content p {
                font-size: 16px;
                line-height: 1.8;
                color: #444;
                margin-bottom: 18px;
                text-align: justify;
            }

            .about-line {
                position: relative;
                display: inline-block;
                margin-bottom: 25px;
            }

            .about-line::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -10px;
                width: 226px;
                height: 2px;
                background: linear-gradient(90deg, #27c0ab, #3b82f6);
                border-radius: 5px;
            }

            /* BUTTONS */


            .btn-outline {
                padding: 13px 32px;
                border: 2px solid #27c0ab;
                color: #27c0ab;
                /* border-radius: 50px; */
                text-decoration: none;
                font-weight: 300;
                transition: 0.3s ease;
                font-size: 23px;
            }

            .btn-outline:hover {
                background: #27c0ab;
                color: #fff;
            }

            .btn-solid {
                padding: 14px 67px;
                /* border-radius: 6px; */
                text-decoration: none;
                font-weight: 300;
                font-size: 23px;
                color: #fff;
                display: inline-block;
                background: linear-gradient(135deg, #1aa39c, #009cb9);
                transition: all 0.4s ease;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            }

            .btn-solid:hover {

                opacity: 0.85;
                color: #fff;

            }

            /* IMAGE SIDE */
            .about-image {
                position: relative;
                height: 448px;
                /* border-radius: 25px; */
                /* overflow: hidden; */
            }

            .about-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* BEAUTIFUL TOP CURVE CUT */
            .circle-cut {
                position: absolute;
                top: -80px;
                left: -80px;
                width: 200px;
                height: 200px;
                background: #fff;
                /* background: #fff; */
                border-radius: 50%;
                z-index: 2;
            }



            .about-buttons {
                display: flex;
                gap: 20px;
                margin-top: 79px;
                flex-wrap: wrap;
                /* important */
            }

            /* Common Button Style */
            .about-buttons a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 52px;
                /* equal height */
                padding: 14px 32px;
                font-size: 18px;
                font-weight: 500;
                text-decoration: none;
                transition: all 0.3s ease;
                white-space: nowrap;
            }

            /* Outline Button */


            .btn-outline:hover {
                background: #27c0ab;
                color: #fff;
            }

            /* Solid Button */
            .btn-solid {
                color: #fff;
                background: linear-gradient(135deg, #1aa39c, #009cb9);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            }

            .btn-solid:hover {
                opacity: 0.9;
                color: #fff;
            }

           

            /* =========================
   MOBILE (576px)
========================= */
            @media (max-width: 576px) {

                .about-buttons {
                    flex-direction: column;
                    align-items: center;
                    gap: 15px;
                }

                .about-buttons a {
                    width: 100%;
                    /* full width */
                    max-width: 280px;
                    /* premium look */
                    font-size: 15px;
                    padding: 12px 20px;
                }
            }

            /* Tablet */
            @media (max-width: 991px) {

                .hero-wrap {
                    grid-template-columns: 1fr;
                    gap: 50px;
                }

                .about-content {
                    text-align: center;
                }

                .about-content p {
                    text-align: justify;
                }

                .about-buttons {
                    justify-content: center;
                    flex-wrap: wrap;
                }

                .about-image {
                    height: 400px;
                }

                .circle-cut {
                    display: none;
                }


                .about-line::after {
                    left: 50%;
                    transform: translateX(-50%);
                }

                .about-content h2 span {
                    text-align: center;
                    width: 100%;
                }

                .about-line {
                    display: inline-block;
                    margin-left: auto;
                    margin-right: auto;
                }


            }

            /* Mobile */
            @media (max-width: 576px) {

                .about-section {
                    padding: 60px 15px;
                }

                .about-content h2 {
                    font-size: 32px;
                }

                .about-content p {
                    font-size: 16px;
                }

                .about-image {
                    height: 320px;
                }

                .about-content h2 span {
                    text-align: center;
                    width: 100%;
                }

                .about-line {
                    display: inline-block;
                    margin-left: auto;
                    margin-right: auto;
                }

            }

               /* ===================================
   BRANDING CTA SECTION
=================================== */

            .cta-branding-section {
                position: relative;
                background: url('../img/Thrive/bg-contact.png') center center/cover no-repeat;
                height: 500px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 20px;
                overflow: hidden;
            }



            /* Content */
            .cta-content {
                position: relative;
                z-index: 2;
                max-width: 900px;
                color: #fff;
            }

            .cta-content h2 {
                font-size: 64px;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 40px;
                font-family: "Manrope", sans-serif;
                color: #fff;
            }

            /* Button */
            .cta-btn {
                display: inline-block;
                padding: 14px 45px;
                border: 2px solid #fff;
                color: #fff;
                text-decoration: none;
                font-weight: 500;
                /* border-radius: 4px; */
                transition: all 0.4s ease;
            }

            .cta-btn:hover {
                background: #fff;
                color: #11999e;
            }

            /* Tablet */
            @media (max-width: 991px) {
                .cta-branding-section {
                    height: 420px;
                }

                .cta-content h2 {
                    font-size: 42px;
                }
            }

            /* Mobile */
            @media (max-width: 576px) {
                .cta-branding-section {
                    height: auto;
                    padding: 80px 20px;
                }

                .cta-content h2 {
                    font-size: 28px;
                    line-height: 1.3;
                }

                .cta-btn {
                    padding: 12px 35px;
                    font-size: 14px;
                }
            }

            /* vision to reallity  */
              .workflow-section {
                padding: 80px 0;
                background: #fff;
            }

            .workflow-wrapper {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 60px;
            }

            /* Left Content */
            .workflow-content {
                flex: 1;
            }

            .workflow-content .sub-title {
                color: #666;
                display: block;
                margin-bottom: 10px;
            }

            .workflow-content h2 {
                font-size: 33px;
                font-weight: 300;
                line-height: 1.3;
                margin-bottom: 20px;
                color: #777;

            }

            .workflow-content h2 span {
                color: #19b394;
            }

            .workflow-content p {
                font-size: 16px;
                color: #555;
                margin-bottom: 25px;
            }







            /* Workflow Accordion Style */
            .workflow-accordion {
                margin-top: 20px;
            }

            .workflow-item {
                border-bottom: 1px solid #eee;
                padding: 15px 0;
                cursor: pointer;
            }

            .workflow-question {
                font-size: 18px;
                font-weight: 500;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: 0.3s ease;
            }

            .workflow-question span {
                font-size: 20px;
                color: #19b394;
                transition: 0.3s ease;
            }

            .workflow-answer {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, opacity 0.4s ease;
                opacity: 0;
            }

            .workflow-answer p {
                font-size: 16px;
                color: #555;
                margin-top: 10px;
            }

            /* Hover Effect */
            .workflow-item:hover .workflow-answer {
                max-height: 200px;
                opacity: 1;
            }

            .workflow-item:hover .workflow-question span {
                transform: rotate(45deg);
            }

            /* Right Image */
            .workflow-image {
                flex: 1;
                text-align: center;
            }

            .workflow-image img {
                max-width: 100%;
                height: auto;
                border-radius: 20px;
            }

            /* Responsive */
            @media (max-width: 992px) {
                .workflow-wrapper {
                    flex-direction: column;
                    text-align: left;
                }

                .workflow-content h2 {
                    font-size: 32px;
                }

                .workflow-list li {
                    padding-left: 0;
                }

                .workflow-list li::before {
                    position: static;
                    margin-right: 8px;
                }
            }

            @media (max-width: 576px) {
                .workflow-section {
                    padding: 50px 0;
                }

                .workflow-content h2 {
                    font-size: 26px;
                }
            }


              /* =========================
CONTACT SECTION
========================= */

            .contact-wrapper {
                display: flex;
                flex-wrap: wrap;
            }

            /* LEFT SIDE */
            .contact-left {
                flex: 1;
                min-height: 650px;
                background: url('../img/Thrive/contact-bg.png') center/cover no-repeat;
                position: relative;
                display: flex;
                align-items: center;
            }

            /* Gradient Overlay */
            /* .contact-left::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg,
                        rgba(0, 156, 185, 0.85),
                        rgba(26, 163, 156, 0.85));
            } */

            .contact-overlay {
                position: relative;
                z-index: 2;
                color: #fff;
                padding: 80px;
                max-width: 600px;
            }

            /* TEXT */
            /* .sub-title {
                letter-spacing: 2px;
                font-size: 14px;
                margin-bottom: 20px;
                opacity: 0.9;
            } */

            .contact-left h2 {
                font-size: 33px;
                font-weight: 300;
                line-height: 1.2;
                margin-bottom: 40px;
            }

            .contact-left h2 span {
                font-weight: 500;
            }

            /* LIST */
            /* PREMIUM POINTS DESIGN */

            .premium-points {
                margin-top: 40px;
            }

            .point-item {
                display: flex;
                align-items: center;
                gap: 25px;
                margin-bottom: 28px;
                transition: 0.4s ease;
                cursor: pointer;
            }

            /* Circle Icon */
            .point-icon {
                width: 45px;
                height: 45px;
                background: #fff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.4s ease;
            }

            .point-icon i {
                color: #009cb9;
                font-size: 18px;
                transition: 0.4s ease;
            }

            /* Text */
            .point-text {
                font-size: 19px;
                color: #fff;
                font-weight: 400;
                letter-spacing: 0.5px;
                transition: 0.4s ease;
            }

            /* Hover Effect */
            .point-item:hover {
                transform: translateX(12px);
            }

            .point-item:hover .point-icon {
                transform: scale(1.1);
                box-shadow: 0 12px 30px rgba(0, 156, 185, 0.6);
            }

            .point-item:hover .point-icon i {
                transform: translateX(4px);
            }

            /* =========================
RESPONSIVE
========================= */

            @media (max-width: 992px) {

                .contact-overlay {
                    text-align: center;
                }

                .premium-points {
                    display: flex;
                    flex-direction: column;
                    align-items: baseline;
                    text-align: left;
                }

                .point-item {
                    justify-content: center;
                    gap: 18px;
                    margin-bottom: 22px;
                }

                .point-text {
                    font-size: 18px;
                }

                .point-icon {
                    width: 48px;
                    height: 48px;
                }
            }

            @media (max-width: 576px) {

                .point-text {
                    font-size: 16px;
                }

                .point-icon {
                    width: 42px;
                    height: 42px;
                }
            }

            /* RIGHT SIDE */
            .contact-right {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f8f9fa;
                padding: 60px 40px;
            }

            .form-box {
                background: #fff;
                padding: 50px 40px;
                width: 100%;
                max-width: 520px;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            }

            /* FORM */
            .form-row {
                display: flex;
                gap: 15px;
            }

            .form-box input,
            .form-box textarea {
                width: 100%;
                padding: 14px 16px;
                border: 1px solid #ddd;
                margin-bottom: 15px;
                /* border-radius: 6px; */
                font-size: 14px;
            }

            .form-box textarea {
                min-height: 120px;
                resize: none;
            }

            .form-box button {
                width: 100%;
                background: linear-gradient(135deg, #1aa39c, #009cb9);
                border: none;
                color: #fff;
                padding: 14px;
                font-weight: 600;
                cursor: pointer;
            }

            /* =========================
RESPONSIVE
========================= */

            @media (max-width: 992px) {

                .contact-wrapper {
                    flex-direction: column;
                }

                .contact-left {
                    min-height: 500px;
                }

                .contact-overlay {
                    padding: 50px 30px;
                    text-align: left;
                    margin: auto;
                }

                .contact-left h2 {
                    font-size: 36px;
                }

                .premium-list li {
                    justify-content: center;
                    font-size: 18px;
                }

                .contact-right {
                    padding: 40px 20px;
                }

                .form-box {
                    padding: 30px 25px;
                }

                .form-row {
                    flex-direction: column;
                    gap: 0;
                }
            }

            @media (max-width: 576px) {

                .contact-left h2 {
                    font-size: 28px;
                }

                .premium-list li {
                    font-size: 16px;
                }

                .icon-circle {
                    width: 40px;
                    height: 40px;
                }
            }

             .promo-section {
                position: relative;
                background:
                    linear-gradient(rgb(255 255 255 / 9%), rgb(255 255 255 / 4%)),
                    url(../img/Thrive/contact-bg2.png) center center / cover no-repeat;
                padding: 60px 0;
                overflow: hidden;
            }

            .promo-content {
                text-align: center;
            }

            /* Heading */
            .promo-content h2 {
                font-size: 44px;
                font-weight: 300;
                color: #777;
                margin-bottom: 40px;
            }

            .promo-content h2 span {
                color: #18b39a;
                font-weight: 700;
            }

            /* Line + Button */
            .promo-action {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
            }

            .promo-divider {
                width: 232px;
                height: 2px;
                background: #18b39a;
            }


            .promo-button {
                background: linear-gradient(135deg, #1aa39c, #009cb9);
                color: #fff;
                padding: 12px 30px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .promo-button:hover {
                color: #fff;
            }


            /* Responsive */
            @media (max-width: 992px) {
                .promo-content h2 {
                    font-size: 36px;
                }
            }

            @media (max-width: 576px) {
                .promo-section {
                    padding: 80px 0;
                }

                .promo-content h2 {
                    font-size: 26px;
                }

                .promo-action {
                    flex-direction: column;
                    gap: 15px;
                }

                .promo-divider {
                    width: 80px;
                }
            }

             /* ===================================
   FUNFACT BACKGROUND SECTION
=================================== */

            .funfact_section_bg {
                position: relative;
                background: url('../img/Thrive/bg-count.png') center center/cover no-repeat;
                padding: 50px 0;
                overflow: hidden;
            }

            /* Overlay */


            .funfact_section_bg .container {
                position: relative;
                z-index: 2;
            }

            /* Counter Style */
            .cs_funfact {
                text-align: center;
                color: #fff;
            }

            .cs_funfact_number {
                font-size: 60px;
                font-weight: 700;
                display: flex;
                justify-content: center;
                align-items: baseline;
            }

            .cs_funfact_number span {
                font-size: 60px;
            }

            .cs_funfact_text p {
                font-size: 20px;
                margin-top: 10px;
                letter-spacing: 1px;
                font-weight: 500;
            }

            /* Tablet */
            @media (max-width: 991px) {
                .cs_funfact_number {
                    font-size: 50px;
                }

                .cs_funfact_text p {
                    font-size: 18px;
                }

                .funfact_section_bg {
                    padding: 70px 0;
                }
            }

            /* Mobile */
            @media (max-width: 576px) {
                .cs_funfact_number {
                    font-size: 40px;
                }

                .cs_funfact_text p {
                    font-size: 16px;
                }

                .funfact_section_bg {
                    padding: 60px 0;
                }
            }

            /* ============================Project page ============================ */
             .projects-section {
    background: #f8f9fa;
}

.project-item {
    overflow: hidden;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover Zoom */
.project-item:hover img {
    transform: scale(1.08);
}

/* Card */
.project-item {
    position: relative;
    overflow: hidden;
  
}

/* Image */
.project-item img {
    width: 100%;

    object-fit: cover;
}

/* Overlay */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    padding: 12px 15px;
    
    /* Strong gradient for readability */
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
    
    color: #fff;
}

/* Title */
.project-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color:#fdfbff;
}

/* 📱 Mobile Fix */
@media (max-width: 575px) {
    .project-item img {
        height: 200px;
    }

    .project-title {
        font-size: 15px;
    }

    .project-overlay {
        padding: 10px;
    }
}

/* ==================================== Service Page ========================= */
  .service-head{
                font-size: 33px;
                font-weight: 300;
            }
            /* Button */
            .cta-btn {
                display: inline-block;
                padding: 14px 31px;
                border: 2px solid #fff;
                color: #fff;
                text-decoration: none;
                font-weight: 500;
                /* border-radius: 4px; */
                transition: all 0.4s ease;
                background: transparent;
            }

            .cta-btn:hover {
                background: #fff;
                color: #11999e;
            }