@media (max-width: 768px) {
    .brand-text {
        display: none;
        /* Hide text on small screens */
    }
}

.fact-item {
    background: #f8f9fa;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 250px;
    /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fact-item img {
    max-width: 60px;
    margin-bottom: 10px;
}

.fact-item h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.fact-item p {
    font-size: 14px;
    color: #555;
}

/* Restrict styles to .fact section only */
.fact {
    /* padding: 50px 0; */
    text-align: center;
    background-color: #f9f9f9;
}

/* Ensuring the container keeps all cards in the same row */
.fact .container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
}

/* Ensuring all cards stay in one row */
.fact .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    /* Prevents wrapping */
    gap: 20px;
}

/* Fact Card Styles */
.fact-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    /* Fixed width for uniformity */
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hover Effects */
.fact-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon Image */
.fact-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Rotate Image on Hover */
.fact-item:hover img {
    transform: rotateY(360deg);
}

/* Heading */
.fact-item h2 {
    font-size: 20px;
    color: #2D68F0;
    margin-top: 15px;
    font-weight: bold;
}

/* Paragraph */
.fact-item p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fact .row {
        flex-wrap: wrap;
        /* Cards will wrap only on small screens */
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .fact .row {
        flex-direction: column;
        align-items: center;
    }
}


/* About Section Styling */
.about {
    /* padding: 80px 0; */
    background: #f9f9f9;
}

.section-header {
    text-align: left;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 14px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Image Styling */
.about-img {
    text-align: center;
    overflow: hidden;
    border-radius: 10px;

}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    box-shadow: darkblue;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #0056b3;
}

.service-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 12px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-content li::before {
    content: "•";
    color: #2841a7;
    font-size: 20px;
    margin-right: 10px;
}

.service-content .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    background: #2841a7;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.service-content .btn:hover {
    background: #2841a7;
    transform: scale(1.05);
}

/* Scroll animation */
.service-content.visible li {
    opacity: 1;
    transform: translateX(0);
}

.feature {
    background: #f8f9fa;
    padding: 50px 0;
}

.feature-img {
    position: relative;
    display: inline-block;
}

.feature-img img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    display: block;
}

/* Noon Sun Shadow Effect */
.feature-img::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    /* Adjusts the shadow position */
    width: 90%;
    /* Slightly smaller than the image */
    height: 10px;
    /* Flat shadow effect */
    background: rgb(4, 6, 72);
    /* Dark gray shadow */
    /* filter: blur(1px); */
    /* Soft blur for realism */
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: -1;
}


.feature-content {
    padding: 20px;
}

.feature-content p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-list li::before {
    content: "•";
    color: #2841a7;
    font-size: 20px;
    margin-right: 10px;
}

.feature .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    background: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.feature .btn:hover {
    background: #218838;
    transform: scale(1.05);
}

/* Scroll animation */
.feature-content.visible li {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.clients {
    text-align: center;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #092A49;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-header p {
    font-size: 17px;
    color: #555;
    margin-bottom: 0;
    text-align: center;
    padding: 0 15px;
    max-width: 700px;
    margin: 0 auto;
}

.clients-carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    width: 180px;
}

.client-card:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.client-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .client-card {
        height: 100px;
        width: 140px;
        padding: 20px;
    }

    .client-card img {
        max-width: 100px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 15px;
    }
}

.cta-container {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    text-align: center;
    margin: 50px auto;
    /* Centers the CTA container horizontally */
    position: relative;
}

/* Ensures the text remains properly aligned */
.cta-text {
    max-width: 500px;
    text-align: left;
}

.cta-text h2 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    background: #2D68F0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    /* Prevents button text from breaking */
}

.cta-button:hover {
    background: #1E50C5;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-button {
        margin-top: 15px;
        width: 100%;
        max-width: 250px;
    }
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Spacing between each item */
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Adjust space between icon and text */
}

.footer-item i {
    font-size: 20px;
    /* Slightly bigger for better visibility */
    color: #00aaff;
    /* Eye-catching color */
}

.footer-item a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-item a:hover {
    color: #00ff99;
    /* Hover effect with a fresh touch */
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .footer-item {
        flex-direction: row;
        align-items: center;
        font-size: 14px;
    }

    .footer-item i {
        font-size: 18px;
    }
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    gap: 12px;
}

.footer-item i {
    font-size: 20px;
    color: #00aaff;
    width: 20px;
    /* Ensure equal width for all icons */
    text-align: left;
    /* Align text to the left */
    margin-top: 3px;
    /* Adjust vertical alignment */
}

.footer-item a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: inline-block;
    max-width: 250px;
    /* Prevents text from stretching too wide */
}

.footer-item a:hover {
    color: #00ff99;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .footer-item {
        flex-direction: row;
        align-items: center;
        font-size: 14px;
    }

    .footer-item i {
        font-size: 18px;
        width: 18px;
    }
}