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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  line-height: 1.3;
}

.hero-section {
  animation: fadeIn 2s ease-in-out;
  background: url('images/ads-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

.hero-section h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: #ffd60a;
  color: #1e293b;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #ffca05;
  transform: translateY(-5px) scale(1.1);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.services-section {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.services-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #1e293b;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.services-section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #ffd60a;
  margin: 10px auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.service-card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: rotate(0deg);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #475569;
}

.learn-more {
  display: inline-block;
  color: #1d4ed8;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s;
}

.learn-more:hover {
  color: #2563eb;
  transform: scale(1.1);
}

.why-us {
  background: #1e293b;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 40px;
}

.why-us-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.why-us-box {
  background: #334155;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.why-us-box:hover {
  transform: translateY(-10px);
  background: #475569;
}

.why-us-box h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd60a;
}

.why-us-box p {
  font-size: 1rem;
  color: #e2e8f0;
}

.contact-section {
  background: #f8fafc;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 40px;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
}

.contact-section button {
  background: #1d4ed8;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s;
}

.contact-section button:hover {
  background: #2563eb;
  transform: translateY(-3px) scale(1.05);
}

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

/* Footer Styles */
footer {
  background-color: #1a1a1a; 
  color: #ffffff; 
  text-align: center; 
  padding: 20px 10px; 
  font-size: 14px; 
  font-family: 'Arial', sans-serif; 
  position: relative;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); 
}

footer p {
  margin: 0; 
  line-height: 1.5; 
}

footer a {
  color: #ffa500; 
  text-decoration: none;
  font-weight: bold; 
  transition: color 0.3s ease; 
}

footer a:hover {
  color: #ffffff; 
  text-decoration: underline; 
}

@media (max-width: 768px) {
  footer {
    font-size: 12px;
    padding: 15px 5px;
  }
}


@media (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-direction: column;
  }
}

.footnote {
    padding: 15px; /* Reduced space inside the footnote */
    margin: 0; /* Remove gaps on top and bottom */
    border-radius: 5px; /* Rounded corners */
    font-family: Arial, sans-serif; /* Font style */
    font-size: 12px; /* Smaller font size */
}

.footnote h4 {
    font-size: 12px; /* Slightly smaller heading size */
    color: #a8aaad; /* Darker text for the heading */
    margin-bottom: 5px; /* Reduced space below the heading */
}

.footnote p {
    font-size: 10px; /* Smaller paragraph text */
    color: #a8aaad; /* Medium gray for the text */
    line-height: 1.4; /* Line height for readability */
    margin: 0; /* Remove margin below each paragraph */
}

.footnote strong {
    color: #000; /* Strong text in black for emphasis */
}

.footer-categories {
    display: none;
}
