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

/**
 * copyright 2022 codewithsadee
 */

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

:root {
    /**
     * colors
     */
  
     --secondary-color: hsl(0, 100%, 50%);

     --lavender-gray: hsl(230, 19%, 81%);
     --primary-color-hover: hsl(188, 50%, 24%);
     --primary-color: hsl(45, 97%, 50%);
     --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(--primary-color-hover),
      var(--secondary-color)
    );
  
    /**
     * 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,
  span,
  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: 12px 35px;
    border-radius: var(--radius-5);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    width: auto; /* Matches width of the original button */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Primary Button */
  .btn-primary {
    background-color: var(--primary-color); /* Set initial background color */
    color: rgb(255, 255, 255); /* White text color */
    border: 2px solid transparent; /* Initial border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-size: 200%;
  }
  
  .btn-primary:is(:hover, :focus) {
    background-color: rgb(255, 255, 255); /* Background turns white on hover */
    color: var(--primary-color); /* Text color switches to primary */
    border: 2px solid var(--primary-color); /* Border matches the text color */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    transform: scale(1.05); /* Slight size increase */
    transition: all 0.4s ease-in-out;
  }
  
  /* Secondary Button */
  .btn-secondary {
    background-color: var(--white-1);
    color: var(--eerie-black);
    border: 2px solid var(--eerie-black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary:is(:hover, :focus) {
    background-color: var(--eerie-black); /* Background turns black on hover */
    color: var(--white-1); /* Text turns white on hover */
    border: 2px solid var(--white-1); /* Border changes color */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    transform: scale(1.05); /* Slight size increase */
    transition: all 0.4s ease-in-out;
  }
  
  /* Ripple effect for both buttons */
  .btn-primary:is(:hover, :focus)::before,
  .btn-secondary:is(:hover, :focus)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s ease-out;
    border-radius: 50%;
    z-index: 0;
  }
  
  .btn-primary:is(:hover, :focus)::before,
  .btn-secondary:is(:hover, :focus)::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2); /* Ripple effect scaling */
  }
  
  .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
  \*-----------------------------------*/
 /* General Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-1);
  padding-block: 8px;
  border-block-end: 1px solid var(--cultured);
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  filter: drop-shadow(var(--shadow-2));
}

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

.logo {
  max-width: 150px;
  height: auto;
  transition: all 0.3s ease;
}

/* Navbar Toggle Button */
.nav-toggle-btn {
  font-size: 28px;
  cursor: pointer;
}

.nav-toggle-btn.active .open,
.nav-toggle-btn .close {
  display: none;
}

.nav-toggle-btn .open,
.nav-toggle-btn.active .close {
  display: block;
}

/* Navbar Menu */
.navbar {
  background-color: var(--white-1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 30px);
  width: 100%;
  padding-inline: 0;
  border: 1px solid var(--cultured);
  transition: max-height 0.3s ease, visibility 0.3s ease;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}

.navbar.active {
  max-height: 250px;
  visibility: visible;
  transition: max-height 0.5s ease, visibility 0.5s ease;
}

.navbar-list {
  padding: 10px 10px;
  opacity: 0;
  transition: opacity 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: 6px;
  transition: color 0.3s ease;
}

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

/* Button in Header */
.header .btn {
  margin-block-start: 5px;
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
  /* Adjust the logo size for tablets */
  .logo {
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  /* Header adjustments for mobile screens */
  .header {
    padding-block: 6px; /* Further reduce padding */
  }

  /* Smaller logo for mobile screens */
  .logo {
    max-width: 110px;
  }

  /* Smaller font size for toggle button */
  .nav-toggle-btn {
    font-size: 24px;
  }

  /* Navbar menu adjustments for mobile screens */
  .navbar {
    max-width: calc(100% - 20px);
  }

  /* Reduced max-height for smaller navbar on mobile screens */
  .navbar.active {
    max-height: 200px;
  }

  /* Navbar list and link adjustments for mobile */
  .navbar-list {
    padding: 8px 8px;
  }

  .navbar-link {
    font-size: var(--fs-5); /* Slightly smaller font size for links */
    padding-block: 4px;
  }
}


.phone-call-button,
.whatsapp-chat-button {
  position: fixed;
  right: 14px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 50px;
}

/* Phone Call Button Position and Color */
.phone-call-button {
  bottom: 90px;
  background-color: #007bff;
}

/* WhatsApp Chat Button Position */
.whatsapp-chat-button {
  bottom: 20px;
}

/* Icon Styles */
.phone-call-button img,
.whatsapp-chat-button img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.phone-call-button:hover,
.whatsapp-chat-button:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.phone-call-button:hover img,
.whatsapp-chat-button:hover img {
  transform: rotate(10deg);
}

/* Responsive styles */
@media (max-width: 768px) {
  .phone-call-button,
  .whatsapp-chat-button {
    right: 16px;
    padding: 10px;
  }

  .phone-call-button img,
  .whatsapp-chat-button img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .phone-call-button {
    bottom: 70px;
  }

  .whatsapp-chat-button {
    bottom: 12px;
  }

  .phone-call-button,
  .whatsapp-chat-button {
    right: 12px;
    padding: 8px;
  }

  .phone-call-button img,
  .whatsapp-chat-button img {
    width: 28px;
    height: 28px;
  }
}

  
 /* Hero Section and Image Slider */
.about-us-section {
  position: relative;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: url('/assets/images/503.jpg') no-repeat center center;
  background-size: 100% 100%; /* Adjusted to show the full image */
  background-attachment: fixed;
  text-align: center;
  margin-top:70px;
}

/* Heading Wrapper Styling */
.heading-wrapper {
  padding: 10px 30px;
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

/* Heading Text Styling */
.about-us-heading {
  font-size: 5rem;
  color: white;
  font-family: var(--ff-league-spartan);
  text-transform: uppercase;
  margin: 0;
}

/* Zoom-In Effect */
.about-us-section:hover .heading-wrapper {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us-heading {
      font-size: 2rem;
  }

  .heading-wrapper {
      padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .about-us-heading {
      font-size: 1.5rem;
  }

  .heading-wrapper {
      padding: 6px 15px;
  }
}

 /* Keyframes for fade-in-up animation */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }




.culture-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem 3rem ;
  max-width: 1200px;
  margin: 10px auto;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.content {
  flex: 1;
}

.label {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 2rem;
  color: var(--black);
  text-align: justify;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  max-width: 400px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

/* .image-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

@media screen and (max-width: 768px) {
  .culture-section {
    flex-direction: column;
    text-align: center;
  }

  .image-container img {
    max-width: 300px;
  }

  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .culture-section {
    padding: 2rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .description {
    font-size: 0.85rem;
  }
}

        /* Product Grid Layout */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            margin: 30px auto;
            padding: 0 10px;
        }

        /* Product Card Styling */
        .product-card {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        /* Front and Back Image Styling */
        .front-image, .back-image {
            width: 100%;
            border-radius: 15px;
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.3s ease;
        }

        .front-image {
            opacity: 1; /* Show front image by default */
            z-index: 1;
        }

        .back-image {
            opacity: 0; /* Hide back image by default */
            z-index: 0;
        }

        .product-card:hover .front-image {
            opacity: 0; /* Hide front image on hover */
        }

        .product-card:hover .back-image {
            opacity: 1; /* Show back image on hover */
        }

        /* Badge Styling */
        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #FF6B6B;
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            z-index: 2;
        }

        /* Product Info */
        .product-name {
            margin: 15px 0 8px;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            position: relative;
            z-index: 2;
        }

        .price {
            color: #aaa;
            text-decoration: line-through;
            font-size: 14px;
        }

        .sale-price {
            color: #333;
            font-weight: bold;
            font-size: 18px;
            margin-left: 10px;
        }

        /* Explore Button */
        .explore-button {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 20px;
            color: #fff;
            background-color: #4CAF50;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-decoration: none;
            position: relative;
            z-index: 2;
        }

        .explore-button:hover {
            background-color: #45a049;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr); /* Two cards per row */
            }
        }

        @media (max-width: 600px) {
            .product-grid {
                grid-template-columns: 1fr; /* One card per row */
            }
        }

  
 
  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
  .footer {
    background-color: var(--black);
    color: var(--lavender-gray);
    padding: 40px 20px;
    font-size: 14px;
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 1s ease-out forwards; /* Apply fade-in effect */
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    flex: 1;
    min-width: 250px;
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 1s ease-out 0.2s forwards; /* Delay for staggered effect */
  }
  
  .footer-logo img {
    max-width: 180px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    margin: 5px 0;
  }
  
  .footer-menu {
    display: flex;
    flex: 2;
    justify-content: space-between;
    min-width: 300px;
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 1s ease-out 0.4s forwards; /* Delay for staggered effect */
  }
  
  .footer-column h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin: 5px 0;
  }
  
  .footer-column ul li a {
    color: var(--lavender-gray);
    text-decoration: none;
  }
  
  .footer-column ul li a:hover {
    color: var(--secondary-color);
  }
  
  /* Social Links Styling */
  .social-links {
    display: flex;
    gap: 15px;
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 1s ease-out 0.6s forwards; /* Delay for staggered effect */
  }
  
  .social-links li {
    list-style: none;
  }
  

  .phone-numbers {
    white-space: nowrap; /* Prevents line breaks within the element */
    display: flex;
    gap: 5px; /* Optional: adds a bit of space between items */
    align-items: center;
}

.phone-numbers a {
    text-decoration: none; /* Optional: removes underline from links */
    color: inherit; /* Keeps the link color consistent with text */
}

  .social-links li a {
    display: inline-block;
  }
  
  .social-icon {
    width: 25px; /* Icon size */
    height: 25px;
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }
  
  /* Footer Bottom Styling */
  .footer-bottom {
    background-color: var(--primary-color-hover);
    padding: 15px 20px;
    text-align: center;
    margin-top: 20px;
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 1s ease-out 0.8s forwards; /* Delay for staggered effect */
  }
  
  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .footer-bottom-links a {
    color: var(--lavender-gray);
    text-decoration: none;
  }
  
  .footer-bottom-links a:hover {
    color: var(--secondary-color);
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 12px;
  }
  
  /* Fade-in Up Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px); /* Start from below */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* End in normal position */
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-menu {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
    }
  
    .social-links {
      gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      font-size: 12px;
    }
  
    .footer-bottom-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .footer-bottom p {
      font-size: 10px;
    }
  
    .social-links {
      gap: 5px;
    }
  }
  
  /*-----------------------------------*\
    #BACK TO TOP
  \*-----------------------------------*/
  
  .back-top-btn {
    position: fixed;
    bottom: 10px;
    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;
  }
  
  /*-----------------------------------*\
    #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;
    }
  
    /**
     * HERO
     */
  
    /* .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 30px;
      text-align: left;
    }
  
    .hero-content { margin-block-end: 0; }
  
    .hero-subtitle {
      position: relative;
      padding-inline-start: 15px;
    }
  
    .hero-subtitle::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 100%;
      background-color: var(--primary-color);
    }
  
    .hero-text,
    .hero .btn { margin-inline: 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;
      margin-top: 1.5rem;
    }
  
    /**
     * 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;
    }
  }
  