/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
header {
    background-color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    color: blue;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    align-items: flex-start;
    display: flex;
}

.logo img{
    width: 55px;
    border: 20px;
    border-color: #f4f4f4;
    border-radius: 24px;
}

.logo p{
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: blue;
    margin-left: 30px;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #1231e1;
    transition: color 0.3s ease;
    font-size: large;
}

.nav-links a:hover {
    color: #4a90e2;
}

.cta-button {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #357abd;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(followers.jpg);
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    margin-left: 180px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

.hero h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Content Sections */
section {
    padding: 80px 0;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

p {
    color: white;;
    margin-bottom: 20px;
}

/* Services Section */
.services .service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services{
    background-image: url(followers.jpg);
}

.service-card {
    background: #ffffff;
    padding: 30px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: calc(25% - 20px);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #1a3a6e;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
}

.secondary-button {
    background-color: #1a3a6e;
    color: #ffffff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.secondary-button:hover {
    background-color: #4a90e2;
}

/* Why Choose Us Section */
.why-choose-us {
    background-image: url(followers.jpg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.feature h3 {
    color: #1a3a6e;
    margin-bottom: 10px;
}

.feature p{
    color: blue;
}

/* Quick Signup Section */
.quick-signup {
    background-image: url(followers.jpg);
    color: #ffffff;
}

#signup-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#signup-form input,
#signup-form select {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #4a90e2;
    border-radius: 5px;
    background: #ffffff;
    color: #333;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
}

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-image: url(followers.jpg);
}
.contact{
    background-image: url(followers.jpg);
}

#contact-form {
    flex: 1;
    padding-right: 40px;
}

.contact-info {
    flex: 1;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #4a90e2;
    border-radius: 5px;
    background: #ffffff;
    color: #333;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-icons a {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1a3a6e;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Footer */
footer {
    background-color: #1a3a6e;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    margin-bottom: 20px;
    height: 80px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #4a90e2;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a90e2;
    height: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background: #ffffff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #4a90e2;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.close {
    color: #1a3a6e;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #4a90e2;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .contact-container {
        flex-direction: column;
    }

    #contact-form {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-image: url(followers.jpg);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.testimonial-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* Resources Section */
.resources {
    background-image: url(followers.jpg);
    padding: 80px 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.resource-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-thumbnail {
    width: 100px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.resource-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.pdf-embed {
    display: none;
    width: 100%;
    height: 600px;
    border: none;
}


