 :root {
      --primary: #3B82F6;      /* Blue */
      --secondary: #1E3A8A;    /* Navy Blue */
      --tertiary: #93C5FD;     /* Light Blue */
      --light: #F9FAFB;        /* Off-White */
      --dark: #1F2937;         /* Dark Gray */
      --white: #FFFFFF;
      --transition: all 0.3s ease;
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      color: var(--dark);
      background-color: var(--light);
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Merriweather', serif;
      font-weight: 700;
    }
    
    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--white);
      transition: var(--transition);
      box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn-primary:after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--secondary);
      transition: all 0.4s ease;
      z-index: -1;
    }
    
    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
    }
    
    .btn-primary:hover:after {
      left: 0;
    }
    
    .btn-outline-primary {
      color: var(--primary);
      border-color: var(--primary);
      transition: var(--transition);
    }
    
    .btn-outline-primary:hover {
      background-color: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .text-primary {
      color: var(--primary) !important;
    }
    
    .bg-primary {
      background-color: var(--primary) !important;
    }
    
    /* Header Styles */
    .site-header {
      background-color: rgba(30, 58, 138, 0.9); /* Semi-transparent dark blue */
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: var(--transition);
    }
    
    .site-header.scrolled {
      padding: 5px 0;
      background-color: var(--secondary); /* Solid navy */
    }
    
    .monastery-logo {
      max-height: 80px; /* Increased logo size */
      transition: var(--transition);
    }
    
    .scrolled .monastery-logo {
      max-height: 60px;
    }
    
    .navbar-nav .nav-link {
      color: var(--secondary);
      font-weight: 500;
      position: relative;
      transition: var(--transition);
      margin: 0 8px;
      opacity: 0;
      transform: translateY(-20px);
      animation: slideDown 0.5s forwards;
    }
    
    @keyframes slideDown {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .navbar-nav .nav-item:nth-child(1) .nav-link { animation-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) .nav-link { animation-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(3) .nav-link { animation-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(4) .nav-link { animation-delay: 0.4s; }
    .navbar-nav .nav-item:nth-child(5) .nav-link { animation-delay: 0.5s; }
    .navbar-nav .nav-item:nth-child(6) .nav-link { animation-delay: 0.6s; }
    .navbar-nav .nav-item:nth-child(7) .nav-link { animation-delay: 0.7s; }
    
    .navbar-nav .nav-link:hover {
      color: var(--primary);
    }
    
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary);
      transition: var(--transition);
    }
    
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }
    
    .navbar-nav .donate-link {
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50px;
      padding: 8px 20px !important;
    }
    
    .navbar-nav .donate-link:hover {
      background-color: var(--secondary);
      color: var(--white);
      transform: translateY(-2px);
    }
    
    .navbar-nav .donate-link::after {
      display: none;
    }
    
    /* Hero Section */
    .hero-section {
      position: relative;
      height: 85vh;
      min-height: 500px;
      overflow: hidden;
    }
    
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: translateX(100%);
      transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;
    }
    
    .hero-slide.active {
      opacity: 1;
      transform: translateX(0);
    }
    
    .hero-slide.prev {
      transform: translateX(-100%);
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, #1a066b5e, rgba(4, 15, 99, 0.354));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      padding: 20px;
    }
    
    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-content p {
      font-size: 1.3rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    /* Introduction Section */
    .intro-section {
      padding: 80px 0;
      position: relative;
    }
    
    .intro-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://cdn.pixabay.com/photo/2017/07/24/20/08/old-paper-2535398_960_720.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.06;
      pointer-events: none;
    }
    
    .section-title {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 30px;
      text-align: center;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 3px;
      background-color: var(--primary);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* Ministry Section */
    .ministry-section {
      padding: 80px 0;
      background-color: var(--light);
    }
    
    .ministry-card {
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: var(--transition);
      height: 100%;
    }
    
    .ministry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }
    
    .ministry-image {
      height: 180px;
      background-size: cover;
      background-position: center;
    }
    
    .ministry-content {
      padding: 1.5rem;
    }
    
    .ministry-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://cdn.pixabay.com/photo/2015/10/30/12/23/sunrise-1014710_960_720.jpg') no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: var(--white);
      text-align: center;
    }
    
    .cta-section h2 {
      margin-bottom: 1.5rem;
    }
    
    .cta-section .btn {
      padding: 12px 30px;
      font-size: 1.1rem;
      margin-top: 1rem;
    }
    
    /* Contact Section */
    .contact-section {
      padding: 80px 0;
      background-color: var(--white);
    }
    
    .contact-form .form-control {
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 12px 15px;
      margin-bottom: 20px;
    }
    
    .contact-form .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    }
    
    /* Newsletter Section */
    .newsletter-form .input-group {
      max-width: 500px;
      margin: 0 auto;
    }
    
    .newsletter-form .form-control {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border: 1px solid #ddd;
    }
    
    .newsletter-form .btn {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
    
    /* Footer */
    .site-footer {
      background-color: var(--secondary); /* Dark navy */
      color: var(--light);
      padding: 4rem 0 2rem;
    }
    
    .footer-title {
      color: var(--tertiary);
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }
    
    .footer-contact li {
      margin-bottom: 12px;
    }
    
    .footer-contact i {
      color: var(--primary);
      width: 25px;
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.1);
      color: var(--white);
      margin-right: 10px;
      transition: var(--transition);
    }
    
    .social-icons a:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-links li {
      margin-bottom: 8px;
    }
    
    .footer-links a {
      color: var(--light);
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--primary);
      text-decoration: none;
      padding-left: 5px;
    }
    
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Donation Modal */
    .donation-modal .modal-content {
      border-radius: 10px;
      border: none;
    }
    
    .donation-modal .modal-header {
      background-color: var(--primary);
      color: var(--white);
      border-radius: 10px 10px 0 0;
    }
    
    .donation-modal .modal-body {
      padding: 2rem;
    }
    
    .donation-amount-btn {
      background-color: var(--light);
      border: 2px solid var(--primary);
      color: var(--dark);
      transition: var(--transition);
      margin: 5px;
      min-width: 80px;
    }
    
    .donation-amount-btn:hover,
    .donation-amount-btn.active {
      background-color: var(--primary);
      color: var(--white);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .hero-content h1 {
        font-size: 2.8rem;
      }
      
      .hero-content p {
        font-size: 1.1rem;
      }
      
      .navbar-collapse {
        background-color: rgba(255,255,255,0.98);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      }
    }
    
    @media (max-width: 767px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .hero-content p {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .hero-section {
        height: 70vh;
      }
    }
    
    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 1.8rem;
      }
    }
