/*-----------------------------------*\
  #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;
  }
}
  
.about-us-section {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Heading Wrapper Styling */
.heading-wrapper {
  padding: 10px 30px;
  display: inline-block;
  transition: transform 0.5s ease-in-out;
  z-index: 1; /* Ensure heading is above video */
}

/* 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;
  }
}



 
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/
  
  .section-about {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
    background-color: #f9f1e7;
}

/* Text Content Styling */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: 36px;
    color: var(--secondary-color);
    font-family: var(--ff-league-spartan);
    margin-bottom: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-family: Arial, var(--ff-roboto);
    text-align: justify;
}

/* Image Styling */
.image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateX(50px); /* Start shifted to the right */
}

.image-container.fade-in {
    opacity: 1;
    transform: translateX(0); /* Fade in and slide from right */
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
  /*   border: 2px solid var(--secondary-color); */
}

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

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

    .image-container img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-about {
        padding: 20px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.85rem;
    }
}
  
  /*-----------------------------------*\
    #SERVICE
  \*-----------------------------------*/
  .who-we-are-section {
    padding: 50px 20px;
    background-color: #f2e8db;
    overflow: hidden;
}

.who-we-are-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.left-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Ensure opacity is set to 1 to show the content */
    transform: translateX(0); /* Reset the transform */
    transition: opacity 1s ease, transform 1s ease;
}

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

.who-we-are-image {
    max-width: 100%;
    /*Ensuretheimagescalesproperly*/height: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.right-content {
    flex: 1;
    padding: 20px;
}

.right-content h2 {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 15px;
    font-family: var(--ff-league-spartan);
}

.right-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
    .right-content h2 {
        font-size: 28px;
    }

    .right-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .who-we-are-container {
        flex-direction: column;
    }

    .left-content,
    .right-content {
        flex: none;
        width: 100%;
    }

    .who-we-are-image {
        width: 100%; /* Ensure the image takes full width */
    }
}

@media (max-width: 576px) {
    .right-content h2 {
        font-size: 24px;
    }

    .right-content p {
        font-size: 14px;
    }
}


  /*------------------ SEE OUR WORK ----------------*/
  .section-what-we-do {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
    background-color: #f9f1e7;
}

/* Text Content Styling */
.what-we-do-content {
    flex: 1;
    min-width: 300px;
}

.what-we-do-title {
    font-size: 36px;
    color: var(--secondary-color);
    font-family: var(--ff-league-spartan);
    margin-bottom: 20px;
}

.what-we-do-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-family: var(--ff-roboto);
    text-align: justify;
}

/* Image Styling */
.what-we-do-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateX(50px); /* Start shifted to the right */
}

.what-we-do-image-container.fade-in {
    opacity: 1;
    transform: translateX(0); /* Fade in and slide from right */
}

.what-we-do-image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-do-title {
        font-size: 2rem;
    }

    .what-we-do-description {
        font-size: 0.9rem;
    }

    .what-we-do-image-container img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-what-we-do {
        padding: 20px;
    }

    .what-we-do-title {
        font-size: 1.8rem;
    }

    .what-we-do-description {
        font-size: 0.85rem;
    }
}

 


  
.event-info-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  color: #333;
}

.event-description {
  max-width: 50%;
}

.event-heading {
  font-size: 1.8em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  font-family: var(--ff-league-spartan);
}

.event-location {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.event-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
  font-family: var(--ff-roboto);
  text-align: justify;
}

.core-goals {
  max-width: 40%;
}

.goals-heading {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  font-family: var(--ff-league-spartan);
}

.goals-list {
  list-style-type: none;
  padding-left: 0;
}

.goals-list li {
  font-size: 1em;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-family: var(--ff-roboto);
}

.goals-list li::before {
  content: "✔";
  color: var(--secondary-color); /* Green check color */
  margin-right: 8px;
  font-size: 1.2em;
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-info-section {
      flex-direction: column;
  }

  .event-description, .core-goals {
      max-width: 100%;
  }

  .core-goals {
      margin-top: 20px;
  }
}
  
 
  /*-----------------------------------*\
    #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;
    }
  }
  