.elementor-26 .elementor-element.elementor-element-afe95f4{--display:flex;}.elementor-26 .elementor-element.elementor-element-f6451fb{--display:flex;}.elementor-26 .elementor-element.elementor-element-5139163{--display:flex;}.elementor-26 .elementor-element.elementor-element-3e76b14{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-26 .elementor-element.elementor-element-f36d359{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-63ad157 */.home-hero {
    margin-top: 50px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, gold, blue, white);
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero .home-content {
  max-width: 1000px;
  width: 100%;
  background: transparent; /* No background here */
  padding: 40px 20px;
  border-radius: 30px;
  animation: slideInFromRight 1s ease-out forwards;
}

.home-hero .section {
  background-color: rgba(255, 255, 255, 0.95); /* Optional: rounded white card look */
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-hero .section h1,
.home-hero .section h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.home-hero .section p {
  font-size: 1.1rem;
  word-break: keep-word;
}

/* Animations */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .home-hero {
    padding: 20px 10px;
  }

  .home-hero .home-content {
    padding: 20px 15px;
  }

  .home-hero .section h1,
  .home-hero .section h2 {
    font-size: 1.5rem;
  }

  .home-hero .section p {
    font-size: 1rem;
    line-height: 1.6;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0054df7 */.did-you-know-slider {
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #2196f3, #ff9800, #ffffff);
  padding: 40px 10px 30px;
  text-align: center;
  position: relative;
}

.slider {
  display: flex;
  width: fit-content;
  animation: scroll 60s linear infinite;
}

/* Pause animation on hover */
.did-you-know-slider:hover .slider {
  animation-play-state: paused;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 30px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b4d3e;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dcefdc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-right: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  line-height: 1.6;
}

/* Hover effect */
.slide:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1000%); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    font-size: 1rem;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .slide {
    font-size: 0.95rem;
    padding: 15px 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-16e0611 */body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(45deg, gold, #007bff, white);
  background-attachment: fixed;
  background-size: cover;
}

.excerpts-wrapper {
  padding: 50px 20px;
}

.excerpts-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Always 2-2 on larger screens */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .excerpts-container {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }



  .excerpt-card {
    text-align: center;
  }

  .excerpt-card h2,
  .excerpt-card p {
    text-align: center;
  }
}

.excerpt-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excerpt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.excerpt-card h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.excerpt-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  background: #0077b6;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #005f8f;
}

/* Optional colored backgrounds for shape accents */
.shape-background {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-two { background: #2980b9; }
.shape-three { background: #e67e22; }
.shape-four { background: #16a085; }
.shape-five { background: #8e44ad; }

.excerpt-card * {
  position: relative;
  z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .excerpt-card h2 {
    font-size: 1.1rem;
  }

  .excerpt-card p {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a19c86 */.dfc-video-section {
  background: linear-gradient(to right, gold, #007bff, white);
  padding: 60px 20px;
  text-align: center;
  color: #1b4d3e;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.video-description {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .video-title {
    font-size: 1.5rem;
  }

  .video-description {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3a131e3 */.dfc-gallery {
  padding: 50px 20px;
  background: linear-gradient(to right, gold, #007bff, white);
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1b4d3e;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  border-radius: 15px;
}

.carousel-item:hover img {
  transform: scale(1.1);
}

.caption-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  border-radius: 0 0 15px 15px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.lightbox-caption {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  max-width: 90%;
}

/* Swipe functionality for mobile */
@media (max-width: 768px) {
  .carousel-container {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }

  .carousel {
    display: flex;
    scroll-snap-type: x mandatory;
  }

  .carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .gallery-title {
    font-size: 1.8rem;
  }
  .caption-overlay {
    font-size: 0.9rem;
    padding: 8px;
  }
}/* End custom CSS */