:root {
    /**
     * colors
     */
    --platinum: hsl(0, 0%, 90%);
    --black_70: hsl(0, 0%, 70%);
    --white: hsl(0, 0%, 100%);
    --white_50: hsla(0, 0%, 100%, 0.7);
    --ghost-white: #f8f8ff;
    --grey-color: #252525;
    --gold: #00cbfe;
    --gold_50: hsla(204, 100%, 50%, 0.5);
    --gold-light: #2df8ff;
    --orange: hsl(224, 100%, 61%);
    --gold-dark: #098db5;
    --golden-dark: #06637a;
    --orange-dark: hsl(194, 71%, 40%);
    --text-color: #333333;
    --text-color-light: #4a4a4a;
    --grey-light: #3d3d3d;
    --black-dark: rgb(35, 35, 35);
    --gradient-text-grey: linear-gradient(90deg, var(--grey-light) 20%, rgb(146, 146, 146) 100%);
    --gradient-1: linear-gradient(90deg, var(--grey-light) 0, var(--black-dark) 51%, var(--grey-light));
    --gradient-2: linear-gradient(90deg, var(--gold-light), var(--orange));
    --gradient-border: linear-gradient(90deg, var(--gold-light), var(--orange));
    /**
     * typography
     */
    --ff-source-sans-pro: "Source Sans Pro", sans-serif;
    --ff-poppins: "Nunito", sans-serif;
    --fs-hero-title: 6rem;
    --fs-navlink: 1.6rem;
    --fs-1: 4.2rem;
    --fs-2: 3.8rem;
    --fs-3: 3.2rem;
    --fs-4: 2.5rem;
    --fs-5: 2.4rem;
    --fs-6: 2.1rem;
    --fs-7: 1.8rem;
    --fs-8: 1.6rem;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    /**
     * spacing
     */
    --section-padding: 80px;
    /**
     * transition
     */
    --transition-1: 0.15s ease;
    --transition-2: 0.35s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);
    /**
     * shadow
     */
    --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
    /**
     * radius
     */
    --radius-12: 12px;
}

@media screen and (max-width: 768px) {
    :root {
        --fs-hero-title: 5rem;
        --fs-1: 3.8rem;
        --fs-2: 3.2rem;
        --fs-3: 2.8rem;
        --fs-4: 2.4rem;
        --fs-5: 2.2rem;
        --fs-6: 1.8rem;
        --fs-7: 1.6rem;
        --fs-8: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --fs-hero-title: 4.5rem;
        --fs-navlink: 1.5rem;
        --fs-1: 3.2rem;
        --fs-2: 2.8rem;
        --fs-3: 2.4rem;
        --fs-4: 2rem;
        --fs-5: 1.8rem;
        --fs-6: 1.6rem;
        --fs-7: 1.4rem;
        --fs-8: 1.2rem;
    }
}

@media screen and (max-width: 375px) {
    :root {
        --fs-hero-title: 4rem;
    }
}

/*-----------------------------------*\
    #TEXT SELECTION
\*-----------------------------------*/
*::-moz-selection {
    color: var(--white);
    background: var(--gold);
}

*::selection {
    color: var(--white);
    background: var(--gold);
}

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    background: var(--gradient-text-grey);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: var(--fs-3);
    margin-block-end: 60px;
    max-width: max-content;
    margin-inline: auto;
    text-align: center;
}

.section-title i,
.section-title .dot {
    font-style: normal;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline {
    position: relative;
}

.underline::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 6px;
    background-image: var(--gradient-2);
    border-radius: 10px;
}

:is(.service-card, .values-card) .title {
    color: var(--grey-light);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
}

:is(.service-card, .values-card, .blog-card) .text {
    font-size: var(--fs-8);
}

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

.hide-image {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: none;
}
/*-----------------------------------*\
    #SERVICE
\*-----------------------------------*/
.service-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    box-shadow: var(--shadow);
    border-radius: var(--radius-12);
    transition: var(--transition-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card-icon {
    background-image: url("./service-banner-pattern.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: hsla(197, 87%, 53%, 0.12);
    aspect-ratio: 1/1;
    max-width: 165px;
    display: grid;
    place-content: center;
    margin-inline: auto;
    transition: var(--transition-1);
}

.service-card .card-icon i {
    font-size: 5rem;
    color: var(--gold-light);
    font-weight: 300;
    transition: var(--transition-1);
}

.service-card:hover .card-icon {
    background-color: var(--gold);
}

.service-card .card-icon ion-icon {
    font-size: 5rem;
    color: var(--gold-light);
    --ionicon-stroke-width: 20px;
    transition: var(--transition-1);
}

.service-card:hover .card-icon i {
    color: var(--white);
}

service-card .title {
    text-align: center;
    -webkit-margin-after: 15px;
            margin-block-end: 15px;
  }
  
  .service-card .text {
    font-size: var(--fs-8);
    font-family: "Nunito", sans-serif;
    text-align: center;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
  


.service-card .card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 15px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition-1);
}

.service-card .card-btn:is(:hover, :focus) {
    color: var(--white);
    background-color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card .card-btn {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .service-card .card-icon i,
    .service-card .card-icon ion-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .service-card .card-btn {
        width: 30px;
        height: 30px;
        padding: 8px;
    }

    .service-card .card-icon i,
    .service-card .card-icon ion-icon {
        font-size: 3rem;
    }
}



/* Features List Styling */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }
  
  .features-list li {
    font-size: var(--fs-8);
    color: var(--text-color-light);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  
  .features-list li::before {
    content: "✔";
    color: var(--gold);
    position: absolute;
    left: 0;
  }
  
  /* Card Hover Effects */
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-card:hover .card-icon {
    background-color: var(--gold);
  }
  
 
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .service-card {
      padding: 20px;
    }
  
    .features-list li {
      font-size: var(--fs-7);
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      padding: 15px;
    }
  
    .features-list li {
      font-size: var(--fs-8);
    }
  }

  /* indecator */
  #loading-indicator {
    display: none;
    color: #000;
    font-size: 1.2em;
    text-align: center;
    margin-top: 10px;
}