/* Reset */
* {
  margin: 0;
  padding: 40px;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* Disable text selection */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Disable image dragging */
img {
  pointer-events: none;
}

body::after {
  content: "© EverestPrime.in";
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 48px;
  color: rgba(255,255,255,0.08);
  transform: translate(-50%, -50%) rotate(-30deg);
  pointer-events: none;
  z-index: 9999;
}


body {
  background: #000000;
  color: gold;
  overflow-x: hidden;
  padding: 50px 0;
}

/* Canvas */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* TOP BAR */
.top-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background: #000000;
  border-bottom: 1px solid red;
  font-size: 20px;
}

/* LEFT */
.info-left {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.info-left a {
  color: #ff0000;
  text-decoration: none;
}

/* CENTER */
.info-center {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
}

.news-ticker {
  width: 100%;
  max-width: 420px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 18s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  font-weight: 500;
}

/* ticker animation */
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* pause on hover */
.news-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.info-right {
  display: flex;
  gap: 14px;
}

.info-right a {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.whatsapp {
  background: #25D366;
}

/* Instagram (official gradient) */
.instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Facebook */
.facebook {
  background: #1877F2;
}

/* Twitter / X */
.twitter {
  background: #1DA1F2;
}

/* LinkedIn */
.linkedin {
  background: #0A66C2;
}

/* Hover Effect */
.info-right a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .info-center {
    display: none;
  }

  .info-left {
    flex-direction: column;
    gap: 4px;
  }
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(50px);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 5rem;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a,
.drop-btn {
  color: gold;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.nav-links a:hover,
.drop-btn:hover {
  opacity: 1;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(187, 37, 37, 0.4);;
}

.dropdown-menu a {
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: gold;
  opacity: 0.85;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

/* Desktop Hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 6rem 2rem 2rem; /* FIXED */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 720px;
  width: 100%;
}

/* Heading */
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid gold;
  width: 0;
  animation:
    typing 2.6s steps(22, end) forwards,
    blink 0.8s step-end infinite;
}

/* Paragraph */
.hero p {
  opacity: 0;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease forwards;
  animation-delay: 3s;
  padding: 0 0.5rem;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 3.4s;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn.primary {
  color: gold;
  border: 2px solid gold;
}

.btn.primary:hover {
  background-color: maroon;
}

.btn.secondary {
  border: 2px solid maroon;
  color: maroon;
}

.btn.secondary:hover {
  background-color: gold;
}

/* Animations */
@keyframes typing {
  from { width: 0; }
  to { width: 22ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {

  .hero {
    padding-top: 5rem;
  }

  .hero h1 {
    font-size: 2rem;
    white-space: normal;
    width: auto;
    border-right: none;
    animation: fadeUp 1s ease forwards;
  }

  .hero p {
    animation-delay: 0.6s;
  }

  .hero-actions {
    animation-delay: 0.9s;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 2rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0.5rem;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== FIXED LEFT CTA ===== */
.fixed-left-cta {
  position: fixed;
  bottom: 60px;        /* 👈 keeps it down */
  left: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


/* CTA Label */
.cta-label {
  background: #ffffff;
  color: #0b7c6f;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 18px;
  border: 2px dashed gold;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  animation: labelFloat 3s ease-in-out infinite;
}

/* CTA Circle */
.cta-circle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #0f8f6e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 rgba(37,211,102,.5),
    0 12px 25px rgba(0,0,0,.25);
  animation: glowPulse 2.6s infinite;
}

/* WhatsApp Icon */
.cta-circle img {
  width: 30px;
  z-index: 2;
}

/* Rotating Ring */
.cta-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px dashed gold;
  animation: spin 7s linear infinite;
}

/* ===== FIXED RIGHT LOGO (DOWN POSITION) ===== */
.fixed-right-logo {
  position: fixed;
  bottom: 60px;          /* 👈 keeps it down */
  right: 22px;
  width: 88px;
  height: 88px;
  z-index: 9999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Logo Image */
.fixed-right-logo img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 2;
}

/* Logo Rotating Ring */
.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid gold;
  border-top-color: transparent;
  animation: spinReverse 9s linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 233, 89, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes labelFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .fixed-left-cta {
    left: 12px;
  }
  .cta-circle {
    width: 50px;
    height: 50px;
  }
  .cta-circle img {
    width: 26px;
  }
  .fixed-right-logo {
    width: 68px;
    height: 68px;
    right: 12px;
  }
  .fixed-right-logo img {
    width: 58px;
    height: 58px;
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COMMON STRIP STYLES */
.strip {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.strip-red {
  background: #e53935;
}

.strip-blue {
  background: #2b5f95;
}

/* TEXT TRACK */
.strip-track {
  display: flex;
  width: max-content;
}

.strip span {
  display: inline-block;
  padding: 18px 40px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ANIMATIONS */
.left-to-right {
  animation: moveLTR 25s linear infinite;
}

.right-to-left {
  animation: moveRTL 25s linear infinite;
}

/* KEYFRAMES */
@keyframes moveLTR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes moveRTL {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .strip span {
    padding: 14px 25px;
    font-size: 15px;
  }
}

/* Service */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #2c2c54;
  margin-bottom: 60px;
  line-height: 1.5;
}

.section-title span {
  color: #e74c3c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border: 2px solid gold;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card.active {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.icon img {
  width: 40px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0099ff;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 18px;
  }
}

.stats {
  background: #056f73;
  padding: 80px 10%;
  text-align: center;
  color: #fff;
}

.stats h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 30px currentColor;
}

.stat-card svg {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
}

.stat-card circle {
  fill: none;
  stroke-width: 10;
  stroke: rgba(255,255,255,0.15);
}

.stat-card .progress {
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 2s ease;
}

.stat-card h3 {
  font-size: 36px;
  margin: 10px 0;
}

.stat-card p {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Colors */
.blue { color: #4fc3f7; }
.green { color: #4dd599; }
.pink { color: #ff6fb7; }
.yellow { color: #ffd54f; }

.blue .progress { stroke: #4fc3f7; }
.green .progress { stroke: #4dd599; }
.pink .progress { stroke: #ff6fb7; }
.yellow .progress { stroke: #ffd54f; }

/* TECHNOLOGIES */

.tech-section {
  padding: 70px 6%;
  text-align: center;
  background: #fff;
}

.tech-section h2 {
  font-size: 26px;
  margin-bottom: 50px;
  font-weight: 700;
}

.web { color: #1e73be; }
.app { color: #e53935; }
.tools { color: #000000; }

.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}

/* NEVER END MAGIC */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}




/* Testimonial Slider Styling */
/* ================================
   TESTIMONIAL SECTION
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
}

.container h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* ================================
   SLIDER STRUCTURE
================================ */
.slider {
  position: relative;
  width: 100%;
}

.viewport {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* ================================
   CARD STYLE (NO BACKGROUND)
================================ */
.card {
  flex: 0 0 calc(25% - 18px); /* 4 cards */
  border-radius: 12px;
  border: 2px solid gold;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 140px;
  box-sizing: border-box;
}

/* ================================
   AVATAR
================================ */
.avatar {
  flex-shrink: 0;
}

.avatar img {
  width: 70px;
  height: 100px;
  border-radius: 10%;
  object-fit: cover;
  border: 1px solid gold;
}

/* ================================
   CONTENT
================================ */
.meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  font-size: 14px;
  line-height: 1.5;
}

.name {
  font-weight: 600;
  font-size: 14px;
}

.role {
  font-size: 12px;
  opacity: 0.7;
}

/* ================================
   CONTROLS (OPTIONAL)
================================ */
.controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* ================================
   DOTS (OPTIONAL)
================================ */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid gold;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: gold;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 calc(50% - 12px); /* 2 cards */
  }
}

@media (max-width: 640px) {
  .card {
    flex: 0 0 100%; /* 1 card */
  }

  .container h2 {
    font-size: 24px;
  }
}



/* CALL TO ACTION SECTION */
.cta-three-column {
    width: 100%;
    background-image: url(/assets/Images/Timemachine.png);
    background-position: center;
    border-radius: 20px;
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #fff;
    overflow: hidden;
}

/* IMAGES */
/* CTA IMAGE */
.cta-img img {
    width: 100%;
    max-width: 260px;
    height: 260px;
    object-fit: contain;
    display: block;
    border: 3px solid gold;
    border-radius: 20px;
    box-sizing: border-box;
}

/* CENTER CONTENT */
.cta-middle {
    text-align: center;
    max-width: 480px;
}

.cta-middle h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-middle p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    color: #fff;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #101010;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: none;
}

.cta-btn:hover {
    background: #000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .cta-three-column {
        flex-direction: column;
        text-align: center;
    }

    .cta-img img {
        height: 190px;
        max-width: 190px;
    }

    .cta-middle h1 {
        font-size: 30px;
    }
}

@media (max-width: 560px) {
    .cta-middle h1 {
        font-size: 26px;
    }

    .cta-img img {
        height: 150px;
        max-width: 150px;
    }
}









/* ✨ footer section */
.footer {
  background: radial-gradient(circle at top, #21186d, #05040e);
  color: #fffdfd;
  padding: 60px 8%;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.brand small {
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.8;
}

.brand h2 {
  margin-top: 8px;
  font-size: 28px;
}

.brand span { color: #1e73be; }
.brand strong { color: #e53935; }


.subscribe-btn {
  position: relative;
  background: linear-gradient(135deg, #ff003c, #ff6a00);
  border: 2px solid gold;
  border-radius: 40px;
  padding: 16px 36px;
  color: gold;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.35);
  transition: all 0.35s ease;
}

/* Shine effect */
.subscribe-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.6s;
}

.subscribe-btn:hover::before {
  left: 120%;
}

/* Hover motion */
.subscribe-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px rgba(255, 0, 60, 0.55);
}

/* Icon animation */
.subscribe-btn .icon {
  transition: transform 0.4s ease;
}

.subscribe-btn:hover .icon {
  transform: translateX(6px) rotate(-10deg);
}

/* Popup Overlay */
.subscribe-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 99999;
}

/* Active Popup */
.subscribe-popup.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  transform: scale(0.7);
  transition: 0.3s ease;
  position: relative;
}

.subscribe-popup.active .popup-box {
  transform: scale(1);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: #999;
}

/* Text */
.popup-box h2 {
  margin-bottom: 10px;
  color: #333;
}

.popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Form */
.popup-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

.popup-box input:focus {
  border-color: #ff5252;
}

/* Submit Button */
.popup-box button[type="submit"] {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 2px solid gold;
  background: linear-gradient(90deg, #e53935, #ff5252);
  color: gold;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button[type="submit"]:hover {
  box-shadow: 0 0 20px rgba(255,82,82,0.6);
}


/* Divider */
.footer hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfd2ff;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: gold;
  padding-left: 6px;
}

.footer-col ul li::before {
  content: "◆";
  color: #6f6cff;
  margin-right: 10px;
  font-size: 10px;
}

.contact p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.ids {
  margin-top: 15px;
  font-size: 13px;
}


.social-bar {
  display: flex;
  gap: 16px;
}

.social {
  width: 250px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


/* Brand Colors */
.whatsapp { background: #25D366; }
.instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%,
    #d6249f 60%, #285AEB 90%);
}
.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.linkedin { background: #0A66C2; }

/* Hover Effect */
.social:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .social-bar {
    gap: 22px;
  }
}

/* site-footer */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 16px;
  background: #000000;
}
.copyright svg {
  vertical-align: middle;
  margin-left: 4px;
  padding: auto;
}

.site-footer a {
  color: #d10000;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

