/* Base font and colors */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* Container with max width and responsive padding */
.container {
  max-width: 1000px;
  margin: auto;
}

strong {
  font-weight: bold;
}

.page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2vw 3vw;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header and footer styling */
header, footer {
  margin-bottom: 10px;
  text-align: left;
  padding: 10px 0;
}

/* Navbar Styling */
.navbar {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: #335596 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e3f2fd !important;
}

.btn {
  background: linear-gradient(135deg, #7cb342 0%, #2e7d32 100%);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 0.25rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Image Carousel Section */
.carousel-section {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-carousel {
  width: 100%;
  max-height: 650px; /* Adjust the height of the carousel */
  display: flex;
  justify-content: center; /* Align slides to center */
  align-items: center; /* Ensure the content is centered */
  position: relative;
}

.carousel-slide {
  position: relative;
  overflow: hidden;
  width: 100%; /* Ensure slides take full width of container */
}

.carousel-image {
  width: 100%; /* Ensure images stretch to fill the container */
  height: 100%; /* Make the images take the full height */
  object-fit: contain; /* Ensure the full image is visible */
  display: block;
  transition: transform 0.5s ease;
}

.carousel-image.loaded {
  opacity: 1;
}

.carousel-slide:hover .carousel-image {
  transform: scale(1.05);
}

/* Slick Carousel Custom Styling */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  color: #fff;
  font-size: 12px;
  opacity: 0.7;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #7cb342;
}

.slick-prev, .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 32px; /* Size of the arrows */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute; /* Ensure arrows are positioned inside the carousel */
  top: 50%; /* Position vertically at the middle */
  transform: translateY(-50%); /* Correct vertical positioning */
  transition: all 0.3s ease;
  opacity: 0.7; /* Make arrows slightly transparent initially */
}

.slick-prev:before, .slick-next:before {
  content: "";
  color: #fff;
  font-size: 32px; /* Size of the arrows */
}

.slick-prev:hover, .slick-next:hover {
  background: rgba(0, 0, 0, 0.8); /* Darker background on hover */
  transform: scale(1.2); /* Arrows grow in size */
  opacity: 1; /* Make arrows fully visible */
}

/* Optional: Add styles for when the arrows are hovered or focused */
.slick-prev:focus, .slick-next:focus {
 outline: none; /* Remove outline when focused */
  background: rgba(0, 0, 0, 0.7); /* Darker background on focus */
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

/* Main content area */
main {
  padding: 0;
}

section {
  margin-bottom: 2.5rem;
}

/* Title section */
.title-section {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
  border-radius: 10px;
  margin-top: 2rem;
}

.title-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-top: 0;
}

/* Section headings */
h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 3px solid #e3f2fd;
  padding-bottom: 0.5rem;
  position: relative;
}

h2:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #1565c0 0%, #7cb342 100%);
}

h3 {
  font-size: 1.4rem;
  color: #1565c0;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Links */
a {
  color: #1565c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0a3d62;
  text-decoration: underline;
}

.bold-text {
  font-weight: 700;
}

/* Lists */
ul.custom-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

ul.custom-list li:hover {
  transform: translateX(5px);
}

ul.custom-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1565c0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Diamond bullet list */
ul.diamond-bullet-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul.diamond-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

ul.diamond-bullet-list li:hover {
  transform: translateX(5px);
}

ul.diamond-bullet-list li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #7cb342;
  font-weight: bold;
}

/* Key note box */
.key-note {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border-left: 4px solid #1565c0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.key-note:hover {
  transform: translateY(-2px);
}

.key-note p {
  margin: 0;
}

/* Highlight boxes */
.highlight-box {
  background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #ff9800;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-box h3 {
  color: #e65100;
  margin-top: 0;
}

/* Quote box */
.quote-box {
  background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
  border-left: 4px solid #7cb342;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
}

/* Strategy boxes */
.strategy-box {
  background: linear-gradient(135deg, #f1f8e9 0%, #e0f2f1 100%);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #7cb342;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.strategy-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.strategy-box h3 {
  color: #33691e;
  margin-top: 0;
}

/* Feature boxes */
.feature-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #2e7d32;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-box h3 {
  color: #2e7d32;
  margin-top: 0;
}

/* Call to Action Section */
.cta-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #1565c0;
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
  color: #0a3d62;
  margin-top: 0;
  font-size: 1.6rem;
}

.cta-benefits {
  margin-top: 1.5rem;
  text-align: left;
}

.cta-benefits h4 {
  color: #1565c0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #7cb342;
}

.contact-title {
  color: #1565c0;
  margin-top: 0;
  font-size: 1.5rem;
}

.contact-cta {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #2e7d32;
}

/* Footer Styling */
footer {
  background: linear-gradient(135deg, #0a3d62 0%, #1565c0 100%);
  margin-top: 3rem;
}

footer h5 {
  color: #e3f2fd;
  font-weight: 600;
}

footer p, footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e3f2fd;
  text-decoration: underline;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-box, .strategy-box, .feature-box {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }
  
  .title-section h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  p, ul.custom-list li, ul.diamond-bullet-list li {
    font-size: 1rem;
  }
  
  .strategy-box, .feature-box, .highlight-box {
    padding: 1rem;
  }
  
  .carousel-image {
    height: 250px;
  }
  
  .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  .title-section h1 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .strategy-box, .feature-box, .highlight-box {
    padding: 0.75rem;
  }
  
  .carousel-image {
    height: 200px;
  }
  
  .cta-box, .contact-box {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
.carousel-image {
  opacity: 10;
  transition: opacity 0.5s ease;
}

.carousel-image.loaded {
  opacity: 10;
}
