/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --safety-orange: hsl(25, 100%, 50%);
  --lavender-gray: hsl(230, 19%, 81%);
  --persian-rose: hsl(328, 100%, 59%);
  --red-crayola: hsl(341, 100%, 49%);
  --eerie-black: hsl(240, 6%, 10%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-2: hsl(210, 60%, 98%);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(220, 5%, 49%);
  --cultured: hsl(0, 0%, 93%);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_5: hsla(0, 0%, 0%, 0.05);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 14%, 98%);
  --black: hsl(0, 0%, 0%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(to left top, var(--persian-rose), var(--safety-orange));

  /**
   * typography
   */

  --ff-roboto: 'Roboto', sans-serif;
  --ff-league-spartan: 'League Spartan', sans-serif;

  --fs-1: 3.5rem;
  --fs-2: 3rem;
  --fs-3: 2.1rem;
  --fs-4: 1.7rem;
  --fs-5: 1.4rem;
  --fs-6: 1.3rem;

  --fw-700: 700;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 24px var(--black_5);
  --shadow-2: 0 2px 28px var(--black_10);

  /**
   * border radius
   */

  --radius-2: 2px;
  --radius-5: 5px;
  --radius-8: 8px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
time,
label,
input,
button,
textarea,
ion-icon { display: block; }

img { height: auto; }

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
textarea { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-1);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.8;
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }

:focus-visible { outline-offset: 4px; }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  max-width: max-content;
  color: var(--white-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  padding: 10px 30px;
  border-radius: var(--radius-5);
  transition: var(--transition-1);
}

.btn-primary {
  background-image: var(--gradient);
  background-size: 1000%;
}

.btn-primary:is(:hover, :focus) { background-position: bottom right; }

.btn-secondary {
  background-color: var(--white-1);
  color: var(--eerie-black);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--eerie-black);
  color: var(--white-1);
}

.section { padding-block: var(--section-padding); }

.h1,
.h2,
.h3 {
  color: var(--eerie-black);
  font-family: var(--ff-league-spartan);
  line-height: 1.2;
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-3); }

.w-100 { width: 100%; }

.section-title,
.section-text { text-align: center; }

.section-text { font-size: var(--fs-6); }

.grid-list {
  display: grid;
  gap: 30px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-1);
  padding-block: 15px;
  border-block-end: 1px solid var(--cultured);
  z-index: 4;
  transition: 0.3s ease;
}

.header.active {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-2);
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-toggle-btn {
  font-size: 40px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--red-crayola);
}

.navbar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10px);

  width: 100%;
  max-width: calc(100% - 30px);

  background-color: var(--white-1);
  border: 1px solid var(--cultured);
  border-radius: 12px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.3s ease;
}

.navbar.active {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: 0.3s ease;
}

.navbar.active .navbar-list {
  opacity: 1;
}

.navbar-link {
  color: var(--eerie-black);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-4);
  line-height: 1.2;
  padding-block: 8px;
  position: relative;
  transition: 0.3s ease;
}

.navbar-link:hover {
  color: var(--red-crayola);
}

/* underline animation */
.navbar-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--red-crayola);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.header .btn {
  margin-top: 10px;
}

@media (max-width: 480px) {
  .logo-image {
    height: 40px;
  }
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 60px);
  text-align: center;
}

/* layout upgrade */
.hero .container {
  display: grid;
  gap: 40px;
  align-items: center;
}

/* content spacing */
.hero-content {
  margin-block-end: 0;
}

/* subtitle */
.hero-subtitle {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* title */
.hero-title {
  margin-block: 12px 12px;
  line-height: 1.2;
}

/* text */
.hero-text {
  font-size: var(--fs-5);
  opacity: 0.85;
  max-width: 500px;
  margin-inline: auto;
}

/* button */
.hero .btn {
  margin-inline: auto;
  margin-block-start: 24px;
}

/* image */
.hero-banner {
  max-width: 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* #DESKTOP IMPROVEMENT */

@media (min-width: 992px) {
  .hero {
    text-align: left;
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hero-text {
    margin-inline: 0;
  }

  .hero .btn {
    margin-inline: 0;
  }
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background-color: var(--white-2);
}

/* section spacing upgrade */
.service .section-text {
  margin-block: 10px 45px;
  opacity: 0.85;
  max-width: 600px;
}

/* GRID IMPROVEMENT */
.grid-list {
  display: grid;
  gap: 25px;
  align-items: stretch;
}

/* 2 columns tablet */
@media (min-width: 600px) {
  .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns desktop */
@media (min-width: 992px) {
  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD UPGRADE */
.service-card {
  background-color: var(--white-1);
  padding: 28px 20px;
  border: 1px solid var(--platinum);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: all 0.3s ease;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* subtle hover lift + glow */
.service-card:is(:hover, :focus-within) {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2);
}

/* icon upgrade */
.service-card .card-icon {
  color: var(--white-1);
  font-size: 26px;
  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  margin-inline: auto;
  border-radius: 50%;

  margin-bottom: 18px;
}

/* title */
.service-card .card-title {
  margin-block: 20px 10px;
  transition: 0.3s ease;
}

.service-card .card-title a {
  color: var(--eerie-black);
  transition: 0.3s ease;
}

.service-card:hover .card-title a {
  color: var(--red-crayola);
}

/* text */
.service-card .card-text {
  font-size: var(--fs-6);
  opacity: 0.85;
  line-height: 1.6;
}



/*-----------------------------------*\
  #PROJECT (HORIZONTAL SCROLL)
\*-----------------------------------*/

.project .section-text {
  margin-block: 5px 35px;
}

/* horizontal scroll container */
.project-list {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  padding-bottom: 10px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;
}

/* hide scrollbar (optional but clean) */
.project-list::-webkit-scrollbar {
  height: 6px;
}

.project-list::-webkit-scrollbar-thumb {
  background: var(--platinum);
  border-radius: 10px;
}

/* CARD SIZING (LANDSCAPE) */
.project-list li {
  flex: 0 0 auto;
  width: 350px; /* controls card width */
  scroll-snap-align: start;
}

/* PROJECT CARD */
.project-card {
  position: relative;
  border-radius: var(--radius-8);
  overflow: hidden;

  height: 320px; /* taller + more dramatic */
}

/* image becomes landscape */
.project-card .card-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.project-card .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.4;
  transition: var(--transition-2);
}

.project-card:is(:hover, :focus-within)::after {
  opacity: 0.75;
}

/* content */
.project-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 25px;
  z-index: 1;
  transition: var(--transition-2);
}

.project-card:is(:hover, :focus-within) .card-content {
  transform: translateY(-10px);
}

/* text */
.project-card .card-subtitle {
  color: var(--lavender-gray);
  font-size: var(--fs-6);
}

.project-card .card-title {
  color: var(--white-1);
  margin-block: 8px 10px;
}

/* button stays small inside card */
.project-card .btn {
  padding: 8px 12px;
  font-size: 14px;
}

@media (min-width: 992px) {
  .project-list li {
    width: 420px;
  }
}


/*-----------------------------------*\
  #ABOUT (REBRAND STYLE)
\*-----------------------------------*/

.about {
  background-color: var(--white-2);
}

/* layout spacing */
.about .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/*-----------------------------------*\
  #TEXT SECTION (BRAND HEADER STYLE)
\*-----------------------------------*/

.about-content {
  text-align: center;
  max-width: 850px;
}

/* "WHY" styling */
.about .section-title {
  font-size: 4rem; /* BIGGER */
  font-weight: 700;
  margin-bottom: 10px;
}

/* make "Why" orange */
.about .section-title span {
  color: var(--red-crayola);
}

/* paragraph under title */
.about .section-text {
  font-size: 1.8rem; /* BIGGER TEXT */
  line-height: 1.8;
  opacity: 0.85;
}

/*-----------------------------------*\
  #ABOUT VIDEO (CLEAN AUTOPLAY STYLE)
\*-----------------------------------*/

.about-video-holder {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;

  border-radius: 16px;
  overflow: hidden;

  background: #000;
  box-shadow: var(--shadow-2);
}

.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/*-----------------------------------*\
  #RESPONSIVE TYPOGRAPHY
\*-----------------------------------*/

@media (min-width: 992px) {
  .about-content {
    text-align: center;
  }

  .about .section-title {
    font-size: 5rem;
  }

  .about .section-text {
    font-size: 2rem;
    max-width: 700px;
    margin-inline: auto;
  }
}




/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--gradient);
  opacity: 0.95;
  z-index: -1;
}

.cta-subtitle,
.cta .section-title { color: var(--white-1); }

.cta-subtitle {
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  text-align: center;
}

.cta .section-title { margin-block: 12px 18px; }

.cta .btn { margin-inline: auto; }


/*-----------------------------------*\
  #FEEDBACK
\*-----------------------------------*/
.feedback {
  background-color: var(--white-1);
  padding-block: 80px;
}

.feedback .section-text {
  margin-bottom: 35px;
  opacity: 0.85;
}

/* SCROLL AREA */
.feedback-list {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  padding-bottom: 10px;
  padding-top: 10px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;
}
/* SCROLLBAR */
.feedback-list::-webkit-scrollbar {
  height: 4px;
}

.feedback-list::-webkit-scrollbar-track {
  background: transparent;
}

.feedback-list::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

/* CARD WRAPPER */
.feedback-list li {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
}

/* CARD (NEW BALANCED LOOK) */
.feedback-card {
  background: var(--white-2);
  padding: 25px;
  border-radius: 16px;

  border: 1px solid var(--platinum);

  transition: 0.25s ease;
  height: 100%;
}

.feedback-card:hover {
  transform: translateY(-4px);
}

/* STARS */
.stars {
  display: flex;
  gap: 4px;
  color: #f5b50a;
  font-size: 16px;
  margin-bottom: 15px;
}

/* TEXT */
.feedback-text {
  font-size: 1.6rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* USER */
.feedback-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* AVATAR */
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--red-crayola);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.5rem;
}

/* NAME */
.feedback-user .name {
  font-size: 1.6rem;
  margin: 0;
}

/* ROLE */
.feedback-user .role {
  font-size: 1.3rem;
  opacity: 0.7;
}



/*-----------------------------------*\
  #CONTACT (GRID REDESIGN)
\*-----------------------------------*/

.contact {
  background-color: var(--white-2);
  padding-block: 80px;
}

.contact .section-text {
  margin-block: 5px 35px;
  opacity: 0.85;
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  gap: 40px;
}

/* desktop split */
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

/*-----------------------------------*\
  #LEFT SIDE (CONTACT INFO)
\*-----------------------------------*/

/* LEFT COLUMN CONTAINER */
.contact-list {
  display: grid;
  gap: 18px;
  align-content: start;
}

/* CARD FIX */
.contact-card {
  background-color: var(--white-1);
  padding: 18px;

  border-radius: 14px;
  box-shadow: var(--shadow-1);

  display: flex;
  align-items: flex-start;
  gap: 12px;

  /* 👇 THIS FIXES STRETCH */
  width: 100%;
  max-width: 420px;
}

.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* icon */
.contact-card .card-icon {
  background-color: var(--cultured-2);
  color: var(--red-crayola);

  font-size: 22px;
  padding: 12px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

/* text */
.contact-card .card-title {
  margin-bottom: 6px;
}

.contact-card :is(.card-link, .card-address) {
  font-size: 1.4rem;
  opacity: 0.85;
}

/*-----------------------------------*\
  #RIGHT SIDE (FORM)
\*-----------------------------------*/

.contact-form {
  background-color: var(--white-1);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-1);
}

/* input layout */
.input-wrapper {
  display: grid;
  gap: 15px;
  margin-bottom: 15px;
}

/* inputs */
.input-field {
  background-color: var(--white-2);
  color: var(--eerie-black);

  font-size: 1.6rem;
  padding: 14px 16px;

  border-radius: 12px;
  border: 1px solid transparent;

  outline: none;
  transition: 0.2s ease;
}

.input-field:focus {
  border-color: var(--red-crayola);
  background-color: var(--white-1);
}

.input-field::placeholder {
  opacity: 0.7;
}

/* textarea */
textarea.input-field {
  min-height: 140px;
  resize: vertical;
}

/* button spacing */
.contact-form .btn {
  margin-top: 20px;
}


/*-----------------------------------*\
  #FOOTER 
\*-----------------------------------*/

.footer {
  background-color: var(--white-1);
  padding-block: 60px 30px;
}

/* GRID */
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 30px;
}

/* BRAND */
.footer-logo {
  font-size: 3rem;
  font-weight: 700;
  color: var(--eerie-black);
}

.footer-logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .footer-logo-image {
    height: 40px;
  }
}

.footer-tagline {
  font-size: 1.6rem;
  opacity: 0.8;
  margin-top: 8px;
  line-height: 1.6;
}

/* LINKS */
.footer-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: var(--red-crayola);
  opacity: 1;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-socials a {
  font-size: 24px; /* 👈 bigger icons */
  color: var(--eerie-black);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.25s ease;
}

.footer-socials a:hover {
  color: var(--red-crayola);
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: 1px solid var(--platinum);
  padding-top: 15px;

  font-size: 1.4rem;
  opacity: 0.75;
}

/* DEV LINK */
.dev-link {
  color: var(--red-crayola);
  font-weight: 500;
  transition: 0.2s ease;
}

.dev-link:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-grid {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}




/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white-1);
  padding: 12px;
  border-radius: 50%;
  box-shadow: var(--shadow-2);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus) { opacity: 0.9; }



/*-----------------------------------*\
  #WHATSAPP FLOAT BUTTON
\*-----------------------------------*/

.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 13px;

  background-color: #25D366;
  color: var(--white-1);

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  box-shadow: var(--shadow-2);

  font-size: 28px;
  z-index: 999;

  transition: 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: 1fr; }

  .blog-card.grid {
    display: grid;
    grid-template-columns: 0.47fr 1fr;
    align-items: center;
    gap: 10px;
  }



  /**
   * CONTACT
   */

  .input-wrapper {
    display: flex;
    gap: 15px;
  }

  .contact-item { min-width: calc(50% - 18px); }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.5rem;
    --fs-2: 3.7rem;
    --fs-3: 2.3rem;
    --fs-4: 1.8rem;
    --fs-5: 1.5rem;
    --fs-6: 1.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .section-text {
    max-width: 65ch;
    margin-inline: auto;
  }



  /**
   * HERO
   */

  .hero-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about-banner { max-width: 550px; }

  .about .section-text {
    max-width: unset;
    margin-inline: 0;
  }



  /**
   * CONTACT
   */

  .contact-form { padding: 30px; }

  .contact-item { min-width: calc(50% - 12.5px); }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;
    --fs-2: 4rem;
    --fs-3: 2.5rem;

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */

  .nav-toggle-btn { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    all: unset;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navbar-link { position: relative; }

  .navbar-link:is(:hover, :focus) { color: var(--eerie-black); }

  .navbar-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-2);
  }

  .navbar-link:is(:hover, :focus)::after { transform: scaleX(1); }

  .header .btn { margin-block-start: 0; }



  /**
   * SERVICE
   */

  /* .service-card { padding: 20px; }

  .service-card .h3 { --fs-3: 2.3rem; } */



  /**
   * PROJECT
   */

  .project-card .card-subtitle { --fs-6: 1.5rem; }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner { margin-block-end: 0; }



  /**
   * BLOG
   */

  .blog .grid-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .blog .grid-list > li:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 5;
  }

  .blog-card:not(.grid) { height: 100%; }

  .blog-card .card-content { padding-block: 10px; }

  .blog-card:not(.grid) .card-content { padding: 25px; }

  .blog-card.grid .h3 { --fs-3: 2rem; }

  .blog-card .time { --fs-6: 1.6rem; }



  /**
   * CONTACT
   */

  .checkbox-wrapper { margin-block: 20px; }

  .contact-item { min-width: calc(33.33% - 16.66px); }

  .contact-card { padding: 30px; }

  .contact-card .card-icon { font-size: 32px; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.8rem;
    --fs-2: 4.5rem;
    --fs-4: 1.9rem;
    --fs-5: 1.6rem;
    --fs-6: 1.6rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1140px; }

  .btn { --fs-6: 1.5rem; }



  /**
   * SERVICE
   */

  /* .service-card { padding: 30px; }

  .service-card .h3 { --fs-3: 2.5rem; } */



  /**
   * PROJECT
   */

  .project-card .card-content { padding: 30px; }

  .project-card .card-subtitle { --fs-6: 1.6rem; }



  /**
   * ABOUT
   */

  .about .container { gap: 60px; }

  .about-item { gap: 7px; }

  .about-item ion-icon { font-size: 20px; }



  /**
   * CTA
   */

  .cta .section-title { margin-block: 15px 24px; }



  /**
   * BLOG
   */

  .blog-card .time { --fs-6: 1.6rem; }

  .blog-card.grid .h3 { --fs-3: 2.4rem; }



  /**
   * CONTACT
   */

  .contact-form { padding: 50px; }

  .contact-card { gap: 20px; }

  .contact-card .card-icon { padding: 15px; }

}