/******************************************
    File Name: custom.css
/****************************************** */

/** ADD YOUR AWESOME CODES HERE **/


#christmasTimea {
    color: #000000; /* or any other color that contrasts with the background */
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}


  .service-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.btn {
    border-radius: 30px;
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #040633;
    color: white;
}

.btn-primary:hover {
    background-color: #040633 ;
}


p {
    color: #444; /* Modify the color */
    font-size: 16px; /* Adjust font size */
    line-height: 1.5; /* Improve readability */
    font-family: Open Sans,sans-serif; /* Choose a clear font */
}



/* Testimonials Section */
#testimonials {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  
  /* Section Title */
  #testimonials .section-title h3 {
    color: #040633;
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  #testimonials .section-title p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
  }
  
  /* Testimonials Carousel */
  #testimonials .owl-carousel .testimonial {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #testimonials .owl-carousel .testimonial:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* Testimonial Image */
  #testimonials .testimonial .testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #040633;
    object-fit: cover; /* Ensures the image is cropped and centered */
    display: block;
  }
  
  /* Testimonial Content */
  #testimonials .testimonial .testimonial-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Verdana', sans-serif;
    margin-bottom: 20px;
  }
  
  #testimonials .testimonial .testimonial-content h5 {
    color: #040633;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    margin-top: 10px;
  }
  

  /* Testimonials Section Buttons */
#testimonials .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
  
  #testimonials .owl-nav button {
    background-color: #040633;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
  }
  
  #testimonials .owl-nav button:hover {
    background-color: #333;
  }
  
  /* Left Button */
  #testimonials .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    transform: translate(-40%, 0); /* Moves it slightly outside the container */
  }
  
  /* Right Button */
  #testimonials .owl-nav .owl-next {
    position: absolute;
    right: 0;
    transform: translate(50%, 0); /* Moves it slightly outside the container */
  }
  
  /* Ensure Buttons Are Outside the Testimonial Container */
  #testimonials .owl-carousel {
    position: relative;
    padding: 0 60px; /* Leaves space for the buttons */
  }
  


  .hidden-points {
    display: none;
 }
 .btn-more {
    background-color: #ffffff;
    color: white;
    font-size: 14px;
    margin-top: 10px;
 }

 /* Prevent color change on click */
.link-more {
  color: #007bff;
  text-decoration: underline;
}
.link-more:visited {
  color: #007bff; /* Keep the color the same as unvisited */
  text-decoration: underline;
}


/* Default styles for larger screens */
.img-responsive.img-rounded {
  max-height: 330px;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* Styles for mobile view */
@media (max-width: 768px) {
  .img-responsive.img-rounded {
      max-height: 360px !important; /* Ensures the height is restricted on mobile */
      object-fit: cover; /* Maintains aspect ratio with cropping */
      width: auto; /* Ensures the image spans the full container width */
  }
}








/* General container styles */
.container.block-padding.story-section {
  padding: 2rem 1rem;
  background-color: #f9f9f9; /* Light background for readability */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Section heading styles */
.section-heading h2 {
  font-size: 4.5rem; /* Increased font size */
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Video styles */
.video-background .orea-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Enhance video appearance */
}

/* Content styles */
.video-background .content {
  padding: 1rem;
}

.video-background .content h3 {
  font-size: 3rem; /* Increased font size */
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.video-background .content p {
  font-size: 1.5rem; /* Increased font size for paragraph text */
  color: #555;
  line-height: 1.8; /* Adjusted line height for better readability */
  text-align: justify;
}

/* Responsive styles */
@media (max-width: 768px) {
  .video-background .content h3 {
      font-size: 2.5rem; /* Responsive font size for headings */
      padding: 10px 10px 10px 10px;
  }

  .video-background .content p {
      font-size: 1.5rem; /* Responsive font size for paragraph text */
      padding: 10px 10px 10px 10px;
  }

  /* Adjust padding and layout for smaller screens */
  .container.block-padding.story-section {
      padding: 1.3rem;
  }

  .video-background {
      flex-direction: column; /* Stack content and video vertically */
  }

  .video-background .orea-video {
      margin-bottom: 1rem;
      border-radius: 8px;
  }

  .video-background .content {
      padding: 0.5rem;
  }
}

/* Responsive styles for very small screens */
@media (max-width: 480px) {
  .section-heading h2 {
      font-size: 2.5rem; /* Increased heading size for smaller screens */
  }

  .video-background .content h3 {
      font-size: 1.5rem; /* Adjusted heading size */
  }

  .video-background .content p {
      font-size: 1rem; /* Adjusted paragraph text size */
  }
}



.countdown-container {
  text-align: center;
  margin-bottom: 20px; /* Space below the countdown container */
}

.countdown-message {
  margin-top: 40px; /* Space above the paragraph */
  margin-bottom: 20px; /* Space below the paragraph */
  font-size: 1.2em; /* Adjust font size for better readability */
  color: #333; /* Text color */
  line-height: 1.6; /* Adjust line spacing */
}






.btna {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-darkq {
  border: 1px solid #ececec !important;
  color: #040633;
  background-color: transparent;
  float: left;
  transition: all 0.3s ease; /* Smooth hover transition */
}

.btn-darkq:hover {
  color: #fff; /* Change text color to white */
  background-color: red; /* Change background to red */
  border-color: red; /* Change border to red */
}

.btn-radiusa {
  border-radius: 30px; /* Adds rounded corners */
}

.btn-brda {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

body.christmas_version .btn-darkq {
  border: 1px solid #040633 !important;
}

@media (max-width: 768px) {
  .btn-darkq {
    float: none; /* Center on mobile */
    margin: 15px auto; /* Center and add spacing */
    display: block; /* Ensure the button takes full width */
    width: 100%; /* Fit the container width */
    max-width: 200px; /* Keep the button size manageable */
  }
}
