:root {
 
  --bg1: #02161f;
  --bg2: #043442;
  --card: #0a2c35;
  --accent: #0eb89f;
  --muted: #a7c5be;
  --glass: rgba(255, 255, 255, 0.04);


  /* 🎨 Primary Brand Colors */
  --primary: #0b3b3b;       /* Deep Teal – main color (navbar, headings) */
  --secondary: #009688;     /* Aqua Green – highlights, hover, icons */
  --accent: #c0e6df;        /* Soft Mint – buttons & accent backgrounds */
  
  /* 🩶 Neutral Backgrounds */
  --background: #f5f7f8;    /* Light background for clean layout */
  --card-bg: #ffffff;       /* White card background */
  
  /* 🖋️ Text Colors */
  --text-main: #1a1a1a;     /* Main readable text */
  --text-muted: #5b7070;    /* Subtext or descriptions */
  
  /* ✨ Effects */
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --border-glow: 0 0 8px rgba(0, 150, 136, 0.3);
}
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--background);
    }

    /* Navbar */
    
    .top-bar {
      background: var(--background)  !important;
      padding: 10px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
    }

    .top-bar .contact-info {
      display: flex;
      align-items: center;
      gap: 25px;
      font-size: 15px;
      color: var(--text-muted);
    }

    .top-bar i {
      color: var(--bg2) !important;
      margin-right: 6px;
    }

    /* Navbar section */
    .navbar {
      background-color: var(--primary) !important;
      padding: 10px 40px;
    }

    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 600;
      margin-right: 20px;
      transition: 0.3s;
    }

    .navbar-nav .nav-link:hover {
      color: var(--muted) !important;
    }

    .navbar-brand img {
      height: 90px;
    }

    .cart-icon {
      color: var(--accent);
      font-size: 22px;
      position: relative;
      margin-right: 25px;
    }

    .cart-count {
      position: absolute;
      top: -6px;
      right: -10px;
      background: var(--secondary)  !important;
      color: white;
      border-radius: 50%;
      font-size: 12px;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quote-btn {
      background: var(--muted)  !important;
      color:var(--card)   !important;
      border: none;
      padding: 8px 20px;
      font-weight: 600;
      border-radius: 5px;
      transition: 0.3s;
    }

    .quote-btn:hover {
      background: var(--secondary)   !important;
      color: #fff   !important;
    }

    @media (max-width: 992px) {
      .top-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      .navbar {
        padding: 10px 20px;
      }

      .navbar-brand img {
        height: 50px;
      }
    }


/* ===== HERO SLIDER STYLING ===== */
.carousel-item {
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.039);
  z-index: 1;
}

.carousel-item img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
  transition: transform 1.5s ease-in-out;
  filter: brightness(85%);
}

.carousel-item.active img {
  transform: scale(1.05);
}

.carousel-caption {
  position: absolute;
  bottom: 25%;
  left: 8%;
  text-align: left;
  z-index: 2;
  animation: fadeSlideIn 1s ease-in-out;
}

.carousel-caption h3 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: var(--shadow)   !important;
  margin-bottom: 10px;
  opacity: 0;
  animation: textFade 1.2s forwards 0.3s;
}

.carousel-caption p {
  font-size: 1.3rem;
  color: #f5f5f5;
  max-width: 600px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: textFade 1.2s forwards 0.6s;
}

.carousel-caption .btn {
  margin-top: 15px;
  background-color: var(--muted)   !important;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  color: var(--card)   !important;
  font-size: 1rem;
  opacity: 0;
  animation: textFade 1.2s forwards 0.9s;
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
  background-color: var(--secondary)   !important;
  color: white  !important;
  transform: scale(1.05);
}

/* ===== ARROW BUTTONS ===== */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 40px; 
}

.carousel-control-next {
  right: 40px; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--bg2)   !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  background-size: 60%;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--card);
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* ===== Animations ===== */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes textFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 18%;
    left: 5%;
    text-align: center;
  }
  .carousel-caption h3 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .carousel-caption .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  /* move arrows slightly closer for mobile */
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
}


/* ===== ANIMATED SCROLLING OFFER BANNER ===== */
.scroll-offer-banner {
  background: var(--background)  !important;
  background-size: 600% 600%;
  color: var(--bg2)  !important;
  padding: 25px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid #0eb89f  !important;
  border-bottom: 3px solid #0eb89f  !important;
  position: relative;
  animation: moveBg 10s linear infinite;
}

/* Text styling */
.scroll-offer-banner .scroll-text {
  display: inline-block;
  font-size: 2.2rem;       
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:var(--shadow)  !important;
  animation: scrollText 12s linear infinite; /* ✅ text scroll animation */
}

.scroll-offer-banner span {
  color: var(--secondary)  !important;         
}

/* Background movement */
@keyframes moveBg {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Text scroll */
@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Pause when hover */
.scroll-offer-banner:hover .scroll-text {
  animation-play-state: paused;
}
.scroll-offer-banner:hover {
  animation-play-state: paused;
}
/* Service Display Section */
.service-section {
  background: url('../images/bg2.jpg') center/cover no-repeat ;
  color:var(--muted)  !important;
  padding: 80px 20px;
  position: relative;
  text-align: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Dark Blue Overlay */
.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:var(--bg2)  ; 
}

.service-section .overlay {
  position: relative;
  z-index: 1;
}

.service-section .small-text {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-section .big-text {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .service-section {
    padding: 80px 15px;
  }

  .service-section .small-text {
    font-size: 16px;
  }

  .service-section .big-text {
    font-size: 40px;
  }
}


/* ===== Service Banner Slider ===== */
.auto-slide-section {
  background: white;
  padding: 30px 0 60px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

/* Cards Container */
.slider-container {
  display: flex;
  gap: 25px;
  transition: transform 1s ease-in-out;
  width: max-content;
  padding: 0 20px;
}

/* Individual Card */
.product-card {
  /* background: var(--background) !important; */
  overflow: hidden;
  width: 220px;
  flex-shrink: 0;
  backdrop-filter: blur(5px);
  border-radius: 8px;
  box-shadow: var(--shadow)  !important;
}

/* .product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
} */

/* Buttons under image */
.product-card a {
  display: block;
  /* background: var(--secondary); */
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.product-card a:hover,
.product-card a.active {
  background: var(--card);
}

/* ===== Arrow Buttons Centered Below Cards ===== */
:root {
  --primary: #0d5a57;
  --accent: #1ca89d;
  --white: #ffffff;
}

/* Section base */
.auto-slide-section {
  position: relative;
  overflow: hidden;
  background: #f4f9f8;
  padding: 40px 0;
  text-align: center;
}

/* Slider container */
.slider-container {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease-in-out;
  width: max-content;
}

/* Product card */
.product-card {
  flex: 0 0 auto;
  width: 230px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card a {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card a:hover {
  color: var(--accent);
}



/* 🔹 Responsive Design */
@media (max-width: 992px) {
  .product-card {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .product-card {
    width: 160px;
  }
  .product-card img {
    height: 140px;
  }
  .arrow-btn2 {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 130px;
    padding: 10px;
  }
  .product-card img {
    height: 110px;
  }
}

/* ===== Quote Section ===== */
.quote-section {
  position: relative;
  color: var(--text-main);
  overflow: hidden;
  padding: 80px 0;
  background: var(--background);
}

.quote-bg::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle at 40% 30%, var(--primary), transparent 90%);
  animation: blueFlow 4s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.3;
}

@keyframes blueFlow {
  from { transform: translateY(-10%); opacity: 0.6; }
  to { transform: translateY(20%); opacity: 1; }
}

.quote-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Left Image Section */
.quote-image {
  flex: 1 1 350px;
  text-align: center;
}

.quote-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.quote-image img:hover {
  transform: scale(1.05);
}

.quote-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
}

.quote-tagline {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 15px;
}

.order-btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.order-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Right Form */
.quote-form {
  flex: 2 1 600px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.quote-form h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select,
textarea {
  flex: 1;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
}

textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  display: block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 20px auto 0;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--secondary);
}




/* vector */
#vectorDesigns {
  background:var(--background)  !important;
}
.text-center.mb-5 h2 {
  color: var(--primary); /* Deep teal for heading */
  text-shadow: var(--glow); /* Soft teal glow for embroidery look */
  letter-spacing: 1px;
}

.text-center.mb-5 p {
  color: var(--text-muted); /* Soft grey-green tone */
  font-size: 1.1rem;
}

.vector-card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow:var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.vector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.vector-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.connect-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary)  !important;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vector-card:hover .connect-btn {
  opacity: 1;
  transform: translate(-50%, -5px);
}
.btn-primary {
  background-color: var(--primary);   /* Deep teal tone */
  border: none;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(33, 118, 106, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary); 
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
/* 
/* update css */

/* -----------------------------------
   SCROLL OFFER BANNER
------------------------------------*/
.scroll-offer-banner {
  background: black;
  color: #fff;
  padding: 25px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid #004a99;
  border-bottom: 3px solid #004a99;
}
.scroll-offer-banner .scroll-text {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollText 12s linear infinite;
}






/* why chose us */
:root {
  --primary: #0d5a57;
  --accent: #1ca89d;
  --white: #ffffff;
}

.why-choose-us {
  background: #f4f9f8;
}

.bg-left {
  background: linear-gradient(135deg, var(--primary) 70%, var(--accent));
  color: var(--white);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  position: relative;
  overflow: hidden;
}

.bg-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 150px;
  height: 100%;
  background: #f4f9f8;
  transform: skewX(-15deg);
}

.text-accent {
  color: var(--accent);
}

/* Feature Icons */
.icon-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--white);
  transition: all 0.3s ease;
}
.icon-box:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* Progress Bars */
.progress-bar {
  width: 0;
  background: var(--primary);
  border-radius: 5px;
  transition: width 1s ease;
}

/* Button */
.btn-primary {
  background-color: var(--primary);
  border: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}



/* SOFTWARE USE SECTION */

/* 🌟 SOFTWARE / TECH SHOWCASE SECTION */
.tech-showcase {
  background: var(--card);
  overflow: hidden;
  position: relative;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
}

/* Soft overlay shine */
.tech-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

/* SLIDER */
.tech-slider {
  width: 100%;
  overflow: hidden;
}

.tech-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: calc(220px * 10);
  animation: techScroll 24s linear infinite;
}

/* CARD WRAPPER */
.tech-card {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
}

/* White Circle Style for Logos */
.tech-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(0, 255, 200, 0.25),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
  padding: 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* ✨ Glow reflection */
.tech-card img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 100%);
  transform: skewX(-25deg);
  animation: lightMove 3s infinite;
}

@keyframes lightMove {
  0% { left: -80%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

/* 💫 Hover Effect */
.tech-card img:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 25px rgba(0, 255, 200, 0.5),
    0 0 50px rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

/* 🌀 Smooth scroll animation */
@keyframes techScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-220px * 5)); }
}

/* 📱 Responsive (Mobile) */
@media (max-width: 768px) {
  .tech-card {
    width: 150px;
  }

  .tech-card img {
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .tech-track {
    gap: 20px;
    width: calc(150px * 10);
    animation: techScroll 18s linear infinite;
  }

  @keyframes techScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 5)); }
  }
}


/* /* Get COnSuItation */
.consultation-section {
  background: linear-gradient(to right, white 20%, #0eb89f 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border-radius: 10px;
  overflow: hidden;
  margin: 40px;
}

.consultation-content {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.consultation-logo {
  background: white;
  color: #0eb89f;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.consultation-content h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

.consultation-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}

.consultation-contact img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
}





/* Acount Authentication */
.payment-section {
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 850px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: #fff;
}

.payment-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0eb89f;
  margin-bottom: 10px;
  position: relative;
}
.payment-section h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #0eb89f;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.payment-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.payment-options {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.pay-card {
  background: #f9f9f9;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  cursor: pointer;
}
.pay-card:hover {
  transform: scale(1.1);
  background: #00ffe5;
}
.pay-card img {
  width: 55px;
  transition: 0.3s;
}
.pay-card:hover img {
  transform: scale(1.05);
}

.payment-details {
  display: none;
  margin-top: 35px;
  background: #f3f3f3;
  padding: 30px 25px;
  border-radius: 15px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.payment-details h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #0eb89f;
}

.payment-details form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-details label {
  font-weight: 600;
  color: #333;
}

.payment-details input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.payment-details input:focus {
  border-color: #0eb89f;
}

button {
  background: #00ffe5;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}
button:hover {
  background: #00bba5;
  color: #fff;
}

/* 🔹 Responsive Styling */
@media (max-width: 768px) {
  .payment-section {
    padding: 40px 15px;
  }
  .payment-options {
    gap: 20px;
  }
  .pay-card {
    width: 90px;
    height: 90px;
  }
  .pay-card img {
    width: 45px;
  }
  .payment-details {
    max-width: 100%;
    padding: 20px;
  }
}


/* FOOTER */
@keyframes floatGlow {
  from { transform: translateY(0) scale(1); opacity: 0.5; }
  to { transform: translateY(30px) scale(1.1); opacity: 0.8; }
}

.footer-link {
  color:#fff;
  text-decoration:none;
  transition:all 0.3s ease-in-out;
  position:relative;
  display:inline-block;
}

.footer-link::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:2px;
  background:#f7c927;
  transition:width 0.3s ease-in-out;
}

.footer-link:hover {
  color:#f7c927;
  transform:translateX(5px);
}

.footer-link:hover::after {
  width:100%;
}

.social-icon {
  color:white;
  font-size:3.6rem;
  transition:all 0.3s ease;
}

.social-icon:hover {
  color:#f7c927;
  transform:scale(1.2) rotate(10deg);
  text-shadow:0 0 10px rgba(247,201,39,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  footer div[style*="max-width"] {
    flex-direction:column !important;
    text-align:center;
  }
  .social-icon {
    font-size:2.4rem;
  }
}


/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
