/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0D0D0D; /* Dark background */
    color: white;
    line-height: 1.6;
}


/* Header Section */
header {
    background: linear-gradient(to right, #8A2BE2, #FF69B4); /* Purple to pink gradient */
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10 20px;
    position: relative;
    top: 20px;
    width: 100%;
    margin-right: 5%;
	z-index: 9999; /* Ensure it's on top */
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
    height: auto;
	margin-left: 20px;
}


/* Menu toggle button */
.menu-toggle {
    display: none; /* Hidden by default for larger screens */
    font-size: 24px;
    color: #fff;
    background: linear-gradient(145deg, #6C63FF, #8983FF); /* Shiny gradient */
    border: 2px solid #fff;
    border-radius: 8px; /* Rounded corners */
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 10px; /* Adjust to create a nice balance */
}

/* Add hover effects for the toggle button */
.menu-toggle:hover {
    background: linear-gradient(145deg, #8983FF, #6C63FF);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


nav.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-right: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
	cursor: pointer; /* Ensure cursor is set to pointer */
}

.nav-menu li a:hover {
    color: #FF69B4;
}

.btn-listen {
    background-color: #7a1fd4;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	margin-right: 40px;
	
}


.btn-listen:hover {
    background-color: #5619a1;
}

.blog-banner {
    text-align: center;
    padding: 90px 0 30px; /* Reduce the height of the banner */
    background-color: linear-gradient(to right, #8A2BE2, #FF69B4); /* Change the background color if needed */
    color: #fff;
}

/* Style the blog section header (inside the banner) */
.blog-banner .section-header h2 {
    font-size: 2.5rem;
    margin top: 0;
    color: #fff;
}

.blog-banner .section-header p {
    font-size: 1rem;
    margin: 10px 0 0;
    color: #ddd;
}




/* Keyframes for Image Flashing Animation */
@keyframes flashImage {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Blog Section */
.blog-page {
    padding: 50px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #777;
}



/* Contact Section Styling */
.contact-section {
  background-color: #0d0d16; /* Dark background color */
  padding: 100px 0;
  color: #fff;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

/* Contact Info (Left Side) */
.contact-info {
  max-width: 50%;
  padding-right: 50px;
}

.contact-info h2 {
  color: #a97fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.email-box {
  background-color: #1f1f2e;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.email-box i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.email-box a {
  color: #fff;
  text-decoration: none;
}

.email-box a:hover {
  text-decoration: underline;
}

/* Contact Form (Right Side) */
.contact-form {
  max-width: 50%;
  background-color: #1f1f2e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 5px;
  display: block;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: #2c2c3b;
  border: 1px solid #393950;
  border-radius: 5px;
  font-size: 1rem;
  color: #d1d1d1;
  outline: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #808080;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #a97fff;
}

.btn-send {
  display: inline-block;
  background-color: #a97fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.btn-send:hover {
  background-color: #925ee5;
}

/* reCAPTCHA Styling */
.recaptcha {
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    max-width: 100%;
    padding-right: 0;
  }

  .contact-info {
    margin-bottom: 50px;
  }
}


/* Email Subscription Section */
.email-subscription {
    background-color: #1f1d39;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.subscription-container {
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.email-subscription h2 {
    color: #7a1fd4;
    font-size: 24px;
    margin-bottom: 10px;
}

.email-subscription p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.email-input {
    padding: 12px 15px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #7a1fd4;
    border-radius: 30px;
    outline: none;
    font-size: 16px;
}

.btn-subscribe {
    padding: 12px 30px;
    background-color: #7a1fd4;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #5619a1;
    transform: scale(1.05);
}


/* Footer General Styles */
.footer {
    background-color: #0c0b19;
    color: white;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo img {
    max-width: 150px;
}

/* Links Section */
.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

/* Social Media Section */
.footer-social {
    text-align: right;
}

.footer-social h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: white;
}

.social-icons a {
    color: #bdbdbd;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #bdbdbd;
    font-size: 14px;
}


/* Adjust for responsive design */
@media (max-width: 768px) {
    .description-text {
        max-width: 90%; /* Reduce width on smaller screens */
        left: 20px; /* Adjust left margin */
        top: 20px;
    }
}


/* Animations using AOS */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-up"].aos-animate {
    transform: translateX(0);
    transform: translateY(0);
}



/* Mobile setup */

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show toggle button */
    }

    .nav-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        right: 0;
        width: 40%;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px; /* Rounded corners for the dropdown */
        padding: 20px 0;
        animation: dropdownFade 0.4s ease-in-out; /* Add dropdown animation */
		text
    }

    .nav-menu.active {
        display: flex; /* Show when toggled */
    }
	
	.nav-menu li {
        margin: 10px 0; /* Add spacing between menu items */
    }
	
	.nav-menu li a {
        padding: 15px; /* Add padding for touch-friendly links */
        font-size: 18px;
    }

    .btn-listen {
        margin: 20px auto; /* Add spacing for mobile */
		padding: 10px;
    }
}

* Dropdown animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    /* Blog Banner Responsiveness */
    .blog-banner {
        padding: 60px 20px; /* Reduce padding for smaller screens */
		margin-top: 30px;
    }

    .blog-banner .section-header h2 {
        font-size: 1.8rem; /* Adjust font size for heading */
    }

    .blog-banner .section-header p {
        font-size: 0.9rem; /* Reduce paragraph font size */
        line-height: 1.4; /* Adjust line spacing for readability */
        margin: 10px 15px 0; /* Add side margins for better fit */
    }
}


@media (max-width: 768px) {
  /* Contact Section Responsiveness */
  .contact-section {
    padding: 50px 20px; /* Reduce padding for smaller screens */
  }

  .contact-wrapper {
    flex-direction: column; /* Stack sections vertically */
    align-items: center; /* Center align content */
  }

  .contact-info {
    text-align: center; /* Center text alignment */
    margin-bottom: 30px; /* Add spacing between sections */
    padding-right: 0; /* Remove right padding */
  }

  .contact-info h2 {
    font-size: 1rem; /* Adjust font size */
    margin-bottom: 5px;
  }

  .contact-info h3 {
    font-size: 2rem; /* Reduce size for mobile */
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 1rem; /* Adjust paragraph size */
    line-height: 1.5;
  }

  .email-box {
    justify-content: center; /* Center align content */
    padding: 10px 15px; /* Adjust padding */
    font-size: 1rem;
  }

  .email-box i {
    font-size: 1.2rem; /* Reduce icon size */
  }

  .contact-form {
    width: 100%; /* Full width for the form */
    max-width: 100%;
    padding: 20px; /* Adjust padding */
    box-shadow: none; /* Optional: Remove shadow for a simpler look */
  }

  .form-group label {
    font-size: 0.9rem; /* Adjust label size */
  }

  .form-group input, .form-group textarea {
    padding: 10px; /* Reduce input padding */
    font-size: 0.9rem; /* Adjust font size */
  }

  .btn-send {
    font-size: 0.9rem; /* Adjust button size */
    padding: 10px 20px; /* Adjust padding */
  }
}




@media (max-width: 768px) {
    /* Footer Container - Stack Elements Vertically */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Footer Logo - Center Align */
    .footer-logo {
        margin-bottom: 20px;
    }

    /* Links Section - Stack Columns */
    .footer-links {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-column ul {
        margin-bottom: 20px; /* Add spacing between sections */
    }

    /* Social Media Section */
    .footer-social {
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px; /* Reduce spacing between icons */
    }

    .social-icons a {
        font-size: 18px; /* Slightly smaller icons for mobile */
        margin-right: 0; /* Remove extra spacing */
    }

    /* Footer Bottom */
    .footer-bottom {
        margin-top: 10px;
        padding-top: 10px;
    }

    .footer-bottom p {
        font-size: 12px; /* Adjust font size for smaller screens */
    }
}