/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    color: #1a73e8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #007bff, #1a73e8);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-section .btn-primary {
    background-color: #fff;
    color: #1a73e8;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #1a73e8;
    color: white;
}

/* Service Section */
.service-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.service-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.service-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f2f5;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.service-item p {
    font-size: 1rem;
    color: #555;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.testimonials-section blockquote {
    background: #f0f2f5;
    padding: 20px;
    border-left: 5px solid #1a73e8;
    font-style: italic;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-section footer {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.process-section .row {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.process-section .col-md-4 {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-section .col-md-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.process-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.process-section p {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
}

/* Call-to-Action Section */
.cta-section {
    background-color: #007bff;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #007bff;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-section .btn-primary:hover {
    background-color: #1a73e8;
    color: white;
}

/* Footer Styling */
.footer {
    background: linear-gradient(145deg, #343a40, #2c3035);
    color: #fff;
    padding: 40px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer h5 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f8f9fa;
}

.footer ul {
    padding-left: 0;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer ul li a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.footer .fa {
    margin-right: 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .fa:hover {
    color: #ffcc00;
}

.footer .social-icons li a {
    margin-right: 15px;
    font-size: 1.5rem;
}

.footer .social-icons li a:hover {
    color: #ffcc00;
}

.footer .text-center p {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #dcdcdc;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .col-md-4 {
    flex: 1;
    padding: 0 15px;
}

.footer .footer-widget {
    padding-bottom: 20px;
}

.footer .footer-widget h5 {
    font-size: 1.2rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.footer .footer-widget ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer .footer-widget ul li a {
    color: #dcdcdc;
}

.footer .footer-widget ul li a:hover {
    color: #ffcc00;
}

@media (max-width: 768px) {
    .footer .col-md-4 {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .footer .row {
        flex-direction: column;
    }
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .process-section .row {
        flex-direction: column;
        align-items: center;
    }

    .service-item, .process-section .col-md-4 {
        margin-bottom: 20px;
    }
}



/* About Us Section */
.about-us-section {
    background-color: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-us-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.about-us-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.about-us-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us-section ul {
    list-style-type: none;
    padding-left: 0;
}

.about-us-section ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.about-us-section .img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-us-section .container {
    max-width: 1140px;
}

.about-us-section .row {
    display: flex;
    align-items: center;
}

.about-us-section .col-md-6 {
    padding: 15px;
}

.about-us-section .text-center {
    text-align: center;
    margin-bottom: 30px;
}

