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

/**
 * copyright 2022 codewithsadee
 */





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

:root {

    /**
     * colors
     */
  
    --st-patricks-blue: hsl(236, 57%, 28%);
    --amaranth-purple: hsl(335, 88%, 38%);
    --royal-blue-dark: hsl(231, 68%, 21%);
    --chrome-yellow: hsl(39, 100%, 52%);
    --space-cadet-1: hsl(230, 41%, 25%);
    --space-cadet-2: hsl(230, 59%, 16%);
    --winter-sky_50: hsla(335, 87%, 53%, 0.5);
    --purple-navy: hsl(236, 26%, 43%);
    --ksu-purple: hsl(275, 54%, 33%);
    --winter-sky: hsl(335, 87%, 53%);
    --razzmatazz: hsl(335, 87%, 51%);
    --platinum: hsl(0, 0%, 90%);
    --black_70: hsla(0, 0%, 0%, 0.7);
    --rajah: hsl(29, 99%, 67%);
    --white: hsl(0, 0%, 100%);
  
    --gradient-1: linear-gradient(90deg,var(--royal-blue-dark) 0,var(--ksu-purple) 51%,var(--royal-blue-dark));
    --gradient-2: linear-gradient(90deg,var(--razzmatazz) ,var(--rajah));
  
    /**
     * typography
     */
  
    --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
    --ff-poppins: 'Poppins', sans-serif;
  
    --fs-1: 4.2rem;
    --fs-2: 3.8rem;
    --fs-3: 3.2rem;
    --fs-4: 2.5rem;
    --fs-5: 2.4rem;
    --fs-6: 2rem;
    --fs-7: 1.8rem;
    --fs-8: 1.5rem;
  
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
  
    /**
     * border radius
     */
  
    --radius-4: 4px;
    --radius-12: 12px;
  
    /**
     * spacing
     */
  
    --section-padding: 60px;
  
    /**
     * 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);
  
  }
  
  
  
  
  
  /*-----------------------------------*\
    #RESET
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a { text-decoration: none; }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon { display: block; }
  
  button,
  input {
    background: none;
    border: none;
    font: inherit;
  }
  
  button { cursor: pointer; }
  
  input { width: 100%; }
  
  ion-icon { pointer-events: none; }
  
  img { height: auto; }
  
  address { font-style: normal; }
  
  html {
    font-family: var(--ff-poppins);
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--white);
    color: var(--purple-navy);
    font-size: 1.6rem;
  }
  
  ::-webkit-scrollbar { width: 10px; }
  
  ::-webkit-scrollbar-track { background-color: hsl(0, 0%, 95%); }
  
  ::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }
  
  ::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }
  
  
  
  
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
  .container { padding-inline: 15px; }
  
  .h2,
  .h3 { font-family: var(--ff-source-sans-pro); }
  
  .btn {
    background-image: var(--gradient-2);
    background-size: 200%;
    color: var(--white);
    padding: 12px 35px;
    font-size: var(--fs-8);
    font-weight: var(--fw-500);
    border-radius: 0 25px;
    transition: var(--transition-2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn:is(:hover, :focus) {
    background-position: right;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .w-100 { width: 100%; }
  
  .banner-animation { animation: waveAnim 2s linear infinite alternate; }
  
  @keyframes waveAnim {
    0% { transform: translate(0, 0) rotate(0); }
    100% { transform: translate(2px, 2px) rotate(1deg); }
  }
  
  .section { padding-block: var(--section-padding); }
  
  .section-title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-3);
    margin-block-end: 60px;
    max-width: max-content;
    margin-inline: auto;
  }
  
  .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, .features-card) .title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
  }
  
  :is(.service-card, .features-card, .blog-card) .text { font-size: var(--fs-8); }
  
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  
  
  /*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/
  
  .header .btn { display: none; }
  
  .header {
    --color: var(--st-patricks-blue);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 14px;
    z-index: 4;
    transition: var(--transition-1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .header.active {
    --color: var(--st-patricks-blue);
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px hsla(0, 0%, 0%, 0.15);
    animation: slideDown 0.5s ease forwards;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  .logo {
    color: var(--color);
    font-family: var(--ff-source-sans-pro);
    font-size: var(--fs-3);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
  }

  .large_logo {
    width: 200px;
    height: 50px;
    display: none;
  }

  .mini_logo {
    width: 50px;
    height: 50px;
  }

  .mini_logo svg {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px !important;
  }

  .logo svg {
    width: 100%;
    position: relative;
    top: -40px;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  .nav-open-btn {
    color: var(--color);
    font-size: 32px;
    padding: 4px;
    transition: transform 0.3s ease;
  }
  
  .nav-open-btn:hover {
    transform: rotate(90deg);
  }
  
  .navbar {
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 0;
    left: -280px;
    width: 100%;
    max-width: 280px;
    min-height: 100%;
    padding: 20px;
    visibility: hidden;
    z-index: 2;
    transition: 0.25s var(--cubic-in);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar.active {
    transform: translateX(280px);
    visibility: visible;
    transition: 0.5s var(--cubic-out);
  }
  
  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px 30px;
  }
  
  .navbar-top .logo {
    color: var(--st-patricks-blue);
    font-size: 4.2rem;
    font-weight: var(--fw-700);
  }
  
  .nav-close-btn {
    color: var(--space-cadet-1);
    font-size: 2.8rem;
    padding: 4px;
    transition: transform 0.3s ease;
  }
  
  .nav-close-btn:hover {
    transform: rotate(90deg);
  }
  
  .navbar-item:not(:last-child) { 
    border-bottom: 1px solid rgba(var(--platinum), 0.5); 
  }
  
  .navbar-link {
    color: var(--st-patricks-blue);
    font-size: var(--fs-8);
    font-weight: var(--fw-600);
    padding-block: 12px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .navbar-link:hover {
    color: var(--carolina-blue);
    transform: translateX(10px);
  }
  
  .navbar-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
  }
  
  .navbar-link:hover::before {
    width: 100%;
  }
  
  .overlay {
    position: fixed;
    inset: 0;
    background-color: var(--black_70);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-2);
    backdrop-filter: blur(5px);
  }
  
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/
  
  .hero {
    background-image: url("../images/hero-bg-bottom.png"),
                      url("../images/hero-bg.png"),
                      url("../images/of2.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: -280px bottom, center, center;
    background-size: cover, cover, cover;
    padding-block-start: 120px;
    padding-block-end: var(--section-padding);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    z-index: 1;
  }
  
  .hero-content { 
    margin-block-end: 10px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
  }
  
  .hero-subtitle {
    color: var(--st-patricks-blue);
    font-family: "AIRBEAT";
    font-size: var(--fs-7);
    margin-block-end: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInLeft 0.8s ease forwards;
  }
  
  .hero-title {
    color: var(--st-patricks-blue);
    font-family: "AIRBEAT";
    font-size: var(--fs-1);
    margin-block-end: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: slideInRight 0.8s ease forwards;
    letter-spacing: 1px;
  }
  
  .hero-text {
    color: var(--st-patricks-blue);
    font-family: "AIRBEAT";
    font-size: var(--fs-8);
    margin-block-end: 30px;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1s ease forwards;
    max-width: 600px;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  
  /*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/
  
  .about-banner { 
    margin-block-end: 30px;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
  }
  
  .about-banner:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  
  .about .section-title { 
    margin-inline: 0;
    background: linear-gradient(45deg, var(--st-patricks-blue), #4a90e2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 3s ease infinite;
  }
  
  @keyframes titleGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .about .underline::before {
    left: 0;
    transform: translateX(0);
    background: linear-gradient(90deg, var(--st-patricks-blue), #4a90e2);
    animation: underlineWidth 2s ease-in-out infinite;
  }
  
  @keyframes underlineWidth {
    0%, 100% { width: 70%; }
    50% { width: 90%; }
  }
  
  .about-text {
    font-size: var(--fs-8);
    margin-block-end: 20px;
    line-height: 1.8;
    color: var(--st-patricks-blue);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
  }
  
  .stats-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .stats-card {
    text-align: center;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: var(--radius-12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
  }
  
  .stats-card:hover::before {
    transform: translateX(100%);
  }
  
  .stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: rgba(74, 144, 226, 0.3);
  }
  
  .stats-title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    margin-block-end: 10px;
    background: linear-gradient(45deg, var(--st-patricks-blue), #4a90e2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stats-text { 
    font-size: var(--fs-8);
    color: var(--st-patricks-blue);
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  
  /*-----------------------------------*\
    #SERVICE
  \*-----------------------------------*/
  
  .service .section-title { 
    margin-inline: 0;
    background: linear-gradient(45deg, var(--st-patricks-blue), #4a90e2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 3s ease infinite;
  }
  
  @keyframes titleGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .service .underline::before {
    left: 0;
    transform: translateX(0);
    background: linear-gradient(90deg, var(--st-patricks-blue), #4a90e2);
    animation: underlineWidth 2s ease-in-out infinite;
  }
  
  @keyframes underlineWidth {
    0%, 100% { width: 70%; }
    50% { width: 90%; }
  }

  .service-list {
    display: grid;
    gap: 30px;
  }
  
  .service-card {
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: var(--radius-12);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(74, 144, 226, 0.3);
  }
  
  .service-card .card-icon {
    background-image: url("../images/service-banner-pattern.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-color: hsla(223, 73%, 25%, 0.12);
    aspect-ratio: 1 / 1;
    max-width: 165px;
    display: grid;
    place-content: center;
    margin-inline: auto;
    transition: all 0.4s ease;
    border-radius: 30%;
  }
  
  .service-card:hover .card-icon { 
    background-color: var(--st-patricks-blue);
    transform: rotateY(180deg);
  }
  
  .service-card .card-icon ion-icon {
    font-size: 5rem;
    color: var(--st-patricks-blue);
    --ionicon-stroke-width: 20px;
    transition: all 0.4s ease;
  }
  
  .service-card:hover .card-icon ion-icon { 
    color: var(--white);
    transform: rotateY(-180deg);
  }
  
  .service-card .title {
    text-align: center;
    margin-block-end: 15px;
    transition: color 0.3s ease;
  }
  
  .service-card:hover .title {
    color: #4a90e2;
  }
  
  .service-card .text {
    text-align: center;
    margin-block-end: 20px;
    transition: color 0.3s ease;
  }
  
  .service-card .card-btn {
    margin-inline: auto;
    padding: 15px;
    border: 2px solid var(--st-patricks-blue);
    border-radius: 50%;
    color: var(--st-patricks-blue);
    transition: all 0.4s ease;
    display: grid;
    place-items: center;
  }
  
  .service-card .card-btn:is(:hover, :focus) {
    color: var(--white);
    background-color: var(--st-patricks-blue);
    transform: rotate(180deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  /*-----------------------------------*\
    #FEATURE
  \*-----------------------------------*/
  
  .features-list > li:first-child { margin-block-end: 30px; }

  .features .section-title {
    margin-inline: 0;
    background: linear-gradient(45deg, var(--st-patricks-blue), #4a90e2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 3s ease infinite;
  }

  @keyframes titleGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .features .underline::before {
    left: 0;
    transform: translateX(0);
    background: linear-gradient(90deg, var(--st-patricks-blue), #4a90e2);
    animation: underlineWidth 2s ease-in-out infinite;
  }

  @keyframes underlineWidth {
    0%, 100% { width: 70%; }
    50% { width: 90%; }
  }
  
  .features-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  
  .features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .features-card .icon {
    background-color: var(--st-patricks-blue);
    color: var(--white);
    min-width: max-content;
    max-width: max-content;
    font-size: 36px;
    padding: 22px;
    border-radius: 50%;
    transition: all 0.4s ease;
  }
  
  .features-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(74, 84, 235, 0.3);
  }
  
  .features-card .icon ion-icon { 
    --ionicon-stroke-width: 20px;
    transition: transform 0.4s ease;
  }
  
  .features-card:hover .icon ion-icon {
    transform: scale(1.1);
  }
  
  .features-card .title { 
    margin-block-end: 10px;
    transition: color 0.3s ease;
  }
  
  .features-card:hover .title {
    color: #4a90e2;
  }
  
  .features-banner { 
    margin-block: 40px;
    transition: transform 0.5s ease;
  }
  
  .features-banner:hover {
    transform: scale(1.02);
  }
  
  .features-banner > img {
    max-width: max-content;
    margin-inline: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 84, 235, 0.15);
  }
  /*-----------------------------------*\
    #BLOG
  \*-----------------------------------*/
  
  .blog { padding-block-end: 120px; }
  
  .blog-list {
    display: grid;
    gap: 30px;
  }
  
  .blog-card {
    padding: 20px;
    box-shadow: var(--shadow);
    border-radius: var(--radius-12);
  }
  
  .blog-card .banner {
    border-radius: var(--radius-12);
    overflow: hidden;
    margin-block-end: 15px;
  }
  
  .blog-card .banner img { transition: var(--transition-2); }
  
  .blog-card .banner a:is(:hover, :focus) img { transform: scale(1.1); }
  
  .blog-card .title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-6);
    line-height: 1.2;
    margin-block-end: 15px;
  }
  
  .blog-card .title > a { color: inherit; }
  
  .blog-card .title > a:is(:hover, :focus) { color: var(--st-patricks-blue); }
  
  .blog-card .text { margin-block-end: 15px; }
  
  .blog-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: var(--fs-8);
    color: var(--st-patricks-blue);
    font-weight: var(--fw-500);
    padding-block-end: 10px;
  }
  
  .blog-card .meta ion-icon {
    color: var(--st-patricks-blue);
    font-size: 22px;
    --ionicon-stroke-width: 35px;
  }
  
  .publish-date,
  .comment {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .comment {
    color: inherit;
    margin-inline-start: auto;
  }
  
  
  
  /*-----------------------------------*\
    #GO TO TOP
  \*-----------------------------------*/
  
  .go-top {
    position: fixed;
    bottom: 0;
    right: 15px;
    background-color: var(--royal-blue-dark);
    color: var(--white);
    font-size: 2rem;
    padding: 14px;
    border-radius: var(--radius-4);
    box-shadow: -3px 3px 15px var(--space-cadet-1);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-1);
  }
  
  .go-top.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-15px);
  }
  
  
  
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 550px screen
   */
  
  @media (min-width: 550px) {
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 550px;
      margin-inline: auto;
    }
  
    .section-title { --fs-3: 3.6rem; }
  
  
  
    /**
     * HEADER
     */
  
    .header .btn {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-inline-start: auto;
    }
  
  
  
    /**
     * ABOUT
     */
  
    .stats-list { grid-template-columns: repeat(3, 1fr); }
  
  
  
    /**
     * BLOG
     */
  
    .blog-card {
      display: grid;
      grid-template-columns: 0.75fr 1fr;
      gap: 20px;
      padding: 30px;
    }
  
    .blog-card .banner { margin-block-end: 0; }
  
    .blog-card .banner a { height: 100%; }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-brand,
    .footer-list:not(:last-child) { margin-block-end: 0; }
  
    .footer-top .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px 50px;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 720px; }
  
  
  
    /**
     * HERO
     */
  
    .hero {
      min-height: 600px;
      display: grid;
      place-items: center;
    }
  
    .hero-content { margin-block-end: 0; }
  
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 30px;
    }
  
  
  
    /**
     * SERVICE
     */
  
    .service-list { grid-template-columns: 1fr 1fr; }
  
  
  
    /**
     * FEATURES
     */
  
    .features-list > li:first-child { margin-block-end: 0; }
  
    .features-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .container { grid-template-columns: repeat(3, 1fr); }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 5.4rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 950px; }
  
  
  
    /**
     * HEADER
     */
  
    .header { padding-block: 20px; }
  
    .overlay,
    .nav-open-btn,
    .navbar-top { display: none; }
  
    .navbar,
    .navbar.active {
      all: unset;
      margin-inline-start: auto;
    }
  
    .header .btn { margin-inline-start: 0; }
  
    .navbar-list {
      display: flex;
      gap: 25px;
    }
  
    .navbar-item:not(:last-child) { border-bottom: none; }
  
    .navbar-link { color: var(--color); }
  
    .mini_logo {
      display: none;
    }

    .large_logo {
      display: block;
    }
  
    /**
     * HERO
     */
  
    .hero { min-height: 700px; }
  
  
  
    /**
     * ABOUT
     */
  
    .about .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  
  
  
    /**
     * SERVICE
     */
  
    .service-list { grid-template-columns: repeat(3, 1fr); }
  
  
  
    /**
     * FEATURES
     */
  
    .features-list { grid-template-columns: 1fr; }
  
    .features .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
  
    .features .section-title { grid-column: 1 / 4; }
  
    .features-banner {
      margin-block: 0;
      display: grid;
      place-items: center;
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .container { grid-template-columns: repeat(4, 1fr); }
  
    .footer-brand { grid-column: 1 / 5; }
  
    .footer-brand .text { max-width: 45ch; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 1200px; }
  
    .section-title { --fs-3: 4.6rem; }
  
  
  
    /**
     * HERO
     */
  
    .hero { min-height: 800px; }
  
  
  
    /**
     * BLOG
     */
  
    .blog-list { grid-template-columns: 1fr 1fr; }
  
    .blog-card { height: 100%; }
  
    .blog-card .content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .container { grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr; }
  
    .footer-brand { grid-column: auto; }
  
  }
  
  /*-----------------------------------*\
    #CO-FOUNDERS
  \*-----------------------------------*/
  
  .cofounders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .cofounder-card {
    background-color: var(--white);
    border: 1px solid var(--platinum);
    border-radius: var(--radius-12);
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cofounder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .cofounder-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 15px;
  }
  
  .cofounder-name {
    font-size: var(--fs-5);
    font-weight: var(--fw-700);
    color: var(--st-patricks-blue);
    margin-bottom: 10px;
  }
  
  .cofounder-position {
    font-size: var(--fs-8);
    color: var(--purple-navy);
    margin-bottom: 20px;
  }
  
  .cofounder-btn {
    background-color: var(--st-patricks-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-4);
    transition: background-color 0.3s ease;
  }
  
  .cofounder-btn:hover {
    background-color: var(--amaranth-purple);
  }

  .contact-us {
    padding: var(--section-padding);
    background-color: var(--platinum);
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--fs-8);
    color: var(--purple-navy);
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-title {
    font-size: var(--fs-5);
    color: var(--st-patricks-blue);
    margin-bottom: 10px;
  }

  .contact-text {
    font-size: var(--fs-8);
    color: var(--purple-navy);
  }

  .contact-form {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--platinum);
    border-radius: var(--radius-4);
    font-size: var(--fs-8);
  }

  .contact-form button {
    align-self: start;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
  }

  .social-link {
    color: var(--st-patricks-blue);
    font-size: 2rem;
    transition: color 0.3s ease;
  }

  .social-link:hover {
    color: var(--amaranth-purple);
  }

  .map {
    margin-top: 20px;
    text-align: center;
  }

  .map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: var(--radius-12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/

  .business-footer {
    background: var(--st-patricks-blue);
    color: var(--white);
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
  }

  .footer-description {
    font-size: var(--fs-8);
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .footer-links,
  .footer-contact,
  .footer-social {
    text-align: left;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: var(--fs-6);
    margin-bottom: 12px;
    position: relative;
  }

  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 50px;
    height: 3px;
    background: var(--chrome-yellow);
  }

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

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--chrome-yellow);
    transform: translateX(6px);
  }

  .footer-contact p {
    margin: 8px 0;
  }

  .footer-social .social-icon {
    color: var(--white);
    font-size: 2.4rem;
    margin-right: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .footer-social .social-icon:hover {
    color: var(--chrome-yellow);
    transform: scale(1.1);
  }

  .footer-copyright {
    font-size: var(--fs-8);
    margin-top: 30px;
    opacity: 0.8;
  }

  .logo-image {
    width: 80px;
    height: auto;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
  }

  @media (max-width: 768px) {
    .navbar {
      position: fixed;
      top: 0;
      right: -300px; /* Hide navbar by default on mobile */
      width: 100%;
      max-width: 300px;
      height: 100vh; /* Full viewport height */
      background: var(--white);
      padding: 20px;
      overflow-y: auto; /* Allow scrolling if content is too tall */
      transition: 0.25s ease;
      z-index: 1000;
    }

    .navbar.active {
      right: 0;
      box-shadow: -1px 0 3px rgba(0, 0, 0, 0.1);
    }

    .navbar-list {
      margin-top: 30px;
    }

    .navbar-item:not(:last-child) {
      margin-bottom: 20px;
    }

    .navbar-link {
      font-size: 16px; /* Adjust font size for mobile */
      display: block;
      padding: 8px 0;
    }
  }