body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}

header {
    background-color: black;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.75); 
}

.logo img {
    max-width: 150px;
}

.bx-menu {
    font-size: 2rem;
    color: #fff;
    display: none;
}

.navbar {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar li a:hover {
    color: #f39c12;
}

.top-btn .nav-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    margin-right:40px ;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.top-btn .nav-btn:hover {
    background-color: #d35400;
}

/* Section Styles */
section {
    padding: 80px 20px;
    margin: 80px 0;
}

.home-content h1, .home-content h3 {
    margin: 0;
    color: #f39c12;
}

.home-content h1 {
    font-size: 2.5rem;
}

.home-content h3 {
    font-size: 1.5rem;
}

.home-content p {
    color: white; /* Text color */
    text-align: left;
}


.home-content .btn {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.home-content .btn:hover {
    background-color: #d35400;
}
.home-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.home-img img {
    width: 100%;
    height: 97%;
    object-fit: cover;
    object-position: center;
}
.typing-text {
    font-size: 2 rem;
    white-space: nowrap;
    overflow: hidden;
    position: relative; /* Ensure position relative for cursor positioning */
}

.typing-text::after {
    content: '|'; /* Use '|' for cursor */
    display: inline-block;
    width: 0;
    animation: blink-caret .75s step-end infinite;
    vertical-align: middle;
    color: aqua; /* Cursor color */
}

/* Typing effect */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { opacity: 1; }
    50% { opacity: 0; } /* Blink effect */
}
/* About Us section */
#about {
    background-color: #fff; /* White background */
    padding: 60px 0;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    color: #333; /* Dark text color */
    margin-bottom: 20px;
}

#about p {
    font-size: 1.1rem;
    color: #666; /* Gray text color */
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Why Choose Us? section */
#services {
    background-color: #f9f9f9; /* Light gray background */
    padding: 60px 0;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    color: #333; /* Dark text color */
    margin-bottom: 20px;
}

#services p {
    font-size: 1.1rem;
    color: #666; /* Gray text color */
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Our Plans section */
#plans {
    background-color: #fff; /* White background */
    padding: 60px 0;
    text-align: center;
}

#plans h2 {
    font-size: 2.5rem;
    color: #333; /* Dark text color */
    margin-bottom: 20px;
}

#plans p {
    font-size: 1.1rem;
    color: #666; /* Gray text color */
    line-height: 1.8;
    margin-bottom: 30px;
}

/* FAQ section */
#faq {
    background-color: #f9f9f9; /* Light gray background */
    padding: 60px 0;
    text-align: center;
}

#faq .container {
    max-width: 800px;
    margin: 0 auto;
}

#faq h2 {
    font-size: 2.5rem;
    color: #333; /* Dark text color */
    margin-bottom: 20px;
}

.faq {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid aqua; /* Aqua border */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.faq p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Card container */
.card-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

/* Card container */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Individual card */
.card {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid aqua; /* Aqua border */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
.card .btn {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.card .btn:hover {
    background-color: #d35400;
}
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}

form button {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #d35400;
}


footer {
    background-color: black; /* Dark background color */
    color: white; /* Text color */
    padding: 20px; /* Padding around the footer */
    text-align: center; /* Center align text */
}

.footer-logo img {
    width: 100px; /* Adjust logo width as needed */
    height: auto; /* Maintain aspect ratio */
}

.social-icons {
    margin-top: 10px; /* Space between logo and social icons */
}

.social-icon {
    display: inline-block; /* Display icons inline */
    margin: 0 10px; /* Space between icons */
    font-size: 1.5rem; /* Adjust icon size */
    color: white; /* Icon color */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.social-icon:hover {
    color: #007bff; /* Change icon color on hover */
}
/* Initial state of the sections (hidden and translated) */

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        background-color: #1f1f1f;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px;
    }

    .navbar.active {
        display: flex;
    }

    .navbar li {
        margin: 10px 0;
        margin-left: 190px;
    }

    .bx-menu {
        display: block;
        font-size: 2rem;
        color: #fff;
    }
    
    
}

