/*-----------------------------------*\
  #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
\*-----------------------------------*/
/* Header styling */
.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: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: url('/assets/images/kitty-banner.jpg') no-repeat center center;
  background-size: 100% 100%; /* Adjusted to show the full image */
  background-attachment: fixed;
  text-align: center;
}

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

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

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

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


/* Welcome Section Styling */
.welcome-section {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 50px;
background-color: #fff;
}

.welcome-content {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}

.welcome-content.fade-in-up {
opacity: 1;
transform: translateY(0);
}

.welcome-icon {
width: 80px;
margin: 0 auto; /* Centers the icon horizontally */
display: block; /* Ensures the margin auto centers it */
}

.top-icon {
margin-bottom: 10px; /* Adjust spacing as needed */
}

.welcome-title {
font-size: 2.7rem;
color: #333;
font-family: var(--ff-league-spartan);
font-weight: bold;
margin: 20px 0;
}

.welcome-description {
font-size: 1.7rem;
color: #666;
font-family: var(--ff-roboto);
margin-bottom: 20px;
}

.underline {
width: 100px;
height: 3px;
background-color: var(--secondary-color);
margin: 10px auto 0 auto; /* Centers the underline */
}

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

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

.welcome-icon {
    width: 25px;
}
}

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

.welcome-title {
    font-size: 1.5rem;
    font-family: var(--ff-league-spartan);
}

.welcome-description {
    font-size: 0.85rem;
    font-family: var(--ff-roboto);
}

.welcome-icon {
    width: 20px;
}
}

.event-section {
  display: flex;
  gap: 20px;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.content {
  flex: 2;
}

.content h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
  font-family: var(--ff-league-spartan);
}

.content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--ff-roboto);
}

.event-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 5px;
}

/* Quote Form Styling */
.quote-form-container {
  flex: 1;
  display: flex;
  align-items: center;
}

.quote-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.quote-form.active {
  opacity: 1;
  transform: translateX(0);
}

.quote-form h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  font-family: var(--ff-league-spartan);
}

.quote-form form input,
.quote-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  color: #333;
  transition: background-color 0.3s ease;
}

.quote-form form input:focus,
.quote-form form textarea:focus {
  background-color: rgba(255, 255, 255, 0.8);
  outline: none;
}

.quote-form form textarea {
  resize: vertical;
  height: 100px;
}

.quote-form form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #6a4bff, #4b3bfb);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 4px 12px rgba(75, 59, 251, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form form button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 18px rgba(75, 59, 251, 0.5);
}

/* Responsive Styling */
@media (max-width: 992px) {
  .event-section {
      flex-direction: column;
      padding: 20px;
  }

  .content, .quote-form-container {
      margin: 0;
  }
}

@media (max-width: 768px) {
  .content h1 {
      font-size: 24px;
  }

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

  .quote-form h2 {
      font-size: 20px;
  }
}

@media (max-width: 576px) {
  .content h1 {
      font-size: 20px;
  }

  .quote-form h2 {
      font-size: 18px;
  }

  .quote-form form button {
      font-size: 14px;
  }
}

/*-----------------------------------*\
  #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: 1.5rem;
  line-height: 1.6;
  color: #333;
  font-family: Arial, var(--ff-roboto);
}

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

/* 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: 1.5rem;
  line-height: 1.6;
  color: #333;
  font-family: var(--ff-roboto);
}

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


.section-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #f7f0e7;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-container.visible {
  opacity: 1;
  transform: translateX(0);
}
.content {
  max-width: 1200px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.text-content {
  flex: 1;
  padding: 20px;
  color: #333;
}
.text-content h2 {
  color: #d90000;
  font-size: 2em;
  font-weight: bold;
  margin: 0;
}
.text-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 15px;
}
.image-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  max-width: 600px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content {
      flex-direction: column;
      text-align: center;
  }
  .text-content h2 {
      font-size: 1.8em;
  }
}
@media (max-width: 480px) {
  .text-content h2 {
      font-size: 1.6em;
  }
  .text-content p {
      font-size: 0.9em;
  }
}


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