

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content h1 {
    width: 100%;
    text-align: center;
    font-size: 3rem;     /* Reduced font size */
    margin-bottom: 15px; /* Reduced margin */
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;   /* Reduced font size */
    margin-bottom: 25px; /* Reduced margin */
    color: var(--text-gray);
    line-height: 1.5;    /* Adjusted line height */
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s ease-out;
}

.hero-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-button.primary {
    background: var(--primary-color);
    color: white;
}

.hero-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }
}

/* Services Section */
.services {
    text-align: center;
    padding: 50px 20px;
}


/* Services Section */
.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px; /* Added margin for spacing */
}



/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #181818;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    border-top: 1px solid rgba(255, 153, 0, 0.1);
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
}

.testimonial {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    padding: 20px; /* Add padding for better spacing */
    border-radius: 10px;
    transition: transform 0.3s; /* Add transition for hover effect */
    background: rgba(255, 255, 255, 0.05);

}

.testimonial:hover {
    transform: scale(1.02); /* Slightly enlarge on hover */
}

/* Services Section */
#services, #about, #why-choose, #clients, #contact {
    padding: 60px 20px;
    text-align: center;
}

/* Contact Section */
#contact {
    background: #222;
    color: white;
}

.btn.primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn.primary:hover {
    background-color: #e55e00;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    width: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    color: var(--text-gray);
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.service-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #181818;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    border-top: 1px solid rgba(255, 153, 0, 0.1);
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
}

.testimonial {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    padding: 20px; /* Add padding for better spacing */
    border-radius: 10px;
    transition: transform 0.3s; /* Add transition for hover effect */
    background: rgba(255, 255, 255, 0.05);

}

.testimonial:hover {
    transform: scale(1.02); /* Slightly enlarge on hover */
}

/* Services Section */
#services, #about, #why-choose, #clients, #contact {
    padding: 60px 20px;
    text-align: center;
}

/* Contact Section */
#contact {
    background: #222;
    color: white;
}

.btn.primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn.primary:hover {
    background-color: #e55e00;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.service-item {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.service-item:hover {
    background: #333;
}


/* Register & Login Section */
.form-section {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #222;
    border-radius: 10px;
}

.form-section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.form-section button {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    border: none;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.form-section button:hover {
    background-color: #e55e00;
}

/* Deposit Section */
.deposit-section {
    text-align: center;
    padding: 40px 20px;
}

.deposit-section input {
    width: 200px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.deposit-section button {
    padding: 12px 24px;
    background-color: #ff6600;
    border: none;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.deposit-section button:hover {
    background-color: #e55e00;
}

/* Footer Styling */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--text-light);
    font-size: 24px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Projects Section */
.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    width: 100%;
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title and Description */
.projects h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.projects p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}

/* Individual Project */
.project {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.project p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.project-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.video-embed {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }

    .project {
        padding: 25px;
    }

    .project h3 {
        font-size: 1.8rem;
    }

    .project-images {
        grid-template-columns: 1fr;
    }

    .project-images img {
        height: 180px;
    }
}
.payment-instructions {
    margin: 15px 0;
}

.alert-info {
    background-color: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.2);
    color: var(--text-light);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}
.project:hover {
    transform: scale(1.05);
}

/* Project Title */
.project h3 {
    font-size: 2.8rem;
    color: #ff9900;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Project Description */
.project p {
    font-size: 1.25rem;
    margin: 0 auto 30px;
    line-height: 1.7;
    max-width: 800px;
    color: #e0e0e0;
    font-weight: 400;
    opacity: 0.9;
    text-align: left;
    font-family: 'Merriweather', serif;
    letter-spacing: 0.3px;
    padding: 0 20px;
}

/* Video Embed */
.video-embed iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}

/* Project Images */
.project-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.project-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Features Section */
.features-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #121212);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #121212, #1a1a1a);
}

.services-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.services-preview .service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.services-preview .service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    border-top: 1px solid rgba(255, 153, 0, 0.1);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .features-grid,
    .services-preview .services-grid {
        grid-template-columns: 1fr;
    }

    .services-preview .service-card.featured {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}
/* Terms & Policies Section */
.terms-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    width: 100%;
}
.terms-agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    color: var(--text-gray);
}

.terms-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.terms-agreement a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-agreement a:hover {
    text-decoration: underline;
}
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.terms-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-content section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-content h2 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.terms-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
    }
    
    .terms-container h1 {
        font-size: 2rem;
    }
    
    .terms-content h2 {
        font-size: 1.5rem;
    }
    
    .terms-content p {
        font-size: 1rem;
    }
}