body {
    background-color: #ffffff;
    color: #000000;
    font-family: SF Pro Display,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
    /* font-size: 24px; */
}
.navbar {
    background-color: #000000;
}
.navbar-nav .nav-link {
    color: #ffc107;
}
.carousel-item video {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    opacity: 0.9;
}
.btn-yellow {
    background-color: #ffc107;
    color: #000000;
}
.btn-yellow:hover {
    background-color: #e0a800;
}
.services, .about, .how-it-works, .best-for {
    padding: 60px 0;
}

.how-it-works  h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.best-for h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}
.icon-box {
    font-size: 48px;
    color: #ffc107;
}
footer {
    background-color: #000000;
    color: #ffc107;
    padding: 20px 0;
}
footer a {
    color: #ffc107;
}
footer a:hover {
    color: #ffffff;
}


/* ==partner styles=== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;  
}

.partners h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}
.partner-item {
    flex: 1 1 80px;  
    max-width: 100px;  
    text-align: center;
}

.partner-item img {
    width: 80px; 
    height: 80px; 
    object-fit: cover;  
    display: block;
    margin: 0 auto;
}
  

/* about  */
 /* Styling for the About Section */
.about {
    background-color: #f9f9f9; /* Light gray background color */
    padding: 50px 0; /* Vertical padding */
    color: #333; /* Dark text color for contrast */
}



.about h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Container Styling */
.container {
    max-width: 960px; /* Max width for larger screens */
    margin: 0 auto; /* Center container horizontally */
    padding: 0 15px; /* Horizontal padding */
}

/* Text Content Styling */
.text-content {
    background: #fff; /* White background for the text box */
    padding: 30px; /* Padding around text */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 800px; /* Limit width for readability */
    margin: 0 auto; /* Center text box horizontally */
}

/* Lead Paragraph Styling */
.lead {
    font-size: 1.25rem; /* Larger font size for emphasis */
    line-height: 1.6; /* Increased line height for readability */
    margin: 0; /* Remove default margin */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-content {
        padding: 20px; /* Reduced padding on smaller screens */
    }

    .lead {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}



/* ===services===== */
/* Styling for the Services Section */
.services {
    background-color: white; /* Light background color */
    padding: 20px 0; /* Vertical padding */
}
.services h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Service Card Styling */
.service-card {
    background: #fff; /* White background for the card */
    padding: 20px; /* Padding around content */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    text-align: center; /* Center text and image */
}

/* Service Image Styling */
.service-image {

    width: 180px; /* Fixed width for images */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 00px; /* Space between image and text */
}

/* Hover Effect for Service Card */
.service-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 15px; /* Reduced padding on smaller screens */
    }

    .service-image {
        width: 60px; /* Adjust width of images on smaller screens */
    }
}


/* =====contact===== */
/* General Contact Section Styling */
.contact-us {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}


/* Contact Information Styling */
.contact-info {
    text-align: left;
    margin-bottom: 30px;
    font-size: 24px;
    color: #555;
}

.contact-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px; /* Space between icon and text */
    color: #ffc107; /* Icon color */
}

.contact-info a {
    color: #ffc107;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Horizontal Form Layout */
.form-horizontal {
    max-width: 100%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin: 0 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-control {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
}

.form-control::placeholder {
    color: #aaa;
}

.btn-primary {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ffc107;
    border-color: #ffc107;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #ffc107;
    border-color: #ffc107;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .form-group {
        margin-bottom: 20px;
    }
}


.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 0px;
    border: #ddd solid 1px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    max-width: 500px;
    margin: 0 20px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #ffc107;
    margin-right: 10px;
    font-size: 28px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.contact-item a {
    color: #ffc107;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item strong {
    color: #555;
}

/* partners */
 
      .custom-table {
        width: 100%;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
      }

      .custom-table td {
        padding: 15px;
        vertical-align: middle;
        text-align: center;
        border: none;
        background-color: #fff;
      }

      .custom-table img {
        width: 100px; /* Fixed width */
        height: 100px; /* Fixed height */
        object-fit: contain; /* Ensures the entire image fits within the dimensions */
        margin-bottom: 10px;
      }

      .custom-table p {
        margin: 0;
        font-weight: bold;
        color: #333;
        font-size: 16px;
      }

      .custom-table tr {
        transition: background-color 0.3s ease;
      }

      .custom-table tr:hover {
        background-color: #f1f1f1;
      }

      .partners h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
      }

      .partners h2.title {
        font-size: 30px;
        color: #555;
        font-weight: 700;
      }
     
      .custom-table {
        width: 100%;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
      }

      .custom-table td {
        padding: 15px;
        vertical-align: middle;
        text-align: center;
        border: none;
        background-color: #fff;
      }

      .custom-table img {
        max-width: 100px;
        margin-bottom: 10px;
      }

      .custom-table p {
        margin: 0;
        font-weight: bold;
        color: #333;
        font-size: 16px;
      }

      .custom-table tr {
        transition: background-color 0.3s ease;
      }

      .custom-table tr:hover {
        background-color: #f1f1f1;
      }

      .partners h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
      }

      .partners h2.title {
        font-size: 30px;
        color: #555;
        font-weight: 700;
      }
 