:root {
    --brand: #e2710e;
    --sub: black;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


 .contact-banner {
            background: linear-gradient(135deg, rgba(9, 9, 10, 0.451) 0%, rgba(0, 0, 0, 0.412) 50%, rgba(3, 3, 3, 0.484) 100%), url('../landing-images/banner-bg.jpg') center/cover;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-banner::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            animation: pulse 6s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .banner-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Content Section */
        .content-section {
            color: white;
            padding: 40px;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 50px;
            color: #a78bfa;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .content-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
            background: linear-gradient(135deg, #ff7b00 0%, #e87a03 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-section h2 {
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: white;
            line-height: 1.4;
        }

        .content-section p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: white;
            margin-bottom: 25px;
        }

        .content-features {
            margin-top: 50px;
            display: grid;
            gap: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(10px);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--brand);
        }

        .feature-text p {
            font-size: 0.9rem;
            margin: 0;
            color: #000000;
        }

        /* Form Section */
        .contact-sec-form-section {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            padding: 50px;
            position: relative;
            animation: slideInRight 1s ease-out;
            backdrop-filter: blur(20px);
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-sec-form-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-sec-form-section:hover::before {
            opacity: 0.3;
        }

        .contact-sec-form-panel{
            padding:20px;
        }

        .contact-sec-form-panel h3 {
            font-size: 2.3rem;
            color: black;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .contact-sec-subtitle {
            color:black;
            margin-bottom: 35px;
            font-size: 1.05rem;
            font-weight: 500;
        }

        .contact-sec-fieldset {
            margin-bottom: 20px;
        }

        .contact-sec-label {
            display: block;
            margin-bottom: 10px;
            color: #1e1b4b;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .contact-sec-input,
        .contact-sec-textarea {
            width: 100%;
            padding: 15px 10px;
            border: 2px solid #e0e7ff;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
            background: #fafafe;
        }

        .contact-sec-input:focus,
        .contact-sec-textarea:focus {
            outline: none;
            border-color: var(--brand);
            background: white;
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
            transform: translateY(-2px);
        }

        .contact-sec-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .g-recaptcha {
            margin-bottom: 20px;
            transform: scale(1);
            transform-origin: 0 0;
        }

        .contact-sec-button {
            width: 100%;
            padding: 18px 35px;
            background: linear-gradient(135deg, hsl(32, 100%, 52%) 0%, #d67200 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(246, 174, 92, 0.4);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .contact-sec-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .contact-sec-button:hover::before {
            left: 100%;
        }

        .contact-sec-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
        }

        .contact-sec-button:active {
            transform: translateY(-1px);
        }

        /* Decorative Elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            background: #ffffff;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 60px;
            height: 60px;
            background: #ffffff;
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .banner-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .content-section {
                padding: 20px;
            }

            .content-section h1 {
                font-size: 2.5rem;
            }

            .content-section h2 {
                font-size: 1.3rem;
            }
/* 
            .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            } */

            .contact-sec-form-section {
                padding: 0px;
            }

            .floating-shape {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .content-section h1 {
                font-size: 2rem;
            }

            .contact-sec-form-panel h3 {
                font-size: 1.8rem;
            }

            .g-recaptcha {
                transform: scale(0.9);
            }
        }


.service-box {
  background: #fefefee7;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color:black;
}


        .service-main-con{
            padding-top: 50px;
            padding-bottom: 50px;
            background-color: #000000;
        }
        .header-service {
            text-align: center;
            margin-bottom: 60px;
        }

        .header-service h2 {
            color: #ff6b35;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .header-service h1 {
            color: rgb(255, 255, 255);
            font-size: 48px;
            font-weight: 700;
            
        }

        .header-service p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            max-width: 600px;
            text-align: center;
            margin: 0 auto;
            margin-top: 30px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0;
            padding-left: 110px;
            padding-right: 110px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 20px 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 107, 53, 0.1);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
            border-color: rgba(255, 107, 53, 0.4);
        }

        .icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;      /* prevent shrink */
    min-height: 50px;     /* prevent stretch */
    flex-shrink: 0;       /* important fix */
    
    display: inline-flex; /* prevents full-width stretch */
    align-items: center;
    justify-content: center;

    border-radius: 15px;  /* optional: keep consistent shape */
}
        /* .icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        } */


        .icon-wrapper i {
            font-size: 28px;
            color: white;
        }

        .service-card h3 {
            color: white;
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 12px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .service-card:hover .learn-more {
            opacity: 1;
            transform: translateX(0);
        }

        .learn-more svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .learn-more:hover svg {
            transform: translateX(5px);
        }

        /* Unique gradient for each card */
        .service-card:nth-child(1) .icon-wrapper {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        }

        .service-card:nth-child(2) .icon-wrapper {
            background: linear-gradient(135deg, #ff8c42 0%, #ffa551 100%);
        }

        .service-card:nth-child(3) .icon-wrapper {
            background: linear-gradient(135deg, #ff5722 0%, #ff6b35 100%);
        }

        .service-card:nth-child(4) .icon-wrapper {
            background: linear-gradient(135deg, #ff9800 0%, #ff6b35 100%);
        }

        .service-card:nth-child(5) .icon-wrapper {
            background: linear-gradient(135deg, #ff6b35 0%, #e65100 100%);
        }

        .service-card:nth-child(6) .icon-wrapper {
            background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                padding:0px;
            }
        }


.contact-main-con {
    padding: 100px 200px;
    
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%), url('../landing-images/contact-bg.jpg') center/cover;
}
@media (max-width: 968px) {
    .contact-main-con {
        padding: 10px 10px;
    }
}

  .contact-box {
  position: relative;
  border-radius: 12px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
background: black;
  color: #fff;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);    /* Overlay */
  border-radius: 12px;
  z-index: 0;
}

.contact-box i,
.contact-box h5,
.contact-box span {
  position: relative;
  z-index: 2;
}

.contact-box-link:hover .contact-box {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.contact-box span {
  display: block;
  margin-top: 4px;
}

/* PORTFOLIO SECTION */
.land-portfolio-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* TITLE */
.land-portfolio-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center !important;
  margin-bottom: 25px;
  color: var(--brand);
  text-align: left;
}

/* GRID FIX */
.land-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.land-item {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-decoration: none;
}

/* IMAGE FIX */
.land-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* HOVER EFFECT */
.land-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CAPTION */
.land-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ARROW */
.land-caption .arrow {
  color: var(--brand);
  font-size: 18px;
}

/* RESPONSIVE FIX */
@media (max-width: 1024px) {
  .land-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .land-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .land-grid {
    grid-template-columns: 1fr;
  }
}

/* COUNTER SECTION BACKGROUND */
.section-land-num-stats {
  background: linear-gradient(135deg, #000000, #0f172a);
  padding: 0px 0;
}

/* REMOVE EXTRA GAPS */
.section-land-num-stats .row {
  margin: 0;
}

/* BOX */
.section-land-num-box {
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

/* REMOVE BORDER LAST */
.section-land-num-box:last-child {
  border-right: none;
}

/* HOVER EFFECT */
.section-land-num-box:hover {
  background: rgba(255,255,255,0.03);
  transform: translateY(-5px);
}

/* NUMBER */
.section-land-num-number {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

/* PLUS COLOR */
.section-land-num-number span {
  color: var(--brand);
}

/* LABEL */
.section-land-num-label {
  font-size: 13px;
  text-align: center;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* TABLET */
@media (max-width: 992px) {
  .section-land-num-box {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .section-land-num-box:last-child {
    border-bottom: none;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .section-land-num-number {
    font-size: 34px;
  }

  .section-land-num-box {
    padding: 30px 15px;
  }
}

/* SECTION BACKGROUND */
.land-faq-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff, #eef2ff);
}

/* CONTAINER WIDTH CONTROL */
.land-faq-section .container {
  max-width: 900px;
}

/* HEADER */
.land-faq-header h2 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* ACCORDION ITEM */
.land-faq-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* BUTTON */
.land-faq-accordion-button {
  font-weight: 600;
  font-size: 16px;
  padding: 18px 20px;
  background: #ffffff;
  color: #333;
  box-shadow: none;
  transition: 0.3s ease;
}

/* ACTIVE BUTTON */
.land-faq-accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #e2710e, #ffb574);
  color: #fff;
}

/* REMOVE DEFAULT ICON */
.land-faq-accordion-button::after {
  filter: brightness(0);
}

/* BODY */
.land-faq-accordion-body {
  font-size: 15px;
  line-height: 1.7;
  padding: 20px;
  color: #555;
  background: #ffffff;
}

/* HOVER EFFECT */
.land-faq-item:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  .land-faq-header h2 {
    font-size: 26px;
  }

  .land-faq-accordion-button {
    font-size: 14px;
    padding: 15px;
  }

  .land-faq-accordion-body {
    font-size: 14px;
  }
}


/* // LANDING PAGES CODE // */

/* SECTION */
.lw-portfolio {
  background: linear-gradient(135deg, #ffffff, #f5f7fa);
  padding: 70px 0;
  font-family: 'DM Sans', sans-serif;
}

/* TITLE */
.lw-big-title {
  font-weight: 900;
  font-size: clamp(40px, 8vw, 90px);
  text-align: center;
  background: linear-gradient(90deg, var(--brand), #ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lw-hero-sub {
  text-align: center;
  color: var(--body);
  max-width: 600px;
  margin: 20px auto 50px;
}

/* TABS */
.lw-tabs {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lw-tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.lw-tab-btn.active,
.lw-tab-btn:hover {
  background: var(--brand);
  color: #fff;
}

/* PANELS */
.lw-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.lw-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* MARQUEE */
.lw-marquee-wrap {
  overflow: hidden;
  margin-bottom:20px;
}

.lw-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* ROW DIRECTIONS */
.lw-row-left {
  animation: scrollRight 35s linear infinite;
}

.lw-row-right {
  animation: scrollLeft 35s linear infinite;
}

.lw-marquee-wrap:hover .lw-track {
  animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}



/* CARD */
.lw-card {
  width: 300px;
  border-radius: 14px;
  overflow: hidden !important;
  background: #fff;
  /* box-shadow: var(--shadow); */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  position: relative;
}

.lw-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* IMAGE */
.lw-card-img-wrap {
  height: auto;
  overflow: hidden;
  position: relative;
}

.lw-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}

.lw-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY CENTER FIX */
.lw-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.lw-card:hover .lw-card-overlay {
  opacity: 1;
}

.lw-card-overlay span {
  background: var(--brand);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 12px;
  transform: translateY(10px);
  transition: 0.3s;
}

.lw-card:hover .lw-card-overlay span {
  transform: translateY(0);
}

/* CARD BODY */
.lw-card-body {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.lw-card-name {
  font-weight: 500;
  color: #333;
}

.lw-cta {
  text-align: center !important;
  padding: 80px 20px 0;
}

.lw-cta p {
  font-size: 18px;
  text-align: center;
  color: var(--body);
  margin-bottom: 25px;
}

.lw-cta a {
  background: linear-gradient(135deg, var(--brand), #ff9f43);
  color: #fff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(226, 113, 14, 0.35);
  transition: 0.3s;
}

.lw-cta a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(226, 113, 14, 0.45);
}

/* PREVENT HORIZONTAL SCROLL */
html, body {
  overflow-x: hidden;
}

/* FIX MARQUEE OVERFLOW */
.lw-marquee-wrap {
  overflow: hidden;
  width: 100%;
}

/* ENSURE TRACK DOESN'T BREAK LAYOUT */
.lw-track {
  display: flex;
  gap: 20px;
  width: max-content;
  min-width: 100%;
}

/* SAFETY FIX */
.lw-portfolio {
  overflow-x: hidden;
}

.lw-card-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
  color: var(--muted);
  font-size: 16px;
}
.lw-card:hover .lw-card-arrow {
  color: var(--brand);
  transform: rotate(-45deg);
}

/* CLIENTS */

/* SECTION */
.lw-clients-alt {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* MAIN BOX */
.lw-clients-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  text-align: center;
}

/* HEADING */
.lw-clients-head h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center !important;
  margin-bottom: 40px;
  padding-top: 30px;
  /* background: linear-gradient(90deg, var(--brand), #ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

/* GRID */
.lw-clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: center;
}

/* CARD */
.lw-client-item {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* IMAGE */
.lw-client-item img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  /* filter: grayscale(100%);
  opacity: 0.7; */
  transition: 0.3s;
}

/* HOVER EFFECT */
.lw-client-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.lw-client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lw-clients-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .lw-clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .lw-clients-box {
    padding: 40px 20px;
  }
}

/* CONTACT SECTION BACKGROUND */
.lw-contact-section {
  padding: 30px 0;
  /* background: radial-gradient(circle at top, #181711, #47340b); */
}

/* MAIN CARD */
.lw-contact-card {
  display: flex;
  gap: 40px;
  padding: 50px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  color: #fff;
}

/* LEFT */
.lw-contact-left {
  flex: 1;
}

.lw-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
  margin-bottom: 15px;
}

.lw-contact-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.lw-contact-left p {
  opacity: 0.8;
  margin-bottom: 30px;
}

/* INFO ITEMS */
.lw-contact-info {
  display: grid;
  gap: 20px;
}

.lw-contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lw-contact-item i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--brand), #ff9f43);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lw-contact-item h6 {
  margin: 0;
  font-size: 14px;
}

.lw-contact-item a,
.lw-contact-item span {
  font-size: 13px;
  color: #4b4b4b;
}

/* RIGHT FORM */
.lw-contact-right {
  flex: 1;
  background: rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--brand);
}

.lw-contact-right h3 {
  margin-bottom: 20px;
}

/* FORM */
.lw-form-group {
  position: relative;
  margin-bottom: 20px;
}

.lw-form-group input,
.lw-form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  border: 1px solid #d672006e;
}

.lw-form-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  color: #aaa;
  transition: 0.3s;
  pointer-events: none;
}

.lw-form-group input:focus + label,
.lw-form-group input:valid + label,
.lw-form-group textarea:focus + label {
  top: -15px;
  left: 8px;
  font-size: 12px;
  color: var(--brand);
}

/* BUTTON */
.lw-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--brand), #ff9f43);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lw-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,159,67,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .lw-contact-card {
    flex-direction: column;
    padding: 15px;
  }
}

.lw-recaptcha {
  margin-bottom: 20px;
  transform: scale(0.95);
  transform-origin: left;
}


.lw-testimonial-section {
  background: #f9fbfd;
}

.lw-testimonial-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CARD */
.lw-testimonial-card {
  flex: 0 0 32%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

/* ICON */
.lw-testimonial-card::before {
  content: "❝";
  font-size: 40px;
  color: var(--brand);
  position: absolute;
  top: 10px;
  left: 15px;
}

/* TEXT */
.lw-testimonial-card p {
  font-size: 14px;
  color: #555;
  margin: 15px 0;
  min-height: 90px; /* equal height */
}

.lw-testimonial-card h6 {
  font-weight: 600;
  margin-top: 10px;
}

/* STARS */
.stars {
  color: #ffc107;
  font-size: 14px;
}

/* DOTS */
.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 30%;
  background-color: #aaaaaa !important;
}

.carousel-indicators .active {
  background-color: var(--brand) !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lw-testimonial-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 576px) {
  .lw-testimonial-row {
    flex-direction: column;
  }
  .lw-testimonial-card {
    flex: 0 0 100%;
  }
}

/* SECTION BACKGROUND */
.lw-stats-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #000000, #1f252e);
}

/* CARD */
.lw-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 16px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* HOVER */
.lw-stat-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
}

/* NUMBER */
.lw-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.lw-stat-number span {
  color: var(--brand);
}

/* LABEL */
.lw-stat-label {
  margin-top: 10px;
  text-align: center !important;
  font-size: 14px;
  letter-spacing: 1px;
  color: #cbd5e1;
  text-transform: uppercase;
}

/* RESPONSIVE TUNING */
@media (max-width: 768px) {
  .lw-stat-card {
    padding: 30px 15px;
  }

  .lw-stat-number {
    font-size: 34px;
  }
}