/* Added Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Zilla+Slab:wght@400;700&display=swap');

/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Color Scheme */
:root {
    --primary-color: #381DBF; /* Main accent color */
    --secondary-color: #927DFA; /* Secondary accent color */
    --background-light: #F9F9FF; /* Light background */
    --text-dark: #333;
    --text-light: #555;
}

/* Updated Typography */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8; /* Increased for better readability */
    color: var(--text-dark);
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zilla Slab', serif;
    color: #0C0C0D;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Adjusted heading sizes */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #927DFA; /* Underline for emphasis */
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #381DBF; /* Accent color for subheadings */
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

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

/* Header */
header {
    background: none; /* Revert to no background */
    height: auto; /* Remove the fixed height */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
     position: sticky;
    top: 0;
    z-index: 100;
}

header::before {
    content: none; /* Remove the semi-transparent overlay */
}

header .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.logo img {
    height: 80px; /* Adjust as needed */
    display: block;

}

/* Enhanced Navigation */
nav {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically center items */
    justify-content: space-between;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;/* Use flexbox for layout */

}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Mobile Menu Button */
#menu-toggle {
    display: none; /* Hidden by default on larger screens */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  #menu-toggle:focus{
    outline: none;
  }

  #menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: left center;
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
   /* background-color: #f8f8f8;  Light background */
    position: relative;
    background: url('images/section1-image.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 100px 20px;
}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}
.hero-image img{
  border-radius: 50%;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0C0C0D;
    font-family: 'Zilla Slab', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: #0C0C0D;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections (Why Choose, Wonders, About) */
.why-choose, .wonders, .about {
    padding: 3rem 0;
    text-align: center;
}

.why-choose{
    background-color: #F1F3FE;
}

.beauty{
  background-color: #F1F3FE;
}

.why-choose img,.wonders img, .about img {
  border-radius: 50%;
}

.wonders, .about {
     background-color: #fff;
}

.beauty{
    background-color: #F1F3FE;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}
section h6{
    color:#927DFA;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Highlights */
section {
    padding: 3rem 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in-out;
}

section:nth-child(even) {
    background-color: #F9F9FF; /* Light alternate background */
}

section:nth-child(odd) {
    background-color: #FFFFFF;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
}
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

.contact button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 1.5rem auto 0;
    font-family: Inter, sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.contact button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 2rem 0;
    text-align: center;
    color: #f0f0f0; /* Lighter text color for better contrast */
}

footer a {
    color: #e0e0e0; /* Slightly lighter link color */
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-content {
    color: #f0f0f0; /* Ensure all footer content has better contrast */
}

.footer-brand-name {
    color: #f0f0f0; /* Lighter color for better contrast */
    font-weight: bold;
}

.footer-brand-name p {
    color: #e0e0e0; /* Slightly lighter text for better readability */
}

.footer-brand-name h4 {
    color: #f0f0f0; /* Lighter color for better contrast */
}

.social {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    align-items: center;     /* Center the icons vertically */
    gap: 1rem;             /* Space between icons */
    margin-top: 1rem;      /* Space above the icons */

}

/* Adjusted social icon sizes */
.social a {
    display: inline-block; /* Allows setting width/height */
    width: 16px;  /* Further reduced from 20px */
    height: 16px; /* Further reduced from 20px */
}

.social img {
    width: 12px;  /* Further reduced from 15px */
    height: 12px; /* Further reduced from 15px */
    color: #0C0C0D;
    filter: brightness(0) invert(1); /* Ensures the Facebook logo is visible on dark backgrounds */
}

.social a:hover {
    opacity: 0.8; /* Subtle hover effect */
}

/* WhatsApp Styles */
.whatsapp {
    margin-top: 1rem; /* Space above the WhatsApp link */
    text-align: right;
}

.whatsapp a {
    display: inline-block;
    background-color: #25d366; /* WhatsApp green */
    color: #f0f0f0; /* Ensure WhatsApp link is visible */
    padding: 0.25rem 0.5rem; /* Reduced padding to match smaller icon */
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.whatsapp img {
    width: 16px;  /* Reduced from 30px */
    height: 16px; /* Reduced from 30px */
}

.whatsapp a:hover {
    background-color: #128C7E; /* Darker green on hover */
}

/* Slogan Section */
.slogan {
    background-color: #927DFA;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.slogan h2 {
    font-size: 1.8rem;

}

/* Our Programs Page Styles */
.programs-header {
    text-align: center;
    padding: 2rem 0;
    /*background-color: #f8f8f8;*/
}
.programs-header h1{
    margin: 2rem;
    font-size: 3rem;

}
.programs-list {
  padding: 2rem 0;
}

.program-item {
    margin-bottom: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden; /*  image doesn't overflow */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.program-item img {
    width: 100%; /*  image fills the container */
    height: auto;
    display: block;  /* Remove extra space below image */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.program-item h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.program-item a{
  text-decoration: none;
   color: inherit;
}

.program-item h3, .program-item p {
    padding: 1rem;
    text-align: left;
}

.program-item .meta {
    font-size: 0.9rem;
    color: #777;
    margin-top:0;
}

/* Program Detail Page Styles */

.program-detail-header {
    text-align: center;
    padding: 2rem 0;
    /*background-color: #f8f8f8; */
}
.program-detail-header h1{
  font-size: 3rem;
  margin:2rem;
}

.program-detail-content {
    padding: 2rem 0;
}

.program-image {
    width: 100%;  /* Make image responsive */
    max-width: 800px; /* But limit maximum width */
    height: auto;
    display: block;
    margin: 0 auto 2rem; /* Center the image */
    border-radius: 8px;
}

.program-detail-content article {
    font-size: 1rem;
    line-height: 1.6;
}
.program-detail-content p{
 margin:1rem 0;
}

/* Added Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to sections */
section {
    animation: fadeIn 0.8s ease-in-out;
}

/* Button hover animation */
button {
    transition: transform 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Image hover animation */
img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments (Mobile-First) */
@media (max-width: 768px) {
    #menu-toggle {
        display: flex;
    }

    #menu {
      display: none;  /* Hide menu by default on mobile */
      flex-direction: column;
      position: absolute;
      top: 60px;          /*  below header */
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    }
   #menu.show{
      display: flex;  /*  menu visible when 'show' class is present*/
   }

   #menu li {
        width: 100%;  /* Take full width */
        text-align: center;/* Center text */

    }
    nav{
      width:100%;
    }
    .container{
      flex-direction:column;
    }
   .hero-content,
   .hero-image {
        text-align: center;
    }
  .hero-content{
     align-items: center;
  }
    .hero-image {
    margin-top: 1rem; /* less on smaller screen*/

  }
  .hero-content h1 {
        font-size: 2rem; /* Reduce heading size */
    }
  .program-item {
        width: 100%; /* Full width on mobile */
    }

}

/* Enhanced Responsive Design */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (min-width: 769px) {
  /* Style adjustments for larger screen*/
   .hero{
    display:flex;
    align-items: center;
    justify-content: space-between;
   }
  .hero-content, .hero-image{
    flex:1;/*Takes have the space available*/
  }
 .hero-content{
    align-items: flex-start;
    text-align:left;
 }
  .hero-image{
    text-align: right;/*Align image to the right */
  }
  .programs-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1.5rem; /* Spacing between items */
  }
}


/* Larger Screens */
@media (min-width: 1024px) {
  .programs-list{
     grid-template-columns: repeat(2, 1fr); /* Two columns */
  }
}

/* Services section icons */
.services .service img {
    width: 12px;  /* Further reduced from 15px */
    height: 12px;
    margin: 0.5rem 0;
}

/* Ensure icons in footer also follow the smaller size */
footer .social img {
    width: 12px;
    height: 12px;
}

/* Make service section icons smaller */
.services .service img[alt="24/7 Support"],
.services .service img[alt="Custom Tours"],
.services .service img[alt="24/7 Support"],
.services .service img[alt="Custom Tours"],
.services .service img[src*="facebook"],
.services .service img[src*="whatsapp"] {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

/* Or, more generally for all service icons: */
.services .service img {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

/* Force small size for Facebook and WhatsApp icons in services section */
.services .service img[src*="facebook"],
.services .service img[src*="whatsapp"] {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Enlarge Facebook and WhatsApp icons */
.services .service img[alt="24/7 Support"],
.services .service img[alt="Custom Tours"],
footer .social img,
footer .whatsapp img {
    width: 28px; /* Increased size from 24px */
    height: 28px; /* Increased size from 24px */
}

.newsletter h2 {
    color: #f0f0f0; /* Lighter color for better contrast */
}

footer .social img {
    filter: brightness(0) invert(1); /* Ensures the Facebook logo is visible on dark backgrounds */
}

/* Slideshow Styles */
.slideshow {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slideshow-container img {
    width: 100%;
    display: none;
}

.slideshow-container img:first-child {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Image Gallery Styles */
.image-gallery {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Video Gallery Styles */
.video-gallery {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Media Center Access Styles */
.media-center-access {
    text-align: center;
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.media-center-access .inspirational-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.media-center-access .subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.media-center-access .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.media-center-access .cta-button:hover {
    background-color: var(--secondary-color);
}

.media-link span {
    font-size: 3rem; /* Enlarged font size for branching titles */
    font-weight: bold;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-light);
    padding: 50px 20px;
    text-align: center;
}
.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.testimonial {
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Media Center Enhancements */
.large-title {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-top: 10px;
}

footer h5 {
    color: #ffffff; /* White text for better visibility on blue background */
}

/* Enlarge Facebook and WhatsApp icons in the body */
.services .service img {
    width: 28px; /* Increased size from 24px */
    height: 28px; /* Increased size from 24px */
}

/* Further enlarge Facebook and WhatsApp icons */
.services .service img,
footer .social img,
footer .whatsapp img {
    width: 32px; /* Increased size from 28px */
    height: 32px; /* Increased size from 28px */
}

/* Media Center Enhancements */
.huge-title {
    font-size: 3rem; /* Enlarged font size for emphasis */
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    color: var(--primary-color);
}