.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;

}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #71a1e0;
}

/* Fading animation */
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 6s; /* Total duration including fade in and hold */
  animation-timing-function: ease-in-out; /* Smooth transition */
  animation-iteration-count: infinite; /* Loop the animation */
}

@keyframes fade {
  0%, 20% { opacity: 0.4; } /* Fade in for 1 second (20% of total duration) */
  25%, 95% { opacity: 1; } /* Hold at full opacity for 4 seconds (70% of total duration) */
  100% { opacity: 0.4; } /* Fade out for 1 second (5% of total duration) */
}


/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}






.hero-text_hsasa {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;

}

.hero-text_hsasa h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.hero-text_hsasa h2 {
  display: inline-block;
  margin: 0;
  height: 35px;
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
}

.hero-text_hsasa.typed-text_hsasa {
  display: none;
}

.hero-text_hsasa .typed-cursor {
  font-size: 35px;
  font-weight: 300;
  color: #ffffff;
}

.hero .hero-btn .btn {
  margin-top: 10px;
  color: #EF233C;
  background: #ffffff;
  box-shadow: inset 0 0 0 50px #ffffff;
}

.hero .hero-btn .btn:hover {
  color: #ffffff;
  background: transparent;
  box-shadow: inset 0 0 0 0 #ffffff;
  border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
  margin-right: 10px;
}

@media (max-width: 991.98px) {
  .hero {
      padding-top: 60px;
  }

  .hero .hero-content {
      padding: 0 15px;
  }

  .hero-text_hsasa {
      font-size: 20px;
  }

  .hero-text_hsasa h1 {
      font-size: 45px;
  }

  .hero-text_hsasa  h2 {
      font-size: 25px;
      height: 25px;
  }

  .hero .hero-btn .btn {
      padding: 12px 30px;
      letter-spacing: 1px;
  }
}

@media (max-width: 767.98px) {
  .hero {
      padding-top: 60px;
      padding-bottom: 60px;
  }

  .hero,
  .hero-text_hsasa,
  .hero .hero-btn {
      width: 100%;
      text-align: center;
  }

  .hero-text_hsasa {
      font-size: 18px;
  }

  .hero-text_hsasa h1 {
      font-size: 35px;
  }

  .hero-text_hsasa h2 {
      font-size: 22px;
      height: 22px;
  }

  .hero .hero-btn .btn {
      padding: 10px 15px;
      letter-spacing: 1px;
  }
}

@media (max-width: 575.98px) {
  .hero .text_hsasap {
      font-size: 16px;
  }

  .hero-text_hsasa h1 {
      font-size: 30px;
  }

  .hero-text_hsasa h2 {
      font-size: 18px;
      height: 18px;
  }

  .hero .hero-btn .btn {
      padding: 8px 10px;
      letter-spacing: 0;
  }
}


.logonFormCard{
  background: none;
  color: #ffffff;


}

.logonFormCard btn{
  background: #f2f2f2;
}

.navLogo{
  font-size: x-large;
  font-weight: 900;
  color: #22314a;
  text-shadow: -1px -2px 0 #000, 1px 1px 0 #fff;
}

.headingContactUs{
  color: white;
    text-align: center;

}
.tlstextcolor{
  font-weight: 700;
}





































        /* ======================== BASE STYLES ======================== */

        #welcomeScreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: radial-gradient(circle at center, #05121d, #000);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 9999;
            overflow: hidden;
            transition: opacity 1s ease-out;
        }

        /* Circle Logo Container */
        .circle-container {
            position: relative;
            width: 260px;
            height: 260px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Circular Text */
        .circular-text {
            position: absolute;
            width: 340px;
            height: 340px;
            left: 50%;
            transform: translateX(-50%) rotate(-90deg);
            transform-origin: center;
            animation: textRotate 14s linear infinite;
            z-index: 10;
        }

        @keyframes textRotate {
            0% {
                transform: translateX(-50%) rotate(-90deg);
            }

            100% {
                transform: translateX(-50%) rotate(270deg);
            }
        }

        .circular-text text {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 8px;
            fill: lightgoldenrodyellow;
            text-shadow: 0 0 14px rgba(0, 238, 255, 1);
        }

        /* Rotating Border */
        .rotating-ring {
            position: absolute;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            border: 4px solid rgba(0, 238, 255, 1);
            box-shadow: 0 0 45px rgba(0, 255, 255, 1);
            animation: spinBorder 6s linear infinite;
            z-index: 5;
        }

        @keyframes spinBorder {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Logo Wrapper */
        .logo-wrapper {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(0, 255, 255, 0.15);
            border: 3px solid rgba(0, 255, 255, .7);
            box-shadow: 0 0 40px rgba(0, 255, 255, 1);
            backdrop-filter: blur(6px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 6;
        }

        .welcome-logo {
            width: 90%;
            height: 90%;
            object-fit: contain;
            filter: drop-shadow(0 0 14px rgba(0, 255, 255, 1));
        }

        /* Text Below Animation */
        #welcomeText {
            margin-top: 35px;
            font-size: 26px;
            font-weight: 500;
            color: lightgoldenrodyellow;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            animation: fadePulse 2.5s ease-in-out infinite;
            text-shadow: 0 0 6px #00eaff, 0 0 18px #00eaff;
        }

        @keyframes fadePulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.04);
                opacity: .85;
            }
        }


        /* ======================== RESPONSIVE FIXES ======================== */

        /* Tablets */
        @media (max-width: 992px) {
            .circle-container {
                width: 220px;
                height: 220px;
            }

            .rotating-ring {
                width: 200px;
                height: 200px;
            }

            .logo-wrapper {
                width: 135px;
                height: 135px;
            }

            .circular-text {
                width: 280px;
                height: 280px;
            }

            .circular-text text {
                font-size: 16px;
                letter-spacing: 6px;
            }

            #welcomeText {
                font-size: 22px;
            }
        }

        /* Mobile Landscape / Large Phones */
        @media (max-width: 768px) {
            .circle-container {
                width: 180px;
                height: 180px;
            }

            .rotating-ring {
                width: 165px;
                height: 165px;
            }

            .logo-wrapper {
                width: 115px;
                height: 115px;
            }

            .circular-text {
                width: 240px;
                height: 240px;
            }

            .circular-text text {
                font-size: 16px;
                letter-spacing: 4px;
            }

            #welcomeText {
                font-size: 18px;
                margin-top: 22px;
            }
        }

        /* Small Phones */
        @media (max-width: 480px) {
            .circle-container {
                width: 150px;
                height: 150px;
            }

            .rotating-ring {
                width: 135px;
                height: 135px;
            }

            .logo-wrapper {
                width: 95px;
                height: 95px;
            }

            .circular-text {
                width: 200px;
                height: 200px;
            }

            .circular-text text {
                font-size: 14px;
                letter-spacing: 3px;
            }

            #welcomeText {
                font-size: 16px;
                margin-top: 18px;
            }
        }



        /* ===== SECTION TITLE ===== */
        .section-title {
            text-shadow: 0 0 5px lightgoldenrodyellow;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            text-align: center;
            font-size: 1.9rem;
            font-weight: 700;
            color: #fffcdf;
            margin-bottom: 35px;
            margin-top: 35px;
            padding: 10px;
        }

        /* ===== LOGIN CARD ===== */
        .login-card {
            background: rgb(16, 25, 39);
            border-radius: 14px;
            padding: 30px;
            max-width: 420px;
            width: 100%;
            box-shadow:
                inset 0 0 25px rgba(255, 225, 150, 0.6),
                0 0 35px rgba(255, 225, 150, 0.5),
                0 0 60px rgba(255, 225, 150, 0.4);
            border: 1px solid rgba(255, 230, 160, 0.7);
            color: #fff;
        }

        .login-title {
            text-shadow: 0 0 10px lightgoldenrodyellow;
            font-weight: 700;
        }

        .form-control {
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-weight: 600;
            box-shadow: inset 0 0 10px #0e72d6;
        }

        .password-toggle {
            font-weight: 600;
            color: black;
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }



           /* Submit Button */
        .submit-btn {
            display: block;
            margin: 18px auto 0;
            text-align: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
            color: rgb(2 9 20);
            border: 1px solid rgba(0, 255, 255, 0.35);
            background: #00eaff;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.75);
            transition: .35s ease;
            cursor: pointer;
        }

        .submit-btn:hover {
            background: rgb(2 9 20);
            font-weight: 900;
            color: whitesmoke;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.75);
            transform: translateY(-2px);
        }

        .submit-btn:hover i {
            transform: translateX(5px) rotate(360deg);
            transition: .35s;
        }


        .link-text,
        .toggle-link {
            color: #00eaff;
            cursor: pointer;
        }


        /* ===== SERVICE CARDS ===== */
        .service-card {
            padding: 25px;
            border-radius: 12px;
            cursor: pointer;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            transition: .3s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.35);
        }

        .service-card h5 {
            color: #fffcdf;
            font-weight: 900;
        }

        /* ===== SERVICE DETAILS SECTION ===== */
        .service-details {
            background: rgb(14, 21, 33);
            padding: 28px;
            margin-top: 35px;
            border-radius: 14px;
            box-shadow: 0 0 10px lightgoldenrodyellow;
            animation: fadeIn .4s ease-in-out;
            display: none;
        }

        .service-details h3 {
            color: #00eaff;
            margin-bottom: 10px;
        }

        /* Contact form */
        .service-details input,
        .service-details textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            border-radius: 6px;
            margin-bottom: 10px;
        }

        .service-details button {
            background: #00eaff;
            color: #00141e;
            font-weight: 600;
            padding: 10px;
            border-radius: 6px;
        }

        /* ===== INFO SECTIONS ===== */
        .why-choose-us-section {
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            margin-bottom: 50px;
            transition: .4s ease;

        }

        .why-choose-us:hover {
            box-shadow: inset 0 0 28px rgba(0, 238, 255, 0.45),
                0 0 35px rgba(0, 238, 255, 0.35);
        }


        .why-choose-us h4 {
            font-weight: 900;
            color: lightgoldenrodyellow;
        }

        .why-choose-us {
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            margin-bottom: 50px;
            transition: .4s ease;
            font-weight: 700;

        }

        .why-choose-us:hover {
            box-shadow: inset 0 0 28px rgba(0, 238, 255, 0.45),
                0 0 35px rgba(0, 238, 255, 0.35);
        }


        .why-choose-us h4 {
            font-weight: 900;
            color: lightgoldenrodyellow;
        }


        .contact-box-details {
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 12px rgba(255, 250, 200, 0.4);
            backdrop-filter: blur(6px);
            transition: .4s;
            max-width: 650px;
            margin: 60px auto;
            color: #e8fcff;
        }

        .contact-box-details:hover {
            box-shadow: 0 0 35px rgba(0, 255, 255, 0.45), inset 0 0 28px rgba(0, 255, 255, 0.4);
            transform: translateY(-4px);
        }

        .contact-logo-wrap {
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
        }


        .contact-title {
            color: lightgoldenrodyellow;
            letter-spacing: 1px;
            font-size: 1.6rem;
            font-weight: 900;
        }

        .contact-info p {
            margin: 6px 0;
            font-size: 1rem;
            font-weight: 700;
            color: whitesmoke;
        }

        .contact-info i {
            color: #00eaff;
            margin-right: 6px;
            font-size: 1.1rem;
        }

        .footer-note {
            margin-top: 35px;
            color: #bfefff;
            font-size: .9rem;
            text-align: center;
            padding-bottom: 30px;
        }

        .footer-note strong {
            color: #ffe58f;
        }

        /* Mobile responsive */
        @media(max-width:600px) {
            .contact-title {
                font-size: 1.3rem;
            }

            .contact-info p {
                font-weight: 500;
                color: whitesmoke;
                font-size: 12px;
            }
        }











        .service-click {
            cursor: pointer;
            position: relative;
        }

        .service-click:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.45);
        }

        /* Sub text inside service */
        .service-sub {
            margin-top: 10px;
            box-shadow: inset 0 0 10px rgb(2 9 20), 0 0 5px lightgoldenrodyellow;
            font-weight: 900;
            padding: 10px;
            border-radius: 15px;
            display: block;
            margin-top: 10px;
            font-size: 0.78rem;
            font-weight: 900;
            opacity: 0.8;
            line-height: 1.3;
        }

        /* Grid styling */
        .services-list {
            display: grid;
            gap: 18px;
            margin-top: 5px;
            grid-template-columns: repeat(3, 1fr);
            /* Desktop 3 columns */
        }

        @media(max-width: 992px) {
            .services-list {
                grid-template-columns: repeat(2, 1fr);
                /* Tablet 2 columns */
            }
        }

        /* Mobile */
        @media(max-width: 600px) {
            .services-list {
                grid-template-columns: repeat(2, 1fr);
                /* ✅ Mobile shows 2 per row */
            }
        }

        /* Service Card */
        .service {
            border-radius: 12px;
            padding: 14px 12px;
            text-align: center;
            font-weight: 800;
            color: #e8fcff;
            font-size: 1rem;
            letter-spacing: .5px;
            backdrop-filter: blur(4px);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: .35s ease;
            box-shadow: inset 0 0 10px rgb(2 9 20), 0 0 5px lightgoldenrodyellow;
        }

        .service::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.9), rgba(255, 255, 255, 0.4), rgba(0, 255, 255, 0.9));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0;
            transition: .4s ease;
        }

        .service:hover::before {
            opacity: 1;
        }

        .service:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 25px lightgoldenrodyellow;
        }

        @keyframes press {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(.96);
            }

            100% {
                transform: scale(1);
            }
        }

        /* ✅ Mobile Optimized */
        @media(max-width: 600px) {
            .service {
                font-size: .9rem;
                padding: 12px;
            }

            .service-sub {
                font-size: .7rem;
            }
        }

        /* Contact Button */
        .contact-us-btn {
            display: block;
            margin: 18px auto 0;
            text-align: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
            color: rgb(2 9 20);
            ;
            border: 1px solid rgba(0, 255, 255, 0.35);
            background: #00eaff;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.75);
            transition: .35s ease;
            cursor: pointer;
        }

        .contact-us-btn:hover {
            background: rgb(2 9 20);
            font-weight: 900;
            color: whitesmoke;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.75);
            transform: translateY(-2px);
        }

        .contact-us-btn:hover i {
            transform: translateX(5px) rotate(360deg);
            transition: .35s;
        }














        .about-box {
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            margin-bottom: 50px;
            transition: .4s ease;
        }

        .about-box:hover {
            box-shadow: inset 0 0 28px rgba(0, 238, 255, 0.45),
                0 0 35px rgba(0, 238, 255, 0.35);
        }

        .about-title {
            color: lightgoldenrodyellow;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .about-box ul li {
            font-weight: 700;
            margin-bottom: 6px;
            list-style: none;
            position: relative;
            padding-left: 18px;
        }

        .about-box ul li::before {
            content: "•";
            color: #00eaff;
            position: absolute;
            left: 0;
            font-size: 1.3rem;
        }

        /* ✅ Mobile View Fix */
        @media (max-width: 768px) {
            .about-box {
                padding: 18px 15px;
                /* Reduce padding */
                margin-bottom: 18px;
                /* Space between boxes */
                box-shadow: inset 0 0 18px rgb(2 9 20), 0 0 4px lightgoldenrodyellow;
            }

            .about-title {
                font-size: 1.3rem;
                /* Reduce heading size */
                margin-bottom: 10px;
            }

            .about-box ul li {
                font-size: 0.95rem;
                /* Text fits better */
                padding-left: 14px;
            }

            .about-box ul li::before {
                font-size: 1rem;
                /* Bullet balanced */
            }
        }





        .swal-glass-effect {
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            border-radius: 12px;
        }






        .modal-box {
            background: rgb(16, 25, 39);
            border-radius: 14px;
            border: 1px solid #00eaff80;
            box-shadow: 0 0 35px rgba(0, 255, 255, 0.25);
            color: #dff;
        }

        .modal-box h4 {
            color: #00eaff;
        }

        .modal-box ul li {
            margin-bottom: 6px;
        }

        .btn-primary {
            background: #00eaff;
            color: #000;
            font-weight: 600;
            border-radius: 8px;
        }


        .featured-service {
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: inset 0 0 40px rgb(2 9 20), 0 0 10px lightgoldenrodyellow;
            margin-bottom: 50px;
            transition: .4s ease;
        }

        .featured-service:hover {
            box-shadow: 0 0 45px rgba(0, 255, 255, 0.35);
            transform: translateY(-4px);
        }


        /* Logo Section */
        .featured-header {
            color: #fff;
            text-align: center;
        }

        /* Logo Image */
        /* --- Logo Fade / Pulse Highlight --- */
        /* Logo Image with Shadow & Highlight */
        .featured-logo-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* LOGO */
        .featured-logo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 3;
            animation: logoPulse 3s ease-in-out infinite;
            filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.75));
        }

        /* GLOW BEHIND LOGO */
        .featured-logo-glow {
            position: absolute;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: radial-gradient(rgba(0, 212, 255, 0.6),
                    transparent 70%);
            filter: blur(28px);
            z-index: 1;
            animation: glowFollow 3s ease-in-out infinite;
        }

        /* Logo Zoom Animation */
        @keyframes logoPulse {

            0%,
            100% {
                transform: scale(1);
                filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.55));
            }

            50% {
                transform: scale(1.12);
                filter: drop-shadow(0 0 18px rgba(0, 212, 255, 1));
            }
        }

        /* Glow Scales With Logo */
        @keyframes glowFollow {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.45;
            }

            50% {
                transform: scale(1.25);
                opacity: 1;
            }
        }



        /* Rotating Border Rings */
        .logo-rotate-wrap {
            position: relative;
            display: inline-block;
            margin-bottom: 18px;
        }

        .rotate-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        /* Ring 1 - Aqua Highlight */
        .ring-1 {
            width: 150px;
            height: 150px;
            border-top: 5px solid #00eaff;
            border-right: 5px solid transparent;
            animation: spinCW 3s linear infinite;
            filter: drop-shadow(0 0 8px rgba(0, 234, 255, 0.85));
            opacity: 0.92;
        }

        /* Ring 2 - Golden Halo */
        .ring-2 {
            width: 170px;
            height: 170px;
            border-bottom: 4px solid #f5e79b;
            border-left: 5px solid transparent;
            animation: spinACW 5s linear infinite;
            filter: drop-shadow(0 0 10px rgba(255, 225, 130, 0.9));
            opacity: 0.70;
        }

        /* Ring 3 - Soft Outer Glow */
        .ring-3 {
            width: 190px;
            height: 190px;
            border-top: 5px solid rgba(224, 255, 255, 0.7);
            border-right: 5px solid transparent;
            animation: spinCW 7s linear infinite;
            filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.55));
            opacity: 0.55;
        }

        /* Rotate Animations */
        @keyframes spinCW {
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes spinACW {
            100% {
                transform: translate(-50%, -50%) rotate(-360deg);
            }
        }


        /* Title Animation */
        .featured-main-title {
            font-size: 2rem;
            font-weight: 800;
            margin-top: 10px;
            color: #fffcdf;
            animation: fadeUp .9s ease forwards;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .featured-heading {
            font-size: 20px;
            font-weight: 700;
            margin-top: 14px;
            color: #d0f9ff;
        }

        #rotate-text {
            font-weight: 600;
            color: whitesmoke;
            display: inline-block;
        }

        /* Mobile Responsiveness */
        @media(max-width: 768px) {

            .featured-main-title {
                font-size: 12px;
                font-weight: 900;
            }

            .featured-heading {
                font-size: 14px;
                font-weight: 800;
                margin-top: 14px;
                color: #d0f9ff;
            }

            #rotate-text {
                font-size: 11px;
                font-weight: 700;
                color: whitesmoke;
                display: inline-block;
            }

            .featured-logo {
                width: 100px;
                height: 100px;
            }

            .ring-1 {
                width: 105px;
                height: 105px;
            }

            .ring-2 {
                width: 125px;
                height: 125px;
            }

            .ring-3 {
                width: 145px;
                height: 145px;
            }
        }

