/* Pricing Section */
.pricing {
padding: 6rem 2rem;
background: url('../images/ssss.jpg') center/cover; /* Ensure banner is properly placed */
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.price-card {
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 1rem;
backdrop-filter: blur(10px);
border: 1px solid rgba(124, 58, 237, 0.2);
transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
transform: translateY(-10px);
border-color: var(--primary);
}

.price-card.featured {
border-color: var(--primary);
transform: scale(1.05);
}

.price {
font-size: 3rem;
font-weight: bold;
color: var(--primary);
margin: 1rem 0;
}

.price span {
font-size: 1rem;
color: var(--text-dark);
}

.price-card ul {
list-style: none;
margin: 2rem 0;
}

.price-card li {
margin-bottom: 1rem;
padding-left: 1.5rem;
position: relative;
}

.price-card li::before {
content: '→';
position: absolute;
left: 0;
color: var(--primary);
}
#comparison.comparison-section {
padding: 6rem 2rem;
background: url('../images/ssss.jpg') center/cover; /* Ensure banner is properly placed */
width: 100%;
display: block;
}

#comparison .section-heading {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
background: linear-gradient(to right, #A78BFA, #C084FC);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

#comparison .comparison-table {
max-width: 1200px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 100%;
}

#comparison .comparison-row {
display: flex;
flex-direction: row;
gap: 2rem;
padding: 2rem;
width: 100%;
}

#comparison .comparison-column {
flex: 1 1 50%;
padding: 1rem;
min-width: 0;
}

#comparison .comparison-column h3 {
text-align: center;
color: #A78BFA;
margin-bottom: 1.5rem;
font-size: 1.5rem;
}

#comparison .comparison-column ul {
list-style: none;
padding: 0;
margin: 0;
width: 100%;
}

#comparison .comparison-column ul li {
padding: 1rem;
margin-bottom: 1rem;
background: #ef03a6;
border-radius: 0.5rem;
text-align: center;
transition: transform 0.3s ease;
width: 100%;
}

#comparison .comparison-column ul li:hover {
transform: translateY(-2px);
background: rgba(124, 58, 237, 0.1);
}

@media screen and (max-width: 768px) {
#comparison .comparison-row {
flex-direction: column;
padding: 1rem;
}

#comparison .comparison-column {
width: 100%;
padding: 0.5rem;
}

#comparison .comparison-column ul li {
padding: 0.75rem;
margin-bottom: 0.5rem;
}
}

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #C084FC;
    --background: #0F172A;
    --text: #F8FAFC;
    --text-dark: #94A3B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
	background: #ffff00;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: #ffff00;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
   background: #ffff00;
    background-clip: text;
    color: transparent;
}

h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: #ffff00;
    background-clip: text;
    color: transparent;
}

h4 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 3rem;
    background: #ffff00;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #f5107a;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: #ffff00;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none; /* Remove underline for the link */
}




.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../images/banner.webp') center/cover; /* Ensure banner is properly placed */

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
       
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensure the content is above the overlay */
    padding: 2rem;
}

.hero-heading {
    font-size: 3rem; /* Adjusted for better responsiveness */
    margin-bottom: 1rem;
    background: linear-gradient(to right, #A78BFA, #C084FC); /* Gradient text effect */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s infinite; /* Adds a pulsating effect */
	font-weight:bold;
}

.hero-paragraph {
    font-size: 1.25rem; /* Adjusted for better readability */
    color: rgba(255, 255, 255, 0.8); /* Matches theme */
    margin-bottom: 2rem;
}

/* Center Button */
.button-container {
    display: flex;
    justify-content: center; /* Center align button */
    margin-top: 1rem;
}

/* Unique Button Style */
.explore-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #A78BFA, #C084FC); /* Gradient color */
    color: white;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.explore-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #C084FC, #D8B4FE); /* Slightly lighter on hover */
}


/* Services Section */
.services {
    padding: 6rem 2rem;
    background: #f5107a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.about {
    padding: 2rem 2rem;
    background: #012066;
    text-align: center; /* Ensure section content is centered */
}

.about-content {
    max-width: 1000px; /* Restrict maximum width for content centering */
    margin: 0 auto;
}

.about-text {
    margin-bottom: 2rem; /* Add spacing between text and stats */
    text-align: center; /* Ensure text alignment for headings within this class */
}

.stats {
    display: flex;
    justify-content: center; /* Center the stats horizontally */
    gap: 2rem; /* Add space between stats */
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary);
}

/* General Typography Styles */
h1, h2, h3, h4 {
    text-align: center; /* Center-align all heading elements */
    margin: 0 0 1rem; /* Add some spacing below headings */
}

p {
    text-align: justify; /* Justify paragraph text */
    margin: 0 0 1rem; /* Add spacing below paragraphs */
    color: var(--text); /* Ensure color consistency */
}

strong {
    font-weight: bold;
    color: #ffff00;
}

a {
    color: var(--link-color); /* Ensure a distinct color for links */
    text-decoration: none; /* Remove underline by default */
    transition: color 0.3s, text-decoration 0.3s;
}

a:hover {
    color: var(--primary); /* Change color on hover */
    text-decoration: underline; /* Underline on hover */
}


@media (max-width: 768px) {
    .stats {
        flex-direction: column; /* Adjust to vertical stack on small screens */
    }
}


/* Gallery Section */
.gallery {
    padding: 6rem 2rem;
    background: #f5107a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 2 / 3; /* Set aspect ratio to 2:3 (height:width) */
   border: 3px solid rgba(124, 58, 237, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}




/* FAQs Section */
.faqs {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 500px;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(124, 58, 237, 0.1));
}

.contact-buttons {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    justify-items: center;
}

.cta-button {
    padding: 1rem 2rem;
    background-color: rgba(124, 58, 237, 0.8);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: rgba(124, 58, 237, 1);
    transform: scale(1.05);
}

.call-button {
    background-color: rgba(0, 137, 255, 0.8); /* Call button color */
}

.call-button:hover {
    background-color: rgba(0, 137, 255, 1); /* Hover effect for Call button */
}

.whatsapp-button {
    background-color: rgba(37, 211, 102, 0.8); /* WhatsApp button color */
}

.whatsapp-button:hover {
    background-color: rgba(37, 211, 102, 1); /* Hover effect for WhatsApp button */
}

.email-button {
    background-color: rgba(244, 67, 54, 0.8); /* Email button color */
}

.email-button:hover {
    background-color: rgba(244, 67, 54, 1); /* Hover effect for Email button */
}

.telegram-button {
    background-color: rgba(0, 162, 232, 0.8); /* Telegram button color */
}

.telegram-button:hover {
    background-color: rgba(0, 162, 232, 1); /* Hover effect for Telegram button */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    /* Tablets */
    .contact-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile portrait */
    .contact-buttons {
        grid-template-columns: 1fr; /* Stack buttons vertically */
        padding: 1rem;
    }
    .cta-button {
        padding: 1rem; /* Make buttons a little larger for better tap targets */
        font-size: 1.2rem; /* Increase font size for small devices */
    }
}

@media (max-width: 480px) {
    /* Smaller Mobile */
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem; /* Adjust font size further */
    }
}


/* Location Section */
.location {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.location-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.location-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.city-search-container {
    position: relative;
    margin-top: 1rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown-selected {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 0.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    outline: none;
    font-size: 1rem;
}

.input-icon {
    position: absolute;
    right: 10px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
}

.city-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.9); /* Dark background for dropdown */
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 0.5rem;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
}

.city-list.hidden {
    display: none;
}

.city-list li {
    padding: 0.5rem;
    text-align: left;
    cursor: pointer;
    color: #ddd; /* Light text color for readability */
}

.city-list li a {
    text-decoration: none;
    color: #ddd; /* Consistent text color for links */
    display: block;
}

.city-list li:hover {
    background: rgba(124, 58, 237, 0.3); /* Slight purple tint on hover */
    color: #fff; /* Ensure text is readable */
}
/* Custom Scrollbar for Dropdown */
.city-list::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.city-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.7); /* Dark background for the scrollbar track */
    border-radius: 4px; /* Rounded corners for the track */
}

.city-list::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.6); /* Purple tint for the scrollbar thumb */
    border-radius: 4px; /* Rounded corners for the thumb */
}

.city-list::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.8); /* Slightly darker purple on hover */
}


/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
	text-align:center;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.back-to-top {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hamburger {
        width: 24px;
        height: 2px;
        background: var(--text);
        position: relative;
        transition: background-color 0.3s;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--text);
        transition: transform 0.3s;
    }

    .hamburger::before {
        top: -6px;
    }

    .hamburger::after {
        bottom: -6px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
	.separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #A78BFA, #C084FC);  /* Gradient matching your color scheme */
    margin: 2rem 0; /* Vertical spacing around the separator */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);  /* Adds subtle shadow under the separator */
    border-radius: 5px; /* Rounded corners to make the separator smoother */
}


