/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: white;
    padding: 10px 20px;
    z-index: 5;
    position: sticky;
    top: 0;
}

.navbar-logo {
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.logo-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.highlight {
    color: #fc4944;
}

.navbar-nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.navbar-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 15px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-signin {
    background-color: transparent;
    color: #000;
}

.btn-signup {
    background-color: #fc4944;
    color: #fff;
    border: 1px solid transparent;
}

.btn-signup:hover {
    background-color: transparent;
    color: #fc4944;
    border: 1px solid #fc4944;
}

/* Dropdown Content */
.dropdown-content {
    position: fixed;
    top: -250px; /* Start above the visible area */
    left: 20px; /* Add left margin */
    right: 20px; /* Add right margin */
    width: auto;
    display: flex;
    flex-direction: row;
    background-color: #fcffff;
    opacity: 0; /* Start invisible */
    z-index: 1;
    height: 200px; /* Adjust height as needed */
    transition: top 0.3s ease, opacity 0.3s ease; 
    border-radius: 1.5rem;
    gap: 20px;
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Active state for dropdown content */
.dropdown.active .dropdown-content {
    top: 60px; /* Match the navbar height */
    opacity: 1; /* Fully visible */
    z-index: 1;
}

/* Dropdown Feature Card Styling */
.dropdown-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: flex-start; /* Align items to the top */
    border: 2px solid #fc4944;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
    text-align: left; /* Align text to the left */
    width: 280px; 
    margin-bottom: 10px; /* Add spacing between cards */
    margin-left: 1rem;
}

/* Hover effect for feature cards */
.dropdown-feature-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Heading inside the card */
.dropdown-feature-card h4 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
     margin-left: 0.5rem;
}

/* Paragraph inside the card */
.dropdown-feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    margin-left: 0.5rem;
}

/* Dropdown button */
.dropdown-go-btn {
    padding: 8px 15px;
    background-color: transparent;
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
}

.dropdown-go-btn:hover {
    background-color: transparent;
    color: #fc4944;
}

/* Icon inside the Circle */
.dropdown-feature-icon {
    background-color: #fc4944;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
     margin-left: 0.5rem;
      margin-top: 0.5rem;
}

.dropdown-feature-icon i {
    font-size: 20px;
}

/* Style the EasyTextAPI item */
.nav-item a#easytext-api {
    position: relative; 
    padding-left: 30px; 
    color: #1d7e7e;
}

/* Position the student icon */
.easytext-icon {
    position: absolute;
    top: -10px; /* Adjust vertical positioning (you can change this value) */
    right: 0; /* Position the icon at the left side of the text */
    font-size: 18px; /* Adjust the size of the icon */
    color: #fc4944; /* Icon color */
}


/* Ensure the icon appears above the text */
.nav-item a#easytext-api:hover .easytext-icon {
    color: #fc4944;
}


/* Welcome Section */
#welcome {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items:center;
    padding: 40px 20px;
    min-height: 50vh;
}

.right-section {
    width: 50%;
}

.right-section img {
    width: 100%;
    height: auto;
}

.left-section {
    width: 50%;
    color: white;
    padding: 20px;
}

.left-section h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: #000;
    font-weight: 400;
}

.left-section h2 {
    font-size: 5rem;
    color: #000;
}

.left-section h3 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #000;
}

.left-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #000;
}

/* CTA and Stats */
.cta-stats-container {
    display: flex;
    align-items: center;  
    gap: 5px;  
}

.btn-get-started {
    padding: 15px 25px;
    background-color: #fc4944;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.customer-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.count{
    color: #fc4944;
    font-weight: 500;
}

.clients{
    color: #2f1d1e;
}
.circle-wrapper {
    display: flex;
    flex-direction: column;
    height: 50px;
    width: 100px;
}

.circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid white;
    position: absolute;
}

/* Adjust the left position for each circle */
.circle:nth-child(1) {
    left: 0; /* First circle aligned to the left */
}

.circle:nth-child(2) {
    left: 20px; /* Second circle 20px to the right */
}

.circle:nth-child(3) {
    left: 40px; /* Third circle 40px to the right */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        display: none; /* Hide navbar links */
    }

    .navbar-buttons {
        flex: 1;
        justify-content: flex-end;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 10px;
    }

    #welcome {
        flex-direction: column;
        text-align: center;
    }

    .right-section, .left-section {
        width: 100%;
    }

    .left-section h2, .left-section h3 {
        font-size: 2rem;
    }

    .customer-stats {
        flex-direction: column;
    }
    
    .btn-get-started {
        padding: 5px 15px;
        background-color: #fc4944;
        font-size:1rem;
        border-radius: 15px;

    }
}

@media (max-width: 480px) {
    .btn-get-started {
        width: 100%;
    }

    .navbar-logo {
        margin: 0 auto;
    }

    .left-section h2 {
        font-size: 1.5rem;
    }

    .left-section h3 {
        font-size: 1.2rem;
    }
}


/* Features Section */
#features {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: calc(33% - 20px); /* Three cards in a row, considering the gap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px; /* Optional: Limit the maximum width */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #fc4944;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-card {
        width: calc(50% - 20px); /* Two cards in a row */
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%; /* Full width on smaller screens */
        max-width: 300px;
    }
}



#pricing {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    text-align: center;
    width: calc(20% - 20px); /* Five cards in a row, considering the gap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fc4944;
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 1.5rem;
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.btn-select-plan {
    padding: 15px 30px;
    background-color: #fc4944;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-select-plan:hover {
    background-color: #e04040;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-card {
        width: calc(50% - 20px); /* Two cards in a row */
    }
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%; /* Full width on smaller screens */
        max-width: 300px;
    }
}
#promo {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

/* Intro Section Styles */
.promo-intro {
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotional Text Section */
.promo-solution-section .promo-text p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Solutions Section */
.promo-solutions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.promo-solution {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.promo-solution:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.promo-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-text p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 25px;
}

.promo-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
    color: #555;
    font-size: 1rem;
}

.promo-features li {
    margin-bottom: 10px;
}

.btn-start-project {
    padding: 15px 30px;
    background-color: #fc4944;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-start-project:hover {
    background-color: #e04040;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-solution {
        width: 100%; /* Full width on medium screens */
    }
}

@media (max-width: 768px) {
    .promo-solutions {
        flex-direction: column;
        align-items: center;
    }

    .promo-solution {
        width: 100%; /* Full width on smaller screens */
        max-width: 350px;
    }
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-logo {
    flex: 1;
    text-align: left;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 1rem;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    color: #fc4944;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fc4944;
}

.footer-contact a {
    color: #fc4944;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #000;
    padding: 20px;
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
}

.legal-links a {
    color: #fc4944;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

.legal-links a:hover {
    color: #fff;
}

.footer-bottom p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-logo, .footer-links, .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 10px;
    }

    .footer-logo img {
        max-width: 130px;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }
}



