body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 10px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2); /* Shadow effect */
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); /* Light border for extra effect */
    z-index: 1000;
}

.nav-links a {
    font-family: 'Poppins', Bookman Old Style; /* Change this to your preferred font */
    font-size: 15px; /* Adjust size as needed */
    font-weight: bold; /* You can change to normal, lighter, etc. */
    text-transform: uppercase; /* Optional: Makes text uppercase */
}
.nav-links b {
    font-family: 'Poppins', Bookman Old Style; /* Change this to your preferred font */
    font-size: 15px; /* Adjust size as needed */
    font-weight: bold; /* You can change to normal, lighter, etc. */
    text-transform: uppercase; /* Optional: Makes text uppercase */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 70px;
    height: auto;
    margin-right: 15px;
}

.logo {
    font-family: 'Monotype Corsiva', cursive;
    font-size: 35px;
    color: white;
    margin: 0;
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links b {
    color: #ffcc00;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-links b:hover {
    color: #ffcc00;
}

.nav-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* Clients Section */
.clients-section {
    text-align: center;
    margin-top: 100px;
    padding: 60px;
    background: #181818;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.15);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.clients-section:hover {
    transform: scale(1.02);
    box-shadow: 0px 12px 35px rgba(255, 255, 255, 0.2);
}

.clients-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 3px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

/* Clients Container */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Individual Client Box */
.client {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    height: 130px;
    padding: 20px;
    background: #222222;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.client:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.2);
}

/* Client Logo */
.client img {
    height: 75px;
    width: 200px;
    filter: grayscale(20%);
    transition: filter 0.3s ease-in-out;
}

.client:hover img {
    filter: grayscale(0%);
}

/* "Know More" Button */
.know-more {
    position: absolute;
    bottom: 12px;
    background: transparent;
    color: #ffcc00;
    padding: 1px 8px;
    border: 2px solid #ffcc00;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.client:hover .know-more {
    opacity: 1;
    transform: translateY(-3px);
}

.know-more:hover {
    background: #ffcc00;
    color: black;
}
/* Client Details Section */
.client-details-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #1c1c1c;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(255, 255, 255, 0.1);
}

.client-details {
    margin-bottom: 30px;
    padding: 20px;
    background: #222;
    border-radius: 8px;
    box-shadow: 0px 3px 10px rgba(255, 255, 255, 0.1);
}

.client-details h2 {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 10px;
}

.client-details p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    padding: 10px;
}

/* Section Titles */
h1 {
    color: #ffcc00;
    font-size: 30px;
    margin-top: 20px;
    text-transform: uppercase;
}
h2 {
    color: #ffcc00;
    font-size: 26px;
    margin-top: 20px;
    text-transform: uppercase;
}


.company-mission {
    background: #111;
    color: white;
    padding: 50px;
    text-align: center;
    margin-top: 30px;
}

.mission-content {
    max-width: 800px;
    margin: auto;
}

.mission-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffcc00;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    position: relative;
    bottom: 0;
    width: 100%;
}
.logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: normal;
}

footer a:hover {
    text-decoration: underline;
}

/* Page Load Animation */
.page {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Table Styling */
.table-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px;
}

table {
    width: 90%;
    border-collapse: collapse;
    background-color: #0d0d0d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    margin-left: 65px;
}

/* Table Borders */
th, td {
    border: 2px solid #f3f3f3;
    padding: 14px;
    text-align: center;
    font-size: 16px;
}

/* Table Header */
th {
    background-color: #111;
    color: #f1da02;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #f1da02;
}

/* Table Row Styling */
tr:nth-child(even) {
    background-color: #191919;
}

tr:nth-child(odd) {
    background-color: #0d0d0d;
}

/* Hover Effects */
td:hover {
    color: #f1da02;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Glowing Border Effect */
table:hover {
    box-shadow: 0 0 20px rgba(241, 218, 2, 0.7);
    transition: 0.4s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    th, td {
        padding: 10px;
    }
}

/* Right Side - Stepper */
.stepper {
    display: flex;
    flex-direction: column;
    width: 40%;
    min-width: 350px;
    margin-left: 350px;
}

/* Stepper Steps */
.step {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    background: rgb(55, 55, 55);
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

.step-line {
    position: absolute;
    width: 2px;
    background: #007bff;
    top: 30px;
    bottom: -20px;
    left: 15px;
}

.step:last-child .step-line {
    display: none;
}




.service-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #343533, #5f5d5d);
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0px 8px 30px rgba(214, 34, 34, 0.614);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 204, 0, 0.3);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f1da02;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.service-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.service-list li {
  margin: 10px 0;
  font-size: 1rem;
  color: #f1da02;
}

/* Simple fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
