@font-face {
    font-family: 'Georgia';
    src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1736780519/georgia-webfont_msexsm.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

 @font-face {
      font-family: 'Arial';
      src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1741192542/ARIAL_bq68bn.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    body {
      font-family: 'Arial', sans-serif;
    }

/* Apply the fonts globally or selectively */
body {
    font-family: 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}



/* === Global Styles === */
body {
    font-family: Georgia, serif;
    background-color: #fff !important;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;    
    margin: 0 auto; 
    padding: 10px;
  margin-top: -3rem;
}

/* ===== VIDEO GALLERY LAYOUT ===== */
.video-gallery {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: single column */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-gallery {
    grid-template-columns: 1fr 1fr; /* Desktop: 2 columns */
     max-width: 1200px;
  }
}

/* ===== VIDEO CARD ===== */
.video-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Thumbnail Container maintains 16:9 aspect ratio */
.thumbnail-container {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 ratio */
  border: 1px solid #ccc;
}

/* Thumbnail Image */
.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PLAY BUTTON ===== */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
  z-index: 2;
}

.play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 20px solid #ffffff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  opacity: 1;
}

/* ===== VIDEO ELEMENT (Initially Hidden) ===== */
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1;
  background: #000;
}

/* ===== VIDEO TITLE (Below Thumbnail) ===== */
.video-title {
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  padding: 5px 0;
  font-family: Georgia, serif;
  font-weight: bold;
}

.recents {
    text-align: center;
    padding: 60px 20px;
    position: relative;
  margin-top: -2rem;
}

.recents h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #000;
}

.recents p {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #333;
    margin: 10px 0;
  font-weight: bold;
}

.recents a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

.recents-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    border: 1px solid #000;
    color: #000;
    background: #efbe35;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    cursor: pointer;
  font-weight: bold;
    transition: 0.3s ease;
  border-radius: 5px;
}

.recents-btn:hover {
    background: #efbe35;
    color: black;
   transform: scale(1.1);
}

@media (max-width: 768px) {
.recents {
  margin-top: -4rem;
  }
}


/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
    background-color: #fff !important;
}

/* Testimonial Section */
.testimonial {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Typography */
.testimonial-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.testimonial-text {
    font-size: 23px;
    line-height: 1.6;
    color: #555;
    max-width: 1200px;
    margin: 0 auto 20px;
}

/* Quote Icon */
.quote-icon {
    font-size: 40px;
    color: #555;
    margin-bottom: 10px;
}

/* Author & Position */
.testimonial-author {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.testimonial-position {
    font-size: 16px;
    color: #777;
}

/* Marketing Text Section */
.marketing-text {
    margin: 20px 0; /* Adjust as needed */
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
 max-width: 900px;
  margin-left: 110px;
    font-size: 20px;
  line-height: 1.5;
  margin-top: -20px;
    text-align: center;
  font-family: Arial, serif;
}




/* === Responsive Design === */
@media (max-width: 768px) {
    .video-title {
     font-size: 1rem;
}
}

/* Reset some default spacing */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

/* Gallery container with light pink background */
.logo-gallery {
  background-color: #fff;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: -60px;
  margin-bottom: 50px;
}

.logo-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* On smaller screens, display three logos per row */
@media (max-width: 768px) {
  .logo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
     .logo-gallery img:last-child {
        display: none;
      }
}



/* Base Styles */
body {
    margin: 0;
    font-family: Georgia, sans-serif;
   background-color: #fff;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #fff;
  max-width: 1200px;
  margin-left: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Georgia', sans-serif; 
    font-size: 36px; 
    font-weight: bold;
    text-decoration: none;
    color: #333; 
   margin-left: 40px;
}

.logo a {
    text-decoration: none; 
    color: inherit; 
}

.logo a:hover {
    color: #333; 
    text-decoration: underline; 
}


/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-nav ul li {
    margin-left: 50px;
}

.main-nav ul li a {
    text-decoration: none; /* Remove underlines */
    color: #333;
    font-size: 18px;
   font-weight: bold;
}

.main-nav ul li a:hover {
    text-decoration: underline;
}

/* Hamburger Menu Icon */
.menu-toggle {
    cursor: pointer;
    width: 40px; /* Increase clickable area width */
    height: 30px; /* Increase clickable area height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-top: 20px;
}

.sidebar-nav.active {
    right: 0;
}

/* Close Button */
.close-btn {
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transform: scaleX(-1);
    transition: transform 0.4s ease-in-out;
    margin-top: -10px;
}

/* Sidebar Menu */
.sidebar-menu,
.sidebar-additional {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    font-size: 25px;
    margin-top: 20px;
  font-weight: bold;
}

.sidebar-menu {
    transition: right 0.4s ease-in-out;
}

.sidebar-menu li,
.sidebar-additional li {
    /* No border lines */
}

.sidebar-menu li a,
.sidebar-additional li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none; /* Remove underlines */
}

.sidebar-additional li a {
    text-decoration: underline;
}

.sidebar-menu li a:hover {
    background-color: #f0f0f0;
    text-decoration: none; /* Ensure underlines don't appear on hover */
}

/* Icons on the Left */
.icon {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
}

/* Additional Items Styling */
.sidebar-additional li a {
    font-size: 18px !important;
    color: #000;
    margin-top: -30px;
}

.sidebar-additional li a:hover .icon {
    opacity: 0.7;
}


/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 900;
}

#overlay.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
  /* Ensure the nav list itself uses wrapping and centered items */
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    z-index: 100;
  }
  
  /* Reduce spacing between nav items */
  .main-nav ul li {
    margin: 5px;
    z-index: 100;
  }
  
  /* Make each nav link a block with increased padding and a sufficient minimum height */
  .main-nav ul li a {
    display: block;
    padding: 12px 15px;
    min-height: 48px; /* Recommended touch target size */
    font-size: 14px;
    text-align: center;
    z-index: 100;
  }
  
  /* Adjust the logo for mobile */
  .logo {
    font-size: 24px;
    margin-left: -15px;
    z-index: 100;
  }
  
  /* Header spacing adjustments */
  header {
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 30px;
}


  
  /* Sidebar adjustments on mobile (if needed) */
  .sidebar-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 340px;
  }
  
  .sidebar-menu,
  .sidebar-additional {
    font-size: 20px;
  }
  
  .submenu li a {
    font-size: 17px;
  }
  
  /* Hide specific nav items if needed (adjust nth-child indices as necessary) */
  .main-nav ul li:nth-child(1),
  .main-nav ul li:nth-child(3) {
    display: none;
  }
  
  .main-nav ul li:nth-child(2) {
    margin-bottom: -3px;
    margin-right: -5px;
}
}


//* Footer Wrapper */
.footer-wrapper {
    overflow: hidden; /* To contain floated elements and negative margins */
}

/* Info Section */
.info-section {
    padding: 2rem 1rem;
    background-color: #d0ccc4; /* Gray background */
    margin-bottom: -2rem; /* Overlaps the next section */
    border-radius: 15px 15px 0 0; 
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Info Container */
.info-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

/* */
.info-logo img {
    max-width: 250px;
}


/* Info Links */
.info-links {
    color: #000;
}

.info-links ul {
    list-style: none;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-weight: normal;
    color: inherit;
}

.info-links ul li {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    color: inherit;
}

.info-links ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.info-links ul li a:hover {
    text-decoration: underline;
    color: inherit;
}

.info-links strong {
    font-weight: bold;
    color: inherit;
}

.email {
    text-transform: none !important; 
}

/* Hide mobile headers on desktop */
.mobile {
    display: none;
}

/* Hide desktop version on mobile and show mobile headers */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
       text-decoration: underline;
    text-decoration-color: #000; /* Ensuring underline color */
}
    .info-logo img {
    max-width: 150px;
}
    }




/* Divider Line */
.footer-divider-wrapper {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3; /* Increase z-index */
    background-color: #000; /* Background for the divider wrapper */
    padding: 0rem 0; /* Add some vertical padding */
}

.footer-divider {
    width: 90%; /* Slightly less than 100% for a margin */
    height: 1px; /* Set a visible thickness */
    background-color: #000;
    margin: 0 auto; /* Center the divider */
    display: block;
    margin-top: 2rem
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    padding: 2rem 1rem; 
    background-color: #d0ccc4;
    font-family: Georgia, serif;
    font-weight: normal;
    text-transform: none;
    margin-top: -1rem;
    position: relative;
    z-index: 2;
    color: #000;
}

.newsletter-section h3 {
    font-family: Georgia, serif;
    font-size: 2rem;
    text-transform: none;
    margin-bottom: 1rem;
    color: #000;
}

.newsletter-section p {
    margin-bottom: 1rem; 
    font-size: 1.3rem;
    color: #000;
}

.newsletter-section form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-section form input {
    display: inline-block;
    padding: 10px;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: bold;
    width: 200px;
    text-align: center; 
    border: 1px solid #333;
    border-radius: 5px;
    color: #000;
  margin-right: -5px;
}

.newsletter-section form button {
    background-color: #efbe35;
    color: #000;
    padding: 10px;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: none;
    border: none;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #000;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.newsletter-section form button:hover {
    background-color: #d4a932;
}

#thankYouMessage {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1.5rem;
    color: #000;
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === button‑spinner morph === */
#subscribeBtn {
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease, background-color 0.3s ease;
}

/* Morph button into spinner */
#subscribeBtn.loading {
  color: transparent;
  pointer-events: none;
  width: 15% !important;
  position: relative;               /* Needed to anchor the spinner */
  display: flex;
  justify-content: center;         /* Center child horizontally */
  align-items: center;             /* Center child vertically */
}

/* Spinner styling */
#subscribeBtn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

 
/* reuse your fadeIn keyframes or define spin here */
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Final Footer */
.final-footer {
  background-color: #000; 
  color: #ffffff; 
  font-size: 0.8rem; 
  font-family: Arial, serif; 
  font-weight: normal;
  text-transform: none;
  border-radius: 15px 15px 0 0; /* Rounded top corners */
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  padding: 1rem 3rem; /* Adjusted padding for left/right spacing */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left grouping: contains privacy links and copyright */
.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Privacy links */
.footer-links a {
  color: inherit;
  text-decoration: underline;
}

/* Optional: spacing between privacy links */
.footer-links a + a {
  margin-left: 1rem;
}

/* Social media icons (right side) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Mobile responsiveness: stack everything vertically and re-order them */
@media (max-width: 768px) {
  .final-footer {
    flex-direction: column;
    text-align: center;
    font-size: 0.7rem; 
    padding: 1rem 0;
    gap: 1rem;
  }
  
  /* Move social media icons to the top */
  .footer-social {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  
  /* The left group becomes a flex container arranged vertically */
  .footer-left {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Re-order children in the left group:
     Privacy links first … */
  .footer-links {
    order: 1;
    margin-bottom: 1rem;
  }
  
  /* … and then the copyright note */
  .footer-copy {
    order: 2;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .info-links ul {
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
      
    }

    .newsletter-section h3 {
        font-size: 1.5rem;
    }

    .newsletter-section p {
        font-size: 1rem;
    }

  .newsletter-section form input {
        width: 80%;
        max-width: 300px; 
    margin-bottom: -9px;
    }
  
    .newsletter-section form button {
        width: 80%; 
       
    }
  
   /* keep loading‑morph on mobile */
  #subscribeBtn.loading {
    width: 80% !important;
  }
  #subscribeBtn.loading::after {
    width: 16px;
  }


    .final-footer {
        font-size: 0.8rem;
    }
  
}

@media (max-width: 768px) {

  /* reset any left-shifts so layout fills the mobile viewport exactly */
  header {
    margin-left: 0 !important;
    padding: 15px !important;
  }
  .logo {
    margin-left: 20px !important;
  }

  /* ensure your main “container” never exceeds the viewport */
  .container {
    margin: 0 auto !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 0 !important;
  }

  /* if you still see overflow, hide any stragglers */
  html, body {
    overflow-x: hidden;
  }

}