body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #1a1a1a;
}
.container {
    max-width: 1200px;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.content {
    margin-top: 80px; /* Adjust for navbar overlap */
}
.row > div {
    padding: 15px;
}
.logo-container {
    display: flex;
    align-items: center; /* Aligns items vertically center */

  }
  
  .logo {
    margin-right: 10px; /* Space between logo and brand name */
    width: 40px;
  }
  
  .brand-name1 {
    margin: 0;/* Remove default margin */
    color: #fff;
    font-family: Arial, sans-serif ;
    
  }

  /* Page Wrapper */
.page-wrapper {
    opacity: 0;
    transform: translateY(30px);  /* Initial off-screen position */
    transition: opacity 3s ease-out, transform 4s ease-out;  /* Fade and slide in */
}
.label{
  color: #fff;
  background-color: #333;
  text-align: center;
}
/* After Page Load */
.page-wrapper.loaded {
    opacity: 1;
    transform: translateY(0);
}


/* Hero Section */
.hero1 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/1.png') no-repeat center center/cover #000;
    color: white;
    padding: 0 20px;
}

.hero-content1 {
    max-width: 600px;
}

.hero1 h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero1 p {
    font-size: 18px;
    margin-bottom: 20px;
}

.bcn {
    display: inline-block;
    padding: 10px 25px;
    color: black !important;
    text-decoration: none;
    font-size: 13px !important; 
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    background-color: #ffff;
}
.bcn:hover {
    color: #000;
    background-color: #7a7878;
}



/* Header tag */
.content h2 {
    font-size: 1.5rem;
    color: white;
}



/* Mobile Drawer */
.nav-links {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* Hidden by default */
.nav-links.open {
    transform: translateX(0%);
}

.nav-links.closed {
    transform: translateX(100%);
}

/* Mobile Drawer (Fixed Behavior) */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        display: none;
        flex-direction: column;
        padding: 10px;
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        font-size: 28px;
        display: block;
        cursor: pointer;
    }
    
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

/* General Footer Styling */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
  }
  
  /* Footer Container - Flexbox Layout */
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
  }
  
  /* Footer Section Styles */
  .footer-section {
    flex: 1;
    min-width: 220px;
    margin: 15px;
  }
  
  /* Logo Section */
  .footer-section.logo img {
    width: 180px;
    margin-bottom: 15px;
  }
  
  /* Navigation Links */
  .footer-section.links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section.links ul li {
    margin-bottom: 10px;
  }
  
  .footer-section.links a {
    color: #bbb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-section.links a:hover {
    color: #00bfae; /* Modern Accent Color */
    transform: translateX(5px);
  }
  
  /* Social Media Links */
  .footer-section.social-media a {
    display: inline-block;
    margin-right: 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-section.social-media a:hover {
    color: #00bfae;
    transform: scale(1.2);
  }
  
  /* Contact Information */
  .footer-section.contact-info p {
    margin: 8px 0;
    font-size: 14px;
  }
  
  .footer-section.contact-info a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer-section.contact-info a:hover {
    color: #00bfae;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #bbb;
    border-top: 1px solid #333;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section {
      margin: 20px 0;
      min-width: 100%;  /* Take up full width on tablet */
    }
  
    .footer-section.social-media a {
      text-decoration: none;
    display: inline-block;
      margin: 10px 0;
      font-size: 20px;
    }
  
    .footer-section.links a {
      font-size: 18px;
    }
  }
  
  /* Mobile View */
  @media (max-width: 600px) {
    footer {
      padding: 30px 10px;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      margin: 20px 0;
      min-width: 100%;
    }
  
    .footer-section.social-media a {
      margin: 12px 0;
      font-size: 22px;
    }
  
    .footer-section.contact-info p {
      font-size: 16px;
    }
  
    .footer-section.links a {
      font-size: 16px;
    }
  }
  .card-body.to{
     background-color: #1a1a1a;
  }
  .container-xxl{
background-color: #1a1a1a;
  }


  /*** Service ***/
.service-item {
  transition: .5s;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
  text-align: center;
}

.service-item:hover .btn {
  width: 140px;
}
.section1{
  background-color: #1a1a1a;
}
.col-lg-6{
  color: #fff;
}
.cool{
  color: #fff;
}
.coll{
  background-color: #212529!important;
  border: #4d5154!important;
}
.row2{
    background:#353935			;
}
.bac{
  background: url('images/mock3.png') no-repeat center center / cover;
}

.carousel{
  width: 65%;
  margin: auto;
  background-color: #212529!important;
}
.tep{
  text-align: center;
 
}
.btn {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px #353935;
  cursor: pointer;
  transition: all 0.2s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  background-color: #D3d3d3!important;
  color:#000 !important;
}
.btn:active{
  box-shadow: 0 2px #ffcc00;
  transform: translateY(4px);
}
.mb-2{
  color:#0000 !important;
}
.page-header{
  background: url('images/3.png') no-repeat center center / cover;
}


.slider1 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 200px;
}

.slider-track {
  display: flex;
  width: calc(200px * 10 * 2); /* image width * number of images * 2 */
  animation: scroll 20s linear infinite;
}

.slide1 {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}