/* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #574040; background-color: #ffffff; } h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 600; } img { max-width: 100%; height: auto; } .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; } /* Color Variables */ :root { --navy: #1a365d; --gold: #d4af37; --charcoal: #2d3748; --lightgray: #f7fafc; --mediumgray: #e2e8f0; --teal: #0d9488; } /* Header */ .header { background-color: var(--navy); color: white; position: relative; z-index: 1000; } .header-content { display: flex; align-items: center; justify-content: space-between; height: 4rem; } .logo { display: flex; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; } .logo i { color: var(--gold); font-size: 1.5rem; margin-right: 0.75rem; } .desktop-nav { display: none; gap: 2rem; } .desktop-nav a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .desktop-nav a:hover { color: var(--gold); } .dropdown { position: relative; } .dropdown i { font-size: 0.75rem; margin-left: 0.25rem; } .mobile-menu-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; transition: color 0.3s ease; } .mobile-menu-btn:hover { color: var(--gold); } .mobile-menu { display: none; background-color: var(--navy); border-top: 1px solid rgba(212, 175, 55, 0.2); padding: 0.5rem 0; } .mobile-menu.active { display: block; } .mobile-menu a { display: block; color: white; text-decoration: none; padding: 0.5rem 0.75rem; font-weight: 500; transition: color 0.3s ease; } .mobile-menu a:hover { color: var(--gold); } /* Hero Carousel */ .hero-carousel { position: relative; height: 35rem; overflow: hidden; } .carousel-container { position: relative; height: 100%; } .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; justify-content: center; } .slide.active { opacity: 1; } .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.0); } .slide-content { position: relative; z-index: 10; text-align: center; color: white; max-width: 64rem; padding: 0 1rem; } .slide-content h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; } .slide-content p { font-size: 1.125rem; margin-bottom: 2rem; color: #e5e7eb; } .btn-primary { background-color: var(--gold); color: white; border: none; padding: 0.75rem 2rem; border-radius: 0.375rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; } .btn-primary:hover { background-color: #b8941f; } .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.3); color: white; border: none; padding: 0.5rem; border-radius: 50%; cursor: pointer; transition: background-color 0.3s ease; z-index: 20; } .carousel-btn:hover { background-color: rgba(0, 0, 0, 0.5); } .carousel-btn.prev { left: 1rem; } .carousel-btn.next { right: 1rem; } .carousel-indicators { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 20; } .indicator { width: 0.75rem; height: 0.75rem; border-radius: 50%; border: none; background-color: rgba(255, 255, 255, 0.5); cursor: pointer; transition: background-color 0.3s ease; } .indicator.active { background-color: var(--gold); } /* Section Headers */ .section-header { text-align: center; margin-bottom: 3rem; } .section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: var(--charcoal); } .section-header p { color: #6b7280; max-width: 32rem; margin: 0 auto; } /* When Someone Dies Section */ .when-someone-dies { padding: 4rem 0; background-color: var(--lightgray); } .guidance-cards { display: grid; gap: 2rem; grid-template-columns: 1fr; } .card { background: white; border-radius: 0.5rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); overflow: hidden; transition: box-shadow 0.3s ease; } .card:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); } .card img { width: 100%; height: 12rem; object-fit: cover; } .card-content { padding: 1.5rem; } .card-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--charcoal); } .card-content p { color: #6b7280; margin-bottom: 1rem; } .learn-more { color: var(--gold); text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .learn-more:hover { color: #b8941f; } /* Services Section */ .services { padding: 4rem 0; background: white; } .services-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; } .service-item { text-align: center; } .service-image { position: relative; overflow: hidden; border-radius: 0.5rem; margin-bottom: 1rem; } .service-image img { width: 100%; height: 16rem; object-fit: cover; transition: transform 0.3s ease; } .service-item:hover .service-image img { transform: scale(1.05); } .service-item h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--charcoal); } .service-item p { color: #6b7280; margin-bottom: 1rem; } /* Welcome Section */ .welcome { padding: 4rem 0; background-color: var(--lightgray); } .welcome-content { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; } .welcome-image img { border-radius: 0.5rem; box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); } .welcome-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--charcoal); } .welcome-text p { color: #6b7280; margin-bottom: 1rem; } .features-list { margin: 2rem 0; } .feature { display: flex; align-items: center; margin-bottom: 0.75rem; } .feature i { width: 1.25rem; height: 1.25rem; background-color: var(--gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 0.75rem; font-size: 0.75rem; } /* Staff Section */ .staff { padding: 4rem 0; background: white; } .staff-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; } .staff-member { text-align: center; background: white; padding: 1.5rem; border-radius: 0.5rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: box-shadow 0.3s ease; } .staff-member:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); } .staff-member img { width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; } .staff-member h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--charcoal); } .staff-member .title { color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; } .staff-member .description { color: #6b7280; font-size: 0.875rem; } /* Call to Action Section */ .call-to-action { padding: 3rem 0; background: linear-gradient(to right, var(--teal), #0c4daf); background: linear-gradient(to left, var(--teal), #357be4); color: white; position: relative; overflow: hidden; } .call-to-action::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 8rem; background: linear-gradient(to right, rgba(13, 148, 136, 0.3), transparent); transform: skewX(-12deg); opacity: 0.2; } .cta-content { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 10; } .cta-subtitle { color: #a7f3d0; font-size: 1.125rem; margin-bottom: 0.5rem; } .cta-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; } .cta-phone a { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 300; transition: color 0.3s ease; } .cta-phone a:hover { color: #a7f3d0; } /* News Section */ .news { padding: 4rem 0; background-color: var(--lightgray); } .news-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; } .news-article { background: white; border-radius: 0.5rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); overflow: hidden; transition: box-shadow 0.3s ease; } .news-article:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); } .news-article img { width: 100%; height: 12rem; object-fit: cover; } .article-content { padding: 1.5rem; } .article-date { color: var(--gold); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; } .article-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--charcoal); } .article-content p { color: #6b7280; margin-bottom: 1rem; } .read-more { color: var(--gold); text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .read-more:hover { color: #b8941f; } /* Newsletter Section */ .newsletter { padding: 4rem 0; background-color: var(--navy); color: white; text-align: center; } .newsletter-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; } .newsletter-content p { color: #d1d5db; margin-bottom: 2rem; max-width: 32rem; margin-left: auto; margin-right: auto; } .newsletter-form { display: flex; max-width: 28rem; margin: 0 auto; gap: 0; } .newsletter-form input { flex: 1; padding: 0.75rem 1rem; border: none; border-radius: 0.375rem 0 0 0.375rem; font-size: 1rem; color: var(--charcoal); } .newsletter-form input:focus { outline: none; box-shadow: 0 0 0 2px var(--gold); } .newsletter-form button { background-color: var(--gold); color: white; border: none; padding: 0.75rem 1.5rem; border-radius: 0 0.375rem 0.375rem 0; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; } .newsletter-form button:hover { background-color: #b8941f; } .newsletter-form button:disabled { opacity: 0.7; cursor: not-allowed; } .form-message { margin-top: 1rem; padding: 0.5rem; border-radius: 0.375rem; display: none; } .form-message.success { background-color: #10b981; color: white; } .form-message.error { background-color: #ef4444; color: white; } /* Footer */ .footer { background-color: var(--charcoal); color: white; padding: 3rem 0 1.5rem; } .footer-content { display: grid; gap: 2rem; grid-template-columns: 1fr; } .footer-section h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; } .footer-logo { display: flex; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; } .footer-logo i { color: var(--gold); font-size: 1.25rem; margin-right: 0.5rem; } .footer-section p { color: #d1d5db; margin-bottom: 1rem; } .social-links { display: flex; gap: 1rem; } .social-links a { color: #d1d5db; text-decoration: none; transition: color 0.3s ease; } .social-links a:hover { color: var(--gold); } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.5rem; } .footer-section ul li a { color: #d1d5db; text-decoration: none; transition: color 0.3s ease; } .footer-section ul li a:hover { color: var(--gold); } .contact-info { space-y: 0.75rem; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 0.75rem; } .contact-item i { color: var(--gold); width: 1rem; margin-right: 0.75rem; margin-top: 0.125rem; } .contact-item span { color: #d1d5db; } .footer-bottom { border-top: 1px solid #4b5563; margin-top: 2rem; padding-top: 2rem; text-align: center; } .footer-bottom p { color: #d1d5db; } /* Responsive Design */ @media (min-width: 768px) { .desktop-nav { display: flex; } .mobile-menu-btn { display: none; } .hero-carousel { height: 31.25rem; } .slide-content h1 { font-size: 3rem; } .slide-content p { font-size: 1.25rem; } .section-header h2 { font-size: 2.5rem; } .guidance-cards { grid-template-columns: repeat(3, 1fr); } .services-grid { grid-template-columns: repeat(3, 1fr); } .welcome-content { grid-template-columns: 1fr 1fr; } .staff-grid { grid-template-columns: repeat(2, 1fr); } .news-grid { grid-template-columns: repeat(3, 1fr); } .footer-content { grid-template-columns: repeat(4, 1fr); } .cta-content { flex-direction: row; justify-content: space-between; text-align: left; } .cta-content h2 { margin-bottom: 0; } .cta-phone a { font-size: 2rem; } .newsletter-form { flex-direction: row; } } @media (min-width: 1024px) { .hero-carousel { height: 31.25rem; } .slide-content h1 { font-size: 2.75rem; } .welcome-text h2 { font-size: 2.5rem; } .staff-grid { grid-template-columns: repeat(4, 1fr); } .cta-content h2 { font-size: 2.5rem; } .cta-phone a { font-size: 2.5rem; } } @media (max-width: 767px) { .newsletter-form { flex-direction: column; gap: 0.5rem; } .newsletter-form input { border-radius: 0.375rem; } .newsletter-form button { border-radius: 0.375rem; } } .mission-section { padding: 40px 20px; background-color: #f9f9f9; font-family: 'Segoe UI', sans-serif; } .mission-container { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: auto; align-items: center; } .mission-text { flex: 1; min-width: 300px; padding: 20px; } .mission-text h2 { font-size: 32px; margin-bottom: 15px; color: #222; } .mission-text h3 { font-size: 22px; margin-top: 25px; color: #444; } .mission-text ul { list-style-type: disc; padding-left: 20px; } .mission-text li { margin-bottom: 10px; line-height: 1.6; } .mission-text strong { color: #333; } .mission-image { flex: 1; text-align: center; padding: 20px; } .mission-image img { max-width: 100%; height: auto; border-radius: 10px; } @media (min-width:1185px) { .abtimg{ margin-left: 138px; height: 485px; } } .abtimg{ margin-left: 10px; height: 485px; } .offer-section { padding: 60px 20px; text-align: center; background-color: #fdfdfd; font-family: 'Segoe UI', sans-serif; } .offer-header p:first-child { font-size: 14px; color: #888; letter-spacing: 1px; } .offer-header h2 { font-size: 36px; font-weight: 700; margin: 10px 0; color: #222; } .offer-header p:last-child { font-size: 16px; color: #666; max-width: 700px; margin: 0 auto 40px; } .offer-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; } .offer-card { background: #fff; border-radius: 20px; padding: 30px 20px; max-width: 300px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .offer-card:hover { transform: translateY(-10px); } .offer-card img { width: 100%; height: 150px; object-fit: contain; margin-bottom: 20px; } .offer-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: #222; } .offer-card p { font-size: 14px; color: #555; } .hero-section { background: url('images/servicedetailbannner.webp') no-repeat center center/cover; height: 70vh; display: flex; align-items: center; justify-content: center; position: relative; } .hero-section .overlay { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: rgba(66, 66, 66, 0.28); /* Dark overlay */ z-index: 0; } .contact-buttons img { border-radius: 50%; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease; } .contact-buttons img:hover { transform: scale(1.1); } .custom-section { padding: 60px 20px; background-color: #f8f9fa; } .custom-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: auto; flex-wrap: wrap; } .custom-text { flex: 1 1 50%; padding-right: 30px; } .custom-text h2 { font-size: 32px; margin-bottom: 20px; font-weight: bold; } .custom-text p { color: #6c757d; font-size: 16px; line-height: 1.6; margin-bottom: 30px; } .custom-buttons { display: flex; gap: 20px; } .btn { padding: 12px 30px; border-radius: 50px; font-weight: 600; text-decoration: none; color: white; display: inline-block; transition: 0.3s; } .btn.blue { background-color: #007bff; } .btn.blue:hover { background-color: #0056b3; } .btn.red { background-color: #d63384; } .btn.red:hover { background-color: #a61e61; } .custom-image { flex: 1 1 50%; text-align: center; } .custom-image img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } @media (max-width: 768px) { .custom-container { flex-direction: column; text-align: center; } .custom-text { padding-right: 0; margin-bottom: 30px; } .custom-buttons { justify-content: center; } } .includes-section { padding: 60px 20px; background-color: #ffffff; color: #333; } .includes-container { max-width: 1000px; margin: auto; } .includes-section h2 { font-size: 30px; font-weight: bold; margin-bottom: 30px; color: #111; } .includes-list { list-style-type: disc; padding-left: 20px; font-size: 16px; line-height: 1.8; } .includes-list li { margin-bottom: 15px; } .includes-list strong { font-weight: bold; } @media (max-width: 768px) { .includes-section h2 { font-size: 24px; } .includes-list { font-size: 15px; } } body { font-family: Arial, sans-serif; margin: 0; background-color: #f8f9fa; } .testimonial-section { padding: 60px 20px; text-align: center; background: url('https://via.placeholder.com/1200x400?text=Background') center/cover no-repeat; } .section-title { font-size: 32px; margin-bottom: 40px; color: #000; } .testimonial-carousel { position: relative; max-width: 800px; margin: 0 auto; } .testimonial-item { display: none; background: white; padding: 40px 30px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); } .testimonial-item.active { display: block; } .testimonial-quote { font-size: 60px; color: #dbe9f4; margin-bottom: 10px; } .testimonial-text { font-size: 16px; color: #333; line-height: 1.7; margin-bottom: 30px; } .testimonial-user .testimonial-img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 10px; } .testimonial-name { font-size: 18px; font-weight: bold; margin: 0; } .testimonial-location { font-size: 14px; color: #777; } .testimonial-dots { margin-top: 20px; } .testimonial-dots .dot { height: 10px; width: 10px; margin: 0 5px; background-color: #ccc; border-radius: 50%; display: inline-block; cursor: pointer; } .testimonial-dots .dot.active { background-color: #c90052; } body { margin: 0; font-family: Arial, sans-serif; background-color: #f9f9f9; } .gallery-container { max-width: 1200px; margin: auto; padding: 40px 20px; } .gallery-title { text-align: center; font-size: 36px; margin-bottom: 40px; color: #333; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .gallery-item { overflow: hidden; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .gallery-item img { width: 100%; height: 200px; display: block; transition: transform 0.3s ease; } .gallery-item:hover img { transform: scale(1.05); } .faq-section { max-width: 1280px; margin: 0 auto; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .faq-title { text-align: center; margin-bottom: 40px; } .faq-title h5 { color: #888; font-size: 14px; margin: 0; } .faq-title h2 { font-size: 28px; margin: 10px 0 0; color: #222; } .faq-item { border-bottom: 1px solid #ddd; padding: 15px 0; cursor: pointer; } .faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: bold; color: #333; } .faq-answer { display: none; padding: 10px 0 0; color: #555; font-size: 14px; } .faq-item.active .faq-answer { display: block; } .faq-icon { font-size: 20px; color: #d62364; font-weight: bold; margin-left: 10px; transition: transform 0.3s; } .faq-item.active .faq-icon { transform: rotate(45deg); } @media (min-width:992px) { .contact-section { margin-left:-150px; } } .contact-section { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; padding: 50px 20px; gap: 30px; } .contact-image img { max-width: 250px; height: auto; } .form-container { background-color: #574040; color: white; border-radius: 10px; padding: 40px 30px; max-width: 400px; width: 100%; position: relative; } .form-container h2 { text-align: center; margin-top: 0; margin-bottom: 30px; } .form-container input, .form-container textarea { width: 100%; padding: 10px; margin-bottom: 15px; background: transparent; border: none; border-bottom: 2px solid #fff; color: white; font-size: 16px; } .form-container input::placeholder, .form-container textarea::placeholder { color: rgba(255, 255, 255, 0.7); } .form-container button { background-color: #e91e63; color: white; padding: 10px 30px; border: none; border-radius: 50px; cursor: pointer; font-weight: bold; font-size: 14px; } .contact-info { max-width: 400px; } .contact-info h3 { margin-bottom: 10px; } .contact-info p { font-size: 15px; margin-bottom: 10px; } .contact-info .icon { margin-right: 8px; color: #e91e63; } .map { width: 100%; height: 200px; margin-top: 15px; border: 1px solid #ccc; } @media (max-width: 992px) { .contact-section { flex-direction: column; align-items: center; } .contact-info, .form-container { max-width: 90%; } .contact-image img { /* max-width: 150px; */ height: 500px; } } @media (max-width:992px) { #contactimg{ display:none; } } .funeral-banner { background-image: url('images/ban1.jpg'); /* Replace with your actual image */ background-size: cover; background-position: center; background-repeat: no-repeat; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; color: #fff; position: relative; overflow: hidden; } .funeral-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 1; } .funeral-content { position: relative; z-index: 2; max-width: 800px; animation: fadeInUp 1s ease-in-out; } .funeral-content h1 { font-size: 48px; margin-bottom: 20px; } .funeral-content p { font-size: 18px; margin-bottom: 30px; line-height: 1.6; } .funeral-content button { background-color: #f5d94e; color: #000; border: none; padding: 12px 30px; font-weight: bold; font-size: 14px; cursor: pointer; border-radius: 3px; transition: background 0.3s ease; } .funeral-content button:hover { background-color: #ffce00; } @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } } @media (max-width: 768px) { .funeral-content h1 { font-size: 32px; } } /* .whatsapp-btn { display: inline-flex; align-items: center; padding: 10px 20px; font-size: 16px; background-color: #d3d4d4; color: white; text-decoration: none; border-radius: 5px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Shadow added */ /* transition: box-shadow 0.3s ease; } .whatsapp-btn:hover { box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */ /* .whatsapp-btn img { height: 20px; width: 20px; margin-right: 10px; } */ .breadcrumb-section { background: url('images/ban1.jpg') no-repeat center center/cover; background-attachment:fixed !important; padding: 140px 0; color: white; text-align: center; position: relative; } .breadcrumb-section::before { content: ''; position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */ z-index: 0; } .breadcrumb-section .container { position: relative; z-index: 1; } .breadcrumb-section h1 { font-size: 40px; margin-bottom: 10px; } .breadcrumb { list-style: none; display: inline-flex; gap: 5px; justify-content: center; padding: 0; margin: 0; } .breadcrumb li { color: #fff; } .breadcrumb li a { color: #fff; text-decoration: none; } .breadcrumb li.active { font-weight: bold; pointer-events: none; }