*{
   margin: 0;
    padding: 0;  
    /* background: radial-gradient(circle at top, #07045e, #e6538e); */
}


/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
   background: radial-gradient(circle at top, #07045e, #e6538e);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
     background: radial-gradient(circle at top,  #29036f, #631258);
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .icon {
    border: 2px solid white;
    border-radius: 50%;
    padding: 2px 8px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle at top, #07045e, #e6538e);
    /* background: radial-gradient(circle at top, #07045e, #e6538e); */
}

.hero h1 {
    font-size: 3rem;
    color: #222;
    background: radial-gradient(circle at top, #07045e, #e6538e);
}

/* Services Grid */
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: radial-gradient(circle at top, #07045e, #e6538e);
}

.service-box {
   background: radial-gradient(circle at top,  white ,blue,pink);
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    border: 1px solid #ccc;
}
.bim-services {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
    background: radial-gradient(circle at top,  rgb(233, 62, 62) ,rgba(91, 14, 14, 0.656),rgba(9, 0, 55, 0.552));
}

.service-title {
  color: #fdfdfd; /* Example orange color from image */
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  background: radial-gradient(circle at top, #07045e, #e6538e);
}

.service-description p {
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 15px;
  margin-bottom: 15px;
  text-decoration: wavy;
}

.scroll-container {
  overflow: hidden; /* Hide the images outside the box */
  width: 100%;
  background: rgb(26, 0, 73);
}

.scroll-track {
  display: flex;
  width: calc(250px * 20); /* Adjust based on (image width * total images) */
  animation: scroll 9s linear infinite; /* Adjust time for speed */
}

.scroll-track img {
  width: 250px; /* Set fixed width for consistency */
  height: auto;
  padding: 10px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 10)); } /* Move by half the track (one set of images) */
}

/* Optional: Pause on hover so users can see details */
.scroll-container:hover .scroll-track {
  animation-play-state: paused;
}

.footer-brand .logo {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-brand .address {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #4361ee; /* Cute blue accent */
}

/* Footer Main Styling */
.main-footer {
     background: radial-gradient(circle at top, #07045e, #e6538e); /* Darker background for contrast */
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Brand gets more space */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Section */
.footer-brand .logo {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-brand .address {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #4361ee; /* Cute blue accent */
}

/* Menu Titles */
.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

/* Underline decoration for titles */
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #4361ee;
}

/* Menu Lists */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Hover Effect: Links move slightly right and change color */
.footer-links ul li a:hover {
    color: #00f5d4; /* Teal color on hover */
    padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: #718096;
}