
/* Poppins font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Inter font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* === Footer Section Styling === */
.footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0 40px;
  position: relative;
  border-top: 1px solid #dee2e6;
}

.footer-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 15px; /* Equal padding for all sections */
}

/* === Typography === */
.footer-heading {
  font-size: 1.3rem;
  font-family: 'Inter',sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 0.3px;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: #000000;
  margin-bottom: 20px;
  border-radius: 1px;
}

.footer-text {
  font-size: 1rem;
  font-family: 'Poppins',sans-serif;
  line-height: 1.6;
  color: #232323;
  margin-bottom: 16px;
  font-weight: 400;
}

/* === Links Styling === */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  align-items: start;
}

.footer-links li {
  margin-bottom: 0;
  position: relative;
  padding-left: 16px;
  display: flex;
  align-items: center;
  min-height: 32px;
}

.footer-links li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #6c757d;
  font-size: 1rem;
  transition: color 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links li:hover::before {
  color: #495057;
}

.footer-links a {
  text-decoration: none;
  font-family: 'Poppins',sans-serif;
  color: #141414;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  line-height: 1.4;
}

.footer-links a:hover {
  color: #33373b;
  text-decoration: none;
  padding-left: 4px;
}

/* === Contact Info === */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.contact-item {
  display: flex;

  align-items: center;
  margin-bottom: 0;
  padding: 10px 5px;

  width:300px;
  
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 117, 125, 0.1);
 
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  font-size: 1rem;
  margin-right: 10px;
  color: #232323;
  width: 18px;
  text-align: center;
}

.contact-item span {
  font-weight: 500;
  color: #232323;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(108, 117, 125, 0.2);
  position: relative;
  overflow: hidden;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.249);
  background: rgba(255, 255, 255, 1);
}

.social-icon i {
  font-size: 1.1rem;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

/* Monochrome Social Colors */
.facebook i {
  color: 	#1877F2;
}

.twitter i {
  color: #1DA1F2;
}

.linkedin i {
  color: #0077B5;
}

.soundcloud i {
  color: #F37422;
}


/* ===== Enhanced Footer Bottom Strip ===== */

.footer-bottom {
  position: relative;
  background: linear-gradient(135deg, #212121 0%, #212121 50%, #212121 100%);
  color: #ffffff;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 80px;
}

/* Animated top border */
.footer-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(59, 130, 246, 0.6) 25%, 
    rgba(139, 92, 246, 0.8) 50%, 
    rgba(59, 130, 246, 0.6) 75%, 
    transparent 100%
  );
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.6; transform: scaleX(0.8); }
  100% { opacity: 1; transform: scaleX(1); }
}

/* Background pattern overlay */
.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  animation: patternFloat 8s ease-in-out infinite;
}

@keyframes patternFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Main content wrapper */
.footer-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Copyright section */
.footer-copyright-section {
  flex: 1;
  text-align: center;
}

.footer-copyright {
  font-size: 1.09rem;
  margin: 0;
  /* font-weight: 400; */
  letter-spacing: 0.3px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 8px; */
}


.company-name {
  color: #60a5fa;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
  transition: all 0.3s ease;
}

.company-name:hover {
  color: #93c5fd;
  text-shadow: 0 0 15px rgba(147, 197, 253, 0.5);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
}

.developed-by {
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}


@keyframes heartbeat {
  0%, 50%, 100% { transform: scale(1); }
  25%, 75% { transform: scale(1.1); }
}

/* Developer link styling */
.developer-link {
  color: #bfabfc;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.developer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.2), transparent);
  transition: left 0.5s ease;
}

.developer-link:hover::before {
  left: 100%;
}

.developer-link:hover {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
  text-decoration: none;
}

.link-text {
  position: relative;
  z-index: 1;
}

.link-icon {
  font-size: 0.8em;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.developer-link:hover .link-icon {
  transform: translate(2px, -2px);
}

/* Scroll to top button */
.scroll-top-wrapper {
  position: relative;
}

.scroll-top-btn {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(139, 92, 246, 1));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.scroll-icon {
  font-size: 1em;
  font-weight: bold;
  animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Decorative elements */
.footer-decorations {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;

}


 /* Responsive Design  */
@media (max-width: 1199.98px) {
  .footer {
    padding: 50px 0 35px;
  }
  
  .footer-heading {
    font-size: 1.2rem;
  }
  
  .footer-section {
    padding: 0 12px;
  }
}

@media (max-width: 991.98px) {
  .footer {
    padding: 45px 0 30px;
  }
  
  .footer-section {
    margin-bottom: 35px;
    padding: 0 10px;
    text-align: left; /* Ensure left alignment */
  }
  
  .social-icons {
    justify-content: flex-start; /* Left align social icons */
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr; /* Maintain 2 columns on tablet */
    gap: 6px 12px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0 25px;
  }
  
  .footer-section {
    margin-bottom: 30px;
    text-align: left; /* Force left alignment */
    padding: 0 8px;
  }
  
  .footer-heading {
    font-size: 1.15rem;
    text-align: left;
  }
  
  .footer-text {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .footer-links {
    text-align: left; /* Left align links */
    grid-template-columns: 1fr 1fr; /* Keep 2 columns on mobile */
    gap: 4px 10px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .social-icons {
    justify-content: flex-start; /* Left align social icons */
    margin-top: 16px;
  }
  
  .contact-item {
    padding: 8px 10px;
    justify-content: flex-start; /* Left align contact items */
  }
  
  .contact-info {
    align-items: flex-start; /* Left align contact info */
  }
}

@media (max-width: 575.98px) {
  .footer {
    padding: 35px 15px 20px;
  }
  
  .footer-section {
    margin-bottom: 25px;
    text-align: left; /* Maintain left alignment on small screens */
    padding: 0 5px;
  }
  
  .footer-heading {
    font-size: 1.1rem;
    text-align: left;
  }
  
  .footer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
  }
  
  .footer-links {
    text-align: left; /* Keep links left-aligned */
    grid-template-columns: 1fr; /* Single column on small mobile */
    gap: 4px;
  }
  
  .footer-links li {
    padding-left: 16px; /* Keep bullet points */
    min-height: 28px;
  }
  
  .footer-links li::before {
    display: block; /* Show bullet points */
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .contact-info {
    align-items: flex-start; /* Left align contact info */
  }
  
  .contact-item {
    justify-content: flex-start; /* Left align contact items */
    text-align: left;
    padding: 6px 8px;
    width: 15rem;
  }
  
  .social-icons {
    justify-content: flex-start; /* Left align social icons */
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .social-icon i {
    font-size: 1rem;
  }
  
  .footer-bottom {
    padding: 14px 0;
  }
  
  .footer-copyright {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .footer {
    padding: 30px 10px 15px;
  }
  
  .footer-section {
    padding: 0 3px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 34px;
    height: 34px;
  }
  
  .social-icon i {
    font-size: 0.95rem;
  }
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
  .footer *,
  .footer *::before,
  .footer *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Print Styles === */
@media print {
  .footer {
    background: white !important;
    color: black !important;
    padding: 20px 0 !important;
  }
  
  .social-icons {
    display: none;
  }
  
  .footer-bottom {
    background: white !important;
    color: black !important;
    border-top: 1px solid #ccc;
  }
}