/* Global futuristic styles */
:root {
    --neon-blue: #00f7ff;
    --neon-purple: #b300ff;
    --dark-bg: #0a0a1f;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glow: 0 0 15px rgba(0, 247, 255, 0.5);
    --glow-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-purple);
    --transition: all 0.3s ease;
}

/* Hero Section */
.home-hero-section {
    /* background: linear-gradient(90deg, rgb(13, 110, 253), rgb(102, 16, 242));*/
    background: linear-gradient(135deg, #0d0d2b 0%, #2a2a72 100%);
    color: #ffffff;
    padding: 160px 0;
    text-align: center;
    position: relative;
}

.home-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.2), transparent 70%);
    z-index: 0;
}

.home-hero-section h1 {
    letter-spacing: 0.1rem;
    text-shadow: 0 0 0.625rem rgba(0, 255, 255, 0.8);
    text-transform: capitalize;
    font-size: 3rem;
    font-weight: bold;
    margin-top: -10px;
}
.home-hero-section .btn {
    border: none;
    color: #ffffff;
    background: linear-gradient(45deg,rgb(1, 238, 255), #ff00ff);
    /*background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));*/
    padding: 12px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--glow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.home-hero-section .btn:hover {
    background: linear-gradient(45deg, #ff00ff,rgb(0, 238, 255));
}

/* Responsive adjustments for Hero section */
@media (max-width: 768px) {
    .home-hero-section{
        padding: 60px 0;
    }
    .home-hero-section h1 {
        font-size: 2.5rem;
    }
    .h1-container {
        max-width: 250px;
        margin: 0 auto; /* Reinforce centering */
    }
}

/* Services Section */
.home-services-section {
    padding: 50px 0;
    background: #0a0a1f;
    position: relative;
}
.home-services-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-shadow: var(--glow);
    margin-bottom: 40px;
}
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
}
.service-card img {
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}
.service-card h5 {
    color: var(--neon-blue);
}
.service-card p {
    color: white;
}
.service-card-custom .btn {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    background: transparent;
    width: 200px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
}
.service-card-custom .btn:hover {
    background: var(--neon-blue);
    color: #0a0a1f;
    box-shadow: var(--glow);
    transition: var(--transition);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: rgba(20, 20, 60);
}
.why-choose-us h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-shadow: var(--glow);
}
.why-choose-us i {
    color: var(--neon-blue);
    text-shadow: var(--glow);
    font-size: 3rem;
}
.why-choose-us h5 {
    margin-top: 15px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}
.why-choose-us p {
    color: white;
}

/* Our Process Section */
.process-section {
    padding: 50px 0;
    background: #0a0a1f;
}
.process-section i {
    text-shadow: var(--glow);
    font-size: 3rem;
    color: #009ffd; /* Blue icons */
}
.process-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-shadow: var(--glow);
}
.process-section h5 {
    margin-top: 15px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}
.process-section p {
    color: white;
}

/* Hosting Plans Section */
.plans-section {
    padding: 50px 0;
    background-color: #f5f5f5; /* Light gray background for contrast */
}
.currency-select, .pricing-toggle {
    width: 100%; /* Span the full width of the parent container */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-bottom: 30px;
    background: linear-gradient(90deg, #e9ecef, #f5f5f5); /* Light gradient background */
    padding: 10px;
    border-radius: 50px;
}
.currency-select select {
    background-color: transparent;
    border: 2px solid #6b48ff; /* Purple border */
    color: #6b48ff; /* Purple text */
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.currency-select select:hover, .currency-select select:focus {
    background-color: #6b48ff;
    color: #ffffff;
    outline: none;
}
.pricing-toggle .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.pricing-toggle .btn-monthly {
    background-color: transparent;
    color: #6b48ff; /* Purple */
    border: 2px solid #6b48ff;
}
.pricing-toggle .btn-monthly.active, .pricing-toggle .btn-monthly:hover {
    background-color: #6b48ff;
    color: #ffffff;
}
.pricing-toggle .btn-yearly {
    background-color: transparent;
    color: #00ddeb; /* Cyan */
    border: 2px solid #00ddeb;
    position: relative;
}
.pricing-toggle .btn-yearly.active, .pricing-toggle .btn-yearly:hover {
    background-color: #00ddeb;
    color: #ffffff;
}
.pricing-toggle .discount-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #28a745; /* Green */
    color: #ffffff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
}
.plan-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding: 20px;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.plan-card .plan-header {
    background: linear-gradient(90deg, #6b48ff, #00ddeb); /* Purple to cyan gradient */
    color: #ffffff;
    padding: 15px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px -20px;
}
.plan-card .plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745; /* Green price */
    text-align: center;
    margin: 15px 0;
}
.plan-card .plan-discount {
    text-align: center;
    color: #333;
}
.plan-card .plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.plan-card .plan-features li {
    padding: 8px 0;
    color: #333;
}
.plan-card .plan-features li i {
    color: #009ffd; /* Blue checkmarks */
    margin-right: 8px;
}
.plan-card .btn {
    background-color: #28a745; /* Green button */
    color: #ffffff;
    width: 100%;
}
.plan-card .btn:hover {
    background-color: #218838; /* Darker green on hover */
}
.plan-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #ff6b6b; /* Red for featured tag */
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Slider Styles for Hosting Plans */
.plans-slider {
    margin-bottom: 20px;
}
.plans-slider .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
.plans-slider .carousel-item {
    transition: transform 0.5s ease-in-out;
    flex: 0 0 auto;
}
/* Responsive adjustments for Hosting Plans */
@media (max-width: 767.98px) {
    .plans-slider .carousel-item {
        width: 100%; /* Each item takes full width on small screens */
    }
    .plans-slider .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .plans-slider .carousel-item {
        width: 100%; /* Each item contains 3 plans on medium/large screens */
    }
    .plans-slider .carousel-item .col-12 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
.plans-slider .carousel-control-prev,
.plans-slider .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
}
.plans-slider .carousel-control-prev-icon,
.plans-slider .carousel-control-next-icon {
    background-color: #6b48ff; /* Purple arrows */
    border-radius: 50%;
}

/* See All Button for Hosting Plans and Featured Projects */
.see-all-btn {
    display: block;
    margin: 20px auto;
    background-color: #28a745; /* Green button */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.see-all-btn:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Featured Projects Section */
.projects-section {
    padding: 50px 0;
    background-color: #ffffff; /* White background */
}
.project-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0; /* Light gray border */
    border-radius: 10px;
    overflow: hidden;
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.project-card .card-body {
    padding: 20px;
}
.project-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}
.project-card .card-text {
    color: #666;
    margin-bottom: 15px;
}
.project-card .btn {
    background-color: #28a745; /* Green button */
    color: #ffffff;
}
.project-card .btn:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Slider Styles for Featured Projects */
.projects-slider {
    margin-bottom: 20px;
}
.projects-slider .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
.projects-slider .carousel-item {
    transition: transform 0.5s ease-in-out;
    flex: 0 0 auto;
}
/* Responsive adjustments for Featured Projects Slider */
@media (max-width: 767.98px) {
    .projects-slider .carousel-item {
        width: 100%; /* Each item takes full width on small screens */
    }
    .projects-slider .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .projects-slider .carousel-item {
        width: 100%; /* Each item contains 3 projects on medium/large screens */
    }
    .projects-slider .carousel-item .col-12 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
.projects-slider .carousel-control-prev,
.projects-slider .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
}
.projects-slider .carousel-control-prev-icon,
.projects-slider .carousel-control-next-icon {
    background-color: #6b48ff; /* Purple arrows */
    border-radius: 50%;
}

/* Testimonial Section */
.testimonial-section {
    padding: 50px 0;
    background-color: #f5f5f5; /* Light gray background */
}
.testimonial-section .blockquote-footer {
    color: #6b48ff; /* Purple author text */
}
.testimonial-section .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.testimonial-section .testimonial-block {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

/* Testimonial Slider Styles */
.testimonial-slider {
    margin-bottom: 20px;
}
.testimonial-slider .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
.testimonial-slider .carousel-item {
    transition: transform 0.5s ease-in-out;
    flex: 0 0 auto;
}
/* Responsive adjustments for Testimonial Slider */
@media (max-width: 767.98px) {
    .testimonial-slider .carousel-item {
        width: 100%; /* Each item takes full width on small screens */
    }
    .testimonial-slider .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        display: none; /* Hide all by default */
    }
    .testimonial-slider .carousel-item .col-12:first-child {
        display: block; /* Show only the first item */
    }
    .testimonial-slider .carousel-item.active + .carousel-item .col-12:nth-child(2) {
        display: block; /* Ensure correct items are shown during transitions */
    }
}
@media (min-width: 768px) {
    .testimonial-slider .carousel-item {
        width: 100%; /* Each item contains 2 testimonials on medium/large screens */
    }
    .testimonial-slider .carousel-item .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
}
.testimonial-slider .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next-icon {
    background-color: #6b48ff; /* Purple arrows */
    border-radius: 50%;
}
