/*-----------------------------------*\
  #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
  \*-----------------------------------*/
  
  #page-header.page-banner {
    position: relative;
    overflow: hidden;                 /* contain the blur and overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   /* gap: 2.3vh;*/
    padding: 4rem 1.5rem;
   /* min-height: 35vh;*/
    z-index: 2;
  
    /* gradient background */
    background: linear-gradient(68deg, #00204b, #003b8b);
  }
  


  
  
  /* semi‑transparent overlay to improve text contrast */
  #page-header.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);   /* 50% black overlay */
    z-index: -1;                      /* above image, below text */
  }
  
  /* header text styling */
  #page-header.page-banner h2,
  #page-header.page-banner p {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    z-index: 3;                       /* on top of overlay */
  }
  
  /* main title */
  #page-header.page-banner h2 {
    font-size: var(--fs-2);           /* e.g. 3rem on desktop */
    margin-bottom: 0.5rem;
  }
  
  /* subtitle/description */
  #page-header.page-banner p {
    font-size: var(--fs-5);           /* e.g. 1.4rem */
  }
  
  /* category dropdown */
  #page-header.page-banner select {
    width: 200px;
    height: 45px;
    padding: 0 0.75rem;
    font-size: 2rem;
    border: none;
    border-radius: var(--radius-5);
    background: #fff;
    color: #333;
    z-index: 3;                       /* ensure it sits above overlay */
    cursor: pointer;
  }
  
  /* mobile adjustments */
  @media (max-width: 600px) {
    #page-header.page-banner {
      padding: 3rem 1rem;
      gap: 1.5rem;
    }
    #page-header.page-banner select {
      max-width: 260px;
    }
  }

  /* breadcrumb styling */
#page-header.page-banner .breadcrumb {
    z-index: 3;                   /* above overlay */
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: var(--fs-4);       /* e.g. 1.4rem */
    color: rgba(255,255,255,0.85);
  }
  
  #page-header.page-banner .breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  #page-header.page-banner .breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  #page-header.page-banner .breadcrumb .sep {
    margin: 0 0.25rem;
    font-weight: 300;
  }
  
  
  

  















  
  
  
  
  /*-----------------------------------*\
    #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;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* 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; }
  
  
  }
  