/* ==========================================
   1. BASE STYLES & DESKTOP (DEFAULT)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #000000;
    padding: 0 100px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header / Navbar */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 30px;
}

.star-icon {
    width: 30px;
    height: 30px;
    background-color: #000;
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

.navbar {
    display: flex;
    gap: 40px;
}

.navbar a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
}

.cta-button {
    padding: 20px 35px;
    border: 1px solid #191A23;
    border-radius: 14px;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #191A23;
    color: #FFF;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.hero-left h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 35px;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.4;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-cta {
    padding: 20px 35px;
    background-color: #191A23;
    color: #FFF;
    border-radius: 14px;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.hero-right img {
    max-width: 600px;
    width: 100%;
}

/* Section Headers */
.services-header, .case-header, .section-header, .team-header, .contact-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 80px 0 40px 0;
}

.title-badge, .case-title, .section-title, .team-title, .contact-title {
    background-color: #B9FF66;
    padding: 2px 7px;
    border-radius: 7px;
    font-size: 40px;
    font-weight: 500;
    white-space: nowrap;
}

.description, .case-description, .section-subtitle, .team-subtitle, .contact-subtitle {
    font-size: 18px;
    max-width: 580px;
}

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card-service-light,
.service-card-service-green,
.service-card-service-dark {
    border: 1px solid #191A23;
    border-bottom: 6px solid #191A23;
    border-radius: 45px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-service-light { background-color: #F3F3F3; }
.service-card-service-green { background-color: #B9FF66; }
.service-card-service-dark { background-color: #191A23; color: #FFF; }

.service-title-highlight-green {
    background-color: #B9FF66;
    color: #000;
    padding: 0 7px;
    border-radius: 7px;
    font-size: 30px;
    display: inline-block;
}

.service-title-highlight-white {
    background-color: #FFF;
    color: #000;
    padding: 0 7px;
    border-radius: 7px;
    font-size: 30px;
    display: inline-block;
}

.service-link, .service-link-white-text {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 90px;
    text-decoration: none;
    font-size: 20px;
    color: #000;
}

.service-link-white-text { color: #FFF; }

.service-icon, .service-icon-white {
    width: 41px;
    height: 41px;
    background-color: #191A23;
    color: #B9FF66;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-icon-white {
    background-color: #FFF;
    color: #191A23;
}

.service-image {
    max-width: 210px;
}

/* CTA Section */
.cta-section {
    background-color: #F3F3F3;
    border-radius: 45px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.cta-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 26px;
    color: #292A32;
}

.cta-content .cta-button {
    background-color: #191A23;
    color: #FFF;
    display: inline-block;
    text-decoration: none;
}

.cta-image img {
    max-width: 350px;
}

/* Case Studies */
.case-studies {
    background-color: #191A23;
    color: #FFF;
    border-radius: 45px;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.case-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-card:not(:last-child) {
    border-right: 1px solid #707070;
    padding-right: 40px;
}

.case-card p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #FFF;
}

.case-link {
    color: #B9FF66;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Working Process */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    background-color: #F3F3F3;
    border: 1px solid #191A23;
    border-bottom: 6px solid #191A23;
    border-radius: 45px;
    padding: 40px 60px;
}

.process-item.active {
    background-color: #B9FF66;
}

.process-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-number {
    font-size: 60px;
    font-weight: 500;
    margin-right: 25px;
}

.process-title {
    font-size: 30px;
    font-weight: 500;
    flex-grow: 1;
}

.process-icon {
    font-size: 30px;
    width: 58px;
    height: 58px;
    background-color: #F3F3F3;
    border: 1px solid #191A23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #000;
    font-size: 18px;
    line-height: 1.5;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    border: 1px solid #191A23;
    border-bottom: 6px solid #191A23;
    border-radius: 45px;
    padding: 40px 35px;
}

.team-card-top {
    display: flex;
    position: relative;
    gap: 20px;
    margin-bottom: 28px;
}

.team-image img {
    width: 100px;
    height: 100px;
}

.team-info h3 {
    font-size: 20px;
    margin-top: 35px;
}

.team-social {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background-color: #000;
    color: #B9FF66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.team-card hr {
    border: none;
    border-top: 1px solid #191A23;
    margin-bottom: 28px;
}

.team-bio {
    font-size: 18px;
    line-height: 1.4;
}

.team-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-primary {
    padding: 20px 75px;
    background-color: #191A23;
    color: #FFF;
    border-radius: 14px;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

/* testimonials-section */
.testimonials-section {
  padding: 60px 8%;
  font-family: Arial, Helvetica, sans-serif;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-title {
  background: #b9ff2c;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  white-space: nowrap;
}

.section-header p {
  max-width: 520px;
  font-size: 14px;
  color: #333;
  margin: 0;
}

/* slider wrapper */
.testimonals-slider {
  background: #16192b;
  border-radius: 35px;
  padding: 70px 5% 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

/* cards */
.testimonial-card,
.testimonial-card-active {
  min-width: 420px;
  max-width: 420px;
  color: white;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card.active,
.testimonial-card-active {
  opacity: 1;
}

/* bubble style applied to the quote paragraph */
.testimonial-card p,
.testimonial-card-active p {
  border: 1px solid #b9ff2c;
  padding: 25px;
  border-radius: 25px;
  position: relative;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-card p::after,
.testimonial-card-active p::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 40px;
  width: 22px;
  height: 22px;
  background: #16192b;
  border-left: 1px solid #b9ff2c;
  border-bottom: 1px solid #b9ff2c;
  transform: rotate(-45deg);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  color: #b9ff2c;
  font-weight: bold;
  font-size: 16px;
}

.author-role {
  font-size: 13px;
  color: #ccc;
  margin-top: 4px;
}

/* controls */
.slider-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.arrow {
  color: #8a8a8a;
  font-size: 22px;
  cursor: pointer;
}

.arrow:last-child {
  color: #fff;
}

.dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #555;
  transform: rotate(45deg);
  cursor: pointer;
  display: inline-block;
}

.dot.active {
  background: #b9ff2c;
}
/* Contact Section */
.contact-container {
    background-color: #F3F3F3;
    border-radius: 45px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-form {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.radio-group {
    display: flex;
    gap: 35px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group input, .input-group textarea {
    padding: 18px 30px;
    border-radius: 14px;
    border: 1px solid #191A23;
    font-size: 18px;
    width: 100%;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.send-btn {
    background-color: #191A23;
    color: #FFF;
    padding: 20px;
    border-radius: 14px;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.contact-image {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Footer Section */
.footer-container {
    background-color: #191A23;
    color: #FFF;
    border-radius: 45px 45px 0 0;
    padding: 50px 60px;
    margin-top: 100px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 30px;
    font-weight: bold;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: #FFF;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #191A23;
    background-color: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.contact-label {
    background-color: #B9FF66;
    color: #000;
    padding: 0 7px;
    border-radius: 7px;
    font-weight: 500;
}

.contact-info p {
    margin-top: 15px;
    line-height: 1.6;
}

.subscribe-box {
    background-color: #292A32;
    padding: 40px;
    border-radius: 14px;
    display: flex;
    gap: 20px;
}

.subscribe-box input {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    width: 240px;
}

.subscribe-btn {
    background-color: #B9FF66;
    color: #000;
    border: none;
    border-radius: 14px;
    padding: 20px 30px;
    font-weight: 500;
    cursor: pointer;
}

.footer-divider {
    border: none;
    border-top: 1px solid #FFF;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    gap: 40px;
}

.privacy-link {
    color: #FFF;
}


/* ==========================================
   2. TABLET MEDIA QUERIES (max-width: 1024px)
   ========================================== */
@media screen and (max-width: 1024px) {
    body {
        padding: 0 30px;
    }

    .navbar {
        gap: 20px;
    }

    .hero {
        gap: 20px;
    }

    .hero-left h1 {
        font-size: 45px;
    }

    .services-cards,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-studies {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #707070;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .contact-container {
        flex-direction: column;
        padding: 40px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-image {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .subscribe-box {
        width: 100%;
    }
}


/* ==========================================
   3. MOBILE MEDIA QUERIES (max-width: 768px)
   ========================================== */
@media screen and (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    /* Header */
    .header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 25px 0;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .header .cta-button {
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: left;
        margin-bottom: 40px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-cta {
        width: 100%;
    }

    /* Section Headers */
    .services-header, 
    .case-header, 
    .section-header, 
    .team-header, 
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin: 50px 0 25px 0;
    }

    .title-badge, 
    .case-title, 
    .section-title, 
    .team-title, 
    .contact-title {
        font-size: 26px;
    }

    .description, 
    .case-description, 
    .section-subtitle, 
    .team-subtitle, 
    .contact-subtitle {
        font-size: 15px;
    }

    /* Services Grid */
    .services-cards {
        grid-template-columns: 1fr;
    }

    .service-card-service-light,
    .service-card-service-green,
    .service-card-service-dark {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 20px;
    }

    .service-image {
        align-self: flex-end;
        max-width: 150px;
    }

    /* CTA Section */
    .cta-section {
        flex-direction: column;
        padding: 30px 20px;
        margin: 50px 0;
    }

    .cta-image {
        display: none;
    }

    /* Case Studies */
    .case-studies {
        padding: 30px 20px;
        border-radius: 30px;
    }

    /* Process Section */
    .process-item {
        padding: 25px 20px;
        border-radius: 30px;
    }

    .process-number {
        font-size: 30px;
        margin-right: 15px;
    }

    .process-title {
        font-size: 18px;
    }

    .process-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-footer {
        justify-content: center;
    }

    .btn-primary {
        width: 100%;
    }

    /* Overall Section Styling */
.testimonials-section {
  background-color: #191a23; /* Dark background */
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 45px;
  font-family: 'Space Grotesk', sans-serif, system-ui;
}

/* Header Section */
.section-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.section-title {
  background-color: #b9ff66; /* Neon green highlight */
  color: #000000;
  font-size: 40px;
  font-weight: 500;
  padding: 0 7px;
  border-radius: 7px;
}

.section-header p {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

/* Testimonials Slider Container */
.testimonals-slider {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  overflow: hidden;
  position: relative;
}


    /* Contact Section */
    .contact-container {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer-container {
        padding: 40px 20px;
        border-radius: 30px 30px 0 0;
        margin-top: 60px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .subscribe-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .subscribe-box input, 
    .subscribe-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
