
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #F8F8F8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.header {
    background-color: #272960;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}









.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin-top: -25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.btn-get-started {
    background-color: #FF6600;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
}

.mobile-menu-icon {
    justify-content: flex-end;
    margin-right: 20px;
    margin-left: -20px;
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

.mobile-menu {
    display: none;
    background-color: #272960;
    padding: 20px;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    text-align: right;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 10px;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
}

.mobile-menu.open {
    display: block;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }
} 




.hero {
    background: linear-gradient(135deg, #272960, #4B4BEF);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1{
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.hero-content h1 #dynamic-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}


.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.btn-primary {
    background-color: #FF6600;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
 







/*              */

/* Services Section */
.services {
    background-color: #fff;
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background-color: #f3f4f6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(25% - 40px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card img{
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

.service-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 calc(50% - 20px); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%; /* Full-width on small screens */
    }
}





/*       */




.why-need-useful {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: left;
}

.why-we-need, .how-useful {
    margin-bottom: 40px;
}

.why-we-need h2, .how-useful h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.why-we-need p, .how-useful ul {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.why-we-need p {
    margin-bottom: 20px;
}

.useful-features {
    list-style: none;
    padding-left: 0;
}

.useful-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
}

.useful-features li strong {
    color: #333;
}

.useful-features li::before {
    content: "✔";
    margin-right: 10px;
    color: #ff6600;
    font-weight: bold;
}







/* General Section Styling */
.pricing-plans {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.pricing-plans h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #272960;
    font-weight: 700;
}

.pricing-details {
    font-size: 1.1rem;
    color: #4a4aea;
    margin-bottom: 40px;
}

.pricing-details ul {
    list-style-type: none;
    padding: 0;
    margin: 20px auto;
    display: inline-block;
    text-align: left;
}

.pricing-details ul li {
    font-size: 1.1rem;
    color: #4a4aea;
    margin-bottom: 10px;
}

/* Plan Card Styling */
.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: #f3f4f6;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 40px);
    max-width: 350px;
    transition: transform 0.3s ease, background 0.3s ease;
    background: linear-gradient(145deg, #272960, #4a4aea);
    color: white;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.plan-card .price {
    font-size: 2rem;
    margin-bottom: 20px;
}

.plan-card .description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #e0e0ff;
}

/* Align features to the left */
.plan-card .features {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.plan-card .features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: white;
}

.plan-card .features li::before {
    content: "✔";
    color: #4a4aea;
    font-weight: bold;
    margin-right: 10px;
}

/* Buttons */
/* Buttons - Changed to Orange */
.btn-primary {
    background-color: #FF6600; /* Orange color */
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: background 0.4s ease, transform 0.4s ease;
    margin-top: 20px; /* Adds space before the button */
}

.btn-primary:hover {
    background-color: #e65c00; /* Darker shade of orange for hover effect */
    transform: scale(1.05);
}


/* Hover Effect */
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #4a4aea, #272960);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .plan-card {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}





@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        
        max-width: 95%;

    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content h1 #dynamic-text{
        font-size: 1.7rem;
        line-height: 1.3;

        margin-bottom: 1%;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;

        margin-bottom: 0%;
    }


    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .btn-primary  {
        display: none;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }
}












footer {
    background-color: #272960;
    color: #fff;
    padding: 20px 0;
    text-align: center;
} 
