@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

h1, h2, h3, p, span {
  font-family: 'DM Sans', sans-serif;
}


html {
  scroll-behavior: smooth;
}

html, body {
  cursor: none;  /* Hide default cursor */
}

a {
  text-decoration: none; /* Remove underline */
  color: inherit;        /* Keep icon color unchanged */
}


/* Basic cursor style */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1),
              width 0.15s ease, height 0.15s ease;
  z-index: 9999;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* Hover effect - Make cursor larger with smooth transition */
.custom-cursor.hovered {
  width: 35px;  /* Larger size for hover effect */
  height: 35px;
  border-width: 2px;
  transition: width 0.15s ease, height 0.15s ease;
}

/* Force custom cursor on links and buttons */
a:hover, button:hover, input:hover, [role="button"]:hover {
  cursor: none; /* Hide default pointer */
}



/* hide scrollbar */
::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}
.external {
  overflow: hidden;
  height: 100vh;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0A0A0A;
  color: white;
  line-height: 1.6;
}

/* Header container */
.site-header {
  background: #0A0A0A;
  padding: 16px 24px;
}

/* Navbar layout */
.navbar {
  font-family: 'DM Sans', sans-serif;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* keep brand left, nav right */
  gap: 40px; /* balanced space */
}

/* ---------- Brand ---------- */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand__img {
  margin-left: 46px;
  width: 44px;
  height: auto;
}

.brand__stack {
  display: inline-flex;
  align-items: center;  /* instead of baseline */
  gap: 6px;
}

.brand__name {
  position: relative; 
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1px;
  left: 5px;   /* moves it 30px to the right */  
}

.brand__tag {
  position: relative; 
  font-size: 12px;
  letter-spacing: 5px;
  color: #999;
  margin-top: 5px; /* lift slightly so it aligns with “Fresh” */
  left: 14px;   /* moves it 30px to the right */  
}

/* ---------- Search ---------- */
.search {
  flex: 1;                         /* expand to take center space */
  max-width: 500px;                 /* cap width */
  margin: 0 40px;                   /* spacing on both sides */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;                /* smaller height */
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 9999px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

.search:hover {
  box-shadow: 0 0 5px rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.25);
}

.search:focus-within {
  box-shadow: 0 0 12px rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.55);
}

.search i {
  font-size: 16px;
  color: #888;
}

.search input {
  font-family: 'DM Sans', sans-serif;
  flex: 1;
  font-size: 14px;
  padding: 4px 0;
  background: transparent; /* should fix */
  border: none;
  color: #eaeaea;
  outline: none;
}



/* Suggestion list keeps your existing IDs/classes */
.suggestion-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 20;
}

/* ---------- Nav ---------- */
.primary-nav { min-width: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #eaeaea;
  font-size: 15px;
  transition: opacity .2s ease;
}

.nav-links a:hover { opacity: .8; }

/* ---------- Small width polish (keeps one row longer) ---------- */
@media (max-width: 1100px) {
  .brand__name { font-size: 24px; }
  .brand__tag  { letter-spacing: 4px; font-size: 11px; top: 1px; }
  .nav-links   { gap: 18px; }
  .search      { width: clamp(240px, 36vw, 480px); padding: 8px 14px; }
}

@media (max-width: 960px) {
  .brand__name { font-size: 22px; }
  .nav-links   { gap: 14px; }
  .search      { width: clamp(220px, 34vw, 420px); }
}


/* Shared Arrow Styles */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(40, 40, 40, 0.6);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;  
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  stroke: rgb(191, 191, 191);
  stroke-width: 2.2;
}

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.05);
}


/* Position Left and Right */
.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Search Bar Styling */
.search-bar {
  position: relative; /* important! */
  width: 500px;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  background-color: #1a1a1a;
  border-radius: 9999px;
  border: 1px solid #444;
  width: 100%;
}

/* Smooth transition for the search wrapper */
.search-input-wrapper {
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out; /* Add transition for box-shadow and border */
}

/* Focus effect on the search wrapper */
.search-input-wrapper:focus-within {
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.4); /* Light gray box-shadow on focus */
  border-color: rgba(255, 255, 255, 0.4); /* Light gray border (optional) */
}

/* Styling for the icon inside the search input */
.search-input-wrapper i {
  color: #888; /* Default color */
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease-in-out; /* Smooth transition for the icon color */
}

/* Hero Section */
.worship-section {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f5f5f5;
}

.worship-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.worship-header p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

/* General Carousel Styling */
.carousel {
  position: relative;
  overflow: hidden;
  width: 70%;
  margin: 0 auto;
  height: 500px;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Dot Navigation */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px; /* Increased gap to 10px */
}

.dots .dot {
  width: 8px; /* Same smaller size */
  height: 8px; /* Same smaller size */
  background-color: rgba(255, 255, 255, 0.5); /* Even less transparent */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dots .dot.active {
  background-color: rgba(255, 255, 255, 1); /* Less transparent and solid for active dot */
  transform: scale(1.05); /* 5% larger on active */
}



/* Change icon color when input is focused */
.search-input-wrapper:focus-within i {
  color: #aaa; /* Light gray color when focused */
}

/* Optional: Adding focus styles to input for more visual feedback */
.search-input-wrapper input:focus {
  outline: none; /* Remove the default outline */
  border-color: rgba(255, 255, 255, 0.4); /* Light gray border on focus */
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: white;
}

.suggestion-list {
  position: absolute;
  top: 100%; /* ⬅ pushes it below the input */
  left: 0;
  z-index: 99;
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%; /* match width of input */
  display: none;
}

.suggestion-list li {
  padding: 10px 16px;
  cursor: pointer;
  color: #fff;
}

.suggestion-list li:hover {
  background-color: #333;
}


/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-links li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #fff;
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

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

.prev { left: 20px; }
.next { right: 20px; }

/* Hero Text Overlay */
.hero-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  max-width: 90%;
  z-index: 5;
}
.hero-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.btn {
  padding: 10px 20px;
  background-color: #ffffff11;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 27px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none; /* Remove underline */
  transition: background 0.3s ease;
}
.btn.white {
  font-family: 'DM Sans', sans-serif;
  text-decoration: none; /* Remove underline */
  background-color: white;
  color: #000;
}
.btn:hover {
  background-color: #ffffff33;
  color: white;
}

/* Features Section */
.features {
  text-align: center;
  padding: 60px 30px;
  background-color: #0A0A0A;
}
.features h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.features p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #ccc;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}
.feature-box h4 {
  margin-bottom: 10px;
}
.feature-box a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and transform transition */
}
.feature-box a:hover {
  color: #E74224; /* Set the color on hover (or any other color you prefer) */
  transform: scale(1.1); /* Optional: Slight zoom effect when hovering */
}

.worship-section {
    background-color: #11111100;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    overflow: hidden;
  }
  
  .worship-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .worship-header p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    color: #ccc;
  }

    /*********************************/
  
.horizontal-scroll-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vh;
  transform: rotate(-90deg) translate3d(0,-100vh,0);
  transform-origin: right top;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  height: 100vw;
  perspective: 1px;
	transform-style: preserve-3d;
  padding-bottom: 10rem;
}
.img-wrapper {
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  transform-origin: 50% 50%;
  transform: rotate(90deg) translateZ(.1px) scale(0.9) translateX(0px) translateY(-3vh);
  transition: 1s;
}

.img-wrapper:hover {
 min-height: 65vh;
}

.slower {
  transform: rotate(90deg) translateZ(-.2px) scale(1.1) translateX(0%) translateY(-10vh);
}
.slower1 {
  transform: rotate(90deg) translateZ(-.25px) scale(1.05) translateX(0%) translateY(8vh);
}
.slower2 {
  transform: rotate(90deg) translateZ(-.3px) scale(1.3) translateX(0%) translateY(2vh);
}
.slower-down {
  transform: rotate(90deg) translateZ(-.2px) scale(1.1) translateX(0%) translateY(16vh) ;
}
.faster {
  transform: rotate(90deg) translateZ(.15px) scale(0.8) translateX(0%) translateY(14vh) ;
}
.faster1 {
  transform: rotate(90deg) translateZ(.05px) scale(0.8) translateX(0%) translateY(10vh) ;
}
.fastest {
  transform: rotate(90deg) translateZ(.22px) scale(0.7) translateX(-10vh) translateY(-15vh) ;
}
.vertical {
   transform: rotate(90deg) translateZ(-.15px) scale(1.15) translateX(0%) translateY(0%) ;
}
.last {
  transform: rotate(90deg) translateZ(-.2px) scale(1.1) translateX(25vh) translateY(-8vh) ;
}

.scroll-info {
  top: 1rem;
}

a {
  color: inherit;
  font-weight: 500;
}

.img-wrapper a {
  overflow: hidden;
  display: block;
  padding: 0.5vh ;
  background: #ededed;
  box-shadow: 0 10px 50px #1f1f1f82;
}

a:hover img {
  filter: none;
}

.scroll-info {
  display: flex;
  align-items: center;
}
.icon svg {
    width: 50px;
    fill: currentcolor;
}
  
  /*********************************/


  /* Remove background from buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 1;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  /* Carousel ticker text - BIG */
  .ticker-wrap {
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #333;
    margin-top: 3rem;
    padding: 1rem 0;
    position: relative;
    background: transparent;
  }
  
  .ticker {
    display: inline-block;
    white-space: nowrap;
    animation: scrollTicker 25s linear infinite;
  }
  
  .ticker span {
    display: inline-block;
    font-size: 7rem; /* 🔥 big text like your design */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 1px;
    padding-right: 4rem;
  }
  
  @keyframes scrollTicker {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .services-section {
    background-color: #11111100;
    color: #fff;
    padding: 1rem 1rem;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-image img {
    width: 100%;
    border-radius: 0px;
    display: block;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .service-block {
    margin-bottom: 2rem;
  }
  
  .service-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
  }
  
  .service-block p {
    font-size: 1rem;
    color: #aaa;
    margin: 0.3rem 0 0.8rem;
    text-align: left;
  }
  
  .service-block hr {
    border: none;
    border-top: 1px solid #444;
    margin-top: 1rem;
  }
  .join-horizontal-layout {
    background-color: #E74224;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10px;
    gap: 100px; /* space between title and info */
    flex-wrap: wrap; /* just in case it gets too narrow */
  }
  
  .left-title {
    text-align: left;
  }
  
  .left-title h1 {
    font-size: 140px;
    font-weight: 800;
    margin: 0;
    line-height: 0.86;
  }
  
  .right-info {
    max-width: 500px;
    min-width: 320px;
    text-align: left;
    padding-top: 35px; /* adjust this value until it feels juuust right */
  }
  
  .info-block {
    margin-bottom: 40px;
  }
  
  .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .title-row h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  
  .info-block p {
    margin-top: 10px;
    margin-bottom: 16px;
    font-size: 15px;
    opacity: 0.9;
  }
  
  .circle-arrow {
    display: inline-flex;
    justify-content: center;
    text-decoration: none; /* Removes the underline */
    align-items: center;
    width: 32px;
    height: 32px;
    border: 0.2px solid white;
    border-radius: 50%;
    font-size: 16px;
    margin-left: 12px;
    transform: translateY(15px); /* keeps it lowered */
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    /* added transition for smoothness */
  }
  
  /* on hover */
  .circle-arrow:hover {
    transform: translateY(15px) rotate(-45deg); 
    background-color: white;
    color: #E74224; /* same as your red background color */
  }
  
  
  hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0;
  }
    
  .saved-section {
    display: flex;
    padding: 100px 90px;
    background-color: #E74224; /* same background */
    position: relative;
  }
  
  .saved-left {
    flex: 0 0 55%; /* control how much space the left side takes */
    color: white;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .saved-left h2 {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 50px;
  }
  
  .saved-info-block {
    margin-bottom: 20px;
  }
  
  .saved-info-block h3 {
    font-size: 33px;
    flex: 0 0 55%; /* control how much space the left side takes */
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    margin-bottom: 6px; /* closes gap under heading */
  }
  
  .saved-info-block p {
    font-size: 14px;
    flex: 0 0 55%; /* control how much space the left side takes */
    line-height: 1.5; /* tighter */
    color: #ffd7cf;
    margin: 12; /* important: removes bottom margin */
  }
  
  .saved-info-block hr {
    border: 0.5px solid #ffd7cf;
    flex: 0 0 55%; /* control how much space the left side takes */
    margin: 16px 0 0 0; /* moves it closer to p */
  }
  
  
  .highlighted {
    font-weight: 500;
    color: white;
  }
  
  .saved-right {
    position: relative;
    flex: 1;
    overflow: hidden;
    margin-right: -90px;
    min-height: 100vh;
  }
  
  /* this is good, until here! */
  
  .saved-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  

  .image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent 60%);
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  
  .footer-section {
    background-color: #0A0A0A;
    color: white;
    padding: 80px;
    font-family: 'Inter', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: center;
  }
  
  .footer-left h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 20px;
  }

  .contact-btn {
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 26px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  /* On hover: orange background, dark grey text, subtle grow */
  .contact-btn:hover {
    background: #E74224; /* Orange */
    color: #222;         /* Dark grey */
    transform: scale(1.05); /* Optional: slight zoom */
  }
  
  .footer-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: inline-block; /* or block, depending on what works */
    margin-left: 80px; /* adjust this value as needed */
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  
  .footer-col {
    flex: 1;
    min-width: 160px;
  }
  
  .footer-heading2 {
    font-size: 16px !important; /* Forces the font size to be 24px */
    font-weight: 700;
    color: #ee2d2d;
    margin-bottom: 10px;
  }  
  
  .footer-col p {
    font-size: 13px;
    line-height: 1.7;
    color: #E0E0E0;
  }
  
  .footer-divider {
    margin: 60px 0 30px;
    border: 0.5px solid #2e2e2e;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-socials i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
  
  .footer-socials i:hover {
    background-color: white;
    color: black;
  }
  
  .footer-copy p {
    font-size: 11px;
    color: #999;
    margin: 4px 0;
  }

  /* Remove the underline from the links */
.glowing-link {
  text-decoration: none; /* Remove the underline */
  color: white; /* Default text color */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Glowing effect on hover */
.glowing-link:hover {
  color: #FF5733; /* Change color on hover */
  text-shadow: 0 0 5px rgba(255, 87, 34, 0.7), 0 0 10px rgba(255, 87, 34, 0.7), 0 0 15px rgba(255, 87, 34, 0.7); /* Glowing effect */
}


  /* Smooth scroll and fade-in effect */
body {
  margin: 0;
  overflow-x: hidden;
  font-family: sans-serif;
}

.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text animation when it appears */
.text-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

  