/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
    font-size: 17px;
}

.container {
    width: 85%;
    margin: 0 auto;
    
}

.header-c {
    display: flex;
    padding: 10px;
    justify-content: space-between;
}

a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff7f50;
}

/* Header */
.header {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header .logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.header .logo img:hover {
    transform: scale(1.5);
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar ul li {
    display: inline-block;
    margin-right: 30px;
}

.navbar ul li a {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

.navbar ul li a:hover {
    background-color: #ff7f50;
    transform: translateY(-5px);
}

/* Gradient Bar */
.gradient-bar {
    background: linear-gradient(to right, #ff7f50, #1e3a8a);
    height: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 22px;
    margin: 10px 0;
    animation: fadeInUp 1.5s ease-out;
    margin-top: 18px;
}

.hero .cta {
    background-color: #ff7f50;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    margin-top: 30px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 50px;

}

.hero .cta:hover {
    background-color: #e05e39;
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.about h2 {
    color: #1e3a8a;
    margin-bottom: 30px;
    font-size: 32px;
}

.about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333333;
}

.about .values {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about .values li {
    background-color: #1e3a8a;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .values li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f4f7fa;
    text-align: center;
}

.services h2 {
    color: #1e3a8a;
    margin-bottom: 40px;
    font-size: 32px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
    height: 250px;
    margin: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.card i {
    font-size: 40px;
    color: #3b82f6;
    margin-bottom: 15px;

}

.card p {
    font-size: 16px;
    color: #666666;
}

/* Success Stories Section */
.success {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.success h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 32px;
}

.success .testimonial {
    background-color: #f4f7fa;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success .testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    color: #333333;
}

.success .testimonial h4 {
    font-weight: bold;
    color: #1e3a8a;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #1e3a8a;
    color: white;
    text-align: center;
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 32px;
}

.contact .contact-details {
    font-size: 18px;
}

.contact .contact-details i {
    color: #ff7f50;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.contact .contact-details i:hover {
    color: #ffffff;
}

.lets-d {
    padding-bottom: 20px;
}

/* Footer */


.footer {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1)};
.name{
    align-content: center;
}
.superman{
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.hello{
    border-radius: 100%;
}