body {
  font-family: Arial, sans-serif;
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
}

/* Top Bar */
.top-bar {
    background-color: #1f2937;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
  }
  
  .top-bar a:hover {
    color: #d1d5db;
  }
  
  /* Navigation */
  nav {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #1f2937;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  
  
  /* Dropdown Menu */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    color: #1f2937;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
  }
  
  .dropdown-content a:hover {
    background-color: #f3f4f6;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  @media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: flex;
    }
    .top-bar {
      display: none;
    }
  }
  
/*header close*/

.slide-content {
position: absolute;
text-align: center;
color: #fff;
z-index: 2;
padding: 20px;
background-color: rgba(0, 0, 0, 0.3); /* Optional background for readability */
border-radius: 8px;
}

.slide-content h2 {
font-size: 2rem;
margin-bottom: 10px;
}

.slide-content p {
font-size: 1.2rem;
margin-bottom: 15px;
}

.swiper {
width: 100%;
height: 70vh; /* Desktop and tablets */
}

/* Adjust height for mobile screens */
@media (max-width: 768px) {
.slide-content h2 {
    font-size: 1.5rem;
}

.slide-content p {
    font-size: 1rem;
}

.swiper {
    height: 40vh; /* You can adjust this */
}
}

.swiper-slide {
width: 100%;
height: 100%;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

/* Pagination dots */
.swiper-pagination {
text-align: center;
bottom: 10px !important; /* Bring it up if it's too low on mobile */
}

.swiper-pagination-bullet {
background: rgba(255, 255, 255, 0.7);
width: 10px;
height: 10px;
margin: 0 4px;
}

@media (max-width: 768px) {
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
}
}
/*slider end*/

/* Section About Company */
.container-section {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
padding: 50px;
background-color: #ffffff;
flex-wrap: wrap;
}

.left-section,
.right-section {
box-sizing: border-box;
}

.left-section {
width: 50%;
display: flex;
flex-direction: column;
}

.left-section h4 {
color: #6d4aff;
font-size: 14px;
margin-bottom: 10px;
}

.left-section h1 {
font-size: 32px;
font-weight: bold;
margin-bottom: 20px;
color: #111;
}

.left-section p {
font-size: 15px;
line-height: 1.6;
color: #333;
margin-bottom: 20px;
}

.features {
display: flex;
gap: 40px;
margin-top: 40px;
flex-wrap: wrap;
}

.feature-item {
display: flex;
flex-direction: column;
align-items: flex-start;
flex: 1 1 45%;
margin-bottom: 20px;
}

.feature-item i {
font-size: 28px;
margin-bottom: 15px;
color: #00AEEF; /* Blue color */
}

.feature-item h3 {
font-size: 16px;
margin-bottom: 10px;
font-weight: 600;
}

.feature-item p {
font-size: 14px;
color: #555;
}

.right-section {
width: 45%;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
}

.right-section img {
width: 100%;
border-radius: 5px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.button-overlay {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #00AEEF;
color: white;
padding: 10px 20px;
text-decoration: none;
font-size: 14px;
border-radius: 4px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.button-overlay:hover {
background-color: #008FCC;
}

/* Responsive Styles */
@media (max-width: 768px) {
.container {
flex-direction: column;
padding: 20px;
}

.left-section,
.right-section {
width: 100%;
}

.right-section {
order: 1;
margin-bottom: 20px;
}

.left-section {
order: 2;
}

.features {
flex-direction: column;
gap: 20px;
}

.feature-item {
flex: 1 1 100%;
}

.left-section h1 {
font-size: 26px;
}

.left-section p {
font-size: 14px;
}

.button-overlay {
position: static;
transform: none;
margin-top: 10px;
}

.right-section img {
width: 100%;
}
}
/* About Company End */

/* Section Services */
.services-section {
    padding: 20px 20px;
    background-color: #fff;
}

.services-header {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.services-header h4 {
    color: #6d4aff;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #000;
    color: #fff;
    width: 300px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-card:hover img {
    opacity: 0.7;
}

.service-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        height: 200px;
    }
}
/* Services End */

/* Counter Section Start */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to right, #00c6ff, #0072ff, #6a11cb);
    color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 1000px;
    margin: 20px auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h2 {
    font-size: 48px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        padding: 20px;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .stat-item h2 {
        font-size: 36px;
    }
}
/* Counter Section End */

/* Updates Section Start */
.updates-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #0c1a36; /* Dark navy background */
    color: #ffffff;
    padding: 50px 80px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 50px auto;
    flex-wrap: wrap;
}

.updates-left {
    max-width: 50%;
}

.updates-left h4 {
    color: #6c8ebf;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.updates-left h2 {
    font-size: 36px;
    margin: 10px 0 30px 0;
    font-weight: 700;
    line-height: 1.3;
}

.updates-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.updates-left ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.updates-left ul li::before {
    content: '\2714';
    color: #00c6ff;
    margin-right: 10px;
    font-size: 18px;
}

.updates-right {
    display: flex;
    gap: 30px;
}

.update-box {
    background-color: #0c1a36; /* Matches background but with border */
    border: 1px solid #444;
    border-radius: 10px;
    text-align: center;
    padding: 30px 20px;
    width: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.update-box:hover {
    background-color: #14254d;
    transform: translateY(-5px);
}

.update-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.update-box p {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .updates-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .updates-left {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .updates-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .update-box {
        width: 100%;
        max-width: 250px;
    }
}
/* Updates Section End */