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

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

:root {

  /**
   * colors
   */

  --safety-orange: hsl(25, 100%, 50%);
  --lavender-gray: hsl(230, 19%, 81%);
  --persian-rose: #FFB700;
  --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,
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: 36px; }

.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: #FFB700;
  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-4); }

.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: linear-gradient(68deg, #00204b, #003b8b);
  padding-block: 10px;
  border-block-end: 0.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 {
  font-family: var(--ff-league-spartan);
  color: white;
  font-size: 2.5rem;
  font-weight: var(--fw-700);
  line-height: 1;
}

.nav-toggle-btn { font-size: 40px; }

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

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

.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: 0.3s var(--cubic-out);
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}

.navbar.active {
  max-height: 320px;
  visibility: visible;
  transition-duration: 0.5s;
}

.navbar-list {
  padding: 20px 15px;
  padding-block-start: 10px;
  opacity: 0;
  transition: var(--transition-1);
}

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

.navbar-link {
  color: rgb(0, 0, 0);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-4);
  line-height: 1.2;
  padding-block: 8px;
  transition: var(--transition-1);
}

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

.header .btn { margin-block-start: 10px; }





/*-----------------------------------*\
  #HEO
\*-----------------------------------*/

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

.hero-content { margin-block-end: 30px; }

.hero-subtitle {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
}

.hero-title { margin-block: 12px 30px; }

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

.hero .btn {
  margin-inline: auto;
  margin-block-start: 20px;
  margin-bottom: 180px;
  margin-top: 50px;
  color: #00204b;
  font-size: var(--fs-4);
}

/* Auto Slider at bottom of hero */
#auto-slider {
  position: absolute;
  bottom: 20px;
  left: 10%;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.hero-text{
  color: hsla(0, 0%, 100%, 0.65);
}

.hero-subtitle{
  color: hsla(0, 0%, 100%, 0.65);
}




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

.service { background: #f6f4f0; }

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

.service-card {
  background-color: var(--white-1);
  padding: 20px 15px;
  border: 1px solid var(--platinum);
  border-radius: var(--radius-5);
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

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

.service-card .card-icon {
  color: var(--white-1);
  font-size: 25px;
  max-width: max-content;
  margin-inline: auto;
  padding: 18px;
  border-radius: 50%;
}

.service-card .card-title { margin-block: 20px 8px; }

.service-card .card-text { font-size: var(--fs-4); }


.service-img{
  height: 80px;
}





/* Float four columns side by side */
/* Float four columns side by side */


/* On‑brand light blue background for the entire section */
.translate-service {
  background-color: #f6f4f0;
  padding: 60px 0;
}

/* Dark blue text to match your primary brand color */
.translate-service .section-title,
.translate-service .section-text {
  color: #003b8b;
}

/* Lighten the cards a bit so they pop against the blue */
.translate-service .card {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 32, 75, 0.1);
}

/* Dark blue link color inside cards */
.translate-service .card a {
  color: #00204b;
  font-size: var(--fs-4);
}

.column {
  float: left;
  width: 50%;
  padding: 0 10px;
  margin-bottom: 30px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {
  margin: 0 -5px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards with hover effect */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: left;
  background-color: #f1f1f1;
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover state */
.card:hover {
  background-color: #e0e0e0;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
}

/* Style the link and prepare space for the arrow icon */
.card a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-right: 25px; /* Adds space for the arrow */
}

/* Add the arrow icon using a pseudo-element */
.card a::after {
  content: '\2192'; /* Unicode right-arrow character */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1; /* Initially hidden */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show and slide the arrow on link hover */
.card a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(5px);
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}






/* Coupon Section Styling */
.coupon-section {
  padding: 60px 0px;
  text-align: center;
  background: linear-gradient(68deg, #00204b, #003b8b);
  font-family: 'Roboto', sans-serif;
}

.coupon-section .container {
  max-width: 700px;
  margin: 0 auto;
}

/* Coupon Card Container */
.coupon-card {
  display: flex;
  max-width: 700px;
  margin: 2rem auto;
  border: 2px dashed #d3d3d3;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

/* Left Panel: Discount Code */
.coupon-left {
  background: linear-gradient(135deg, #00853d, #2000a6);
  color: #fff;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* Optional: Add a vertical dashed line (as a perforated effect)
   using a pseudo-element on the left panel */
.coupon-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  border-right: 2px dashed #ffffff;
}

/* Discount Code Text */
.coupon-code {
  font-size: 2rem;
  font-weight: 700;
}

/* Right Panel: Description and Button */
.coupon-right {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coupon-description {
  font-size: var(--fs-5);
  margin-bottom: 1.5rem;
  color: #333;
}

/* Coupon Button */
/* Coupon Button */
.coupon-btn {
  display: block;       /* Make the button a block-level element */
  margin: 0 auto;       /* Auto margins center the block element horizontally */
  margin-top: 40px;
  background-color: #FFB700;
  color: #00204b;
  font-size: var(--fs-5);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.coupon-btn:hover {
  background-color: #006c40;
}

/* Coupon Terms */
.coupon-terms {
  font-size: 1.5rem;
  color: #b7b7b7;
  margin-top: 1rem;
}

/* Responsive - stack panels vertically on smaller screens */
@media screen and (max-width: 480px) {
  .coupon-card {
    flex-direction: column;
  }

  .coupon-left,
  .coupon-right {
    width: 100%;
    padding: 1.5rem;
  }
  
  .coupon-left::after {
    display: none;
  }
}







/* Translated Team Section */
.translated-team {
  padding: 60px 0;
  background-color: #f6f4f0;
  text-align: center;
}

.translated-team .section-title {
  font-size: var(--fs-2);
  margin-bottom: 20px;
  color: #003b8b;
}

.team-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Section: Image Gallery with Overlap */
.team-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0 40px;
}

.team-photo {
  width: 300px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.photo-1 {
  margin-left: 50px;
  z-index: 1;
}

.photo-2 {
  margin-left: -50px; /* Adjust this for overlap */
  z-index: 2;
}

.photo-3 {
  margin-left: -30px; /* Adjust this for overlap */
  z-index: 3;
}

.team-photo:hover {
  transform: scale(1.05);
}

/* Right Section: List with Checkmarks */
.team-info {
  max-width: 500px;
  margin-top: 20px;
  text-align: left;
}

.team-info ul {
  list-style: none;
  padding: 0;
}

.team-info li {
  font-size: var(--fs-4);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.check-icon {
  color: #003b8b;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .team-gallery {
    flex-direction: column;
    align-items: center;
  }

  .team-photo {
    width: 220px;
    margin-bottom: -20px;
  }

  .team-info {
    margin-top: 20px;
    text-align: left;
  }
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 200px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close-img {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-img:hover,
.close-img:focus {
  color: #bbb;
}








/* Call to Action Section Styling */
.cta-section {
  padding: 60px 0px;
  background: linear-gradient(135deg, #00204b, #003b8b);
  color: #fff;
  text-align: center;
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .section-title {
  font-size: var(--fs-2);
  margin-bottom: 20px;
}

.cta-section .section-text {
  font-size: var(--fs-4);
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #ffb700;
  font-size: var(--fs-4);
  color: #00204b;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #e0a400;
  transform: translateY(-3px);
}

/* Responsive adjustments for mobile devices */
@media screen and (max-width: 600px) {
  
  .cta-section .section-text {
    padding: 0 10px;
  }
  
  .cta-btn {
    padding: 0.8rem 1.5rem;
  }
}







/* ===== Steps Section ===== */
/* Steps Section */

.steps-section {
  padding: 60px 0;
  background-color: #f7f7f7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  text-align: center;
}

.step-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.step-box:hover {
  transform: scale(1.05);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  background: #007bff;
  color: white;
  border-radius: 50%;
  padding: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #007bff;
}

.step-title {
  color: #000000;
  font-size: var(--fs-4);
  font-weight: 600;
  margin: 0;
  padding-bottom: 10px;
}

.step-description {
  font-size: var(--fs-4);
  color: #555;
  line-height: 1.5;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}









/* Supported Languages Section Styling */
.supported-languages {
  padding: 60px 20px;
  background: linear-gradient(68deg, #00204b, #003b8b);
  text-align: center;
}

.supported-languages .container {
  max-width: 1200px;
  margin: 0 auto;
}

.supported-languages .section-title {
  font-size: var(--fs-2);
  color: white;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Grid layout for language items */
.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Each language item */
.language-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.language-item span {
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.language-item p {
  margin: 0;
  font-size: var(--fs-5);
  font-weight: 500;
  color: #ffffff;
}

/* Make the button cell align like the flags */
.view-all-toggle {
  align-self: center;
}

.view-all-toggle button {
  padding: 0.75rem 1.25rem;
  font-size: var(--fs-5);
}

/* Extra languages hidden by default */
.extra-languages {
  display: none;
  margin-top: 2rem;
}

/* Reveal extra languages when toggled */
.extra-languages.show {
  display: grid; /* uses the same .languages-grid rules */
}

/* Responsive tweak for very small screens */
@media screen and (max-width: 600px) {
  .view-all-toggle button {
    width: 100%;
  }
}











/* FAQ Section Styling */
.faq-section {
  padding: 60px 0px;
  background: linear-gradient(68deg, #00204b, #003b8b);
  color: #333;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .section-title {
  text-align: center;
  font-size: var(--fs-2);
  font-weight: 700;
  margin-bottom: 40px;
  color: white;
}

/* FAQ Item Styles */
.faq-item details {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
}

.faq-item details[open] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
  font-size: var(--fs-4);
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 30px;
}

/* Hide default marker */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow icon */
.faq-item summary::before {
  content: "\25BA"; /* right-pointing arrow */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item details[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item p {
  font-size: var(--fs-5);
  margin-top: 10px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  
}



/* Contact Form Section Styling */
.form-section {
  padding: 60px 0px;
  background-color: #fff;
  text-align: center;
}

.form-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.form-section .section-title {
  font-size: var(--fs-2);
  color: #003b8b;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-section .section-text {
  font-size: var(--fs-4);
  margin-bottom: 40px;
  color: var(--gray-web);
}

/* Contact form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* Group individual form fields */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #000000;
  margin-bottom: 5px;
  font-weight: 600;
}

/* Input and textarea styling */
.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Submit button styling */
.form-btn {
  padding: 12px 20px;
  border: none;
  background-color: #003b8b;
  color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.form-btn:hover {
  background-color: #006c40;
}

/* Flex row for grouping fields side by side on larger screens */
.flex-row {
  display: flex;
  gap: 20px;
}

/* Each input group in flex row should expand equally */
.flex-row .form-group {
  flex: 1;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
}


/* Preview thumbnails */
#file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

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

.preview-item .file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4px;
}

.preview-item .remove-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
}



/* Footer Section Styling */
.footer {
  background-color: #00204b;
  color: #fff;
  padding: 40px 0px;
  font-family: 'Roboto', sans-serif;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-column h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-column ul li ion-icon {
  margin-right: 8px;
  font-size: 1.8rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.footer-social a {
  margin-left: 10px;
  font-size: 1.5rem;
  color: #ffb700;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-column {
    flex: 1 1 0px;
    margin: 20px 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social a {
    margin: 0 5px;
  }
}


/* Quick Links wrapper to arrange two columns */
.quick-links-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* Both list columns should have no list-style and share similar styling */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Ensure the left and right columns each take available space */
.quick-links-left,
.quick-links-right {
  flex: 1;
}

/* Optional: Adjust the link styles to match the footer design */
.quick-links li {
  margin-bottom: 8px;
}

.quick-links li a {
  color: #ffffff; /* same color as footer links */
  text-decoration: none;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.quick-links li a:hover {
  text-decoration: underline;
}

/* Responsive adjustments: stack the columns vertically on smaller screens */
@media screen and (max-width: 768px) {

  .quick-links {
    width: 100%;
    text-align: center;
  }
}







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



}





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


}





/**
 * 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: 80px;

  }



  /**
   * 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; 
    color: rgb(255, 255, 255);
  }

  .navbar-link:is(:hover, :focus) { color: rgb(204, 204, 204); }

  .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: #FFB700;
  }

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



  /**
   * SERVICE
   */

  .service-img{
    height: 170px;
  }

  .service-card { padding: 20px; }

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


}





/**
 * 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.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1140px; }

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



  /**
   * SERVICE
   */

  .service-card { padding: 30px; }

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



  /**
   * BLOG
   */

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

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


}
