body {
  background-image: url("../images/background.jpeg");
  background-size: cover;
  background-position: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}
.section-title{
    font-size: 50px;
    text-align: center;
    gap: 1rem;
    margin-bottom: 30px;
}

.custom-navbar {
  padding: 20px 60px;
  background-color: #000;
  text-align: center;
}
.custom-navbar .navbar-brand {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.custom-navbar .navbar-nav {
  gap: 2rem;
}
.custom-navbar .nav-link {
  font-size: 25px;
  position: relative;
  color: #fff;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: #f8f9fa;
  transition: width 0.4s ease;
}
.custom-navbar .nav-link:hover::after {
  width: 80%;
}
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; 
}
.dropdown-menu {
  background-color: #000;
  border: none;
  transition: all 0.3s ease;
  padding: 10px 0;
}
.dropdown-item {
  font-size: 25px;
  color: #aaa;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  color: #fbfbfb;
  background-color: transparent;
}

.video-top {
  pointer-events: none;      
  user-select: none;           
  -webkit-user-drag: none;     
  object-fit: cover;           
}

.stat-box {
      background-color: rgb(255, 255, 54);
      color: black;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 8px;
}
   
.heading{
    font-size: 32px;
    text-align: center;
    padding-bottom: 8px;
    margin-top: 10px;
    font-weight: 600;
}
.case-card {
      background-color: #111;
      border-radius: 12px;
      text-align: center;
      width: 210px;
      margin: 1px;
      max-width: 700px;
}

.case-card img {
      height: 350px;
      width: 200px;   
      border-radius: 12px;
      margin-top: 4px;
}
.case-card a {
      color: cyan;
}

.case-btn {
  height: 40px;
  width: 150px;
  border-radius: 15px;
  transition: transform 0.3s;
  border-style: none;
  margin-top: 10px;
}
.case-btn:hover{
  background-color: cyan;
  color: #000000;
  transform: translateY(-5px);
  border: none;
}


.cta {
      background: #1a1a1a;
      text-align: center;
}
.cta h3 {
      font-size: 1.8rem;
      color: #fff;
}
.cta a {
      display: inline-block;
      margin-top: 20px;
      padding: 14px 30px;
      background: #22b457;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: transform 0.3s;
}
.cta a:hover{
        transform: translateY(-5px);
}
footer {
      background: #1a1a1a;
      padding: 50px 20px 30px;
      color: #dddddd;
}
footer h2{
  font-size: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}    
.footer-column{
        margin: 10px;
}
.footer-column h3 {
      margin-bottom: 15px;
      color: #fff;
}
.footer-column ul {
      list-style: none;
      padding: 0;
}
.footer-column ul li {
      margin-bottom: 10px;
}
.footer-column ul li a {
      text-decoration: none;
      color: #ccc;
      transition: color 0.2s;
}
.footer-column ul li a:hover {
      color: #fefefe;
}
.social-icons a {
      display: inline-block;
      margin-right: 10px;
      color: #ccc;
      font-size: 20px;
      transition: all 0.3s ease;
      margin-bottom: 10px;
}
.social-icons a:hover {
      transform: scale(1.1);
}
.footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9rem;
      border-top: 1px solid #333;
      padding-top: 20px;
      color: #888;
}
