

               /* General Body and Font */
       /* General Body and Font */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f7f7f7; /* Light background */
            color: #333;
        }

/* //////new */
.laptop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #fff; /* Or your custom background class */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* 👇 Hide on screens 458px or smaller */
@media (max-width: 768px) {
  .laptop-header {
    display: none;
  }
}

/*/////*/
.scrollbar-hide {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;  /* Chrome, Safari, Opera */
        }

        /* Ensure cards are flex-shrink-0 so they don't resize */
        .print-media-card {
            flex-shrink: 0;
            width: 320px; /* Fixed width as per your screenshot */
        }

        /* Basic styling for navigation buttons */
      .scrollbar-hide {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;  /* Chrome, Safari, Opera */
        }

        /* Ensure cards are flex-shrink-0 so they don't resize */
        .carousel-card {
            flex-shrink: 0;
            width: 320px; /* Fixed width for print media cards */
        }

        /* Adjust width for digital media cards if needed, or make it responsive */
        #digitalMediaSlider .carousel-card {
            width: 384px; /* w-96 in Tailwind */
        }

          #testimonials {
      background: #000; /* dark background */
      color: #fff;
      padding: 60px 0;
    }
    #testimonials h2 {
      color: #ff69b4; /* pink heading */
      font-weight: bold;
    }
    #testimonials h3 {
      color: #ffc107; /* yellow heading for "Donor's Testimonial" */
    }
    #testimonials p {
      font-size: 1.1rem;
      line-height: 1.6;
    }
    .carousel-indicators [data-bs-target] {
      background-color: #ffc107; /* yellow dots */
    }

    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/volunteer-bg.jpg') center/cover;
      color: #fff;
      padding: 100px 0;
      text-align: center;
      animation: fadeIn 2s ease-in;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .slogan {
      font-size: 2rem;
      font-weight: bold;
      color: #ffc107;
      margin-top: 20px;
    }
    .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
    }


    .volunteer-video-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 60px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.volunteer-video-content {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

.volunteer-video-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.volunteer-video-content p {
  margin-bottom: 15px;
  color: #333;
}

.volunteer-video-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.volunteer-video-content ul li {
  margin-bottom: 8px;
  color: #555;
}

.watch-video-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f8c301;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.watch-video-btn:hover {
  background: #e0b200;
}

.volunteer-video-bg {
  flex: 1;
  min-width: 300px;
  background: url('/images/yellow-bg.png') center/cover no-repeat;
  position: relative;
  height: 300px;
}

.play-button {
  font-size: 48px;
  color: #fff;
  text-decoration: none;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  transition: background 0.3s;
}
.play-button:hover {
  background: rgba(0,0,0,0.8);
}



 .modal-overlay {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5); /* bg-black bg-opacity-50 */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            /* The 'hidden' class will be toggled by JS */
        }

        .modal-content {
            background-color: #fff; /* bg-white */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
            padding: 2rem; /* p-8 */
            max-width: 28rem; /* max-w-md */
            width: 100%;
            margin-left: 1rem; /* mx-4 */
            margin-right: 1rem; /* mx-4 */
            position: relative;
        }

        .modal-close-button {
            position: absolute;
            top: 1rem; /* top-4 */
            right: 1rem; /* right-4 */
            color: #6b7280; /* text-gray-500 */
            font-size: 1.5rem; /* text-2xl */
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close-button:hover {
            color: #4b5563; /* hover:text-gray-700 */
        }

        .modal-form-section {
            margin-top: 1.5rem; /* mt-6 */
            display: flex;
            flex-direction: column;
            gap: 1rem; /* space-y-4 */
        }

        .modal-input-group {
            display: flex;
            flex-direction: column;
        }

        .modal-input-group label {
            color: #374151; /* text-gray-700 */
            font-size: 0.875rem; /* text-sm */
            font-weight: 600; /* font-semibold */
            margin-bottom: 0.25rem; /* mb-1 */
        }

        .modal-input-group input[type="text"],
        .modal-input-group input[type="email"],
        .modal-input-group input[type="tel"],
        .modal-input-group input[type="number"],
        .modal-input-group input[type="date"],
        .modal-input-group textarea {
            padding: 0.75rem; /* p-3 */
            border: 1px solid #d1d5db; /* border border-gray-300 */
            border-radius: 0.375rem; /* rounded-md */
            outline: none; /* focus:outline-none */
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .modal-input-group input[type="text"]:focus,
        .modal-input-group input[type="email"]:focus,
        .modal-input-group input[type="tel"]:focus,
        .modal-input-group input[type="number"]:focus,
        .modal-input-group input[type="date"]:focus,
        .modal-input-group textarea:focus {
            border-color: #10b981; /* focus:ring-green-500 */
            box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.5); /* focus:ring-2 focus:ring-green-500 */
        }

        .modal-submit-button {
            background-color: #10b981; /* bg-green-600 */
            color: #fff; /* text-white */
            padding: 0.75rem; /* p-3 */
            border-radius: 0.375rem; /* rounded-md */
            width: 100%;
            font-weight: 600; /* font-semibold */
            transition: background-color 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .modal-submit-button:hover {
            background-color: #059669; /* hover:bg-green-700 */
        }

        /* Utility class for hiding elements */
        .hidden {
            display: none !important;
        }

/* new end */
        
        /* Utility classes (from previous header/footer) */
        .top-bar-bg {
            background-color: #040404; /* Updated to black */
            border-bottom: 1px solid #e0e0e0;
        }
        .main-header-bg { background-color: #ffffff; }
        .indepth-logo-container {
            /* Background color, border-radius, and box-shadow removed as per new CSS */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 0.75rem; /* Padding around the logo text */
            position: relative; /* For absolute positioning of the 'CRO' text if needed */
        }
        .indepth-logo-text { font-weight: 800; font-size: 2.5rem; line-height: 1; color: #333; }
        .indepth-tagline { font-size: 0.6rem; font-weight: 600; color: #333; text-align: center; line-height: 1.1; }
        .custom-search-input { border: 1px solid #e0e0e0; border-radius: 9999px; padding-left: 1rem; padding-right: 2.5rem; outline: none; width: 100%; max-width: 150px; font-size: 0.875rem; }
        .search-icon-wrapper { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); color: #888; }
        .donate-button { background-color: #ffd700; color: #333; font-weight: 600; padding: 0.75rem 1.25rem; border-radius: 9999px; display: flex; align-items: center; gap: 0.5rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); transition: background-color 0.3s ease; }
        .donate-button:hover { background-color: #ffc400; }
        .nav-link { padding: 0.5rem 0.75rem; font-weight: 500; color: #555; transition: color 0.3s ease; }
        .nav-link:hover { color: #000; }

        /* Banner Section Styling */
        .banner-container { min-height: 400px; overflow: hidden; }
        .yellow-blob-carousel {
            background-color: #ffd700; 
            transform: skewX(-10deg); /* Updated skew degree */
            transform-origin: bottom right; /* Rotate from bottom right */
            position: relative; /* Essential for absolute positioning of track, dots, and arrows */
            overflow: hidden; /* Hide overflowing parts of images/track */
            border-radius: 2rem; /* Updated border-radius */
        }
        .happy-text { color: #ffd700; font-weight: 700; font-size: 1.1em; position: relative; }
        .happy-text::after {
            content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,5 Q25,0 50,5 T100,5" stroke="%23ffd700" fill="none"/></svg>');
            background-repeat: repeat-x; background-size: 10px 5px; transform: translateY(5px);
        }
        .help-button { background-color: #ffd700; color: #333; font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 9999px; display: flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: background-color 0.3s ease; font-size: 1.1rem; }
        .help-button:hover { background-color: #ffc400; }
        .scroll-indicator { display: flex; flex-direction: column; align-items: center; margin-top: 2rem; color: #666; font-size: 0.85rem; }
        .scroll-line { width: 2px; height: 30px; background-color: #ccc; margin-bottom: 0.5rem; }
        .scroll-circle { width: 10px; height: 10px; background-color: #ccc; border-radius: 50%; }

        /* Carousel general styling (for both main banner and blog) */
        .carousel-container {
            position: relative;
            overflow: hidden;
        }
        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
            /* For blog carousel, ensures items are side-by-side initially */
        }
        .carousel-slide {
           
            flex-shrink: 0;
            width: 100%; /* Default for full-width slides */
            height: 100%;
            object-fit: cover;
        }
        .carousel-dots { z-index: 20; }
        .carousel-dot { transition: opacity 0.3s ease; }

        /* Blog specific carousel styles */
        .blog-carousel .carousel-track {
            display: flex;
            padding: 1rem 0; /* Padding above/below cards */
        }
        .blog-carousel .carousel-slide {
            width: calc(100% / 3 - 2rem); /* 3 cards per view, with gap */
            margin: 0 1rem; /* Gap between cards */
            box-sizing: border-box; /* Include padding and border in width */
            object-fit: contain; /* Ensure full image is visible if needed */
        }
        @media (max-width: 1024px) { /* Adjust for tablet/small desktop */
            .blog-carousel .carousel-slide {
                width: calc(100% / 2 - 2rem); /* 2 cards per view */
            }
        }
        @media (max-width: 767px) { /* Adjust for mobile */
            .blog-carousel .carousel-slide {
                width: calc(100% - 2rem); /* 1 card per view */
            }
        }

        .blog-card {
            background-color: #fff;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: auto; /* Allow height to adjust to content */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        }
        .blog-card-image {
            width: 100%;
            height: 180px; /* Fixed height for blog card images */
            object-fit: cover;
        }
        .blog-card-content {
            padding: 1.25rem;
            flex-grow: 1; /* Allow content to take available space */
        }
        .blog-card-title {
            font-weight: 600;
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
            color: #333;
        }
        .blog-card-snippet {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        .blog-card-link {
            display: inline-block;
            color: #3f51b5; /* Blue color */
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .blog-card-link:hover {
            color: #ffd700; /* Mustard yellow on hover */
        }


        /* Footer Section Styling */
        .top-contact-section { background-color: #f7f7f7; }
        .contact-box {
            display: flex; align-items: center; padding: 1.5rem; color: #ffffff; border-radius: 0.5rem; margin-bottom: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            /* Refined Irregular shape using clip-path for a softer, brushed look on top/bottom */
            clip-path: polygon(
                0% 10%, 10% 5%, 20% 10%, 30% 5%, 40% 10%, 50% 5%, 60% 10%, 70% 5%, 80% 10%, 90% 5%, 100% 10%, /* Top edge: Wave */
                100% 90%, 90% 95%, 80% 90%, 70% 95%, 60% 90%, 50% 95%, 40% 90%, 30% 95%, 20% 90%, 10% 95%, 0% 90%  /* Bottom edge: Wave, Sides: Relatively straight with slight corner cuts */
            );
            position: relative;
        }
        .contact-box:hover { transform: translateY(-5px); box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); }
        .contact-box-icon { font-size: 2.25rem; margin-right: 1rem; }
        .contact-box-text h3 { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.25rem; line-height: 1.2; }
        .contact-box-text p { font-size: 0.875rem; line-height: 1.3; }
        .bg-blue-custom { background-color: #4a148c; } /* Example: Dark Purple */
        .bg-pink-custom { background-color: #e91e63; } /* Example: Bright Pink */
        .bg-yellow-custom { background-color: #ffc107; } /* Example: Amber/Yellow */

        .main-footer-bg { background-color: #3f51b5; color: #ffffff; padding-top: 3rem; padding-bottom: 3rem; }
        .footer-heading { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
        .footer-link-list a { display: flex; align-items: flex-start; color: #ffffff; font-size: 0.9rem; line-height: 1.8; transition: color 0.2s ease-in-out; margin-bottom: 0.25rem; }
        .footer-link-list a:hover { color: #ffd700; }
        .footer-link-list a i { font-size: 0.75rem; margin-right: 0.5rem; line-height: inherit; transform: translateY(0.2rem); }
        .footer-description { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }

        .copyright-bar {
            background-color: #2c3e50; color: #ffffff; font-size: 0.8rem; padding-top: 1rem; padding-bottom: 1rem;
            /* Irregular shape for the top edge of the copyright bar (simplified for consistency) */
            clip-path: polygon(
                0% 5%, 15% 0%, 35% 5%, 50% 0%, 65% 5%, 85% 0%, 100% 5%, /* Top edge */
                100% 100%, 0% 100% /* Straight bottom */
            );
            position: relative; z-index: 5;
        }
        .copyright-bar a { color: #ffd700; text-decoration: none; }
        .copyright-bar a:hover { text-decoration: underline; }
        .copyright-social-icon { color: #ffffff; font-size: 1.1rem; transition: color 0.2s ease-in-out; }
        .copyright-social-icon:hover { color: #ffd700; }

        /* Responsive Adjustments */
        @media (max-width: 767px) {
            .top-bar-contact-info { display: none; }
            .main-nav { flex-direction: column; align-items: flex-start; }
            .main-nav .nav-link, .main-nav .donate-button { width: 100%; text-align: center; margin-bottom: 0.5rem; }
            .indepth-logo-text { font-size: 1.8rem; }
            .indepth-tagline { font-size: 0.5rem; }

            .banner-container { flex-direction: column; min-height: auto; }
            .banner-text-content, .yellow-blob-wrapper { width: 100%; text-align: center; }
            .yellow-blob-wrapper { min-height: 200px; }
            .yellow-blob-carousel { transform: skewX(0deg); }
            .carousel-dots { bottom: 0.5rem; }

            .contact-boxes-grid { margin-top: 0; }
            .contact-box {
                flex-direction: column; text-align: center; margin-bottom: 1rem;
                clip-path: polygon(
                    0% 5%, 15% 0%, 35% 5%, 50% 0%, 65% 5%, 85% 0%, 100% 5%, /* Top edge */
                    100% 95%, 85% 100%, 65% 95%, 50% 100%, 35% 95%, 15% 100%, 0% 95%  /* Bottom edge */
                );
            }
            .contact-box-icon { margin-right: 0; margin-bottom: 0.75rem; }

            .main-footer-grid { grid-template-columns: 1fr; }
            .main-footer-grid > div { margin-bottom: 2rem; }
            .main-footer-grid > div:last-child { margin-bottom: 0; }
            .copyright-bar { clip-path: polygon(0% 5%, 100% 0%, 100% 100%, 0% 100%); }
        }

        @media (min-width: 768px) {
            .contact-boxes-grid { margin-top: -5rem; position: relative; z-index: 10; }
            .contact-box { margin-bottom: 0; }

             .quotation-box {
                padding: 1.5rem;
            }
            .quotation-box .fa-quote-left {
                font-size: 3.5rem; /* Smaller icon on mobile */
                top: 0.5rem;
                left: 0.5rem;
            }
            .quotation-box p.italic {
                font-size: 1.1rem; /* Adjust text size for mobile */
            }
            .quotation-box p.font-semibold {
                font-size: 1rem;
            }
            .quotes-carousel-container {
                height: 450px; /* Adjust height for mobile if needed */
            }
            .quotes-carousel-container .carousel-arrow {
                font-size: 1.2rem;
                width: 35px;
                height: 35px;
            }
        }
.nav-link {
  padding-bottom: 12px;
}

.hero-title {
    font-family: 'Hey-October', cursive; /* Fallback to cursive */
    text-transform: capitalize;
    font-weight: normal !important; /* Overriding Tailwind's font-extrabold */
    font-size: 45px !important; /* Overriding Tailwind's text-4xl/md:text-5xl */
    color:#ffd700
}
    /* New Vertical Carousel for Quotes */
        .quotes-carousel-container {
            height: 350px; /* Fixed height to enable vertical scrolling for 3 quotes */
            display: flex;
            align-items: center;
            overflow: hidden; /* Hide overflow from vertical slides */
            position: relative; /* For arrows */
        }
        .quotes-carousel-track {
            display: flex;
            flex-direction: column; /* Stack vertically */
            width: 100%;
            height: auto; /* Adjust height based on content */
            transition: transform 0.5s ease-in-out;
        }
        .quote-slide {
            flex-shrink: 0;
            width: 100%;
            height: 100%; /* Each slide takes full height of container */
            padding: 1rem; /* Padding inside the slide */
            box-sizing: border-box;
            display: flex; /* For aligning content within the quote box */
            align-items: center;
            justify-content: center;
        }
        .quotation-box {
            background-color: #ffffff; /* White background for the box */
            padding: 2rem;
            border-radius: 0.75rem; /* Rounded corners */
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* Deeper shadow */
            position: relative;
            overflow: hidden; /* Ensure quote icon doesn't escape */
            width: 100%; /* Make quote box take full width available */
            box-sizing: border-box;
            /* Refined Irregular shape using clip-path for a softer, brushed look on top/bottom */
            clip-path: polygon(
                2% 10%, 10% 5%, 30% 8%, 50% 0%, 70% 8%, 85% 3%, 98% 10%, /* Top edge */
                100% 90%, 90% 95%, 70% 92%, 50% 100%, 30% 92%, 10% 95%, 0% 90% /* Bottom edge */
            );
        }
        .quotation-box .fa-quote-left {
            font-size: 5rem; /* Larger quote icon */
            color: #e0e0e0; /* Lighter grey for background icon */
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 0; /* Place behind text */
            opacity: 0.6; /* Slightly transparent */
        }
        .quotation-box p.italic {
            font-style: italic;
            color: #4a4a4a; /* Darker text for readability */
            position: relative; /* Bring text above icon */
            z-index: 1;
        }
        .quotation-box p.font-semibold {
            color: #333; /* Darker text for author */
            position: relative; /* Bring text above icon */
            z-index: 1;
        }
        .quotes-carousel-container .carousel-arrow { /* Style for vertical arrows */
            left: 50%;
            transform: translateX(-50%);
            width: 40px; /* Fixed width */
            height: 40px; /* Fixed height */
            padding: 0; /* Remove padding */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border-radius: 50%; /* Make them circular */
        }
        .quotes-carousel-container .carousel-arrow[data-direction="prev"] { top: 0.5rem; }
        .quotes-carousel-container .carousel-arrow[data-direction="next"] { bottom: 0.5rem; top: auto; }
        .quotes-carousel-container .carousel-dots { display: none; } /* No dots for vertical carousel */



