/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #d8e1e9;
    color: #1d1c1c;
    padding: 10px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #d8e1e9;
}

.navbar__logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar__menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar__menu li {
    display: inline-block;
    margin-right: 20px;
    color: #1d1c1c;
}

.navbar__menu li a {
    color: #1b1b1b;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar__menu li a:hover {
    color: rgb(111, 0, 255);
}

/* Intro Section Styles */
.intro {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.intro__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.intro__text {
    flex: 1 1 50%;
    text-align: left;
}

.intro__text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro__text p {
    font-size: 1.1rem;
    color: #555;
}

.intro__features {
    margin-top: 20px;
}

.intro__features ul {
    padding: 0;
    list-style-type: none;
}

.intro__features ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #777;
}

.intro__image {
    flex: 1 1 40%;
    text-align: center;
}

.intro__image img {
    max-width: 100%;
    height: auto;
}

/* About Section Styles */
.about {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}


/* Why internee.pk section styles */
.why-internee-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-internee-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-internee-text {
    flex: 1;
    padding-right: 40px; /* Adjust spacing between text and image */
}

.why-internee-text h2 {
    font-size: 3.9rem;
    color: #333;
    margin-bottom: 20px;
    text-decoration: underline;
}

.icon-list {
    list-style-type:disc;
    padding: 0;
    font-size: 25px;
}

.icon-list li {
    font-size: 2.1rem;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.icon-list li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #28a745; /* Adjust icon color */
}

.why-internee-image {
    flex: 1;
    text-align: center; /* Center align the image */
}

.why-internee-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Rounded corners for image */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Optional: Box shadow for image */
}

/* Blog Section Styles */
.blog {
    padding: 50px 0;
    background-color: #badeef;
    text-align: center;
}

.blog h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.blog__cards {
    display: flex;
    justify-content: space-between;
}

.blog__card {
    width: calc(33.33% - 20px);
    background-color: #ce7373;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    margin-left: 30px;
}

.blog__card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog__card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 50px 0;
    background-color: #bdd3e9;
    text-align: center;
    
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial-cards {
    display: flex;
    justify-content: space-between;
   
}

.testimonial-card {
    width: calc(33.33% - 20px);
    background-color: #6c757d;
    padding: 24px;
    margin-bottom: 36px;
    margin-left: 86px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-weight: bold;
}

.author-location {
    font-style: italic;
}




/* Contact Section Styles */
.contact {
    padding: 1px 0;
    background-color:#ffc107;
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.contact__details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact__info {
    flex: 0 0 50%;
}

.contact__info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact__info ul {
    padding: 0;
    list-style-type: none;
}

.contact__info ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.contact__links {
    flex: 0 0 40%;
}

.contact__links h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact__links ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style-type: none;
}

.contact__links ul li {
    font-size: 1.5rem;
}

.contact__links ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact__links ul li a:hover {
    color: #333;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    font-size: 1rem;
}

.footer__menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer__menu li {
    margin: 0 10px;
}

.footer__menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__menu li a:hover {
    color: yellow;
}

.footer__copyright {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .intro__content {
        flex-direction: column;
        text-align: center;
    }

    .intro__text, .intro__image {
        flex: 1 1 100%;
    }

    .blog__card {
        flex: 0 0 100%;
    }

    .contact__details {
        flex-direction: column;
    }

    .contact__info, .contact__links {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}
