/* Top contact bar */
.top-bar {
  background: #222;
  color: #fff;
  padding: 5px 20px;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}
.top-bar .social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: color 0.3s;
}
.top-bar .social-icons a:hover {
  color: cyan;
}

/* Navbar adjustments */
.navbar {
  top: 25px; /* place it right under the top bar */
}

/* Navbar text style */
.navbar-nav .nav-link {
  color: white !important;
  font-size: 1.4rem;   /* default is ~1rem, this makes it slightly bigger */
  font-weight: 500;    /* makes text a little bolder */
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #222 !important;
  background: white;
  border-radius: 5px;
}

/* Mega Menu Styling */
.mega-menu {
  width: 1000%;            /* Full width */
  max-width: 1200px;      /* Control max size */
  left: 50%;              /* Center it */
  transform: translateX(-50%);
}

.mega-menu .row {
  margin: 0;              /* Remove row side margins */
}

.mega-menu .col-md-3 {
  padding: 0 20px;         /* Add spacing between columns */
}

.mega-menu h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.mega-menu .dropdown-item {
  padding: 4px 0;
  font-size: 0.95rem;
}



/* Body padding so content is not hidden under fixed bars */
body {
  padding-top: 95px; /* adjust height depending on top-bar + navbar combined */
}

/* About */
.about {
  padding: 60px 20px;
}

/* Services Section */
.services .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.services .service-box {
  background: #f8f9fa;
  padding: 30px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 100%;             
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s; /* smooth hover */
}

.services .service-box:hover {
  transform: translateY(-5px);   /* lift up on hover */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* stronger shadow */
}


/* Products */
.products {
  padding: 60px 20px;
}
.products .card {
  transition: transform 0.3s;
  cursor: pointer;
}
.products .card:hover {
  transform: scale(1.08);
}

/* Partners marquee */
.partners {
  background: #f8f9fa;
  padding: 30px 0;
}
.partners img {
  height: 60px;
  margin: 0 30px;
}

/* Product Icons - 3D effect */
.product-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #00c4cc, #007b83); /* gradient for 3D */
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3), 
              -3px -3px 10px rgba(255,255,255,0.6); /* shadow & highlight */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-box:hover .product-icon {
  transform: scale(1.1) rotate(5deg); /* hover pop-out */
}


/* Footer */
footer {
  background: #222;
  color: #ddd;
  padding: 40px 20px;
  text-align: center; /* center align all footer text */
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: cyan;
}

footer .col-md-4 p a {
  display: inline-flex; /* center icon + text */
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

footer .col-md-4 p a i {
  width: 25px;
  text-align: center;
}


