/* Base Styles */
:root {
    --primary-color:#FFFFFF;
    --secondary-color: #F5F5F5;
    --accent-color:#FFDF00;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
     scroll-behavior: smooth; /* Enables smooth scrolling */
	 overflow-x: hidden;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 30px;
    background: #1D083D;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  margin-right: 10px;
}


/* Navigation Links */
.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    top: 80px;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Search Bar */
#search-bar {
    display: flex;
    align-items: center;
}

.search-box {
    padding: 4px 7px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background-color: #f9f9f9;
    outline: none;
    font-size: 1rem;
    width: 250px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Auth Buttons */
.btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    margin-left: 10px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    color: #1D083D;
}

/* User welcome styles */
.user-welcome {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-right: 10px;
    font-size: 0.9rem;
}

.user-welcome i {
    font-size: 1.2rem;
    color: #FFDF00;
}

/* Logout button styles */
.btn.logout {
    background-color: #DAA520;
    color: #1D083D;
    border: 2px solid #DAA520;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn.logout:hover {
    background-color: #FFDF00;
    color: #1D083D;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(218, 165, 32, 0.3);
}

/* Mobile responsive styles for user section */
@media screen and (max-width: 768px) {
    .user-welcome {
        margin: 10px 0;
        justify-content: center;
        width: 100%;
    }
    
    .btn.logout {
        margin: 10px auto;
        width: 80%;
        text-align: center;
        justify-content: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}
/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1D083D;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s ease-in-out;
        gap: 15px;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .btn {
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }

    .search-box {
        width: 80%;
        margin: 10px auto;
    }

    .menu-toggle {
        display: block;
    }

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    animation: zoomOut 0.4s ease forwards;
    transform: scale(0.6);
    opacity: 0;
    position: relative;
    margin-top: 60px;
    color: #000;
}

/* Zoom-out animation */
@keyframes zoomOut {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Modal Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form label {
    font-size: 0.9rem;
    color: #333;
}

form a {
    color: #1D083D;
    text-decoration: underline;
}

form button {
    padding: 12px;
    background-color: #1D083D;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

form button:hover {
    background-color: #3e1d68;
}

/* Hero Section */
/* Hero Section Styling */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url('51.jpeg') no-repeat center top / cover;
    box-sizing: border-box;
    color: #fff;
    text-align: left;
	overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness here (0.5 = 50%) */
    z-index: 1;
}


/* Centered content within hero */
.hero-content {
	position: relative;
    max-width: 750px;
    z-index: 10; /* Make sure content stays on top of the image */
    padding: 20px;
}

/* Heading Styles */
.hero h1 {
    font-size: 4rem;
    color: #fff; /* White text for better contrast on background */
    margin-bottom: 10px;
}

/* Paragraph Styles */
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent for readability */
    margin-bottom: 30px;
}

/* Container for buttons */
.button-container {
    display: flex; /* Flexbox for alignment */
    justify-content: center; /* Center buttons horizontally */
    gap: 20px; /* Add space between the buttons */
    flex-wrap: nowrap; /* Prevent buttons from wrapping */
    margin: 0 0 20px 0; /* Bottom margin for separation */
    width: 100%; /* Full width for container */
}

/* Base button styling */
.cta-button, .services-button {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50px; /* Rounded button edges */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: 0.3s;
    padding: 12px 25px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

/* Styling for the CTA button */
.cta-button {
    background: #DAA520;
}

.cta-button:hover {
    background-color: #1D083D;
}

/* Styling for the Services button */
.services-button {
    background: #1D083D;
}

.services-button:hover {
    background-color: #DAA520;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-button, .services-button {
        width: 45%; /* Buttons take up 45% of container on smaller screens */
        padding: 15px;
        font-size: 1rem; /* Slightly smaller font size */
    }
}

@media (max-width: 480px) {
    .cta-button, .services-button {
        width: 100%; /* Full-width buttons on very small screens */
        font-size: 0.9rem; /* Further reduced font size */
        padding: 12px; /* Smaller padding for mobile */
    }
}

/* Sections Scrolling Top Margin */
#about-description, #programs, #events, #featured-books-section, #numbers #contact {
  scroll-margin-top: 100px;
}

/* Universal Slide-in Animations */
.slide-left, .slide-right {
  opacity: 0;
  transition: all 1s ease;
  will-change: transform, opacity;
  position: relative;
}

/* Slide In from Left */
.slide-left {
  transform: translateX(-50px); /* Reduced to avoid large shifts */
}

/* Slide In from Right */
.slide-right {
  transform: translateX(50px); /* Reduced to avoid large shifts */
}

/* When in view, apply the slide animation */
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* About Me Section */
#about {
    padding: 10px 0; /* Remove side padding to allow full-width slider */
    background-color: #2a2a2a; /* Match Events background */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

/* Image Slider Styling */
.about-photo-slider {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 600px; /* Increased height */
    overflow: hidden;
    border-radius: 0; /* Optional: full-width feel */
    margin: 0 auto;
    background-color: #000000;
}

.about-photo-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container and crop if needed */
    transition: transform 0.3s ease;
    border-radius: 0;
}

/* Hover effect for the images */
.about-photo-slider .slide img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjusted height for mobile */
    }
}

.about-description {
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ddd; /* light text */
    text-align: left;
    padding: 30px 40px;
    margin: 0 auto;
    background-color: #121212; /* dark background */
    border-left: 6px solid #DAA520; /* bold gold accent */
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.25); /* soft gold shadow */
    border-radius: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.about-description:hover {
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.4);
    transform: translateY(-5px);
}

.about-description p {
    margin-bottom: 24px;
    font-weight: 400;
    color: #ccc; /* slightly lighter than container text for readability */
}

.about-description strong {
    color: #DAA520; /* Wale Akinyemi gold for emphasis */
    font-weight: 700;
}

.about-description a.btn-consultation {
    display: inline-block;
    margin-top: 15px;
    background-color: #DAA520;
    color: #FFFFFF;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(218, 165, 32, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-description a.btn-consultation:hover {
    background-color: #c69c1e;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(198, 156, 30, 0.7);
}


/* Button Styles */
.btn-consultation {
    display: inline-block;
    background: linear-gradient(135deg, #DAA520, #c6951f);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(218, 165, 32, 0.3);
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #b58900, #a07a00);
    box-shadow: 0 8px 24px rgba(105, 104, 128, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design Adjustments */
@media screen and (max-width: 768px) {
    #about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-photo img {
        width: 100%;
        height: auto;
    }

    .about-description {
        font-size: 1rem;
        text-align: center;
        padding: 20px;
        border-left: none;
        border-top: 4px solid #DAA520;
    }
}


/* Sections Common Styles */
section {

    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
	overflow-x: hidden;
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #DAA520;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background:#696880;
}


/* Programs Section */
.programs-section {
    padding: 60px 20px;
    background-color: #2a2a2a; /* Match Events background */
    text-align: center;
    font-family: 'Poppins', sans-serif;
}


.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.program-card {
    background: #1c1c1c;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #333;

    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures card fills grid height */
}


.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.program-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #2a2a2a;
    display: block;
}



.program-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.program-details h3 {
    margin-bottom: 15px;
    color: #D4AF37; /* Gold */
    font-size: 1.6rem;
    font-weight: 600;
}

.program-details p {
    font-size: 1rem;
    color: #ffffff; /* White text for dark background */
    margin-bottom: 12px;
    line-height: 1.6;
}

.program-details strong {
    color: #DAA520;
}

.program-details em {
    font-style: italic;
    color: #f0e68c;
}

.program-date {
    font-weight: bold;
    color: #DAA520;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-join {
    background-color: #DAA520;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: auto; /* Pushes to bottom of the .program-details flex container */
    text-align: center;
    line-height: 1;
}

.btn-join:hover {
    background-color: #c69c1e;
    transform: scale(1.05);
}

.btn-join2 {
    background-color: #DAA520;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: auto; /* Pushes to bottom of the .program-details flex container */
    text-align: center;
    line-height: 1;
}

.btn-join2:hover {
    background-color: #c69c1e;
    transform: scale(1.05);
}


/* Responsive Tweaks */
@media (max-width: 768px) {
    .program-image {
        height: 500px;
    }

    .program-details h3 {
        font-size: 1.4rem;
    }

    .program-details p {
        font-size: 0.95rem;
    }
}


/* Title and Intro Styles */
.modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.modal-intro {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.bcm-hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.bcm-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.bcm-hero h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  color:FFFFFF;
}

.bcm-hero blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 30px auto;
  max-width: 700px;
  line-height: 1.6;
  color: #ffeaa7;
}

.bcm-overview {
  max-width: 1000px;
  margin: auto;
  text-align: left;
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.bcm-overview h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.bcm-overview h3 {
  color: #0f2027;
  margin-top: 40px;
}

.bcm-overview ul {
  margin: 10px 0 30px;
  padding-left: 20px;
}

.bcm-deliverables {
  background-color: #203a43;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}
.bcm-deliverables h3 {
    color: #FFD700;
  margin-bottom: 15px;
}


.bcm-cta {
  text-align: center;
  padding: 40px 20px;
  background-color: #0f2027;
  color: #fff;
}

.bcm-cta h2 {
  margin-bottom: 20px;
}

.bcm-cta a {
  display: inline-block;
  background-color: #ffeaa7;
  color: #000;
  text-decoration: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.bcm-cta a:hover {
  background-color: #f9ca24;
}

.bcm-cta-section {
  text-align: center;
  background: #f9f9f9;
  padding: 60px 20px;
  border-radius: 10px;
}

.bcm-cta-button {
  background-color: #4B0082;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bcm-cta-button:hover {
  background-color: #3A006B;
}

.reimagine-hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.reimagine-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.reimagine-hero h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.reimagine-hero blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 30px auto;
  max-width: 700px;
  line-height: 1.6;
  color: #ffeaa7;
}

.reimagine-overview {
  max-width: 1000px;
  margin: auto;
  text-align: left;
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.reimagine-overview h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.reimagine-overview h3 {
  color: #0f2027;
  margin-top: 30px;
}

.reimagine-overview p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reimagine-deliverables {
  background-color: #203a43;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 40px 0;
}

.reimagine-deliverables h3 {
  color: #FFD700;
  margin-bottom: 15px;
}

.reimagine-deliverables ul {
  list-style-type: disc;
  padding-left: 20px;
}

.reimagine-cta-section {
  text-align: center;
  background: #f9f9f9;
  padding: 60px 20px;
  border-radius: 10px;
}

.reimagine-cta-button {
  background-color: #4B0082; /* Royal Purple */
  color: #FFFFFF; /* Gold */
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.reimagine-cta-button:hover {
  background-color: #3A006B;
  color: #fff5cc;
}


/* Wale Akinyemi Book Tour Section */
.wale-events-section {
  background-color: #2a2a2a; /* deep purple-black tone */
  color: #ffffff;
  padding: 60px 20px;
}

.wale-events-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.wale-events-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.wale-events-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f3f3f3;
}

.wale-events-image {
  flex: 1 1 45%;
}

.wale-events-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.wale-events-image img:hover {
  transform: scale(1.03);
}
.register-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1D083D;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-button:hover {
  background-color: #f4c430;
  color: #1D083D;
  box-shadow: 0 6px 16px rgba(218, 165, 32, 0.4);
}



/* Book Promotion Section */
.book-promo-section {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 40px 0px;
  text-align: center;
}

.book-promo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.book-promo-card {
  background-color: #2a2a2a;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 30px 20px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  transition: transform 0.3s ease;
}

.book-promo-card:hover {
  transform: translateY(-10px);
}

.book-promo-image {
  width: 100%;
  height: auto; /* Allow image to scale naturally */
  object-fit: contain; /* Show the entire image without cropping */
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}


.book-promo-book-title {
  font-size: 1.5rem;
  color: #DAA520;
  margin-bottom: 15px;
  font-weight: 600;
}

.book-promo-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #eeeeee;
  margin-bottom: 20px;
}

.book-promo-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1D083D;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-promo-button:hover {
  background-color: #f4c430;
  color: #1D083D;
  box-shadow: 0 6px 16px rgba(218, 165, 32, 0.4);
}

/* Life After a Heart Attack Video Section */
.heartattack-video-section {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 60px 20px;
  width: 100%;
}

.heartattack-video-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.heartattack-video-title {
  font-size: 2.5rem;
  color: #DAA520;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #DAA520;
  display: inline-block;
  padding-bottom: 10px;
}

.heartattack-video-description {
  font-size: 1.1rem;
  color: #f1f1f1;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.heartattack-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.heartattack-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* The Street Hub Section Styling */
.street-hub-section {
  background-color: #2A2A2A;
  color: #FFFFFF;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.street-hub-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.street-hub-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.street-hub-content {
  flex: 1;
  max-width: 600px;
}

.street-hub-title {
  color: #DAA520;
  font-size: 32px;
  margin-bottom: 20px;
}

.street-hub-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.street-hub-button {
  background-color: #DAA520;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.street-hub-button:hover {
  background-color: #B38A1A;
  color: #FFFFFF;
}

/* African Legends Section Styling */
.african-legends-section {
  background-color: #2A2A2A;
  color: #FFFFFF;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.african-legends-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.african-legends-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.african-legends-content {
  flex: 1;
  max-width: 600px;
}

.african-legends-title {
  color: #DAA520;
  font-size: 32px;
  margin-bottom: 20px;
}

.african-legends-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.african-legends-button {
  background-color: #DAA520;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.african-legends-button:hover {
  background-color: #B38A1A;
  color: #FFFFFF;
}



/* Calendar Section */
.calendar-section {
  padding: 40px 20px;
  background: #2a2a2a; /* Dark background */
  text-align: center;
  color: #ffffff; /* White text */
  font-family: 'Poppins', sans-serif;
}

.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  background: #2a2a2a; /* Slightly lighter dark background */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.calendar-intro {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1em;
  color: #FFFFFF; /* Wale Akinyemi Gold for titles */
  font-weight: 600;
}

.view-calendar-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #DAA520; /* Gold */
  color: #fff;
  text-decoration: none;
  border-radius: 25px; /* Rounded like .btn-join */
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.view-calendar-button:hover {
  background-color: #c69c1e; /* Darker gold on hover */
  transform: scale(1.05);
}


.calendar-button-container {
  text-align: center;
  margin-top: 20px;
}

/* International Collaboration Section */
.international-collaboration-section {
  background-color: #2a2a2a;
  color: #f5f5f5;
  padding: 40px 5%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.image-item {
  flex: 1 1 calc(50% - 20px); /* 2 per row with gap */
  text-align: center;
}

.image-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 5 / 6; /* maintains ~400x480 ratio */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
}

.caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #DAA520;
}

.collaboration-description {
  margin-top: 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}

/* Responsive - stack images on mobile */
@media screen and (max-width: 768px) {
  .image-item {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .collaboration-description {
    font-size: 1rem;
  }
}


/* ✅ Events Gallery Section - Modern & Professional */
.events-gallery-section {
  padding: 40px 20px;
  background: #2a2a2a; /* Dark background */
  text-align: center;
  color: #ddd; /* Light text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.2); /* subtle gold glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #1c1c1c; /* dark card bg */
}

.gallery-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.4);
}

.gallery-grid-item img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
  background-color: #000;
}

.gallery-grid-item:hover img {
  filter: brightness(1);
}

/* Image overlay with event title */
.gallery-grid-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
  color: #FFFFFF; /* gold text */
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid-item:hover::after {
  opacity: 1;
}

.view-full-gallery-btn-container {
  text-align: center;
  margin-top: 20px;
}

.view-full-gallery-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #DAA520; /* gold background */
  color: #FFFFFF; /* dark text */
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(218, 165, 32, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.view-full-gallery-btn:hover {
  background-color: #c69c1e;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(198, 156, 30, 0.7);
}


/* Events Gallery Page Styles */

.gallery-page-section {
  padding: 50px 20px;
  background-color: #2a2a2a;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-page-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Individual Event Block */
.gallery-page-event {
  margin-bottom: 80px;
  border-bottom: 1px solid #eee;
}

/* Event Subtitle */
.gallery-page-event-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Gallery Grid Layout */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 10px;
}

/* Image Card */
.gallery-page-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page-item:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-page-item img {
  width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: contain;
  display: block;
  background-color: #000;
}


/* Back Button Section */
.gallery-page-button-container {
  text-align: center;
  margin-top: 60px;
}

.gallery-page-back-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #1D083D;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(82, 40, 136, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.gallery-page-back-button:hover {
  background-color: #DAA520;
  transform: translateY(-2px);
}




/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.overlay h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.ctav-button {
  padding: 12px 30px;
  background-color: #DAA520;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.ctav-button:hover {
  background-color: #b58900;
}


 /* Inspire to Inspire Leadership Program Section */

.leadership-program-section {
  background-color: #2a2a2a;
  color: #f5f5f5;
  padding: 60px 10%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.leadership-program-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.leadership-text {
  flex: 1;
}


.leadership-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.leadership-image {
  flex: 1;
  text-align: center;
}

.leadership-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive - Stack on small screens */
@media screen and (max-width: 768px) {
  .leadership-program-container {
    flex-direction: column;
    text-align: center;
  }

  .leadership-text, .leadership-image {
    flex: unset;
    width: 100%;
  }

  .leadership-text {
    order: 1;
  }

  .leadership-image {
    order: 2;
  }
}

.coaching-programs-section {
  background-color: #2a2a2a;
  color: #f5f5f5;
  padding: 60px 10%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.coaching-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.coaching-card {
  background-color: #1f1f1f;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.coaching-card:hover {
  transform: translateY(-5px);
}

.coaching-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.coaching-card h3 {
  font-size: 1.5rem;
  color: #DAA520;
  margin-bottom: 15px;
}

.coaching-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive - Stack on mobile */
@media screen and (max-width: 768px) {
  .coaching-cards-container {
    grid-template-columns: 1fr;
  }

  .coaching-card {
    text-align: center;
  }
}
.join-program-button {
    background-color: #DAA520;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: auto; /* Pushes to bottom of the .program-details flex container */
    text-align: center;
    line-height: 1;
}

.join-program-button:hover {
    background-color: #c69c1e;
    transform: scale(1.05);
}


/* Street University Section */

.street-university-section {
  background-color: #2a2a2a;
  color: #f5f5f5;
  padding: 60px 10%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.street-university-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.street-university-text {
  flex: 1;
}

.street-university-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.street-university-text strong {
  color: #90e0ef;
}

.street-university-image {
  flex: 1;
  text-align: center;
}

.street-university-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.street-university-text a {
  text-decoration: none;
  color: #90e0ef; /* Optional: match your existing link color */
  font-weight: bold; /* Optional: to mimic <strong> styling */
}


/* Responsive - Stack on small screens */
@media screen and (max-width: 768px) {
  .street-university-container {
    flex-direction: column;
    text-align: center;
  }

  .street-university-text,
  .street-university-image {
    flex: unset;
    width: 100%;
  }

  .street-university-text {
    order: 1;
  }

  .street-university-image {
    order: 2;
  }
}

/* Books by Dr. Wale Akinyemi Section */

.wale-books-section {
  background-color: #2a2a2a;
  color: #f5f5f5;
  padding: 60px 10%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wale-books-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.wale-books-text {
  flex: 1;
}

.wale-books-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.wale-books-text strong {
  color: #90e0ef;
}

.wale-books-image {
  flex: 1;
  text-align: center;
}

.wale-books-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive - Stack on small screens */
@media screen and (max-width: 768px) {
  .wale-books-container {
    flex-direction: column;
    text-align: center;
  }

  .wale-books-text,
  .wale-books-image {
    flex: unset;
    width: 100%;
  }

  .wale-books-text {
    order: 1;
  }

  .wale-books-image {
    order: 2;
  }
}




.books-section {
  background: #2a2a2a;
  padding: 30px 10%;
  text-align: center;
}


.books-slider {
  max-width: 1200px;
  margin: 0 auto;

}

.book-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index:-1;
}

.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.book-image {
  width: 100%;
  height: 300px;
  object-fit: contain; /* This ensures full image is shown */
  background-color: #f4f4f4; /* Optional: makes gaps less noticeable */
  padding: 10px; /* Optional: adds space around smaller images */
}


.book-details {
  padding: 20px;
  flex-grow: 1;
}

.book-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.stars i {
  color: #FFD700; /* Gold */
  margin: 0 2px;
}

.book-price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 15px 0;
  color: #444;
}

/* Add to Cart Button */
.ctab-button {
  background: #DAA520;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.ctab-button:hover {
  background-color: #b58900;
}

/* Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #333;
}

.swiper-pagination-bullet {
  background: #ccc;
}

.swiper-pagination-bullet-active {
  background: #DAA520;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .book-image {
    height: 250px;
  }

  .book-title {
    font-size: 1.3rem;
  }

  .ctab-button {
    width: 100%;
  }
}
.bookstore-btn-container {
  margin-top: 40px;
  text-align: center;
}

.bookstore-btn {
  background-color: #DAA520;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(218, 165, 32, 0.2);
}

.bookstore-btn:hover {
  background-color: #b58900;
  box-shadow: 0 10px 22px rgba(218, 165, 32, 0.4);
  transform: translateY(-2px);
}


/* Book Section Styling */
#featured-books-section {
    padding: 60px 20px;
    background-color: var(--secondary-color);
}

.featured-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.featured-book-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-book-item:hover {
    transform: translateY(-10px);
}

.featured-book-image {
    width: 100%;
    height: 400px; /* Set a consistent height */
    border-radius: 8px;
    object-fit: cover; /* Ensures the image crops to fit the box without distortion */
    transition: 0.3s ease;
}


.featured-book-image:hover {
    transform: scale(1.05);
}

.featured-book-details {
    text-align: center;
    padding: 10px 0;
}

.featured-book-title {
    font-size: 1.4rem;
    color: #000000;
    margin: 10px 0;
}

.featured-book-stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.book-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.book-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(29, 8, 61, 0.95); /* Deep purple */
  color: #fff;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.book-link:hover .book-description {
  transform: translateY(0);
}


/* Add to Cart Button – Modern & Stylish */
.featured-ctab-button {
  background: #DAA520; /* Golden */
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(218, 165, 32, 0.4);
  cursor: pointer;
}

.featured-ctab-button:hover {
  background-color: #b58900; /* Deeper gold on hover */
  box-shadow: 0 8px 24px rgba(181, 137, 0, 0.5);
  transform: translateY(-2px);
}

/* Specific styles for the Buy International button */
.featured-ctab-button.international-btn {
  display: block;
  width: 100%;
  background: #1D083D; /* Deep purple */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(29, 8, 61, 0.5); /* deep purple shadow */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin-top: 16px; /* spacing below Add to Cart */
  text-decoration: none;
}

/* Hover and focus styles */
.featured-ctab-button.international-btn:hover,
.featured-ctab-button.international-btn:focus {
  background: #3a2e6f; /* Lighter purple */
  box-shadow: 0 8px 20px rgba(58, 46, 111, 0.6);
  outline: none;
}
.featured-ctab-button.wale-store-btn {
  display: block;
  width: 100%;
  background: #3A2E6F; /* Default background color */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 20px 0 12px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(58, 46, 111, 0.3); /* Light purple shadow to match the background */
}

.featured-ctab-button.wale-store-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.featured-ctab-button.wale-store-btn:hover,
.featured-ctab-button.wale-store-btn:focus {
  background: #4B248E; /* Darker purple for hover state */
  box-shadow: 0 6px 20px rgba(75, 36, 142, 0.3), 0 4px 12px rgba(218, 165, 32, 0.2); /* Subtle dark purple shadow with a hint of gold */
  transform: translateY(-2px);
  outline: none;
}



.price-display {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1D083D;
  background-color: #f1ecfb;
  padding: 8px 16px;
  border-radius: 10px;
  border: 2px solid #1D083D;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(29, 8, 61, 0.1);
  transition: all 0.3s ease-in-out;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 20px; /* Adds space before Add to Cart */
}

/* Styled quantity buttons using your color theme */
.quantity-btn {
  background: #1D083D;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 8, 61, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.quantity-btn:hover {
  background: #DAA520;
  box-shadow: 0 6px 18px rgba(218, 165, 32, 0.5);
}

/* Styled quantity display */
.quantity-number {
  min-width: 45px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1D083D;
  padding: 6px 10px;
  border-radius: 10px;
  border: 2px solid #1D083D;
  text-align: center;
  background: #f1ecfb;
}



/*Books Detailes Section Container */
.book-section-details {
  background: #ffffff;
  max-width: 500px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.book-section-details:hover {
  box-shadow: 0 30px 55px rgba(29, 8, 61, 0.2);
  transform: translateY(-6px);
  background-color: #f9f7fb;
}

/* Image */
.book-section-image {
  margin-bottom: 25px;
  user-select: none;
}

.book-section-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease;
}

.book-section-image img:hover {
  transform: scale(1.06);
}

/* Title */
.book-section-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* Star Rating */
.book-section-rating {
  color: #DAA520;
  font-size: 1.6rem;
  margin-bottom: 24px;
  user-select: none;
  letter-spacing: 2px;
}

/* Description */
.book-section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
  padding: 0 15px;
}

/* Quantity Selector */
.book-section-quantity-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  user-select: none;
}

/* Quantity Buttons */
.book-section-quantity-btn {
  background: #1D083D;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 8, 61, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.book-section-quantity-btn:hover {
  background: #DAA520;
  box-shadow: 0 6px 18px rgba(218, 165, 32, 0.5);
}


/* Quantity Display */
.book-section-quantity-display {
  min-width: 45px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1D083D;
  padding: 6px 10px;
  border-radius: 10px;
  border: 2px solid #1D083D;
  text-align: center;
  background: #f1ecfb;
}

/* Price */
.book-section-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 18px;
}

/* Add to Cart Button */
.book-section-add-to-cart-btn {
  display: block;
  width: 100%;
  background: #DAA520; /* Gold */
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(218, 165, 32, 0.5); /* gold shadow */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.book-section-add-to-cart-btn:hover,
.book-section-add-to-cart-btn:focus {
  background: #b8860b; /* Darker gold */
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.5); /* darker gold shadow */
  outline: none;
}

/* Buy International Button */
.book-section-buy-international-btn {
  display: block;
  width: 100%;
  background: #1D083D; /* Deep purple */
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(29, 8, 61, 0.5); /* deep purple shadow */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin-top: 16px; /* spacing below the first button */
}

.book-section-buy-international-btn:hover,
.book-section-buy-international-btn:focus {
  background: #3a2e6f; /* Lighter purple on hover */
  box-shadow: 0 8px 20px rgba(58, 46, 111, 0.6); /* lighter purple shadow */
  outline: none;
}

.book-section-books-by-wale-btn {
  display: inline-block;
  width: 100%;
  background: linear-gradient(135deg, #512DA8, #673AB7); /* Now the former hover gradient */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 12px 0;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.book-section-books-by-wale-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.book-section-books-by-wale-btn:hover,
.book-section-books-by-wale-btn:focus {
  background: linear-gradient(135deg, #6A1B9A, #8E24AA); /* Now the former default gradient */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4); /* Elegant gold glow */
  outline: none;
}



.book-section-view-cart-btn {
  display: block;
  width: 100%;
  background: #4b248e;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 20px 0 12px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.book-section-view-cart-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.book-section-view-cart-btn:hover,
.book-section-view-cart-btn:focus {
  background: #3a2e6f;
  box-shadow: 0 6px 20px rgba(75, 36, 142, 0.4);
  transform: translateY(-2px);
  outline: none;
}


.book-section-go-back-btn {
  display: block;
  width: 100%;
  background: transparent;
  color: #4b248e; /* Deep purple for contrast */
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border: 2px solid #4b248e;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.book-section-go-back-btn:hover,
.book-section-go-back-btn:focus {
  background: #3a2e6f; /* Rich deep purple, matches tone */
  color: #fff;
  box-shadow: 0 6px 18px rgba(75, 36, 142, 0.4); /* Matching purple shadow */
  outline: none;
}



/* General styling for the cart section */
#unique-cart-section {
    font-family: 'Arial', sans-serif;
    background-color: #f9f7ff; /* Light purple background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    color: #000000;
}

#unique-cart-section .cart-section-title {
    font-size: 2rem;
    text-align: center;
    color: #6A2C91; /* Dark Purple */
    margin-bottom: 20px;
}

#unique-cart-items {
    margin-bottom: 20px;
}

#unique-cart-items p {
    font-size: 1.1rem;
    color: #6A2C91;
    text-align: center;
}

/* Styling for the cart items list */
.unique-cart-items-list {
    list-style-type: none;
    padding: 0;
}

.unique-cart-item {
    background-color: #fff;
    border: 1px solid #e0d7f1;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unique-cart-item button {
    background-color: #D4AF37; /* Gold */
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.unique-cart-item button:hover {
    background-color: #B68E29; /* Darker gold */
}

/* Add styling for book title and price */
.unique-cart-item .book-title,
.unique-cart-item .book-price {
    color: black; /* Black for better visibility */
    font-weight: bold;
    font-size: 1rem;
}


/* Total price styling */
#unique-cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6A2C91;
}

.cart-summary {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 20px;
  max-width: 400px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cart-summary p {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
}

.delivery-fee span {
  font-weight: 500;
  color: #555;
}

.grand-total {
  font-size: 20px;
  color: #111;
  font-weight: 600;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 15px;
}

.grand-total span {
  color: #6A2C91; /* red accent for grand total */
  font-weight: bold;
}


/* Checkout button styling */
#unique-checkout-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #6A2C91; /* Dark Purple */
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#unique-checkout-button:hover {
    background-color: #4b1c7f; /* Darker purple */
}

/* Confirmation message */
#confirmation-message {
    background-color: #4CAF50; /* Green for confirmation */
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    width: 80%;
    max-width: 350px;
    display: none;
}

/* Style for Payment Options Section */
#payment-options {
    margin-top: 20px;
    text-align: center;
}

#payment-options h3 {
    margin-bottom: 20px; /* Space between the heading and options */
}

.payment-options-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between payment options */
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-option img {
    margin-bottom: 10px; /* Space between the image and the text */
}

.payment-option p {
    font-size: 1rem;
    color: #6A2C91;
    margin: 5px 0; /* Adds space between each paragraph */
}

.payment-option p strong {
    font-weight: bold; /* Makes the labels bold */
}

/* Section container */
.delivery-section {
  background: #f5f5f5;
  padding: 50px 10%;
  display: flex;
  justify-content: center;
}

.delivery-container {
  background: #fff;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.delivery-title {
  font-size: 2rem;
  color: #2a2a2a;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.delivery-title i {
  color: #DAA520;
  margin-right: 10px;
}

/* Form group layout */
#checkout-form .form-group {
  margin-bottom: 20px;
}

#checkout-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

#checkout-form input,
#checkout-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

#checkout-form input:focus,
#checkout-form textarea:focus {
  border-color: #DAA520;
  outline: none;
}

/* Specific styling for address textarea */
#checkout-form textarea {
  min-height: 90px;
  resize: vertical;
}

/* Button styling */
.submit-order-button {
  background: #DAA520;
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: block;
  margin: 30px auto 0;
  box-shadow: 0 6px 16px rgba(218, 165, 32, 0.3);
}

.submit-order-button:hover {
  background-color: #b58900;
  transform: translateY(-2px);
}




/* Numbers Section */
/* Background for the numbers area */
#numbers{
	padding: 50px 10%;
	background: #2a2a2a;
}
.numbers-background {
    background: #1D083D; /* Dark background */
    padding: 50px 10%;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    margin: 50px 0;
    backdrop-filter: blur(10px); /* Blur effect */
}

/* Flexbox to display number cards in one row */
.numbers-grid {
    display: flex;
    justify-content: space-between; /* Even spacing between the cards */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between number cards */
}

/* Number card styles */
.number-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
    flex: 1; /* Cards take equal width */
    min-width: 150px; /* Minimum width for better text fit */
}

/* Styling for the plus sign */
.numbers-grid .number-card h3 {
    display: inline-block;
    font-size: 3rem;
    color:var(--primary-color);
}

.numbers-grid .number-card span {
    font-size: 3rem;
    color:var(--primary-color);
    margin-left: 5px;
}
.numbers-grid .number-card p {
    color:var(--primary-color);
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .numbers-background {
        padding: 30px 5%; /* Reduced padding for smaller screens */
    }

    .numbers-grid {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center; /* Center the cards */
        gap: 20px; /* Space between the cards */
    }

    .number-card {
        min-width: unset; /* Remove minimum width to allow the cards to be smaller */
        width: 100%; /* Full width of the container */
        padding: 20px;
    }

    .numbers-grid .number-card h3 {
        font-size: 2rem; /* Smaller font size for numbers */
    }

    .numbers-grid .number-card span {
        font-size: 2rem; /* Smaller font size for plus sign */
    }
}



/* Newsletter Section */
.newsletter-section {
  background-image: url('background3.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  color: #fff;
  text-align: center;
}

/* Overlay for readability */
.newsletter-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 30px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Headline */
.newsletter-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Paragraph */
.newsletter-overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #eee;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  width: 60%;
  max-width: 400px;
}
.newsletter-form input[type="text"] {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  width: 60%;
  max-width: 400px;
}

.newsletter-button {
  padding: 12px 30px;
  background-color: #DAA520;
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; /* Removes underline */
}

.newsletter-button:hover {
  background-color: #b58900;
}


/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }
}


/*WhatsApp Channel Section*/
.whatsapp-channel-section {
  background: #2a2a2a;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.whatsapp-channel-container {
  max-width: 800px;
  margin: auto;
}

.whatsapp-channel-section p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
}

.whatsapp-button {
  display: inline-block;
  background: #25D366;
  color: #0d0d0d;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background: #1ebe5d;
}

/*Results Section*/
.results-section {
  background: #2a2a2a; /* Dark background */
  padding: 80px 20px;
  text-align: center;
}

.results-section .section-subtitle {
  font-size: 1.2rem;
  color: #bbb; /* Light grey subtitle */
  margin-bottom: 50px;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.result-card {
  background: #2a2a2a; /* Dark card background */
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow for depth */
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #eee; /* Light text for content */
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); /* Elevated hover effect */
}

.result-card h3 {
  font-size: 2.5rem;
  color: #DAA520; /* Gold number/stat */
  margin-bottom: 10px;
}

.result-card p {
  font-size: 1.1rem;
  color: #ccc; /* Light grey text */
}

/* Responsive */
@media screen and (max-width: 768px) {
  .results-grid {
    flex-direction: column;
    align-items: center;
  }
}


#testimonials {
  padding: 20px 10%;
  background: #2a2a2a; /* Adjusted background */
  color: #eee; /* Light text */
}

/* Testimonial Card Styling */
.testimonial-card {
  background: #333333; /* Slightly lighter than section bg for contrast */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
  transition: 0.3s;
  color: #ddd;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Star Rating Above the Image */
.stars {
  margin-bottom: 20px;
  color: #FFD700;
  font-size: 1.2rem;
}

/* Flexbox for the Name and Image */
.testimonial-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-image {
  margin-right: 15px;
}

.testimonial-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h3 {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin: 0;
  font-weight: 500;
}

/* Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.testimonial-card p,
.testimonial-card .stars {
  margin-bottom: 30px;
}




/* CTA Section with Background Image */
.ctar-section {
  position: relative;
  background-image: url('background2.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Content */
.ctar-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.ctar-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* CTA Button */
.ctar-button {
  background-color: #DAA520;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ctar-button:hover {
  background-color: #b58900;
}

/* Responsive */
@media (max-width: 768px) {
  .ctar-overlay h1 {
    font-size: 2rem;
  }

  .ctar-button {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

/* Start Now Modal */
.start-now-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background with transparency */
    z-index: 999; /* Ensure modal appears on top */
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto; /* Allow scroll if modal content is taller than screen */
}

.start-now-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
    animation: fadeIn 0.3s ease-out; /* Add fade-in animation */
    position: relative;
}

.start-now-modal h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1D083D;
    font-weight: bold;
    text-align: center;
}

.start-now-modal form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.start-now-modal form label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

.start-now-modal form input {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #1D083D;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3e1d68;  /* Darker shade for hover effect */
}

.close-start-now-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    z-index: 1000;
    font-weight: bold;
}

.close-start-now-btn:hover {
    color: #f00; /* Change color on hover */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 500px) {
    .start-now-modal-content {
        padding: 20px;
    }

    .close-start-now-btn {
        top: 8px;
        right: 15px;
        font-size: 1.5rem;
    }
}


/* Contact Section Styles */
/* Contact Section */
#contact {
    padding: 80px 10%;
    background-color: #1D083D;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color:var(--primary-color);
	
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Input & Textarea Styling */
.contact-form .input-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f7f7f7;
    color: #000000;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    background: #ffffff;
    outline: none;
}

/* Placeholder Text */
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #717171;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 15px;
    background:  #DAA520;
    color: #FFFFFF;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button i {
    margin-right: 10px;
    font-size: 1.3rem;
	color:#FFFFFF;
}

.submit-button:hover {
    background: #B8860B ;
    transform: translateY(-5px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #contact {
        padding: 60px 5%;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}


/* Footer Styles */
/* Footer Styling */
#footer {
    background-color: #1D083D;
    color: #FFFFFF;
    padding: 40px 10%;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section (Address, Hours, Phone, Email) */
.footer-left {
    flex: 1;
    padding-right: 20px;
    margin-bottom: 20px;
}

.footer-left p {
    margin: 5px 0;
}

/* Middle Section (Menu) */
.footer-menu {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--accent-color);
}

/* Right Section (Social Links) */
.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color:#FFFFFF;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color:#FFFFFF;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Stack the sections on smaller screens */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust Menu Section */
    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu ul li {
        margin: 5px 0;
    }

    /* Adjust Social Icons */
    .footer-social {
        text-align: center;
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); /* WhatsApp green glow */
}

.chat-icon-img {
    width: 60px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}




@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 20px;
    }

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