/* SAHFAR Final Responsive Theme with Arrow Indicators */
:root{
  --primary:#068105;
  --primary-hover:#056a04;
  --secondary:#13359c;
  --secondary-hover:#0f2c84;
  --danger:#ff0000;
  --white:#fff;
  --gray:#f5f5f5;
  --gray-100:#e0e0e0;
  --fs-sm:14px;
  --fs-md:16px;
  --fs-lg:18px;
  --radius:4px;
}
*{margin:0;padding:0;box-sizing:border-box;}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;}
button{font:inherit;}
body{
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.5;
  color:#333;
  background:#fff;
}
.top-middle {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  padding: 0 10px;
  white-space: nowrap;
}

/* Constant blink using visibility */
.blink-text {
  animation: blinkText 0.8s steps(1, start) infinite;
}

@keyframes blinkText {
  0%, 49% {
    visibility: visible;
  }
  50%, 100% {
    visibility: hidden;
  }
}

/* Blink */
@keyframes blink{0%,49%{opacity:1;}50%,100%{opacity:0;}}

/* TOPBAR */
.topbar{background:var(--secondary);color:var(--white);padding:5px 15px;font-size:var(--fs-sm);}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;max-width:1600px;margin:auto;}
.topbar-left,.topbar-right{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.topbar-item{display:inline-flex;align-items:center;gap:5px;}
.topbar-item-icon img{width:16px;height:16px;}
.topbar-item a{color:var(--white);border-bottom:1px solid transparent;transition:border-color .15s;}
.topbar-item a:hover,.topbar-item a:focus{border-bottom:1px solid var(--white);outline:none;}

/* Container */
.promo-bar {
  background-color: #f1f1f1;
  padding: 15px 20px;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Common styles */
.promo-slot {
  text-align: center;
}

.promo-left {
  text-align: left;
}

.promo-right {
  text-align: right;
}

.promo-slot img {
  max-height: 80px;
  width: auto;
}

.admission-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.admission-btn:hover {
  background-color: #218838;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .promo-left, .promo-center, .promo-right {
    text-align: center;
  }

  .promo-slot img {
    max-height: 60px;
  }
}

/* NAV WRAPPER */
.main-nav-wrapper{background:var(--secondary);color:var(--white);padding:0 15px;}
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:10px;
  margin:auto;
}
.nav-toggle span{
  display:block;
  width:25px;
  height:3px;
  margin:4px 0;
  background:var(--white);
  transition:.2s;
}

/* NAV */
.main-nav{max-width:1200px;margin:auto;}
.main-nav ul{list-style:none;}
.menu-root.level-1{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:10px;}
.menu-item{position:relative;}
.menu-link,.menu-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:5px;
  padding:12px 18px;
  color:var(--white);
  font-size:var(--fs-md);
  background:none;
  border:none;
  cursor:pointer;
  width:auto;
}
.menu-link:hover,.menu-toggle:hover,.menu-link:focus,.menu-toggle:focus{
  background:rgba(255,255,255,.15);
  outline:none;
}

/* ARROWS */
.menu-toggle .caret img{
  width:12px;
  height:12px;
  vertical-align:middle;
  margin-left:5px;
  transition:transform .3s ease;
}
.menu-item.open > .menu-toggle .caret img{
  transform:rotate(90deg);
}

/* SUBMENUS (desktop default hidden) */
.submenu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width: fit-content;
  white-space: nowrap;
  background:var(--secondary);
  border:1px solid rgba(255,255,255,.25);
  z-index:10;
}
.submenu.level-3{
  top:0;
  left:100%;
}
.submenu .menu-link,.submenu .menu-toggle{
  width:100%;
  text-align:left;
  padding:10px 16px;
  font-size:var(--fs-sm);
}
.menu-item.open > .submenu{display:block;}
/* Ensure menu dropdown opens on hover for desktop and touch for mobile */
nav ul li {
  position: relative;
}

/* Hide dropdowns by default */
nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 0;
  margin: 0;
  z-index: 999;
}

/* Show submenu on hover or touch */
nav ul li:hover > ul,
nav ul li:focus-within > ul {
  display: block;
  width: auto;
}

/* Sub-submenu style */
nav ul ul ul {
  left: 100%;
  top: 0;
}

/* Make sure links inside menus are clickable */
nav ul li a {
  display: inline-flex;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
}

/* Optional: Basic mobile responsiveness */
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    width: 100%;
  }

  nav ul ul {
    position: static;
  }

  nav ul ul ul {
    position: static;
  }
}


/* FOOTER */
.site-footer{background:var(--secondary);color:var(--white);padding:30px 15px 10px;margin-top:40px;}
.footer-widgets{max-width:1200px;margin:auto;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.footer-col h4{margin-bottom:10px;font-size:var(--fs-lg);}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:5px;}
.footer-col a{color:var(--white);font-size:var(--fs-sm);}
.footer-col a:hover,.footer-col a:focus{text-decoration:underline;outline:none;}
.footer-bottom{text-align:center;font-size:var(--fs-sm);margin-top:20px;padding-top:10px;border-top:1px solid rgba(255,255,255,.25);}

/* RESPONSIVE */
@media (max-width:992px){
  .promo-strip-inner{grid-template-columns:1fr;text-align:center;}
  .promo-message{text-align:center;}
  .promo-admission-btn{text-align:center;}
  .nav-toggle{display:block;}
  .menu-root.level-1{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    display:none;
  }
  .main-nav.open .menu-root.level-1{display:flex;}
  .menu-link,.menu-toggle{
    width:100%;
    padding:14px;
    border-top:1px solid rgba(255,255,255,.2);
  }
  .submenu{
    position:static;
    min-width:unset;
    border:none;
    background:rgba(0,0,0,.25);
    width:100%;
  }
  .submenu.level-3{
    background:rgba(0,0,0,.35);
    padding-left:20px;
  }
}
@media (max-width:576px){
  .topbar-inner{flex-direction:column;text-align:center;gap:5px;}
  .footer-widgets{grid-template-columns:1fr;text-align:center;}
  .promo-message{font-size:var(--fs-sm);}
  .btn-admission{font-size:var(--fs-sm);padding:6px 16px;}
}




/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1603791440384-56cd371ee9a7');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  margin-right: 5px;
}

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

.breadcrumb .active {
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }

  .title {
    font-size: 1.5rem;
    padding: 0 10px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    left: 10px;
    bottom: 10px;
    text-align: left;
  }
}




body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fc;
  color: #000;
}

.about-section {
  padding: 60px 20px 80px;
  animation: fadeInUp 1s ease;
}

.about-heading {
  text-align: center;
  font-size: 36px;
  color: #007BFF; /* Theme blue */
  margin-top: 45px;
  margin-bottom: 40px;
  font-weight: 700;
}

.about-container {
  max-width: 1260px;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.8;
  font-size: 17px;
  animation: slideIn 1.2s ease;
}

/* Existing styles... */

.black-text {
  color: #000;
}

.blue-text {
  color: #007BFF;
}


/* Paragraph styles */
.about-text {
  margin-bottom: 24px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .about-heading {
    font-size: 28px;
  }

  .about-container {
    font-size: 16px;
    padding: 0 10px;
  }
}





.mission-vision-values-section {
  padding: 50px 0;
  background: linear-gradient(to bottom right, #f7faff, #e6f0ff);
}

.box-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  animation: fadeIn 1s ease-in-out;
}

.left-block, .right-block {
  flex: 1 1 48%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.info-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-text h3 {
  color: #007BFF;
  margin-bottom: 10px;
}

.info-text p {
  color: #333;
}

.divider {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

.right-heading {
  color: #007BFF;
  margin-bottom: 20px;
}

.highlighted-points {
  list-style-type: disc;
  padding-left: 20px;
  color: #222;
}

.highlighted-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .box-container {
    flex-direction: column;
  }
  .left-block, .right-block {
    flex: 1 1 100%;
  }
  .info-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-image {
    margin: 0 0 10px 0;
    width: 100%;
    height: auto;
  }
}



.certificates-section {
  background-color: #fff;
  padding: 50px 20px;
}

.cert-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cert-heading {
  font-size: 28px;
  margin-bottom: 10px;
  color: #13359c;
}

.cert-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  animation: slide 40s linear infinite;
  gap: 20px;
}

.logo-track img {
  height: 80px;
  width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1680px); } /* 180px * (14 - 6) approx */
}

@media (max-width: 992px) {
  .logo-track img {
    height: 60px;
    width: 160px;
  }

  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1280px); }
  }
}

@media (max-width: 576px) {
  .logo-track img {
    height: 50px;
    width: 140px;
  }

  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1120px); }
  }
}




* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Arial',Helvetica,sans-serif;
        background-color: #fff;
        color: #333;
        line-height: 1.6;
    }

    .timeline-section {
        padding: 80px 20px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

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

    .timeline-headline {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        color: #2757F5;
        margin-bottom: 10px;
        position: relative;
        animation: fadeInDown 1s ease-out;
    }

    .timeline-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #7f8c8d;
        margin-bottom: 60px;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .timeline {
        position: relative;
        padding: 20px 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #3498db, #2ecc71);
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease-out;
    }

    .timeline-item.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .timeline-content {
        position: relative;
        width: 45%;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        margin-right: 55%;
        animation: slideInLeft 0.8s ease-out;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 55%;
            animation: slideInRight 0.8s ease-out;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: #3498db;
            border: 4px solid #fff;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::before {
            left: calc(50% - 10px);
        }

        .timeline-item:nth-child(even)::before {
            right: calc(50% - 10px);
        }

        .timeline-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .timeline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .timeline-content:hover .timeline-image img {
            transform: scale(1.05);
        }

        .timeline-text {
            padding: 30px;
        }

        .timeline-year {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .timeline-text h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .timeline-text p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .course-count {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f8f9fa;
            padding: 10px 20px;
            border-radius: 25px;
            color: #2c3e50;
            font-weight: 500;
        }

        .expansion-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .location {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e8f4f8;
            padding: 10px 20px;
            border-radius: 25px;
            color: #2c3e50;
            font-weight: 500;
        }

        .achievements {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .achievement-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 12px 20px;
            border-radius: 25px;
            color: #2c3e50;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @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);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .timeline-section {
                padding: 40px 15px;
            }

            .timeline-headline {
                font-size: 2rem;
            }

            .timeline-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
                margin-right: 0 !important;
            }

            .timeline-item::before {
                left: 20px !important;
                right: auto !important;
            }

            .timeline-image {
                height: 200px;
            }

            .timeline-text {
                padding: 20px;
            }

            .timeline-text h3 {
                font-size: 1.3rem;
            }

            .achievements {
                flex-direction: column;
            }

            .achievement-item {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .timeline-headline {
                font-size: 1.8rem;
            }

            .timeline-content {
                width: calc(100% - 40px);
                margin-left: 40px !important;
            }

            .timeline::before {
                left: 20px;
                width: 3px;
            }

            .timeline-item::before {
                left: 10px !important;
                width: 15px;
                height: 15px;
            }

            .timeline-image {
                height: 150px;
            }

            .timeline-text {
                padding: 15px;
            }

            .timeline-year {
                font-size: 1rem;
                padding: 6px 15px;
            }
        }



.stats-section {
  background-image: url('https://sahfarittechsolutions.com/assets/img/bg5.jpg'); /* ✅ Change path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  position: relative;
  color: white;
  text-align: center;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
  z-index: 0;
}

.stats-boxed {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-heading {
  font-size: 28px;
  margin-bottom: 40px;
}

.stats-heading span {
  font-size: 18px;
  display: block;
  margin-top: 8px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-box {
  flex: 1 1 200px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-box span.counter {
  font-size: 36px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: #00ffae;
}

.stat-box p {
  font-size: 16px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-heading {
    font-size: 22px;
  }

  .stat-box span.counter {
    font-size: 28px;
  }

  .stat-box {
    padding: 16px;
  }
}




.certification-section {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.certification-heading {
  font-size: 28px;
  margin-bottom: 30px;
  color: #13359c;
}

.certification-slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: calc(200px * 12); /* assuming 200px per logo */
  animation: scrollLogos 30s linear infinite;
}

.slider-track img {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 6));
  }
}

@media (max-width: 768px) {
  .slider-track {
    gap: 20px;
    animation: scrollLogosMobile 25s linear infinite;
  }

  @keyframes scrollLogosMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 6));
    }
  }

  .slider-track img {
    width: 120px;
  }
}




.partner-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.partner-container {
  max-width: 1000px;
  width: 100%;
  background-color: #13359c;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-align: center;
}

.partner-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.partner-subheading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #d0e4ff;
}

.partner-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 10px;
}

.partner-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00c853;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.partner-btn:hover {
  background-color: #00a843;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-content h2 {
    font-size: 26px;
  }

  .partner-subheading {
    font-size: 16px;
  }

  .partner-description {
    font-size: 15px;
  }

  .partner-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}

@keyframes blinkGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.7);
    opacity: 0.9;
  }
}

.partner-container {
  /* existing styles */
  animation: blinkGlow 2s infinite;
}
