@media (max-width:480px) {
  /* * {
    outline: 1px solid red;
  } */


  /* Navbar height */

  .nav-wrapper {
    height: 64px;
  }

  /* Logo size */

  .logo img {
    height: 32px;
  }

  /* Container padding */

  .ub-container {
    padding-inline: 16px;
  }

  .nav-links {
    position: absolute;
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    display: none;
  }

  /* mobile menu */

  .hamburger {
    display: flex;
  }

  /* hide CTA */

  .nav-cta {
    display: none;
  }

  /* mobile menu */

  .nav-links {
    position: fixed;
    top: 64px;
    /* start below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-120%);
    transition: transform .35s ease;

  }

  /* open state */

  .nav-links.active {
    display: flex;
    transform: translateY(0);
  }

  /* bigger links */

  .nav-links a {
    font-size: 20px;
  }

  /* FLOTAING BTN */

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* ------------------------- HOME PAGE CSS START HERE ------------------- */

  /* HOME PAGE : HERO SECTION */

  /* HERO SECTION */

  .hero {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  /* layout */

  .hero-wrapper {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .hero-visual {
    order: 1;
  }

  .hero-visual img {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  /* TEXT AFTER IMAGE */

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  /* content width */

  .hero-content {
    max-width: 100%;
  }

  /* badge */

  .hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* heading */

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* paragraph */

  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* buttons */

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 320px;
  }

  /* trust indicators */

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }

  /* hero image */

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  /* prevent overflow from glow */

  .hero-visual {
    position: relative;
    overflow: hidden;
  }

  /* HOME PAGE : REALITY SECTION */

  .reality-section {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .reality-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .reality-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }


  /* text block */

  .reality-text {
    max-width: 350px;
    margin: auto;
  }

  /* heading spacing */

  .reality-text h2 {
    margin-bottom: 14px;
  }

  /* cards grid */

  .reality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* cards */

  .reality-card {
    padding: 26px;
  }

  /* last card width fix */

  .reality-card:nth-child(3) {
    grid-column: span 1;
  }

  /* HOME PAGE : SERVICE SECTION */

  .services-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* section title width */

  .services-section .section-title {
    max-width: 350px;
    margin: auto;
  }

  .section-subtitle {
    margin: 12px auto 50px auto;
    color: var(--muted);
  }

  /* service cards */

  .service-card {
    padding: 26px;
    text-align: center;
  }

  .service-card:hover {
    transform: none;
  }

  /* icon center */

  .service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  /* service link */

  .service-link {
    justify-content: center;
  }

  .services-cta {
    margin-top: 80px;
  }

  /* HOME PAGE : ABOUT SECTION */
  .about-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-content h2 {
    padding-bottom: 10px;
  }

  /* image first */

  .about-visual {
    order: 1;
  }

  .about-content {
    order: 2;
    max-width: 350px;
    margin: auto;
  }

  /* image */

  .about-visual img {
    width: 100%;
    max-width: 350px;
    margin: auto;
    border-radius: 12px;
  }

  /* highlights */

  .about-highlights {
    justify-content: center;
    gap: 12px;
  }

  /* highlight pills */

  .about-point {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* button */

  .about-cta a {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  /* HOME PAGE : PORTFOLIO SECTION */

  .portfolio-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .portfolio-layout {
    margin-top: 40px;
  }

  /* featured project */

  .portfolio-featured {
    margin-bottom: 30px;
  }

  /* featured image */

  .portfolio-featured img {
    width: 100%;
  }

  /* project info */

  .portfolio-info {
    padding: 20px;
    text-align: center;
  }

  /* portfolio grid */

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* portfolio cards */

  .portfolio-card {
    padding: 20px;
    text-align: center;
  }

  /* images */

  .portfolio-image img {
    width: 100%;
  }

  /* button center */

  .portfolio-btn {
    justify-content: center;
    margin-top: 12px;
  }

  /* HOME PAGE : TESTIMONIAL SECTION  */

  .testimonial-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* wrapper spacing */

  .testimonial-wrapper {
    margin-top: 35px;
  }

  /* testimonial card */

  .testimonial-card {
    padding: 28px 22px;
    max-width: 100%;
  }

  /* testimonial text */

  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
  }

  /* stars */

  .testimonial-stars {
    font-size: 18px;
    margin-bottom: 14px;
  }

  /* author */

  .testimonial-author strong {
    font-size: 15px;
  }

  /* quote mark */

  .quote-mark {
    font-size: 70px;
    top: -5px;
    left: 14px;
  }

  /* HOME PAGE : PROCESS SECTION */

  .process-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  /* PROCESS SECTION TITLE */

  .process-section .section-title {
    max-width: 350px;
    margin: auto;
    text-align: center;
  }

  /* subtitle spacing */

  .process-section .section-subtitle {
    margin: 12px auto 35px auto;
    font-size: 15px;
    line-height: 1.5;
  }

  /* remove timeline line */

  .process-timeline::before {
    display: none;
  }

  /* steps */

  .process-step {
    text-align: center;
    max-width: 310px;
    margin: auto;
  }

  /* step circle */

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* icon */

  .process-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* description */

  .process-step p {
    font-size: 16px;
  }

  /* HOME PAGE : CTA SECTION */

  .cta-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .cta-wrapper::before {
    width: 260px;
    height: 260px;
  }

  .cta-wrapper {
    padding: 40px 24px;
    max-width: 100%;
  }

  /* heading */

  .cta-content h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  /* paragraph */

  .cta-content p {
    font-size: 15px;
    max-width: 350px;
    margin: auto;
    margin-bottom: 24px;
  }

  /* buttons */

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  /* ------------------------ SERVICE PAGE CSS START HERE -------------------------- */

  /* WHY SECTION  */

  .service-why-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* GRID */

  .service-why-section .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  /* CARD */

  .why-card-service {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-md);
  }

  /* ICON */

  .why-card-service .why-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .why-card-service .why-icon svg {
    width: 24px;
    height: 24px;
  }

  /* TEXT */

  .why-card-service h3 {
    margin-bottom: 6px;
  }

  .why-card-service p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* FAQ SECTION */

  .faq-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  /* WRAPPER */

  .faq-wrapper {
    margin-top: 40px;
  }

  /* ITEM */

  .faq-item {
    padding: 16px 10px;
  }

  /* QUESTION */

  .faq-question {
    gap: 10px;
  }

  .faq-question h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  /* ICON (+) */

  .faq-question span {
    font-size: 20px;
  }

  /* ANSWER */

  .faq-answer p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
  }

  .faq-item {
    transition: 0.3s ease;
  }

  .faq-item.active {
    padding-bottom: 20px;
  }

  /* --------------------- WORK PAGE CSS START HERE------------------------- */

  /* WORK PAGE : HERO SECTION */

  .work-hero {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  /* layout */

  .work-hero-wrapper {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .work-hero-visual {
    order: 1;
  }

  .work-hero-visual img {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  /* TEXT AFTER IMAGE */

  .work-hero-content {
    order: 2;
    max-width: 100%;
  }

  /* content width */

  .work-hero-content {
    max-width: 100%;
  }

  /* badge */

  .work-hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* heading */

  .work-hero h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* paragraph */

  .work-hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* buttons */

  .work-hero .hero-buttons {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .work-hero .hero-buttons a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .work-hero .hero-buttons {
    width: 100%;
  }

  /* trust indicators */

  .work-hero .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }

  /* hero image */

  .work-hero-visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  /* prevent overflow from glow */

  .work-hero-visual {
    position: relative;
    overflow: hidden;
  }

  /*WORK SECTION : FEATURED SECTION */

  .work-featured-section {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .work-featured {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    text-align: center;
  }

  /* IMAGE */

  .work-featured-image {
    order: 1;
    background: #ffffff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--soft-shadow);
  }

  .work-featured-image img {
    width: 100%;
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
  }

  /* CONTENT */

  .work-featured-content {
    order: 2;
    max-width: 100%;
  }

  /* TAG */

  .project-tag {
    font-size: 13x;
    margin-bottom: 8px;
  }

  /* HEADING */

  .work-featured-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* TEXT */

  .work-featured-content p {
    font-size: 16px;
    margin-bottom: 14px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* LIST */

  .project-points {
    list-style: none;
    padding: 0;
    margin: 0 auto 18px;
    max-width: 260px;
    text-align: left;
  }

  .project-points li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* BUTTON */

  .work-featured-content .btn-primary {
    width: 100%;
    max-width: 260px;
    margin: 16px auto 0;
    justify-content: center;
  }

  /* WORK PAGE : WORK GRID */

  .work-grid-section {
    padding-top: 60px;
    padding-bottom: 110px;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
  }

  /* CARD */

  .work-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: 0.3s ease;
  }

  /* IMAGE */

  .work-card img {
    width: 100%;
    display: block;
  }

  /* CONTENT */

  .work-card-content {
    padding: 18px;
    text-align: center;
  }

  .work-section-subtitle {
    margin: 12px auto 0px auto;
  }

  /* TAG */

  .project-tag {
    font-size: 13px;
    color: var(--brand-primary);
  }

  /* TITLE */

  .work-card-content h4 {
    margin: 8px 0 6px;
    font-size: 18px;
  }

  /* TEXT */

  .work-card-content p {
    font-size: 14px;
    margin-bottom: 12px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* BUTTON */

  .work-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 10px 18px;
    margin-top: 6px;
  }

  /* NOTE */

  .project-note {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
  }

  /* WORK PAGE : CASE STUDY */

  .case-study-section {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .case-study {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    text-align: center;
  }

  /* IMAGE */

  .case-study-image {
    order: 1;
  }

  /* CONTENT */

  .case-study-content {
    order: 2;
    max-width: 100%;
  }


  /* BOXES */

  .case-box {
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 14px;
    text-align: left;
    box-shadow: var(--soft-shadow);
  }

  /* ICON */

  .case-icon {
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* WORK PAGE : STATS SECTION */

  .stats-section {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    text-align: center;
  }

  /* ITEM */

  .stat-item {
    background: #ffffff;
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--soft-shadow);
  }

  /* ICON */

  .stat-icon {
    color: var(--brand-primary);
    margin-bottom: 10px;
  }

  /* NUMBER */

  .stat-item h3 {
    font-size: 26px;
    margin-bottom: 4px;
  }

  /* TEXT */

  .stat-item p {
    font-size: 14px;
    color: var(--muted);
  }

  /* WORK PAGE : WHY SECTION */

  .why-work-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* GRID */

  .why-work-section .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  /* CARD */

  .why-work-section .why-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-md);
  }

  /* ICON */

  .why-work-section .why-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .why-work-section .why-icon svg {
    width: 24px;
    height: 24px;
  }

  /* TEXT */

  .why-work-section .why-card h3 {
    margin-bottom: 6px;
  }

  .why-work-section .why-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ------------------------- ABOUT PAGE CSS START HERE ------------------ */

  /* ABOUT PAGE : WHO WE ARE SECTION */

  .about-hero {
    padding-bottom: 60px;
  }

  .about-page-visual img {
    width: 100%;
    max-width: none;
  }

  /* ABOUT PAGE : WHY SECTION */

  .why-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* GRID */

  .why-section .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  /* CARD */

  .why-section .why-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-md);
  }

  /* ICON */

  .why-section .why-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .why-section .why-icon svg {
    width: 24px;
    height: 24px;
  }

  /* TITLE */

  .why-section .why-card h3 {
    margin-bottom: 6px;
  }

  /* TEXT */

  .why-section .why-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ------------------------ CONTACT PAGE CSS CODE START HERE ------------------------- */
  /* CONTACT PAGE : HERO SECTION */

  .contact-hero {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  /* layout */

  .contact-hero-wrapper {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .contact-hero-visual {
    order: 1;
  }

  .contact-hero-visual img {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  /* TEXT AFTER IMAGE */

  .contact-hero-content {
    order: 2;
    max-width: 100%;
  }

  /* badge */

  .contact-hero .hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* heading */

  .contact-hero h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* paragraph */

  .contact-hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* buttons */

  .contact-hero .hero-buttons {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    width: 100%;
  }

  .contact-hero .hero-buttons a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* trust */

  .contact-hero .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }

  /* image */

  .contact-hero-visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  /* overflow fix */

  .contact-hero-visual {
    position: relative;
    overflow: hidden;
  }

  /* CONTACT PAGE : INFO SECTION */

  .contact-info-section {
    padding-bottom: 100px;
  }

  /* CONTACT PAGE : FORM SECTION */

  .contact-form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    text-align: center;
  }

  /* LEFT CONTENT */

  .contact-left {
    max-width: 100%;
  }

  .contact-left p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  /* POINTS */

  .contact-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    align-items: center;
  }

  /* FORM */

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* ROW (name + phone) */

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* INPUTS */

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    outline: none;
  }

  /* TEXTAREA */

  .contact-form textarea {
    min-height: 120px;
    resize: none;
  }

  /* BUTTON */

  .contact-form button {
    width: 100%;
    justify-content: center;
  }

  /* NOTE */

  .form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
  }

  /* CONTACT PAGE : TRUST SECTION */

  .contact-trust-section {
    padding-bottom: 90px;
  }
}

@media (min-width:481px) and (max-width:600px) {
  /* NAVBAR */

  .nav-wrapper {
    height: 70px;
  }

  .logo img {
    height: 36px;
  }

  .nav-links {
    position: absolute;
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    display: none;
  }

  /* mobile menu */

  .hamburger {
    display: flex;
  }

  /* hide CTA */

  .nav-cta {
    display: none;
  }

  /* mobile menu */

  .nav-links {
    position: fixed;
    top: 64px;
    /* start below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-120%);
    transition: transform .35s ease;

  }

  /* open state */

  .nav-links.active {
    display: flex;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 20px;
  }

  /* FOOTER SECTION */

  .site-footer {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  /* FOOTER GRID */

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* brand section full width */

  .footer-brand {
    grid-column: span 2;
    max-width: 460px;
  }

  /* brand text */

  .footer-brand p {
    max-width: 360px;
  }

  /* logo */

  .footer-logo img {
    height: 44px;
    margin-bottom: 16px;
  }

  /* links */

  .footer-links {
    text-align: left;
  }

  /* social icons */

  .footer-social {
    justify-content: flex-start;
    margin-top: 16px;
  }

  /* footer bottom */

  .footer-bottom {
    margin-top: 45px;
    text-align: center;
  }

  /* -------------------------- Floating btn ----------------------- */


  /* FLOTAING BTN */

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* ------------------------- HOME PAGE CSS START HERE ------------------- */

  /* HOME PAGE : HERO SECTION */

  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  /* layout */

  .hero-wrapper {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .hero-visual {
    order: 1;
  }

  .hero-visual img {
    width: 100%;
    max-width: 420px;
    margin: auto;
  }

  /* TEXT AFTER IMAGE */

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  /* badge */

  .hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* heading */

  .hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* paragraph */

  .hero p {
    font-size: 17px;
    margin-bottom: 24px;
  }

  /* buttons */

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 320px;
  }

  /* trust indicators */

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
  }

  /* hero image */

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  /* prevent overflow from glow */

  .hero-visual {
    position: relative;
    overflow: hidden;
  }

  /* HOME PAGE : REALITY SECTION */

  .reality-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .reality-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  /* text */

  .reality-text {
    max-width: 420px;
    margin: auto;
  }

  /* cards grid */

  .reality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* last card full width */

  .reality-card:nth-child(3) {
    grid-column: span 2;
  }

  /* cards */

  .reality-card {
    padding: 28px;
  }

  /* icons center */

  .reality-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .reality-icon svg {
    width: 24px;
    height: 24px;
  }

  /* HOME PAGE : SERVICE SECTION */
  .services-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* section title width */

  .services-section .section-title {
    max-width: 420px;
    margin: auto;
  }

  /* service cards */

  .service-card {
    padding: 28px;
  }

  /* icons */

  .service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  /* text center */

  .service-card {
    text-align: center;
  }

  /* service link */

  .service-link {
    justify-content: center;
  }

  .service-card:hover {
    transform: none;
  }

  .services-cta {
    margin-top: 80px;
  }

  /* HOME PAGE : ABOUT SECTION */

  .about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* image first */

  .about-visual {
    order: 1;
  }

  .about-visual img {
    width: 100%;
    max-width: 500px;
    margin: auto;
    border-radius: 14px;
  }

  /* text */

  .about-content {
    order: 2;
    max-width: 500px;
    margin: auto;
  }

  /* paragraph */

  .about-content p {
    margin: auto;
    margin-top: 16px;
  }

  /* highlight pills */

  .about-highlights {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* highlight items */

  .about-point {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* button */

  .about-cta a {
    max-width: 260px;
    margin: auto;
    justify-content: center;
  }

  /* HOME PAGE : PORTFOLIO SECTION */

  .portfolio-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .portfolio-layout {
    margin-top: 50px;
  }

  /* featured project */

  .portfolio-featured {
    margin-bottom: 35px;
  }

  /* featured image */

  .portfolio-featured img {
    width: 100%;
  }

  /* featured info */

  .portfolio-info {
    padding: 22px;
    text-align: center;
  }

  /* portfolio grid */

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* portfolio cards */

  .portfolio-card {
    padding: 22px;
    text-align: center;
  }

  /* images */

  .portfolio-image img {
    width: 100%;
  }

  /* button */

  .portfolio-btn {
    justify-content: center;
    margin-top: 12px;
  }

  .portfolio-image {
    border-radius: 12px;
    overflow: hidden;
  }

  /* HOME PAGE : TESTIMONIAL SECTION */

  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .testimonial-wrapper {
    margin-top: 40px;
  }

  /* testimonial card */

  .testimonial-card {
    max-width: 420px;
    padding: 32px 26px;
    margin: auto;
  }

  /* testimonial text */

  .testimonial-text {
    font-size: 17px;
    line-height: 1.7;
  }

  /* stars */

  .testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
  }

  /* author */

  .testimonial-author strong {
    font-size: 16px;
  }

  /* quote mark */

  .quote-mark {
    font-size: 80px;
    top: -8px;
    left: 18px;
  }

  /* HOME PAGE : PROCESS SECTION */
  .process-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 45px;
  }

  /* remove horizontal line */

  .process-timeline::before {
    display: none;
  }

  /* steps */

  .process-step {
    text-align: center;
    max-width: 240px;
    margin: auto;
  }

  /* step number */

  .step-number {
    width: 46px;
    height: 46px;
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* icons */

  .process-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* text */

  .process-step p {
    font-size: 15px;
    line-height: 1.5;
  }

  .process-step {
    padding-bottom: 8px;
  }

  /* HOME PAGE : CTA SECTION */

  .cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-wrapper {
    padding: 50px 30px;
    max-width: 520px;
    margin: auto;
  }

  /* heading */

  .cta-content h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  /* paragraph */

  .cta-content p {
    font-size: 16px;
    max-width: 380px;
    margin: auto;
    margin-bottom: 26px;
  }

  /* buttons */

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .cta-buttons a {
    max-width: 220px;
    justify-content: center;
  }

  .cta-wrapper::before {
    width: 300px;
    height: 300px;
  }

  /* ------------------------ SERVICE PAGE CSS START HERE -------------------------- */

  /* SERVICE PAGE : FAQ SECTION*/
  .faq-wrapper {
    max-width: 500px;
    margin: 45px auto 0;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  /* SERVICE PAGE : WHY SECTION */
  .service-why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-card-service {
    padding: 26px;
  }

  /* --------------------------- WORK PAGE CSS START HERE---------------------------- */

  .work-hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  /* layout */

  .work-hero-wrapper {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .work-hero-visual {
    order: 1;
  }

  .work-hero-visual img {
    width: 100%;
    max-width: 420px;
    margin: auto;
  }

  /* TEXT AFTER IMAGE */

  .work-hero-content {
    order: 2;
    max-width: 100%;
  }

  /* badge */

  .work-hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* heading */

  .work-hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* paragraph */

  .work-hero p {
    font-size: 17px;
    margin-bottom: 24px;
  }

  /* buttons */

  .work-hero .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
  }

  .work-hero .hero-buttons a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* trust */

  .work-hero .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
  }

  /* hero image */

  .work-hero-visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  /* overflow fix */

  .work-hero-visual {
    position: relative;
    overflow: hidden;
  }

  /* WORK PAGE : WORK FEATURED */

  .work-featured {
    gap: 36px;
    text-align: center;
  }

  /* IMAGE */

  .work-featured-image img {
    max-width: 420px;
  }

  /* CONTENT */

  .work-featured-content h3 {
    font-size: 24px;
  }

  .work-featured-content p {
    font-size: 16px;
    /* max-width: 360px; */
  }

  /* LIST */

  .project-points {
    /* max-width: 280px; */
    text-align: center;
    align-items: center;
  }

  /* BUTTON */

  .work-featured-content .btn-primary {
    max-width: 300px;
  }

  /* WORK PAGE : GRID SECTION */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .work-section-subtitle {
    margin: 12px auto 0px auto;
  }

  /* CARD */

  .work-card {
    border-radius: var(--radius-md);
  }

  /* CONTENT */

  .work-card-content {
    padding: 20px;
  }

  .work-card-content h4 {
    font-size: 17px;
  }

  .work-card-content p {
    font-size: 14px;
    max-width: 100%;
  }

  /* BUTTON */

  .work-card .btn-primary {
    font-size: 13px;
    padding: 10px 16px;
  }

  /* WORK PAGE : STATS GRID */

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* CARD */

  .stat-item {
    padding: 24px;
  }

  /* NUMBER */

  .stat-item h3 {
    font-size: 28px;
  }

  /* TEXT */

  .stat-item p {
    font-size: 14px;
  }

  /* WORK PAGE : WHY SECTION */
  .why-work-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* CARD */

  .why-work-section .why-card {
    padding: 26px;
    text-align: center;
  }

  /* ICON */

  .why-work-section .why-icon {
    justify-content: center;
  }

  .why-work-section .why-icon svg {
    width: 24px;
    height: 24px;
  }

  /* TEXT */

  .why-work-section .why-card h3 {
    font-size: 17px;
  }

  .why-work-section .why-card p {
    font-size: 14px;
  }

  /* ------------------------- AOBUT PAGE CSS START HERE ---------------------- */

  .about-hero {
    padding-bottom: 70px;
  }

  /* ABOUT PAGE : WHY SECTION */

  .why-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-why-section {
    padding-bottom: 110px;
  }

  /* GRID */

  .why-section .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  /* CARD */

  .why-section .why-card {
    text-align: center;
    padding: 26px;
    border-radius: var(--radius-md);
  }

  /* ICON */

  .why-section .why-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .why-section .why-icon svg {
    width: 24px;
    height: 24px;
  }

  /* TITLE */

  .why-section .why-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  /* TEXT */

  .why-section .why-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ------------------------- CONTACT PAGE CSS START HERE ------------------------ */

  /* CONTACT PAGE : HERO SECTION */

  .contact-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  /* layout */

  .contact-hero-wrapper {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .contact-hero-visual {
    order: 1;
  }

  .contact-hero-visual img {
    width: 100%;
    max-width: 420px;
    margin: auto;
  }

  /* TEXT AFTER IMAGE */

  .contact-hero-content {
    order: 2;
    max-width: 100%;
  }

  /* badge */

  .contact-hero .hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* heading */

  .contact-hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* paragraph */

  .contact-hero p {
    font-size: 17px;
    margin-bottom: 24px;
  }

  /* buttons */

  .contact-hero .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
  }

  .contact-hero .hero-buttons a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* trust */

  .contact-hero .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
  }

  /* image */

  .contact-hero-visual img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  /* overflow fix */

  .contact-hero-visual {
    position: relative;
    overflow: hidden;
  }

  /* CONTACT PAGE : INFO SECTION */

  .contact-info-section {
    padding-bottom: 100px;
  }

  /* CONTACT PAGE : FORM SECTION */

  .contact-form-section {
    padding-bottom: 70px;
  }

  .contact-wrapper {
    gap: 40px;
    text-align: center;
  }

  /* ROW */

  .form-row {
    flex-direction: row;
    gap: 16px;
  }

  .form-row input {
    width: 50%;
  }

  /* TEXT */

  .contact-left p {
    font-size: 17px;
  }

  .contact-points {
    gap: 10px;
  }

  /* CONTACT PAGE : TRUST SECTION */

  .trust-section {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  /* GRID */

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .contact-section-subtitle {
    margin: 12px auto 0px auto;
  }

  /* CARD */

  .trust-item {
    padding: 26px;
    text-align: center;
    border-radius: var(--radius-md);
  }

  /* ICON */

  .trust-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--brand-primary);
  }

  /* TITLE */

  .trust-item h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  /* TEXT */

  .trust-item p {
    font-size: 14px;
    line-height: 1.5;
  }



}

@media (min-width:601px) and (max-width:768px) {

  /* nav */

  .nav-wrapper {
    height: 72px;
  }

  .logo img {
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    display: none;
  }

  /* mobile menu */

  .nav-links {
    position: fixed;
    top: 64px;
    /* start below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-120%);
    transition: transform .35s ease;

  }

  /* open state */

  .nav-links.active {
    display: flex;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 21px;
  }

  /* FOTTER */
  .site-footer {
    padding-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* brand full width */

  .footer-brand {
    grid-column: span 2;
    max-width: 600px;
  }

  /* logo */

  .footer-logo img {
    height: 46px;
    margin-bottom: 16px;
  }

  /* brand text */

  .footer-brand p {
    max-width: 420px;
  }

  /* links */

  .footer-links {
    text-align: left;
  }

  /* social icons */

  .footer-social {
    justify-content: flex-start;
    margin-top: 18px;
  }

  /* footer bottom */

  .footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
  }

  /* FLOTING CTA  */


  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
  }

  /* --------------------- HOME PAGE CSS START HERE ------------------------- */

  /* HERO SECTION */

  .hero {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  /* layout */

  .hero-wrapper {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .hero-visual {
    order: 1;
  }

  /* TEXT AFTER IMAGE */

  .hero-content {
    order: 2;
    max-width: 100%;
  }


  /* image */

  .hero-visual {
    order: 1;
  }

  .hero-visual img {
    width: 100%;
    max-width: 768px;
  }

  /* heading */

  .hero h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  /* paragraph */

  .hero p {
    font-size: 17px;
  }

  /* buttons */

  .hero-buttons {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* trust indicators */

  .hero-trust {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* HOME PAGE : REALITY SECTION */

  .reality-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  /* REALITY SECTION */

  .reality-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* text */

  .reality-text {
    max-width: 500px;
    margin: auto;
  }

  /* cards grid */

  .reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
  }

  .reality-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
  }

  .reality-card p {
    flex-grow: 1;
  }

  /* reset span rule */

  .reality-card:nth-child(3) {
    grid-column: auto;
  }

  /* center icon */

  .reality-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  /* HOME PAGE : SERVICE SECTION */

  /* .services-section{
    padding-top: 90px;
    padding-bottom: 90px;
  } */


  /* SERVICES GRID */

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* cards */

  .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
  }

  /* fix uneven height */

  .service-card p {
    flex-grow: 1;
  }

  /* center icon */

  .service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  /* text */

  .service-card {
    text-align: center;
    height: 100%;
  }

  /* link */

  .service-link {
    justify-content: center;
  }

  .service-card:hover {
    transform: translateY(-6px);
  }

  /* HOME PAGE : ABOUT SECTION */

  .about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* image first */

  .about-visual {
    order: 1;
  }

  .about-visual img {
    width: 100%;
    max-width: 768px;
    margin: auto;
  }

  /* text */

  .about-content {
    order: 2;
    max-width: 768px;
    margin: auto;
  }

  /* heading */

  .about-content h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  /* paragraph */

  .about-content p {
    margin-top: 16px;
    font-size: 16px;
  }

  /* highlights */

  .about-highlights {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* button */

  .about-cta a {
    margin: auto;
    justify-content: center;
  }

  /* HOME PAGE : PORTFOLIO SECTION */

  .portfolio-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .portfolio-layout {
    margin-top: 55px;
  }

  /* featured project */

  .portfolio-featured {
    margin-bottom: 40px;
  }

  /* featured image */

  .portfolio-featured img {
    width: 100%;
  }

  /* info */

  .portfolio-info {
    padding: 26px;
    text-align: center;
  }

  /* grid */

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* cards */

  .portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    text-align: center;
  }

  /* fix uneven height */

  .portfolio-card p {
    flex-grow: 1;
  }

  /* image */

  .portfolio-image img {
    width: 100%;
  }

  .portfolio-image {
    border-radius: 12px;
    overflow: hidden;
  }

  /* button */

  .portfolio-btn {
    justify-content: center;
    margin-top: 12px;
  }

  /* HOME PAGE : TESTIMONIAL SECTION */

  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .testimonial-wrapper {
    margin-top: 45px;
  }

  /* card */

  .testimonial-card {
    max-width: 520px;
    padding: 36px 30px;
    margin: auto;
  }

  /* text */

  .testimonial-text {
    font-size: 18px;
    line-height: 1.75;
  }

  /* stars */

  .testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
  }

  /* author */

  .testimonial-author strong {
    font-size: 17px;
  }

  /* quote */

  .quote-mark {
    font-size: 85px;
    top: -10px;
    left: 20px;
  }

  /* HOME PAGE : PROCESS SECTION */

  .process-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 55px;
  }

  /* show timeline line */

  .process-timeline::before {
    display: block;
  }

  /* step */

  .process-step {
    text-align: center;
    max-width: 160px;
    margin: auto;
  }

  /* number */

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 15px;
    margin-bottom: 14px;
  }

  /* icon */

  .process-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  /* text */

  .process-step p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* HOME PAGE : CTA SECTION */

  .cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-wrapper {
    padding: 60px 40px;
    max-width: 650px;
    margin: auto;
  }

  /* heading */

  .cta-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  /* paragraph */

  .cta-content p {
    font-size: 17px;
    max-width: 460px;
    margin: auto;
    margin-bottom: 30px;
  }

  /* buttons */

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .cta-buttons a {
    max-width: 240px;
    justify-content: center;
  }

  .cta-wrapper::before {
    width: 350px;
    height: 350px;
  }

  /* ---------------- SERVICE PAGE CSS START HERE --------------------- */
  /*SERVICE PAGE : WHY SECTION  */

  .service-why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-card-service {
    padding: 28px;
  }

  .why-card-service h3 {
    font-size: 18px;
  }

  /* SERVICE PAGE : FAQ SECTION */
  .faq-wrapper {
    max-width: 600px;
    margin: 50px auto 0;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  /*-------------------------- WORK PAGE CSS START HERE ------------------------------- */

  /* WORK PAGE : HERO SECTION */

  .work-hero {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  /* layout */

  .work-hero-wrapper {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .work-hero-visual {
    order: 1;
  }

  /* TEXT AFTER IMAGE */

  .work-hero-content {
    order: 2;
    max-width: 100%;
  }

  /* image */

  .work-hero-visual {
    order: 1;
  }

  .work-hero-visual img {
    width: 100%;
    max-width: 768px;
  }

  /* heading */

  .work-hero h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  /* paragraph */

  .work-hero p {
    font-size: 17px;
  }

  /* buttons */

  .work-hero .hero-buttons {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* trust */

  .work-hero .hero-trust {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* WORK PAGE : FEATURED SECTION */

  .work-featured-section {
    padding-bottom: 70px;
  }

  .work-featured {
    gap: 40px;
    text-align: center;
  }

  /* IMAGE */

  .work-featured-image img {
    max-width: 520px;
  }

  /* CONTENT */

  .work-featured-content h3 {
    font-size: 26px;
  }

  .work-featured-content p {
    font-size: 16px;
    /* max-width: 420px; */
    text-align: center;
  }

  /* LIST */

  .project-points {
    /* max-width: 320px; */
    text-align: center;
  }

  /* BUTTON */

  .work-featured-content .btn-primary {
    max-width: 320px;
  }

  /* WORK PAGE : GRID SECTION */

  .work-grid-section {
    padding-bottom: 100px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* CARD */

  .work-card {
    border-radius: var(--radius-md);
  }

  /* CONTENT */

  .work-card-content {
    padding: 22px;
  }

  .work-card-content h4 {
    font-size: 18px;
  }

  .work-card-content p {
    font-size: 15px;
  }

  /* BUTTON */

  .work-card .btn-primary {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* WORK PAGE : STATS GRID  */

  .stats-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* CARD */

  .stat-item {
    padding: 26px;
  }

  /* NUMBER */

  .stat-item h3 {
    font-size: 30px;
  }

  /* TEXT */

  .stat-item p {
    font-size: 15px;
  }

  /* WORK PAGE : WHY SECTION */

  .why-work-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* CARD */

  .why-work-section .why-card {
    padding: 28px;
    text-align: center;
  }

  /* ICON */

  .why-work-section .why-icon {
    justify-content: center;
  }

  .why-work-section .why-icon svg {
    width: 26px;
    height: 26px;
  }

  /* TITLE */

  .why-work-section .why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  /* TEXT */

  .why-work-section .why-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ---------------------------- AOBUT PAGE CSS START HERE ------------------------------ */

  .about-hero {
    padding-bottom: 60px;
  }

  /* ABOUT PAGE : WHY SECTION */

  .why-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* GRID */

  .why-section .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  /* CARD */

  .why-section .why-card {
    text-align: center;
    padding: 26px;
    border-radius: var(--radius-md);
  }

  /* ICON */

  .why-section .why-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .why-section .why-icon svg {
    width: 24px;
    height: 24px;
  }

  /* TITLE */

  .why-section .why-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  /* TEXT */

  .why-section .why-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  /* ABOUT PAGE :  */

  .about-wrapper {
    gap: 40px;
    text-align: center;
  }

  .about-visual img {
    max-width: 630px;
  }

  .about-content h2 {
    max-width: 630px;
  }

  .about-content p {
    font-size: 18px;
    max-width: 490px;
  }

  /* HIGHLIGHTS */

  .about-highlights {
    gap: 16px;
  }

  /* ABOUT PAGE : STORY SECTION */

  .story-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .story-sub {
    font-size: 17px;
    max-width: 420px;
    margin: auto;
  }

  /* CARDS */

  .story-right {
    gap: 18px;
  }

  .story-card {
    padding: 22px;
  }

  /* ------------------------- CONTACT PAGE CSS START HERE ------------------------ */

  /* HERO SECTION */

  .contact-hero {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  /* layout */

  .contact-hero-wrapper {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  /* IMAGE FIRST */

  .contact-hero-visual {
    order: 1;
  }

  /* TEXT AFTER IMAGE */

  .contact-hero-content {
    order: 2;
    max-width: 100%;
  }

  /* image */

  .contact-hero-visual img {
    width: 100%;
    max-width: 768px;
  }

  /* heading */

  .contact-hero h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  /* paragraph */

  .contact-hero p {
    font-size: 17px;
  }

  /* buttons */

  .contact-hero .hero-buttons {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* trust */

  .contact-hero .hero-trust {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* CONTACT PAGE : INFO SECTION */

  .contact-info-section {
    padding-bottom: 110px;
  }

  /* CONTACT PAGE : FORM SECTION */

  .contact-form-section {
    padding-bottom: 70px;
  }

  /* CONTACT PAGE : TRUST SECTION */

  .contact-trust-section {
    padding-bottom: 100px;
  }

  .contact-section-subtitle {
    margin: 12px auto 0px auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-item {
    padding: 28px;
  }

  /* CONTACT PAGE : SECTION */

  /* CONTACT PAGE : SECTION */


}

@media (min-width:769px) and (max-width:850px) {
  /* NAVBAR */

  .nav-wrapper {
    height: 80px;
  }

  /* show nav links */

  .nav-links {
    display: flex !important;
    gap: 24px;
  }

  /* show CTA */

  .nav-cta {
    display: flex;
  }

  /* hide hamburger */

  .hamburger {
    display: none;
  }

  /* FOOTER */

  /* FOOTER GRID */

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* brand */

  .footer-brand {
    grid-column: span 2;
    max-width: 650px;
  }

  /* logo */

  .footer-logo img {
    height: 48px;
    margin-bottom: 18px;
  }

  /* brand text */

  .footer-brand p {
    max-width: 460px;
  }

  /* links */

  .footer-links {
    text-align: left;
  }

  /* social */

  .footer-social {
    justify-content: flex-start;
    margin-top: 18px;
  }

  /* footer bottom */

  .footer-bottom {
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
  }

  /* FLOATING CTA  */

  .whatsapp-float {
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  @keyframes whatsappPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  .whatsapp-float {
    animation: whatsappPulse 2.5s infinite;
  }

  /*---------------------------- HOME PAGE CSS START HERE ------------------- */

  /* HOME PAGE : HERO SECTION */

  .hero {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  /* layout */

  .hero-visual::before {
    width: 300px;
    height: 300px;
    right: 0;
    left: auto;
  }

  .hero-wrapper {
    gap: 50px;
    align-items: center;
  }

  /* text */

  .hero-content {
    max-width: 460px;
  }

  /* heading */

  .hero h1 {
    font-size: 52px;
    line-height: 1.15;
  }

  /* paragraph */

  .hero p {
    font-size: 17px;
  }

  /* buttons */

  .hero-buttons {
    gap: 16px;
  }

  /* trust */

  .hero-trust {
    gap: 18px;
    flex-wrap: wrap;
  }

  /* image */

  .hero-visual img {
    max-width: 480px;
    width: 100%;
  }

  /* HOME PAGE : REALITY SECTION */

  .reality-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* text */

  .reality-text {
    max-width: 600px;
    margin: auto;
  }

  /* grid */

  .reality-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  /* cards */

  .reality-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
  }

  /* fix uneven height */

  .reality-card p {
    flex-grow: 1;
  }

  /* remove span issue */

  .reality-card:nth-child(3) {
    grid-column: auto;
  }

  /* icon */

  .reality-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  .reality-card:hover {
    transform: translateY(-6px);
  }

  /* HOME PAGE :  SERVICES SECTION  */

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  /* cards */

  .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
  }

  /* fix uneven height */

  .service-card p {
    flex-grow: 1;
  }

  /* icon */

  .service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  /* text */

  .service-card {
    text-align: center;
  }

  /* link */

  .service-link {
    justify-content: center;
  }

  /* HOME PAGE : ABOUT SECTION */

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* image */

  .about-visual img {
    width: 100%;
    max-width: 460px;
    margin: auto;
  }

  /* text */

  .about-content {
    max-width: 560px;
    margin: auto;
  }

  /* heading */

  .about-content h2 {
    font-size: 36px;
    line-height: 1.25;
  }

  /* paragraph */

  .about-content p {
    font-size: 17px;
    margin-top: 18px;
  }

  /* highlights */

  .about-highlights {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* highlight items */

  .about-point {
    padding: 12px 16px;
    font-size: 15px;
  }

  /* button */

  .about-cta a {
    margin: auto;
    justify-content: center;
  }

  /* ABOUT SECTION */

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* image */

  .about-visual img {
    width: 100%;
    max-width: 850px;
    margin: auto;
  }

  /* text */

  .about-content {
    max-width: 560px;
    margin: auto;
  }

  /* heading */

  .about-content h2 {
    font-size: 36px;
    line-height: 1.25;
  }

  /* paragraph */

  .about-content p {
    font-size: 17px;
    margin-top: 18px;
  }

  /* highlights */

  .about-highlights {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* highlight items */

  .about-point {
    padding: 12px 16px;
    font-size: 15px;
  }

  /* button */

  .about-cta a {
    margin: auto;
    justify-content: center;
  }

  .about-visual {
    order: 1;
  }

  .about-content {
    order: 2;
  }

  /* HOME PAGE : PORTFOLIO SECTION */

  .portfolio-section {
    padding-bottom: 90px;
  }

  .portfolio-layout {
    margin-top: 60px;
  }

  /* featured */

  .portfolio-featured {
    margin-bottom: 45px;
  }

  /* featured image */

  .portfolio-featured img {
    width: 100%;
  }

  /* info */

  .portfolio-info {
    padding: 28px;
    text-align: center;
  }

  /* grid */

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  /* cards */

  .portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px;
    text-align: center;
  }

  /* fix uneven height */

  .portfolio-card p {
    flex-grow: 1;
  }

  /* image */

  .portfolio-image {
    border-radius: 14px;
    overflow: hidden;
  }

  /* button */

  .portfolio-btn {
    justify-content: center;
    margin-top: 14px;
  }

  /* HOME PAGE : TESTIMONIAL SECTION */

  .testimonial-wrapper {
    margin-top: 50px;
  }

  /* card */

  .testimonial-card {
    max-width: 650px;
    padding: 40px 34px;
    margin: auto;
  }

  /* text */

  .testimonial-text {
    font-size: 19px;
    line-height: 1.8;
  }

  /* stars */

  .testimonial-stars {
    font-size: 20px;
    margin-bottom: 18px;
  }

  /* author */

  .testimonial-author strong {
    font-size: 18px;
  }

  /* quote */

  .quote-mark {
    font-size: 90px;
    top: -12px;
    left: 22px;
  }

  /* HOME PAGE : PROCESS SECTION  */

  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
  }

  /* show line */

  .process-timeline::before {
    display: block;
  }

  /* step */

  .process-step {
    text-align: center;
    max-width: 180px;
    margin: auto;
  }

  /* number */

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  /* icon */

  .process-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  /* text */

  .process-step p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* HOME PAGE : CTA SECTION */

  .cta-wrapper {
    max-width: 720px;
    padding: 70px 50px;
    margin: auto;
  }

  /* heading */

  .cta-content h2 {
    font-size: 36px;
    line-height: 1.25;
  }

  /* paragraph */

  .cta-content p {
    font-size: 17px;
    max-width: 500px;
    margin: auto;
    margin-bottom: 32px;
  }

  /* buttons */

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .cta-buttons a {
    max-width: 240px;
    justify-content: center;
  }

  /* --------------------------- SERVICE PAGE CSS START HERE ------------------------- */

  /* SERVICE PAGE : WHY SECTION */
  .service-why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .why-card-service {
    text-align: center;
    padding: 30px;
  }

  .why-card-service .why-icon {
    justify-content: flex-start;
  }

  /* SERVICE PAGE : FAQ SECTION */

  .faq-wrapper {
    max-width: 700px;
    margin: 60px auto 0;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  /* -------------------------- WORK PAGE CSS START HERE ---------------------------- */

  .about-hero {
    padding-bottom: 50px;
  }

  /* WORK PAGE : HERO SECTION */

  .work-hero {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  /* glow */

  .work-hero-visual::before {
    width: 300px;
    height: 300px;
    right: 0;
    left: auto;
  }

  /* layout */

  .work-hero-wrapper {
    gap: 50px;
    align-items: center;
  }

  /* content */

  .work-hero-content {
    max-width: 460px;
  }

  /* heading */

  .work-hero h1 {
    font-size: 52px;
    line-height: 1.15;
  }

  /* paragraph */

  .work-hero p {
    font-size: 17px;
  }

  /* buttons */

  .work-hero .hero-buttons {
    gap: 16px;
  }

  /* trust */

  .work-hero .hero-trust {
    gap: 18px;
    flex-wrap: wrap;
  }

  /* image */

  .work-hero-visual img {
    max-width: 480px;
    width: 100%;
  }

  /* WORK PAGE : FEATURED SECTION */
  .work-featured-section {
    padding-bottom: 70px;
  }

  .work-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }

  /* IMAGE */

  .work-featured-image {
    order: 1;
  }

  .work-featured-image img {
    max-width: 100%;
  }

  /* CONTENT */

  .work-featured-content {
    order: 2;
    max-width: 100%;
  }

  /* HEADING */

  .work-featured-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  /* TEXT */

  .work-featured-content p {
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 420px;
  }

  /* LIST */

  .project-points {
    max-width: 340px;
  }

  /* BUTTON */

  .work-featured-content .btn-primary {
    max-width: 240px;
    margin: 16px 0 0;
  }

  /* WORK PAGE : GRID SECTION */

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  /* CARD */

  .work-card {
    border-radius: var(--radius-md);
  }

  /* CONTENT */

  .work-card-content {
    padding: 22px;
    text-align: left;
  }

  .work-card-content h4 {
    font-size: 18px;
  }

  .work-card-content p {
    font-size: 15px;
    max-width: 100%;
  }

  /* BUTTON */

  .work-card .btn-primary {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* WORK PAGE : CASE STUDY */

  .case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }

  /* IMAGE */

  .case-study-image {
    order: 1;
  }

  .case-study-image img {
    max-width: 100%;
  }

  /* CONTENT */

  .case-study-content {
    order: 2;
    max-width: 100%;
  }

  /* HEADING */

  .case-study-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  /* BOXES */

  .case-box {
    padding: 20px;
    margin-bottom: 16px;
  }

  .case-box h4 {
    font-size: 17px;
  }

  .case-box p {
    font-size: 15px;
  }

  /* WORK PAGE : STATS GRID */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }

  /* CARD */

  .stat-item {
    padding: 28px;
    text-align: center;
  }

  /* NUMBER */

  .stat-item h3 {
    font-size: 32px;
    margin-bottom: 6px;
  }

  /* TEXT */

  .stat-item p {
    font-size: 15px;
  }

  /* ABOUT PAGE : STORY SECTION */

  .story-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .story-sub {
    font-size: 17px;
    max-width: 420px;
    margin: auto;
  }

  /* CARDS */

  .story-right {
    gap: 18px;
  }

  .story-card {
    padding: 22px;
  }

  /* AOBUT PAGE : WHY SECTION */

  .why-section .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .why-section .why-card {
    padding: 28px;
    text-align: center;
  }

  /* -------------------------CONTACT PAGE CSS START HERE--------------------------------- */

  .contact-hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }

  /* glow */

  .contact-hero-visual::before {
    width: 300px;
    height: 300px;
    right: 0;
    left: auto;
  }

  /* layout */

  .contact-hero-wrapper {
    gap: 50px;
    align-items: center;
  }

  /* content */

  .contact-hero-content {
    max-width: 460px;
  }

  /* heading */

  .contact-hero h1 {
    font-size: 52px;
    line-height: 1.15;
  }

  /* paragraph */

  .contact-hero p {
    font-size: 17px;
  }

  /* buttons */

  .contact-hero .hero-buttons {
    gap: 16px;
  }

  /* trust */

  .contact-hero .hero-trust {
    gap: 18px;
    flex-wrap: wrap;
  }

  /* image */

  .contact-hero-visual img {
    max-width: 480px;
    width: 100%;
  }

  /* CONTACT PAGE : INFO SECTION */

  .contact-info-section {
    padding-bottom: 90px;
  }

  .contact-info-section-subtitle {
    margin: 12px auto 0px auto;
  }

  .contact-page-grid {
    margin-top: 30px;
  }

  /* CONTACT PAGE : FROM SECTION */

  .contact-form-section {
    padding-bottom: 80px;
  }


  /* CONTACT PAGE : SECTION */

  .contact-trust-section {
    padding-bottom: 110px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }

  .contact-section-subtitle {
    margin: 12px auto 0px auto;
  }

  /* CONTACT PAGE : SECTION */


}

@media (min-width:851px) and (max-width:1023px) {

  /* NAVBAR */

  .nav-wrapper {
    height: 82px;
  }

  /* show nav */

  .nav-links {
    display: flex !important;
    gap: 28px;
  }

  /* show CTA */

  .nav-cta {
    display: flex;
  }

  /* hide hamburger */

  .hamburger {
    display: none;
  }

  /* link size */

  .nav-links a {
    font-size: 15px;
  }

  /* FOOTER SECTION */

  /* FOOTER - DESKTOP STYLE */

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  /* brand */

  .footer-brand {
    max-width: 400px;
  }

  /* logo */

  .footer-logo img {
    height: 48px;
    margin-bottom: 16px;
  }

  /* links */

  .footer-links {
    text-align: left;
  }

  /* social */

  .footer-social {
    justify-content: flex-start;
    margin-top: 18px;
  }

  /* footer bottom */

  .footer-bottom {
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
  }

  /* FLOATING CTA */

  .whatsapp-float {
    right: 26px;
    bottom: 26px;
    width: 62px;
    height: 62px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  /*------------------------------- HOME PAGE CSS START HERE -------------------------- */

  /* HERO SECTION */

  .hero {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  /* layout */

  .hero-wrapper {
    gap: 60px;
    align-items: center;
  }

  /* text */

  .hero-content {
    max-width: 500px;
  }

  /* heading */

  .hero h1 {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  /* paragraph */

  .hero p {
    font-size: 18px;
  }

  /* buttons */

  .hero-buttons {
    gap: 18px;
  }

  /* trust */

  .hero-trust {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* image */

  .hero-visual img {
    max-width: 520px;
    width: 100%;
  }

  .hero-visual {
    overflow: hidden;
  }

  .hero-visual::before {
    max-width: 250px;
  }

  /* HOME PAGE : REALITY SECTION */

  .reality-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .reality-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  /* text */

  .reality-text {
    max-width: 650px;
    margin: auto;
  }

  /* grid */

  .reality-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* cards */

  .reality-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px;
  }

  /* fix uneven height */

  .reality-card p {
    flex-grow: 1;
  }

  /* remove span issue */

  .reality-card:nth-child(3) {
    grid-column: auto;
  }

  /* icon */

  .reality-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  /* HOME PAGE : SERVICES SECTION */

  /* SERVICES SECTION */

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* cards */

  .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px;
  }

  /* fix uneven height */

  .service-card p {
    flex-grow: 1;
  }

  /* icon */

  .service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  /* text */

  .service-card {
    text-align: center;
  }

  /* link */

  .service-link {
    justify-content: center;
  }

  /* HOME PAGE : ABOUT SECTION */

  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
  }

  /* text */

  .about-content {
    max-width: 480px;
  }

  /* heading */

  .about-content h2 {
    font-size: 38px;
    line-height: 1.2;
  }

  /* paragraph */

  .about-content p {
    font-size: 17px;
    margin-top: 18px;
  }

  /* highlights */

  .about-highlights {
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* image */

  .about-visual img {
    width: 100%;
    max-width: 480px;
  }

  /* button */

  .about-cta a {
    justify-content: flex-start;
  }

  /* HOME PAGE : PORTFOLIO SECTION */

  .portfolio-layout {
    margin-top: 70px;
  }

  /* featured */

  .portfolio-featured {
    margin-bottom: 50px;
  }

  /* featured image */

  .portfolio-featured img {
    width: 100%;
  }

  /* info */

  .portfolio-info {
    padding: 30px;
    text-align: center;
  }

  /* grid */

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* cards */

  .portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    text-align: center;
  }

  /* fix uneven height */

  .portfolio-card p {
    flex-grow: 1;
  }

  /* image */

  .portfolio-image {
    border-radius: 16px;
    overflow: hidden;
  }

  /* button */

  .portfolio-btn {
    justify-content: center;
    margin-top: 14px;
  }

  /* HOME PAGE : TESTIMONIAL SECTION */

  .testimonial-wrapper {
    margin-top: 60px;
  }

  /* card */

  .testimonial-card {
    max-width: 720px;
    padding: 44px 38px;
    margin: auto;
  }

  /* text */

  .testimonial-text {
    font-size: 20px;
    line-height: 1.8;
  }

  /* stars */

  .testimonial-stars {
    font-size: 20px;
    margin-bottom: 18px;
  }

  /* author */

  .testimonial-author strong {
    font-size: 18px;
  }

  /* quote */

  .quote-mark {
    font-size: 100px;
    top: -14px;
    left: 24px;
  }

  /* HOME PAGE : PROCESS SECTION */

  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 70px;
  }

  /* show timeline line */

  .process-timeline::before {
    display: block;
  }

  /* step */

  .process-step {
    text-align: center;
    max-width: 200px;
    margin: auto;
  }

  /* number */

  .step-number {
    width: 54px;
    height: 54px;
    font-size: 16px;
    margin-bottom: 18px;
  }

  /* icon */

  .process-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  /* text */

  .process-step p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* HOME PAGE : CTA SECTION */

  /* CTA SECTION */

  .cta-wrapper {
    max-width: 850px;
    padding: 80px 60px;
    margin: auto;
  }

  /* heading */

  .cta-content h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  /* paragraph */

  .cta-content p {
    font-size: 18px;
    max-width: 550px;
    margin: auto;
    margin-bottom: 34px;
  }

  /* buttons */

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .cta-buttons a {
    max-width: 250px;
    justify-content: center;
  }

  /* --------------------------- SERVICE PAGE CSS START HERE ------------------------ */

  /* SERVICE PAGE : WHY SECTION */

  .service-why-section .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .why-card-service {
    text-align: center;
    padding: 28px;
  }

  .why-card-service .why-icon {
    justify-content: center;
  }

  /* SERVICE PAGE : FAQ SECTION */
  .faq-wrapper {
    max-width: 800px;
    margin: 60px auto 0;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  /* --------------------------- WORK PAGE CSS START HERE ----------------------- */

  .about-hero {
    padding-bottom: 60px;
  }

  /* WORK PAGE : HERO SECTION */

  .work-hero {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  /* layout */

  .work-hero-wrapper {
    gap: 60px;
    align-items: center;
  }

  /* content */

  .work-hero-content {
    max-width: 500px;
  }

  /* heading */

  .work-hero h1 {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  /* paragraph */

  .work-hero p {
    font-size: 18px;
  }

  /* buttons */

  .work-hero .hero-buttons {
    gap: 18px;
  }

  /* trust */

  .work-hero .hero-trust {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* image */

  .work-hero-visual img {
    max-width: 520px;
    width: 100%;
  }

  .work-hero-visual {
    overflow: hidden;
  }

  .work-hero-visual::before {
    max-width: 250px;
  }

  /* WORK PAGE : WORK FEATURED */

  .work-featured {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
  }

  /* IMAGE */

  .work-featured-image img {
    max-width: 100%;
  }

  /* CONTENT */

  .work-featured-content {
    max-width: 100%;
  }

  /* HEADING */

  .work-featured-content h3 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  /* TEXT */

  .work-featured-content p {
    font-size: 17px;
    margin-bottom: 18px;
    max-width: 460px;
  }

  /* LIST */

  .project-points {
    max-width: 360px;
  }

  /* BUTTON */

  .work-featured-content .btn-primary {
    max-width: 240px;
    margin-top: 18px;
  }

  /* WORK PAGE : WORK-GRID */

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* CARD */

  .work-card {
    border-radius: var(--radius-md);
  }

  /* CONTENT */

  .work-card-content {
    padding: 24px;
    text-align: left;
  }

  .work-card-content h4 {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .work-card-content p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* BUTTON */

  .work-card .btn-primary {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* WORK PAGE : CASE STUDY SECTION */

  .case-study-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .case-study {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
  }

  /* IMAGE */

  .case-study-image img {
    max-width: 100%;
  }

  /* CONTENT */

  .case-study-content {
    max-width: 100%;
  }

  /* HEADING */

  .case-study-content h3 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  /* BOXES */

  .case-box {
    padding: 22px;
    margin-bottom: 18px;
  }

  .case-box h4 {
    font-size: 18px;
  }

  .case-box p {
    font-size: 15px;
  }

  /* WORK PAGE : STATS GRID */

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  /* CARD */

  .stat-item {
    padding: 30px;
    text-align: center;
  }

  /* NUMBER */

  .stat-item h3 {
    font-size: 34px;
    margin-bottom: 6px;
  }

  /* TEXT */

  .stat-item p {
    font-size: 15px;
  }

  /* WROK PAGE : WHY SECTION */

  .why-work-section .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  /* CARD */

  .why-work-section .why-card {
    padding: 30px;
    text-align: center;
  }

  /* ICON */

  .why-work-section .why-icon {
    justify-content: center;
  }

  .why-work-section .why-icon svg {
    width: 26px;
    height: 26px;
  }

  /* TITLE */

  .why-work-section .why-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  /* TEXT */

  .why-work-section .why-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ---------------------------------CONTACT PAGE CSS START HERE ----------------------- */

  .contact-hero {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  /* layout */

  .contact-hero-wrapper {
    gap: 60px;
    align-items: center;
  }

  /* content */

  .contact-hero-content {
    max-width: 500px;
  }

  /* heading */

  .contact-hero h1 {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  /* paragraph */

  .contact-hero p {
    font-size: 18px;
  }

  /* buttons */

  .contact-hero .hero-buttons {
    gap: 18px;
  }

  /* trust */

  .contact-hero .hero-trust {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* image */

  .contact-hero-visual img {
    max-width: 520px;
    width: 100%;
  }

  .contact-hero-visual {
    overflow: hidden;
  }

  .contact-hero-visual::before {
    max-width: 250px;
  }


  /* CONTACT PAGE : INFO SECTION */

  .contact-info-section {
    padding-bottom: 90px;
  }

  .contact-info-section-subtitle {
    margin: 12px auto 0px auto;
  }

  .contact-page-grid {
    margin-top: 30px;
  }

  /* CONTACT PAGE : FROM SECTION */

  .contact-form-section {
    padding-bottom: 80px;
  }


  /* CONTACT PAGE : SECTION */

  .contact-trust-section {
    padding-bottom: 110px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 30px;
  }

  .contact-section-subtitle {
    margin: 12px auto 0px auto;
  }


}