    :root {
      --primary: #0056b3;
      --primary-dark: #004494;
      --secondary: #ff7e00;
      --secondary-soft: #ffd8b1;
      --dark: #1d242b;
      --muted: #6b7b8a;
      --light: #ffffff;
      --bg: #f4f6f8;
      --danger: #ff6b6b;
      --radius-lg: 18px;
      --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.12);
      --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);
      --shadow-footer: 0 4px 12px rgba(0, 0, 0, 0.25);
      --shadow-footer-hover: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: var(--bg);
      color: var(--dark);
      line-height: 1.5;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* HEADER */

    header {
      background: var(--primary);
      height: 80px;
      color: var(--light);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
        padding: 20px 40px;
      /*padding: 0.75rem 0;*/
        /*padding: 12px 40px;*/
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .logo-badge {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--secondary), var(--light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--dark);
    }

    .logo span:last-child {
      font-weight: 400;
      font-size: 0.85rem;
      opacity: 0.75;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 3px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--secondary);
      transition: width 0.25s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
        border:1px dashed;
      position: absolute;
      background: white;
      min-width: 220px;
      box-shadow: var(--shadow-medium);
      border-radius: 8px;
      z-index: 1;
      top: 100%;
      left: 0;
      margin-top: 10px;
      padding: 0.5rem 0;
    }

    .dropdown-content a {
      color: var(--dark);
      padding: 0.75rem 1rem;
      display: block;
      transition: background 0.2s ease;
    }

    .dropdown-content a:hover {
      background: var(--bg);
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .btn {
      border-radius: 999px;
      border: none;
      padding: 0.55rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease,
        background 0.18s ease, color 0.18s ease;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    }

    .btn-primary {
      background: var(--secondary);
      color: #1c1300;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      background: #ff9a3d;
    }

    .btn-outline {
      background: transparent;
      color: var(--light);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--light);
      color: var(--primary-dark);
    }

    .nav-toggle {
      display: none;
      width: 26px;
      height: 26px;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      height: 2px;
      background: var(--light);
      border-radius: 999px;
    }

    /* HERO */

    .hero {
      position: relative;
      overflow: hidden;
      padding-bottom: 4rem;
    }

    .hero-banner {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
      background-size: cover;
      background-position: center;
      z-index: -1;
    }

    .hero-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 86, 179, 0.85), rgba(0, 68, 148, 0.9));
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2.7rem;
      padding: 3.5rem 0 0;
      align-items: stretch;
    }

    .hero-content {
      color: var(--light);
      padding-bottom: 2rem;
    }

    .eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-bottom: 0.7rem;
    }

    h1 {
      font-size: clamp(2.1rem, 3vw + 1.2rem, 3rem);
      margin-bottom: 0.6rem;
    }

    h1 span {
      color: var(--secondary);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      max-width: 30rem;
      opacity: 0.92;
      margin-bottom: 1.5rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.6rem;
    }

    .hero-badge {
      background: rgba(0, 0, 0, 0.16);
      border-radius: 999px;
      padding: 0.4rem 0.9rem;
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-badge span.icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .hero-cta small {
      font-size: 0.75rem;
      opacity: 0.8;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      margin-top: 2rem;
      font-size: 0.8rem;
    }

    .metric {
      background: rgba(0, 0, 0, 0.18);
      border-radius: 14px;
      padding: 0.8rem 1rem;
      min-width: 130px;
    }

    .metric strong {
      display: block;
      font-size: 1rem;
    }

    /* QUOTE CARD */

    .quote-card-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
    }

    .quote-card {
      width: 100%;
      max-width: 360px;
      background: var(--light);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 1.5rem 1.4rem 1.3rem;
      position: relative;
      overflow: hidden;
    }

    .quote-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 86, 179, 0.06), transparent);
      pointer-events: none;
    }

    .quote-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .quote-card-header h2 {
      font-size: 1.1rem;
    }

    .quote-tag {
      font-size: 0.7rem;
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
      background: rgba(255, 126, 0, 0.12);
      color: #b35900;
      text-transform: uppercase;
      letter-spacing: 0.09em;
    }

    .quote-form {
      display: grid;
      gap: 0.75rem;
      margin-bottom: 0.7rem;
    }

    .field-group {
      display: grid;
      gap: 0.25rem;
    }

    label {
      font-size: 0.75rem;
      color: var(--muted);
    }

    input,
    select,
    textarea {
      border-radius: 10px;
      border: 1px solid #dde2e8;
      padding: 0.55rem 0.7rem;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease,
        background 0.18s ease;
      font-family: inherit;
      background: #fdfdfd;
    }

    textarea {
      resize: vertical;
      min-height: 60px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.15);
      background: #ffffff;
    }

    .quote-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.35rem;
      font-size: 0.7rem;
      color: var(--muted);
    }

    .quote-note {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .quote-note span {
      font-size: 0.9rem;
    }

    .error-text {
      font-size: 0.7rem;
      color: var(--danger);
      display: none;
    }

    .quote-success {
      display: none;
      font-size: 0.8rem;
      margin-top: 0.4rem;
      padding: 0.5rem 0.7rem;
      border-radius: 8px;
      background: rgba(0, 86, 179, 0.07);
      color: var(--primary-dark);
    }

    /* SECTIONS GENERAL */

    section {
      padding: 3.5rem 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.2rem;
    }

    .section-label {
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: 0.3rem;
    }

    .section-header h2 {
      font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }

    .section-header p {
      max-width: 850px;
      margin: 0 auto;
      font-size: 0.95rem;
      color: var(--muted);
    }

    /* SERVICES */

    .services {
      background: var(--light);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.3rem;
    }

    .service-card {
      background: #fbfbfb;
      border-radius: 16px;
      padding: 1.4rem 1.1rem;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
      border-top: 3px solid rgba(0, 86, 179, 0.35);
      display: grid;
      gap: 0.4rem;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-medium);
      border-top: 3px solid var(--primary);
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 15px;
      background: var(--secondary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 0.4rem;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      background: var(--primary);
      color: white;
    }

    .service-card h3 {
      font-size: 1rem;
      margin-bottom: 0.15rem;
    }

    .service-card p {
      color: var(--muted);
    }

    /* ABOUT US */

    .about-us {
      background: linear-gradient(
        135deg,
        #fefbf4 0,
        #fdf7e7 25%,
        #fefbf4 100%
      );
    }

    .about-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2rem;
      align-items: center;
    }

    .about-block {
      background: #ffffff;
      border-radius: 18px;
      padding: 1.6rem 1.4rem;
      box-shadow: var(--shadow-soft);
    }

    .about-block h3 {
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }

    .about-block p {
      font-size: 0.92rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .checklist {
      list-style: none;
      display: grid;
      gap: 0.45rem;
      font-size: 0.9rem;
    }

    .checklist li::before {
      content: "✔";
      color: var(--primary-dark);
      margin-right: 0.5rem;
      font-size: 0.78rem;
    }

    .about-photo {
      border-radius: 18px;
      overflow: hidden;
      color: #ffffff;
      min-height: 260px;
      position: relative;
      padding: 1.2rem 1.4rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background-size: cover;
      background-position: center;
    }

    .about-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 86, 179, 0.7), rgba(255, 126, 0, 0.7));
      z-index: 1;
    }

    .about-photo > * {
      position: relative;
      z-index: 2;
    }

    .about-photo h3 {
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }

    .about-photo p {
      font-size: 0.86rem;
      max-width: 300px;
    }

    /* FUN FACTS */

    .fun-facts {
      background: var(--light);
    }

    .facts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .fact-card {
      text-align: center;
      padding: 1.5rem 1rem;
      background: white;
      border-radius: 16px;
      box-shadow: var(--shadow-medium);
      transition: transform 0.3s ease;
    }

    .fact-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-large);
    }

    .fact-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .fact-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .fact-card p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    /* PROCESS */

    .process {
      background: var(--light);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .process-step {
      text-align: center;
      padding: 1.5rem 1rem;
      background: white;
      border-radius: 16px;
      box-shadow: var(--shadow-medium);
      transition: transform 0.3s ease;
    }

    .process-step:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-large);
    }

    .step-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin: 0 auto 1rem;
      font-size: 1.2rem;
    }

    .process-step h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .process-step p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    /* CASE STUDIES */

    .case-studies {
      background: linear-gradient(135deg, #f9f9f9 0%, #fdf9f3 22%, #f9f9f9 100%);
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .case-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease;
    }

    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .case-image {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .case-body {
      padding: 1.5rem;
    }

    .case-body h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .case-body p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    /* WHY CHOOSE US */

    .why-choose-us {
      background: var(--light);
    }

    .why-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .why-text {
      padding-right: 1rem;
    }

    .why-image {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-medium);
    }

    .why-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .why-points {
      margin-top: 1.5rem;
      display: grid;
      gap: 1rem;
    }

    .why-point {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .why-point-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-point-content h4 {
      margin-bottom: 0.3rem;
    }

    .why-point-content p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .enquiry-btn-container {
      display: flex;
      justify-content: flex-end;
      margin-top: 2rem;
    }

    /* BLOGS */

    .blogs {
      background: linear-gradient(135deg, #f9f9f9 0%, #fdf9f3 22%, #f9f9f9 100%);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .blog-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .blog-image {
      height: 180px;
      background-size: cover;
      background-position: center;
    }

    .blog-body {
      padding: 1.5rem;
    }

    .blog-meta {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
    }

    .blog-body h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .blog-body p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .blog-card a.read-more {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* TESTIMONIALS */

    .testimonials {
      background: var(--light);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .testimonial-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: var(--shadow-soft);
    }

    .testimonial-content {
      font-style: italic;
      margin-bottom: 1rem;
      color: var(--muted);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }

    .author-info h4 {
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }

    .author-info p {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* CTA BANNER */

    .cta-banner {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--light);
      padding: 4rem 0;
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: center;
    }

    .cta-content h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .cta-content p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
    }

    /* ESG COMMITMENT SECTION */
    .esg-commitment {
      background-color: #F7FBF7;
      padding: 4rem 0;
    }

    .esg-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
      border-radius: 32px;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .esg-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      width: 100%;
      max-width: 680px;
      margin: 0 auto;
    }

    .esg-header h2 {
      text-align: center;
      font-size: 2.25rem;
      line-height: 2.75rem;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .esg-header p {
      text-align: center;
      font-size: 1.25rem;
      color: var(--primary-dark);
    }

    .esg-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      gap: 4rem;
    }

    @media (min-width: 1024px) {
      .esg-content {
        flex-direction: row;
      }
    }

    .esg-image-container {
      display: none;
      position: relative;
      width: 100%;
      border-radius: 18px;
      z-index: 0;
      transition: all 0.15s ease-in;
    }

    @media (min-width: 1024px) {
      .esg-image-container {
        display: block;
        width: 50%;
      }
    }

    .esg-image {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 32px;
    }

    .esg-list-container {
      display: flex;
      flex-direction: row;
      width: 100%;
    }

    @media (min-width: 1024px) {
      .esg-list-container {
        width: 50%;
      }
    }

    .esg-divider {
      display: none;
      flex: none;
      width: 1px;
      height: 100%;
      background-color: #DAECDA;
    }

    @media (min-width: 1024px) {
      .esg-divider {
        display: flex;
      }
    }

    .esg-list {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      width: 100%;
    }

    @media (min-width: 1024px) {
      .esg-list {
        gap: 0;
        padding-left: 2.5rem;
      }
    }

    .esg-item {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      transition: all 0.15s ease-in;
      opacity: 1;
      cursor: pointer;
    }

    @media (min-width: 1024px) {
      .esg-item {
        padding-left: 2.5rem;
        padding-bottom: 3.5rem;
        gap: 0;
      }
      
      .esg-item:last-child {
        padding-bottom: 0;
      }
    }

    .esg-item.active {
      opacity: 1;
    }

    .esg-item.inactive {
      opacity: 0.4;
    }

    .esg-indicator {
      display: none;
      flex: none;
      width: 1px;
      height: 100%;
      position: absolute;
      top: 0;
      left: -4px;
      border-radius: 999px;
      background-color: #439D43;
      transition: all 0.15s ease-in;
      opacity: 0;
    }

    @media (min-width: 1024px) {
      .esg-indicator {
        display: flex;
      }
    }

    .esg-indicator.active {
      opacity: 1;
    }

    .esg-mobile-image {
      position: relative;
      width: 100%;
      height: 323px;
      border-radius: 18px;
      z-index: 0;
    }

    @media (min-width: 768px) {
      .esg-mobile-image {
        height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .esg-mobile-image {
        display: none;
      }
    }

    .esg-mobile-image img {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 18px;
    }

    .esg-text {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .esg-text h4 {
      font-size: 1.75rem;
      line-height: 2.375rem;
      font-weight: 500;
      color: var(--dark);
    }

    .esg-text p {
      margin-top: 0.5rem;
      color: var(--dark);
    }

    .esg-link {
      color: #F24109;
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: #F24109;
      text-decoration-thickness: 2px;
      transition: all 0.15s ease-in;
    }

    .esg-link:hover {
      color: var(--dark);
      text-decoration-color: var(--dark);
    }

    /* ACCREDITATIONS SECTION */
    .accreditations {
      background: var(--light);
      padding: 3rem 0;
    }

    .accreditations-container {
      width: 90%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .accreditations-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
      }
    }

    .accreditations-content {
      width: 100%;
      max-width: 534px;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: flex-start;
    }

    .accreditations-content h2 {
      font-size: 1.875rem;
      line-height: 2.375rem;
      font-weight: 500;
      color: var(--dark);
    }

    @media (min-width: 768px) {
      .accreditations-content h2 {
        font-size: 2.25rem;
        line-height: 2.75rem;
      }
    }

    .accreditations-content p {
      font-size: 1.25rem;
      line-height: 1.625rem;
      color: var(--primary-dark);
    }

    .accreditations-logos {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin: -0.5rem;
    }

    @media (min-width: 1024px) {
      .accreditations-logos {
        gap: 1.5rem;
        margin: -0.75rem;
      }
    }

    .accreditation-item {
      padding: 0.5rem;
      width: 50%;
    }

    @media (min-width: 768px) {
      .accreditation-item {
        width: 33.333%;
      }
    }

    @media (min-width: 1024px) {
      .accreditation-item {
        width: 50%;
      }
    }

    @media (min-width: 1280px) {
      .accreditation-item {
        width: 33.333%;
      }
    }

    .accreditation-link {
      display: flex;
      border-radius: 1.5rem;
      border: 1px solid #F8E1DB;
      height: 106px;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      transition: all 0.3s ease;
    }

    .accreditation-link:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
      border-color: var(--secondary);
    }

    .accreditation-link img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* BANNER CARDS SECTION */
    .banner-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      padding: 3rem 0;
      background: var(--bg);
    }

    @media (min-width: 768px) {
      .banner-cards {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .banner-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      min-height: 320px;
      display: flex;
      align-items: flex-end;
      transition: transform 0.3s ease;
    }

    .banner-card:hover {
      transform: translateY(-8px);
    }

    .banner-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
      z-index: 1;
    }

    .banner-card--white::before {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .banner-card .wrap {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 2rem 1.5rem;
    }

    .banner-card__wrapper {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .banner-card__title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--light);
      margin: 0;
    }

    .banner-card__text-holder {
      color: rgba(255, 255, 255, 0.9);
    }

    .banner-card__text {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
    }

    .banner-card__link-holder {
      margin-top: 0.5rem;
    }

    .banner-card__link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--light);
      font-weight: 600;
      font-size: 0.9rem;
      transition: gap 0.3s ease;
    }

    .banner-card__link:hover {
      gap: 0.75rem;
    }

    .banner-car__icon {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .banner-card__link:hover .banner-car__icon {
      transform: translateX(3px);
    }

    /* FOOTER */

    footer {
      background: #11161b;
      color: #d3dae2;
      padding: 2.5rem 0 1.7rem;
      font-size: 0.85rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-brand h3 {
      margin-bottom: 0.3rem;
    }

    .footer-brand p {
      color: #a1afc1;
      font-size: 0.82rem;
      max-width: 280px;
    }

    .footer-title {
      font-size: 0.9rem;
      margin-bottom: 0.6rem;
      font-weight: 600;
    }

    .footer-list {
      list-style: none;
      display: grid;
      gap: 0.35rem;
    }

    .footer-list li {
      padding: 0.5rem 0.75rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
      box-shadow: var(--shadow-footer);
      position: relative;
      overflow: hidden;
    }

    .footer-list li::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 126, 0, 0.05));
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 0;
    }

    .footer-list li:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-footer-hover);
      background: rgba(255, 255, 255, 0.08);
    }

    .footer-list li:hover::before {
      opacity: 1;
    }

    .footer-list a {
      color: #a1afc1;
      font-size: 0.82rem;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-list a:hover {
      color: var(--secondary);
    }

    .footer-list a::before {
      content: "▸";
      font-size: 0.7rem;
      opacity: 0.7;
      transition: transform 0.3s ease;
    }

    .footer-list a:hover::before {
      transform: translateX(3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom small {
      color: #7e8ca0;
    }

    .footer-social {
      display: flex;
      gap: 0.7rem;
      font-size: 0.9rem;
    }

    .footer-social span {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .footer-social span:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    /* CONTACT US SECTION */
    .contact-us {
      background: var(--light);
      padding: 4rem 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 2rem;
    }

    .contact-info {
      display: grid;
      gap: 1.5rem;
    }

    .contact-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: var(--shadow-medium);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-large);
    }

    .contact-card h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .contact-details {
      display: grid;
      gap: 0.75rem;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .contact-detail i {
      color: var(--primary);
      font-size: 1.1rem;
      margin-top: 0.1rem;
    }

    .contact-form-container {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: var(--shadow-medium);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-form-container:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-large);
    }

    .contact-form {
      display: grid;
      gap: 1rem;
    }

    .contact-form h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .quote-card-wrap {
        justify-content: flex-start;
      }

      .services .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .process-steps, .facts-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonial-grid, .case-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-content {
        grid-template-columns: 1fr;
      }

      .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 0.75rem 1.4rem 1rem;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .nav-links.show {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-toggle {
        display: flex;
      }
    }

    @media (max-width: 640px) {
      .services .service-grid,
      .process-steps,
      .testimonial-grid,
      .case-grid,
      .blog-grid,
      .facts-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      header {
        position: relative;
        padding-top: 20px;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .esg-header h2 {
        font-size: 1.75rem;
        line-height: 2.25rem;
      }

      .esg-header p {
        font-size: 1.125rem;
      }

      .esg-text h4 {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .accreditations-content h2 {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .accreditations-content p {
        font-size: 1.125rem;
      }

      .accreditation-item {
        width: 50%;
      }

      .banner-cards {
        grid-template-columns: 1fr;
      }
    }


/* Image Box Section */
.image-box-section {
  background: var(--light);
  padding: 4rem 0;
}

.image-box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 380px;
  background: var(--dark);
  cursor: pointer;
}

.image-box:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-large);
}

.image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
  transition: all 0.4s ease;
}

.image-box:hover::before {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 86, 179, 0.1) 30%,
    rgba(0, 86, 179, 0.2) 50%,
    rgba(0, 86, 179, 0.4) 70%,
    rgba(0, 86, 179, 0.7) 85%,
    rgba(0, 86, 179, 0.9) 100%
  );
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

.image-box-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  color: var(--light);
  z-index: 2;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.image-box:hover .image-box-content {
  transform: translateY(-8px);
}

.image-box-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.image-box-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

.image-box-btn {
  background: linear-gradient(135deg, var(--secondary), #ff9a3d);
  color: #1c1300;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 126, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.image-box-btn::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.6s ease;
}

.image-box-btn:hover {
  background: linear-gradient(135deg, #ff9a3d, var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 126, 0, 0.4);
}

.image-box-btn:hover::before {
  left: 100%;
}

.image-box-btn:active {
  transform: translateY(0);
}

/* Service Icon Overlay */
.image-box::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.image-box:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .image-box-container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .image-box-section {
    padding: 3rem 0;
  }
  
  .image-box-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
  }
  
  .image-box {
    height: 320px;
  }
  
  .image-box-content {
    padding: 1.5rem 1.25rem;
  }
  
  .image-box-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .image-box-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .image-box-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 340px) {
  .image-box-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .image-box {
    height: 300px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .image-box-content {
    padding: 1.25rem 1rem;
  }
  
  .image-box:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .image-box-section {
    padding: 2.5rem 0;
  }
  
  .image-box {
    height: 280px;
  }
  
  .image-box-content h3 {
    font-size: 1.1rem;
  }
  
  .image-box-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

/* Animation for staggered loading */
@media (prefers-reduced-motion: no-preference) {
  .image-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .image-box:nth-child(1) { animation-delay: 0.1s; }
  .image-box:nth-child(2) { animation-delay: 0.2s; }
  .image-box:nth-child(3) { animation-delay: 0.3s; }
  .image-box:nth-child(4) { animation-delay: 0.4s; }
  .image-box:nth-child(5) { animation-delay: 0.5s; }
  .image-box:nth-child(6) { animation-delay: 0.6s; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus states for accessibility */
.image-box-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.image-box:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Image Section CSS */

.section-container {
        max-width: 1200px;
        margin: 80px auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 20px;
    }

    .content-left {
        flex: 1;
    }

    .content-left h2 {
        font-size: 38px;
        color: #f25c29;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .content-left p {
        font-size: 17px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
        max-width: 500px;
    }

    .learn-btn {
        display: inline-flex;
        align-items: center;
        background: #725db1;
        color: #fff;
        padding: 7px 35px;
        border-radius: 40px;
        font-size: 15px;
        cursor: pointer;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .learn-btn:hover {
        background: #d94d1f;
    }

    .learn-btn span {
        margin-left: 10px;
        font-size: 20px;
    }

    .image-right {
        flex: 1;
    }

    .image-right img {
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Responsive View */
    @media (max-width: 900px) {
        .section-container {
            flex-direction: column;
            text-align: center;
        }

        .content-left p { margin: 0 auto 20px; }
    }
/* Other Section CSS */

/* ESG COMMITMENT SECTION */
.esg-commitment {
  background-color: #F7FBF7;
  padding: 4rem 0;
  position: relative;
}

.esg-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.esg-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.esg-header h2 {
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.esg-header p {
  font-size: 1.25rem;
  color: var(--primary-dark);
  opacity: 0.9;
}

.esg-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .esg-content {
    flex-direction: row;
    align-items: stretch;
    gap: 4rem;
  }
}

.esg-image-container {
  display: none;
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  min-height: 500px;
}

@media (min-width: 1024px) {
  .esg-image-container {
    display: block;
    width: 50%;
    flex-shrink: 0;
  }
}

.esg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.esg-image-container:hover .esg-image {
  transform: scale(1.02);
}

.esg-list-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

@media (min-width: 1024px) {
  .esg-list-container {
    width: 50%;
    position: relative;
  }
}

.esg-divider {
  display: none;
  flex: none;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #DAECDA, transparent);
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1024px) {
  .esg-divider {
    display: block;
  }
}

.esg-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  list-style: none;
}

@media (min-width: 1024px) {
  .esg-list {
    gap: 0;
    padding-left: 3rem;
  }
}

.esg-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0.6;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 16px;
  background: transparent;
}

.esg-item:hover {
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.5);
}

.esg-item.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.esg-item.inactive {
  opacity: 0.4;
}

@media (min-width: 1024px) {
  .esg-item {
    padding-left: 2.5rem;
    padding-bottom: 3rem;
    gap: 0;
    border-radius: 0;
    background: transparent !important;
  }
  
  .esg-item:last-child {
    padding-bottom: 0;
  }
  
  .esg-item.active {
    background: transparent !important;
    box-shadow: none;
  }
}

.esg-indicator {
  display: none;
  position: absolute;
  top: 0;
  left: -2px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 999px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scaleY(0);
}

.esg-indicator.active {
  opacity: 1;
  transform: scaleY(1);
}

@media (min-width: 1024px) {
  .esg-indicator {
    display: block;
  }
}

.esg-mobile-image {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .esg-mobile-image {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .esg-mobile-image {
    display: none;
  }
}

.esg-mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.esg-item:hover .esg-mobile-image img {
  transform: scale(1.05);
}

.esg-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.esg-text h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

@media (min-width: 768px) {
  .esg-text h4 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

.esg-text p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .esg-text p {
    font-size: 1.1rem;
  }
}

.esg-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  width: fit-content;
}

.esg-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  gap: 0.75rem;
}

.esg-link::after {
  content: "→";
  font-weight: 600;
  transition: transform 0.3s ease;
}

.esg-link:hover::after {
  transform: translateX(3px);
}

/* Service Name Tags */
.esg-service-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

/* Animation for active state changes */
.esg-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.esg-item.active .esg-text h4 {
  color: var(--primary-dark);
}

.esg-item.active .esg-text p {
  color: var(--dark);
}

/* Mobile improvements */
@media (max-width: 1023px) {
  .esg-container {
    padding: 1.5rem;
    border-radius: 24px;
  }
  
  .esg-header h2 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
  
  .esg-header p {
    font-size: 1.1rem;
  }
  
  .esg-item {
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .esg-item.active {
    border-color: var(--primary);
    background: rgba(0, 86, 179, 0.03);
  }
}

/* Touch device improvements */
@media (hover: none) {
  .esg-item {
    opacity: 1;
  }
  
  .esg-item.inactive {
    opacity: 0.7;
  }
  
  .esg-item.active {
    opacity: 1;
  }
}

/* Loading state for images */
.esg-image,
.esg-mobile-image img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Print styles */
@media print {
  .esg-commitment {
    background: white !important;
    padding: 2rem 0;
  }
  
  .esg-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .esg-image-container {
    display: none;
  }
  
  .esg-list-container {
    width: 100%;
  }
  
  .esg-mobile-image {
    display: none;
  }
}



/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: -1px 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    /*
    background: #595c65;
    color: #ffffff;
    */
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.15);
}

/* FAQ Question */
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
}

.faq-item.active .faq-question {
    background: #f8f9ff;
    color: #667eea;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #667eea;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question i {
    color: #667eea;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #764ba2;
}

/* FAQ Answer */
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 500px;
    border-top-color: #e2e8f0;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Animation for FAQ items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.5s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .container {
        /*padding: 0 1rem;*/
    }
    
    .section-header h2 {
        font-size: 2rem;
        color: #2d3748;
    }
    
    .section-header p {
        font-size: 1rem;
        color: #718096;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        color: #2d3748;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        color: #4a5568;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
        color: #2d3748;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.25rem;
        background: #667eea;
        color: #ffffff;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        color: #2d3748;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        color: #4a5568;
    }
}

/* other service css */

/* Design 5: Minimal Cards with Gradient Accents */
.industries-minimal {
  padding: 5rem 0;
  background: var(--light);
}

.minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.minimal-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.minimal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.minimal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.minimal-card:hover::before {
  transform: scaleX(1);
}

.card-graphic {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.card-graphic i {
  font-size: 2rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.graphic-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--primary) 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.1;
  z-index: 1;
}

.minimal-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.minimal-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-stats span {
  background: rgba(0, 86, 179, 0.08);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 86, 179, 0.1);
}


/* Design 5: Minimal Cards with Gradient Accents */
.industries-minimal {
  padding: 5rem 0;
  background: var(--light);
}

.minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.minimal-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.minimal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.minimal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.minimal-card:hover::before {
  transform: scaleX(1);
}

.card-graphic {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.card-graphic i {
  font-size: 2rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.graphic-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--primary) 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.1;
  z-index: 1;
}

.minimal-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.minimal-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-stats span {
  background: rgba(0, 86, 179, 0.08);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 86, 179, 0.1);
}

/* Design 1: Timeline Style */
.about-timeline {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

.about-timeline .section-header {
  position: relative;
  z-index: 1;
  color: white;
}

.about-timeline .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.about-timeline .section-header h2,
.about-timeline .section-header p {
  color: white;
}

.timeline-container {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.timeline-main {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.company-intro {
  margin-bottom: 3rem;
}

.company-intro h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.company-intro p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.mission, .vision {
  background: rgba(0, 86, 179, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.mission h4, .vision h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.mission p, .vision p {
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-content {
  background: rgba(0, 86, 179, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1;
  border-left: 3px solid var(--primary);
}

.timeline-content h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-content p {
  color: var(--muted);
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.value-card h4 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .timeline-main {
    padding: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}


/* Design 2: Interactive Flip Cards */
.services-flip {
  padding: 6rem 0;
  background: var(--light);
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.flip-card {
  height: 350px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-front {
  background: white;
  border: 2px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.flip-back {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: rotateY(180deg);
  text-align: left;
  justify-content: flex-start;
}

.front-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
}

.flip-front h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.flip-front p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.flip-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.flip-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.flip-back h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
  width: 100%;
}

.flip-back ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex: 1;
}

.flip-back li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.flip-back li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.flip-back .btn {
  width: 100%;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .flip-grid {
    grid-template-columns: 1fr;
  }
  
  .flip-card {
    height: 320px;
  }
}

/* Design 3: Animated Service Cards with Stats */
.services-animated {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.animated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.animated-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.animated-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.animated-card::before {
  content: attr(data-stat);
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--secondary);
  color: #1c1300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.animated-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.animated-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}

.card-stats {
  text-align: right;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.card-body p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.card-features span {
  background: rgba(0, 86, 179, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 86, 179, 0.2);
}

.card-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5rem;
  margin-top: auto;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .animated-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .animated-grid {
    grid-template-columns: 1fr;
  }
  
  .animated-card {
    padding: 2rem;
  }
}


/* Business Card */

        .banner-cards {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 200px;
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .banner-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .banner-card:nth-child(1) {
            grid-column: span 6;
            grid-row: span 2;
        }

        .banner-card:nth-child(2) {
            grid-column: span 3;
            grid-row: span 1;
        }

        .banner-card:nth-child(3) {
            grid-column: span 3;
            grid-row: span 1;
        }

        .banner-card:nth-child(4) {
            grid-column: span 6;
            grid-row: span 2;
        }

        .banner-card:hover {
            transform: scale(0.98);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .banner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }

        .banner-card:hover::before {
            opacity: 0.9;
        }

        .banner-card--white::before {
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.8) 100%);
        }

        .wrap {
            position: relative;
            height: 100%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .banner-card__wrapper {
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .banner-card:hover .banner-card__wrapper {
            transform: translateY(0);
        }

        .banner-card--white .banner-card__wrapper {
            color: #1a1a1a;
        }

        .banner-card__title {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .banner-card__text-holder {
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
            max-width: 400px;
        }

        .banner-card:hover .banner-card__text-holder {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-card__text {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .banner-card__link-holder {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.2s;
        }

        .banner-card:hover .banner-card__link-holder {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-card__link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: inherit;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .banner-card--white .banner-card__link {
            background: rgba(0,0,0,0.1);
            border: 1px solid rgba(0,0,0,0.2);
        }

        .banner-card__link:hover {
            background: rgba(255,255,255,0.3);
            transform: translateX(5px);
        }

        .banner-car__icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .banner-card__link:hover .banner-car__icon {
            transform: translateX(3px);
        }

        @media (max-width: 1024px) {
            .banner-cards {
                grid-template-columns: 1fr;
                grid-auto-rows: 300px;
            }
            
            .banner-card {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
            }
        }

        @media (max-width: 768px) {
            /*
            body {
                padding: 1rem;
            }
            */
            
            .banner-cards {
                gap: 1rem;
            }
            
            .wrap {
                padding: 1.5rem;
            }
            
            .banner-card__title {
                font-size: 1.5rem;
            }
        }


        /* Main grid container - Equal size boxes */
        .banner-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* All equal columns */
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Card base styling - All boxes same size */
        .banner-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            height: 400px; /* Fixed equal height for all boxes */
            width: 100%; /* Equal width controlled by grid */
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            aspect-ratio: 3/4; /* Maintain consistent aspect ratio */
        }

        /* All cards have identical dimensions */
        .banner-card:nth-child(1),
        .banner-card:nth-child(2),
        .banner-card:nth-child(3),
        .banner-card:nth-child(4) {
            grid-column: auto; /* Equal columns */
            height: 400px;
        }

        /* Color overlay system - All same intensity */
        .banner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0.6;
            transition: all 0.4s ease;
            z-index: 1;
        }

        /* Individual color overlays with same opacity */
        .banner-card:nth-child(1)::before {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.75) 0%, rgba(41, 128, 185, 0.85) 100%);
            mix-blend-mode: multiply;
        }

        .banner-card:nth-child(2)::before {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.75) 0%, rgba(39, 174, 96, 0.85) 100%);
            mix-blend-mode: multiply;
        }

        .banner-card:nth-child(3)::before {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.75) 0%, rgba(142, 68, 173, 0.85) 100%);
            mix-blend-mode: multiply;
        }

        .banner-card:nth-child(4)::before {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.75) 0%, rgba(192, 57, 43, 0.85) 100%);
            mix-blend-mode: multiply;
        }

        /* Hover effects */
        .banner-card:hover::before {
            opacity: 0.8;
        }

        .banner-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* Content wrapper */
        .wrap {
            position: relative;
            padding: 2rem;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .banner-card__wrapper {
            color: white;
            transform: translateY(10px);
            transition: transform 0.4s ease;
        }

        .banner-card:hover .banner-card__wrapper {
            transform: translateY(0);
        }

        /* Title styling - Consistent across all cards */
        .banner-card__title {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        /* Text content - Same for all cards */
        .banner-card__text-holder {
            margin-bottom: 1.2rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
            max-width: 100%;
        }

        .banner-card:hover .banner-card__text-holder {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-card__text {
            font-size: 1rem;
            line-height: 1.5;
            font-weight: 400;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Link styling */
        .banner-card__link-holder {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.2s;
        }

        .banner-card:hover .banner-card__link-holder {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-card__link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .banner-card__link:hover {
            background: rgba(255,255,255,0.35);
            transform: translateX(5px);
            border-color: rgba(255,255,255,0.6);
        }

        .banner-card__icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .banner-card__link:hover .banner-card__icon {
            transform: translateX(3px);
        }

        /* Size indicator */
        .size-indicator {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 3;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .banner-card:hover .size-indicator {
            opacity: 1;
        }

        /* Tablet Layout (768px - 1024px) - 2x2 grid */
        @media (max-width: 1024px) and (min-width: 769px) {
            .banner-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .banner-card {
                height: 350px;
            }
            
            .header h1 {
                font-size: 2.2rem;
            }
            
            .wrap {
                padding: 1.8rem;
            }
            
            .size-indicator {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
        }

        /* Small Tablet Layout (600px - 768px) - 2x2 grid */
        @media (max-width: 768px) and (min-width: 601px) {
            body {
                padding: 1.5rem;
            }
            
            .header {
                margin-bottom: 2rem;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .banner-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            
            .banner-card {
                height: 320px;
            }
            
            .wrap {
                padding: 1.5rem;
            }
            
            .size-indicator {
                top: 1rem;
                right: 1rem;
                font-size: 0.7rem;
                padding: 0.3rem 0.6rem;
            }
            
            .banner-card__title {
                font-size: 1.6rem;
            }
            
            .banner-card__text {
                -webkit-line-clamp: 2;
            }
        }

        /* Mobile Layout (up to 600px) - 1x4 grid */
        @media (max-width: 600px) {
            /*
            body {
                padding: 1rem;
            }
            */
            
            .header {
                margin-bottom: 1.5rem;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .header p {
                font-size: 0.95rem;
            }
            
            .banner-cards {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .banner-card {
                height: 280px;
            }
            
            .wrap {
                padding: 1.5rem;
            }
            
            .size-indicator {
                top: 1rem;
                right: 1rem;
                font-size: 0.65rem;
                padding: 0.25rem 0.5rem;
            }
            
            .banner-card__title {
                font-size: 1.5rem;
            }
            
            .banner-card__text {
                font-size: 0.95rem;
                -webkit-line-clamp: 2;
            }
            
            .banner-card__link {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
@media (max-width: 600px) {
    .banner-cards {
        grid-template-columns: 1fr;
        gap: 8rem;
      padding: 10px;
    }
}

        /* Small Mobile Layout (up to 400px) */
        @media (max-width: 400px) {
            .header h1 {
                font-size: 1.6rem;
            }
            
            .banner-card {
                height: 250px;
            }
            
            .wrap {
                padding: 1.2rem;
            }
            
            .size-indicator {
                top: 0.8rem;
                right: 0.8rem;
                font-size: 0.6rem;
                padding: 0.2rem 0.4rem;
            }
            
            .banner-card__title {
                font-size: 1.4rem;
                margin-bottom: 0.6rem;
            }
            
            .banner-card__text {
                font-size: 0.9rem;
                line-height: 1.4;
                -webkit-line-clamp: 2;
            }
            
            .banner-card__link {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }

        /* Accessibility improvements */
        .banner-card:focus-within {
            outline: 3px solid rgba(255, 255, 255, 0.8);
            outline-offset: 3px;
        }

        .banner-card__link:focus {
            outline: 2px solid rgba(255, 255, 255, 0.8);
            outline-offset: 2px;
        }

        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .banner-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .banner-card:nth-child(1) { animation-delay: 0.1s; }
        .banner-card:nth-child(2) { animation-delay: 0.2s; }
        .banner-card:nth-child(3) { animation-delay: 0.3s; }
        .banner-card:nth-child(4) { animation-delay: 0.4s; }

        /* Footer styling */
        .footer {
            text-align: center;
            margin-top: 3rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Dimensions info box */
        .dimensions-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            color: white;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .dimensions-info h2 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .dimensions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        .dimension-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .dimension-value {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .dimension-label {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .dimensions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .dimensions-grid {
                grid-template-columns: 1fr;
            }
        }


.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: -3rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.section-description {
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
}

/* Container for better layout control */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-cards-section {
    padding: 3rem 1.5rem;
}


 .accreditations {
            padding: 80px 20px;
            background: var(--secondary-color);
            overflow: hidden;
        }

        .accreditations-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .accreditations-content {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .accreditations-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .accreditations-content p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /*
        .btn {
            display: inline-block;
            padding: 12px 32px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--primary-color);
        }
        */

        /* Logo Slider Container */
        .accreditations-logos-container {
            position: relative;
            width: 100%;
            padding: 20px 0;
        }

        .accreditations-logos-wrapper {
            overflow: hidden;
            position: relative;
        }

        .accreditations-logos {
            display: flex;
            gap: 40px;
            padding: 20px 0;
        }

        .accreditations-track {
            display: flex;
            gap: 40px;
            animation: slide 40s linear infinite;
        }

        .accreditation-item {
            flex: 0 0 auto;
            width: 180px;
            height: 120px;
            background: var(--white);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .accreditation-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .accreditation-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .accreditation-link img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .accreditation-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .slider-btn {
            background: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Pause on hover */
        .accreditations-logos:hover .accreditations-track {
            animation-play-state: paused;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .accreditations-content h2 {
                font-size: 2rem;
            }
            
            .accreditation-item {
                width: 160px;
                height: 110px;
            }
        }

        @media (max-width: 768px) {
            .accreditations {
                padding: 60px 15px;
            }

            .accreditations-content {
                margin-bottom: 40px;
            }

            .accreditations-content h2 {
                font-size: 1.75rem;
            }

            .accreditations-content p {
                font-size: 1.1rem;
            }

            .accreditation-item {
                width: 140px;
                height: 100px;
                padding: 15px;
            }

            .accreditations-track {
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .accreditations {
                padding: 40px 10px;
            }

            .accreditations-content h2 {
                font-size: 1.5rem;
            }

            .accreditation-item {
                width: 120px;
                height: 90px;
            }

            .accreditations-track {
                gap: 20px;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* Animation */
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-180px * 6 - 40px * 6));
            }
        }

        /* Grid Layout Alternative (for desktop) */
        @media (min-width: 1024px) {
            .accreditations-container.grid-layout {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }

            .accreditations-container.grid-layout .accreditations-content {
                text-align: left;
                margin-bottom: 0;
            }

            .accreditations-container.grid-layout .accreditations-logos-container {
                padding: 0;
            }
        }


        /*
        .btn {
            display: inline-block;
            padding: 12px 32px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--primary-color);
        }


*/

/* Testimonial Section Base Styles */
.testimonial-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 40px;
    position: relative;
    max-width: 700px;
}

.testimonial-content::before {
    content: "''";
    font-size: 5rem;
    color: #3b82f6;
    opacity: 0.1;
    position: absolute;
    left: -20px;
    top: -30px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #e0f2fe;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.client-details .client-role {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 8px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.control-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.control-btn:active {
    transform: translateY(0);
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Progress and Play Controls */
.slider-status {
    display: flex;
    align-items: center;
    gap: 24px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.auto-play-control {
    flex-shrink: 0;
}

.play-pause-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.play-pause-btn:active {
    transform: translateY(0);
}

.play-pause-btn.paused .pause-icon {
    display: none;
}

.play-pause-btn.paused .play-icon {
    display: block;
}

.play-pause-btn.paused .play-text {
    content: "Play";
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 40px 32px;
    }
    
    .testimonial-content {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-content {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .slider-controls {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .slider-status {
        flex-direction: column;
        gap: 16px;
    }
    
    .progress-bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .control-btn {
        width: 48px;
        height: 48px;
    }
}