body {
    font-family: Arial, Helvetica, sans-serif;
}

.nav-link:hover {
    color: blue;
    ;
}

/* Hero Section */
.carousel-item {
    height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% transparency */
    z-index: 1;
}

.carousel-item h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
    z-index: 2;
}

.carousel-item p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 2.5s ease-in-out;
    z-index: 2;
}

.btn-primary {
    padding: 12px 20px;
    border-radius: 50px;
    background-color: #f39c12;
    border: none;
    transition: background-color 0.3s;
    z-index: 2;
}

.btn-primary:hover {
    background-color: #e67e22;
}

/* FadeIn Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom styling for carousel images */
.carousel-inner {
    border-radius: 1px;
}


/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-us-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.about-us-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f39c12;
    text-align: center;
    margin-bottom: 20px;
}

.about-us-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.about-us-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: white;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-us-img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-us-button {
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.about-us-button:hover {
    background-color: #e67e22;
}

/* Responsive Design */
@media (max-width: 767px) {
    .about-us-heading {
        font-size: 2rem;
    }

    .about-us-subheading {
        font-size: 1.3rem;
    }

    .about-us-description {
        font-size: 1rem;
    }

    .about-us-card {
        padding: 15px;
    }
}


/* Service Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.services-subheading {
    text-align: center;
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Ensure equal height for all cards */
}

.service-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: auto;
}

.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    display: flex;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 767px) {
    .services-heading {
        font-size: 2rem;
    }

    .services-subheading {
        font-size: 1.2rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}


/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
}

.how-it-works .section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.how-it-works .section-subheading {
    text-align: center;
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 40px;
}

.step-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .how-it-works .section-heading {
        font-size: 2rem;
    }

    .how-it-works .section-subheading {
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials .section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.testimonials .section-subheading {
    text-align: center;
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.testimonial-stars {
    color: #f39c12;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .testimonials .section-heading {
        font-size: 2rem;
    }

    .testimonials .section-subheading {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.contact-subheading {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    /* Ensures equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f39c12;
    outline: none;
}

.contact-form button {
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #e67e22;
}

.contact-info h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.contact-info i {
    color: #f39c12;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .contact-heading {
        font-size: 2rem;
    }

    .contact-subheading {
        font-size: 1rem;
    }

    .contact-info h4 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer a:hover {
    color: #f39c12;
    transform: translateX(3px);
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #f39c12;
}

.footer-desc,
.footer-link,
.contact-info {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-link i {
    margin-right: 10px;
    color: #f39c12;
}

.contact-info i {
    margin-right: 10px;
    color: #f39c12;
}

/* Space management for small screens */
@media (max-width: 991px) {
    .footer {
        text-align: center;
        padding: 30px 20px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-desc,
    .footer-link,
    .contact-info {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}


/* Breadcrumb section with overlay image */
.breadcrumb-section {
    position: relative;
    height: 400px;
    background-image: url('images/hero-email-2.webp');
    /* Replace with your own image */
    background-size: cover;
    background-position: center;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Breadcrumb heading */
.breadcrumb-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Breadcrumb links */
.breadcrumb {
    display: inline-block;
    background-color: transparent;
    border-radius: 0;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #f39c12;
    /* Gold color for hover */
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #f39c12;
    /* Active breadcrumb item color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-heading {
        font-size: 1.8rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }
}

/* Hover effect on image */
#trusted-partner img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Font awesome icon styling */
.fa-check-circle {
    margin-right: 10px;
    color: #f39c12;
}

/* Responsive Layout */
@media (max-width: 768px) {
    #trusted-partner .row {
        flex-direction: column;
        text-align: center;
    }

    #trusted-partner img {
        max-width: 90%;
        margin-bottom: 20px;
    }

    #trusted-partner h3 {
        font-size: 1.8rem;
    }

    #trusted-partner h5 {
        font-size: 1.2rem;
    }

    #trusted-partner ul li {
        font-size: 1rem;
    }
}


/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Icon color and spacing */
.fa-check-circle {
    margin-right: 10px;
    color: #f39c12;
}

/* Responsive Layout */
@media (max-width: 768px) {
    #mission-vision .card-body {
        padding: 20px;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-text,
    .list-unstyled li {
        font-size: 1rem;
    }
}

/* Section Styling */
.get-in-touch-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Info Styling */
.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 1rem;
    color: #333;
}

.contact-info li i {
    color: #f39c12;
}

/* Contact Form Styling */
.form-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.form-label {
    font-size: 1rem;
    color: #666;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
}

.btn-warning {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    padding: 15px;
}

.btn-warning:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transition: all 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 40px 0;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .form-heading {
        font-size: 1.5rem;
    }

    .form-control {
        padding: 12px;
    }

    .btn-warning {
        font-size: 0.9rem;
        padding: 12px;
    }
}




/* for service */

/* General Styles for Cards */
.feature-card,
.how-it-works-card {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
}

.feature-card:hover,
.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-card i,
.how-it-works-card i {
    color: #f39c12;
}

.feature-card h3,
.how-it-works-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-card p,
.how-it-works-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hover Effects for Icons */
.feature-card:hover i,
.how-it-works-card:hover i {
    transform: rotate(10deg);
    transition: all 0.3s ease;
}


/* General Styles for Cards in How It Works */
.how-it-works-card {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.how-it-works-card i {
    color: #f39c12;
}

.how-it-works-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}

.how-it-works-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hover Effects for Icons in How It Works */
.how-it-works-card:hover i {
    transform: rotate(10deg);
    transition: all 0.3s ease;
}


/* privacy policy */
/* Basic Styling */
.privacy-policy-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    margin-bottom: 30px;
}

.privacy-policy-content h3 {
    color: #333;
    font-size: 1.7rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-policy-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    list-style-type: square;
    padding-left: 20px;
}

.privacy-policy-content ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.privacy-policy-content address {
    font-size: 1.1rem;
    color: #333;
}

/* Interactive Design for Headings */
.privacy-policy-content h3 {
    transition: color 0.3s ease-in-out;
}

.privacy-policy-content h3:hover {
    color: #f39c12;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 20px;
    }

    .privacy-policy-content h3 {
        font-size: 1.5rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 1.0rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content {
        padding: 15px;
    }

    .privacy-policy-content h3 {
        font-size: 1.4rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 0.95rem;
    }
}


/* for terms and conditions */

/* Basic Styling */
.terms-conditions-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Content Centering */
.row.justify-content-center {
    display: flex;
    justify-content: center;
}

.terms-conditions-content {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

/* Heading and Paragraph Styling */
.terms-conditions-content h3 {
    color: #333;
    font-size: 1.7rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-conditions-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.terms-conditions-content ul {
    list-style-type: square;
    padding-left: 20px;
}

.terms-conditions-content ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.terms-conditions-content address {
    font-size: 1.1rem;
    color: #333;
}

/* Interactive Design for Headings */
.terms-conditions-content h3 {
    transition: color 0.3s ease-in-out;
}

.terms-conditions-content h3:hover {
    color: #f39c12;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-conditions-content {
        padding: 20px;
    }

    .terms-conditions-content h3 {
        font-size: 1.5rem;
    }

    .terms-conditions-content p,
    .terms-conditions-content ul li {
        font-size: 1.0rem;
    }
}

@media (max-width: 480px) {
    .terms-conditions-content {
        padding: 15px;
    }

    .terms-conditions-content h3 {
        font-size: 1.4rem;
    }

    .terms-conditions-content p,
    .terms-conditions-content ul li {
        font-size: 0.95rem;
    }
}