/* styles.css */
:root {
  --orange: #ff6600;
  --dark-bg: #25262a;
  --text-dark: #2d2d2d;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--text-light);
}

/* Improved Navigation */
.navbar {
  background-color: var(--dark-bg);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand .logo {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand .logo:hover {
  transform: scale(1.05);
}

/* Menu Styles */
.navbar-menu {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  margin-right: 2rem;
  gap: 1.5rem;
}

.menu li {
  position: relative;
}

.menu li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: var(--orange);
}

/* Prayer Button */
.pray-btn {
  background-color: #f3702a;
  color: orange;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.pray-btn:hover {
  background-color: #e55c00;
  transform: translateY(-2px);
}


/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(to right, rgba(117, 0, 70, 0.5), rgba(255, 255, 255, 0.05)),
              url('../images/HomepageHeader.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-overlay {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  gap: 2rem;
}

.hero-left h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.hero-right {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.hero-right p {
  font-size: clamp(1rem, 10vw, 1.2rem);
  line-height: 1.5;
}

.start-btn {
  text-align: center;
  border: 2px solid white;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.start-btn:hover {
  background: white;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-overlay {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-right {
    max-width: 100%;
    align-items: center;
  }
  
  .start-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }
  
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .menu {
    flex-direction: column;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  
  .pray-btn {
    margin-top: 1rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 300px;
    margin-top: 0.5rem;
  }
  
  .dropdown-menu a {
    color: var(--text-light);
  }

  .arrow-img {
    display: none !important;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  top: 8px;
}

.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

/* Video Section */
.video-section {
  padding: 4rem 1rem;
  background-color: white;
}

.container{
    color: #fff;
    font-size: 3rem;
    text-align: center;
    font-weight: 50;

}

.container h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  font-weight: 700;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 900px;

}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(246, 243, 243, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-section {
    padding: 2rem 1rem;
  }
  
  .container h1 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 1.5rem 0.5rem;
  }
  
  .container h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.strategic_vision {
          padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 2rem);
          text-align: center;
          background-color: #ffffff;
      }

      .strategic_vision h2 {
          color: #25262a;
          font-size: clamp(1.5rem, 4vw, 2.5rem);
          margin-bottom: 1.5rem;
          font-weight: 700;
          letter-spacing: 0.5px;
      }

      .strategic_vision a {
          color: rgb(245, 142, 24);
          font-size: clamp(1.1rem, 3vw, 1.5rem);
          text-decoration: none;
          display: inline-block;
          padding: 0.75rem 1.5rem;
          border: 2px solid rgb(245, 142, 24);
          border-radius: 8px;
          transition: all 0.3s ease;
          font-weight: 600;
      }

      .strategic_vision a:hover {
          background-color: rgb(245, 142, 24);
          color: white;
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(245, 142, 24, 0.3);
      }

      /* Press Release Section */
      .press-release {
          background-color: rgb(233, 243, 252);
          padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 2rem);
          text-align: center;
          min-height: 70vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
      }

      .press-release h1 {
          color: #25262a;
          font-size: clamp(2.5rem, 8vw, 5rem);
          margin-bottom: clamp(1rem, 3vw, 2rem);
          font-weight: 800;
          letter-spacing: -0.02em;
      }

      .press-release h2 {
          color: #25262a;
          font-size: clamp(1.8rem, 5vw, 3rem);
          margin-bottom: clamp(2rem, 5vw, 3rem);
          font-weight: 600;
          letter-spacing: 0.5px;
      }

      .pope-img {
          
          width:1000px;
          height: auto;
          display: block;
          margin: 0 auto clamp(2rem, 5vw, 3rem) auto;
          border-radius: 15px;
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .pope-img:hover {
          transform: scale(1.02);
          box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
      }

      .press-button {
          display: inline-block;
          padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
          background-color: aliceblue;
          border: 2px solid orangered;
          border-radius: 15px;
          text-decoration: none;
          color: orangered;
          font-weight: bold;
          font-size: clamp(1rem, 2.5vw, 1.2rem);
          transition: all 0.3s ease;
          cursor: pointer;
          box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
      }

      .press-button:hover {
          background-color: orangered;
          border-color: orangered;
          color: aliceblue;
          transform: translateY(-3px);
          box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
      }

      .press-button:active {
          transform: translateY(-1px);
      }

      /* Media Queries for Fine-tuning */
      @media (max-width: 768px) {
          .strategic_vision {
              padding: 2rem 1rem;
          }
          
          .press-release {
              padding: 3rem 1rem;
              min-height: 60vh;
          }
          
          .pope-img {
              width: 90%;
              max-width: 350px;
          }
      }

      @media (max-width: 480px) {
          .strategic_vision h2 {
              font-size: 1.4rem;
          }
          
          .strategic_vision a {
              font-size: 1rem;
              padding: 0.6rem 1.2rem;
          }
          
          .press-release h1 {
              font-size: 2.2rem;
          }
          
          .press-release h2 {
              font-size: 1.6rem;
          }
          
          .press-button {
              padding: 0.7rem 1.3rem;
              font-size: 0.95rem;
          }
      }

      @media (min-width: 1200px) {
          .strategic_vision,
          .press-release {
              max-width: 1200px;
              margin: 0 auto;
          }
      }

      /* Accessibility improvements */
      @media (prefers-reduced-motion: reduce) {
          * {
              animation-duration: 0.01ms !important;
              animation-iteration-count: 1 !important;
              transition-duration: 0.01ms !important;
          }
      }

      /* Focus states for accessibility */
      .strategic_vision a:focus,
      .press-button:focus {
          outline: 3px solid #4A90E2;
          outline-offset: 2px;
      }

  /*AWARENESS SECTION*/        

.awareness-section {
    background-color: white;
    color: #2c2c3a;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2.5rem);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.awareness-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: clamp(2rem, 5vw, 4rem);
}

.left-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
    position: relative;
}

.left-text h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #2c2c3a;
}

.arrow-img {
    width: clamp(200px, 25vw, 300px);
    height: auto;
    margin-top: clamp(1rem, 3vw, 2.5rem);
    margin-left: clamp(2rem, 8vw, 6rem);
    transition: all 0.3s ease;
}

.right-graphic {
    flex: 1;
    min-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.globe-img {
    width: clamp(250px, 35vw, 400px);
    max-width: 100%;
    height: auto;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    transition: transform 0.3s ease;
}

.globe-img:hover {
    transform: scale(1.05);
}

.right-text {
    text-align: center;
}

.right-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin: clamp(0.5rem, 2vw, 0.75rem) 0;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.right-text p:first-child {
    font-weight: 600;
    color: #2c2c3a;
}

.right-text p:last-child {
    font-weight: 700;
    color: #e67e22;
    margin-top: clamp(1rem, 3vw, 1.5rem);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .awareness-content {
        gap: 3rem;
    }
    
    .arrow-img {
        margin-left: clamp(1rem, 5vw, 3rem);
    }
}

/* Mobile Styles - Switch to straight arrow */
@media (max-width: 768px) {
    .awareness-section {
        padding: 3rem 1.5rem;
    }

    .awareness-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .left-text {
        text-align: center;
        order: 1;
    }

    .left-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    /* Switch to straight arrow on mobile */
    .arrow-img {
        content: url('../banners/DownardArrow.png');
        
          width: 100px; /* Smaller size - adjust this value as needed */
        height: auto;
        display: inline-flex;
        margin: 0 auto; /* Double protection for centering */
      
        
    }

    .right-graphic {
        order: 2;
        min-width: 100%;
    }

    .globe-img {
        width: 280px;
        margin-bottom: 1.5rem;
    }

    .right-text p {
        font-size: 1.05rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .awareness-section {
        padding: 2rem 1rem;
    }

    .left-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .arrow-img {
        width: 150px;
        margin-top: 1rem;
        align-items: center;
        justify-self: center;
    }

    .globe-img {
        width: 240px;
    }

    .right-text p {
        font-size: 1rem;
    }

    .awareness-content {
        gap: 2rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .awareness-content {
        max-width: 1400px;
        gap: 5rem;
    }

    .left-text h1 {
        font-size: 3.2rem;
    }

    .arrow-img {
        width: 350px;
        margin-left: 8rem;
    }

    .globe-img {
        width: 450px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .globe-img,
    .arrow-img {
        transition: none;
    }
    
    .globe-img:hover {
        transform: none;
    }
}

/* Focus states for accessibility */
.awareness-section:focus-within {
    outline: 2px solid #4A90E2;
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .right-text p:last-child {
        color: #d35400;
        font-weight: 800;
    }
}


/*MISSION SECTION*/


.mission-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 10%;
  background-color: #f4f4f9; /* light grayish blue */
  gap: 5%;
}

.mission-left {
  flex: 1;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.mission-goal {
  font-size: 3rem;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.2;
}

.highlight {
  position: relative;
  display: inline-block;
  color: rgb(205, 205, 0);
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
  background-color: #e0db58; /* soft yellow highlight */
  z-index: -1;
  transform: rotate(-2deg);
}

.mission-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action img {
  width: 40px;
  margin-bottom: 10px;
}

.action h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #2d2d2d;
  margin: 0;
}

.action p {
  margin-top: 10px;
  font-size: 1rem;
  color: #444;
}
/*arrow*/
html {
  scroll-behavior: smooth;
}

.scroll-wrapper {
  text-align: center;
  margin-top: 40px;
}

.scroll-arrow {
  width: 50px; /* adjust as needed */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-arrow:hover {
  transform: translateY(5px);
}

/*i frames section*/

/* ===== VIDEO SECTION STYLES ===== */
.video-section {
  background-color: #1a1a2e;
  padding: 4rem 1rem;
  color: white;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== VIDEO LAYOUT ===== */
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-block {
  flex: 1 1 45%;
  max-width: 560px;
}

.video-block iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-section h2{
  margin-top: 30px;
  margin-bottom: 80px;
  font-size: 2rem;
}

.video-block p {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #f1f1f1;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
    align-items: center;
  }

  .video-block {
    width: 100%;
    max-width: 100%;
  }

  .section-heading {
    font-size: 2rem;
  }

  .video-block p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.3rem;
  }
}

/* prayer-section*/

.prayer-section {
  background-image: url('./images/PrayerImage.jpg'); /* update the path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px; /* slightly taller to fit larger text */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay {
  color: #222; /* dark text for contrast */
  padding: 20px;
  max-width: 90%;
}

.overlay h4 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 20px;
}

.overlay h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .overlay h1 {
    font-size: 32px;
  }

  .overlay h4 {
    font-size: 18px;
  }
}

/*prayer-text-section*/

.prayer-text-section {
  background-color: white;
  text-align: center;
  padding: 40px 20px;
}

.prayer-intro {
  font-size: 24px;
  color: #1f1f1f;
  margin-bottom: 40px;
  font-family: 'Arial', sans-serif;
}

.prayer-text p {
  font-size: 70px;
  font-weight: 400;
  color: #f3702a; /* soft orange */
  line-height: 1;
  font-family: 'Helvetica Neue', sans-serif;
}

@media (max-width: 768px) {
  .prayer-text p {
    font-size: 32px;
  }
}

/*counter*/
/* Counter Section */
.prayer-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prompt {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.pray-btn {
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 1.2rem;
}

.pray-btn:hover {
  background-color: #333;
}

.counter {
  font-size: 1.2rem;
}

.label {
  margin-right: 5px;
  color: #333;
}

.count {
  font-weight: bold;
  font-size: 2rem;
  color: #000;
}

.thank-you{
  color: green;
}



/* banners*/

.banner-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #fff;
}

.banner-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.banner-content img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 8px; /* optional: makes images look nicer */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* optional */
}

/* Optional: tighter padding on smaller screens */
@media screen and (max-width: 768px) {
  .banner-section {
    padding: 20px 20px;
  }
}

/* commision section*/
.video-hero {
  background: url('../images/PeopleImage.jpg') center center / cover no-repeat;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Yellow overlay */
.video-hero-overlay {
  width: 100%;
  background-size: contain;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-hero-content {
  text-align: center;
  color: #333;
  padding: 1rem;
}

.video-hero .subheading {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.video-hero .title {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Button */
.cta-button {
  margin-top: 100px;
  padding: 0.6rem 1.5rem;
  border: 2px solid #333;
  border-radius: 25px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
  color: #fff;
}

/* behind all this*/

.info-section {
  background-color: #fff;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
}

.info-block h2 {
  font-size: 4rem;
  color: #2d2d35;
  margin-bottom: 1rem;
}

.info-block p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/*e2p section*/

.e2p-section {
  background: url('/images/PeopleImage.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 60px 20px;
  color: #000;
  text-align: center;
}

.e2p-overlay {
  padding: 40px 20px;
}

.e2p-overlay h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.e2p-overlay h2,
.e2p-overlay h3 {
  margin-top: 1rem;
  font-weight: 500;
}

.e2p-overlay p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Horizontal on desktop */
.video-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Maintain aspect ratio and responsive scaling */
.iframe-container {
  flex: 1 1 45%;
  max-width: 45%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Stack vertically on small screens */
@media (max-width: 768px) {
  .iframe-container {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.visit-site-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.visit-site-btn:hover {
  background-color: #000;
  color: #fff;
}


/* footer */
.site-footer {
  background-color: #2c2b35;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
}


/*carousal set-up css*/
.image-carousel {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.carousel-heading {
  font-size: 2rem;
  color: #2c2c3a;
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 450px; /* Taller and immersive */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}


.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-track img {
 width: 100%;
  height: 100%;
  object-fit: contain; /* Full image shown, no crop */
  flex-shrink: 0;
  border-radius: 12px;
  background-color: white;
}



.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.9);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
  background-color: #ff6600;
  color: white;
}

.carousel-btn.prev {
  left: -50px;
}

.carousel-btn.next {
  right: -50px;
}
