
:root {
--spiritual-orange: #ff6f00;
--spiritual-gold: #d4af37;
--dark-maroon: #4a0e17;
--cream-white: #fffdf9;
--text-color: #3e2723;
--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #fcf8f2;
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}
.header-container {
width: 90%;
max-width: 1240px;
margin: 0 auto;
}
.top-bar {
background-color: var(--dark-maroon);
color: #f5e6d3;
font-size: 13.5px;
padding: 10px 0;
border-bottom: 2px solid var(--spiritual-gold);
}
.top-bar-inner {
display: flex;
justify-content: space-between;
align-items: center;
}
.contact-meta {
display: flex;
gap: 20px;
font-size: 15px;
}
.meta-item {
display: flex;
align-items: center;
gap: 6px;
transition: var(--transition-smooth);
}
.meta-item i {
color: var(--spiritual-gold);
}
.meta-item:hover {
color: var(--spiritual-orange);
}
.top-bar-right {
display: flex;
align-items: center;
gap: 20px;
}
.language-switcher {
display: flex;
align-items: center;
gap: 6px;
background: rgba(255, 255, 255, 0.08);
padding: 4px 10px;
border-radius: 4px;
border: 1px solid rgba(212, 175, 55, 0.3);
}
.language-switcher i {
color: var(--spiritual-gold);
font-size: 13px;
}
.language-switcher select {
background: transparent;
color: #f5e6d3;
border: none;
font-size: 13px;
cursor: pointer;
outline: none;
font-family: 'Poppins', sans-serif;
}
.language-switcher select option {
background: var(--dark-maroon);
color: #f5e6d3;
}
.social-links {
display: flex;
gap: 12px;
}
.social-btn {
transition: var(--transition-smooth);
color: #f5e6d3;
}
.social-btn:hover {
color: var(--spiritual-gold);
transform: translateY(-2px);
}
.main-nav-wrapper {
background-color: var(--cream-white);
padding: 15px 0;
box-shadow: 0 4px 15px rgba(74, 14, 23, 0.04);
transition: var(--transition-smooth);
z-index: 999;
position: relative;
}
.main-nav-wrapper.is-sticky {
position: fixed;
top: 0;
left: 0;
right: 0;
padding: 10px 0;
background: rgba(255, 253, 249, 0.98);
box-shadow: 0 5px 25px rgba(74, 14, 23, 0.08);
border-bottom: 1px solid rgba(212, 175, 55, 0.2);
animation: slideDown 0.4s ease;
}
@keyframes slideDown {
from { transform: translateY(-100%); }
to { transform: translateY(0); }
}
.main-navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo a {
display: flex;
align-items: center;
gap: 12px;
}
.logo-icon {
font-size: 32px;
color: var(--spiritual-orange);
}
.logo-text {
display: flex;
flex-direction: column;
}
.logo-text .title {
font-family: 'Cinzel', serif;
font-size: 26px;
font-weight: 700;
color: var(--dark-maroon);
line-height: 1;
}
.logo-text .subtitle {
font-size: 11px;
color: var(--text-color);
letter-spacing: 1px;
text-transform: uppercase;
margin-top: 3px;
}
.nav-content {
display: flex;
align-items: center;
gap: 35px;
}
.nav-links {
display: flex;
align-items: center;
gap: 28px;
}
.nav-link {
color: var(--text-color);
font-weight: 500;
font-size: 15px;
padding: 5px 0;
position: relative;
transition: var(--transition-smooth);
}
.nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
width: 0;
height: 2px;
background-color: var(--spiritual-orange);
transition: var(--transition-smooth);
transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
.nav-link:hover, .nav-link.active {
color: var(--spiritual-orange);
}
.nav-link.whatsapp-btn {
color: #25D366;
}
.nav-link.whatsapp-btn::after {
background-color: #25D366;
}
.dropdown {
position: relative;
}
.dropdown-arrow {
font-size: 11px;
margin-left: 4px;
transition: var(--transition-smooth);
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(15px);
background-color: #ffffff;
min-width: 220px;
box-shadow: 0 8px 30px rgba(74, 14, 23, 0.1);
border-radius: 6px;
padding: 10px 0;
border-top: 3px solid var(--spiritual-orange);
opacity: 0;
visibility: hidden;
transition: var(--transition-smooth);
}
.dropdown-menu li a {
display: block;
padding: 10px 20px;
color: var(--text-color);
font-size: 14px;
font-weight: 500;
text-align: left;
transition: var(--transition-smooth);
}
.dropdown-menu li a:hover {
background-color: #fff8f0;
color: var(--spiritual-orange);
padding-left: 25px;
}
@media (min-width: 913px) {
.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.dropdown:hover .dropdown-arrow {
transform: rotate(180deg);
}
}
.btn-spiritual {
background: linear-gradient(135deg, var(--spiritual-orange) 0%, #e65100 100%);
color: #fff;
padding: 11px 22px;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
border: 1px solid var(--spiritual-gold);
box-shadow: 0 4px 12px rgba(230, 81, 0, 0.15);
transition: var(--transition-smooth);
white-space: nowrap;
}
.btn-spiritual i {
color: var(--spiritual-gold);
}
.btn-spiritual:hover {
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(230, 81, 0, 0.3);
background: linear-gradient(135deg, #e65100 0%, #b71c1c 100%);
}
.menu-burger {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
padding: 5px;
z-index: 1001;
}
.menu-burger .line {
display: block;
width: 25px;
height: 3px;
background-color: var(--dark-maroon);
border-radius: 3px;
transition: var(--transition-smooth);
}
.menu-burger.is-active .line-1 {
transform: translateY(8px) rotate(45deg);
background-color: var(--spiritual-orange);
}
.menu-burger.is-active .line-2 {
opacity: 0;
}
.menu-burger.is-active .line-3 {
transform: translateY(-8px) rotate(-45deg);
background-color: var(--spiritual-orange);
}
.menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(4px);
z-index: 998;
opacity: 0;
pointer-events: none;
transition: var(--transition-smooth);
}
.menu-overlay.is-visible {
opacity: 1;
pointer-events: auto;
}
@media (max-width: 1024px) {
.nav-content { gap: 20px; }
.nav-links { gap: 15px; }
.logo-text .title { font-size: 22px; }
}
@media (max-width: 912px) {
.menu-burger {
background: none;
border: none;
cursor: pointer;
padding: 5px;
display: none;
}
@media (max-width: 912px) {
.menu-burger {
display: block;
}
}
.nav-content {
position: fixed;
top: 0;
right: -100%;
width: 300px;
max-width: 85%;
height: 100vh;
background-color: var(--cream-white);
box-shadow: -10px 0 30px rgba(74, 14, 23, 0.15);
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
padding: 100px 30px 40px;
gap: 35px;
transition: var(--transition-smooth);
z-index: 1000;
overflow-y: auto;
}
.nav-content.is-open {
right: 0;
}
.nav-links {
flex-direction: column;
align-items: flex-start;
gap: 22px;
width: 100%;
}
.nav-link {
font-size: 17px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
}
.nav-link::after {
left: 0;
transform: none;
}
.header-action {
width: 100%;
margin-top: 10px;
}
.btn-spiritual {
width: 100%;
justify-content: center;
padding: 14px;
font-size: 15px;
}
.dropdown {
width: 100%;
}
.dropdown-menu {
position: static;
transform: none;
opacity: 0;
visibility: hidden;
display: none;
box-shadow: none;
border-radius: 0;
padding: 5px 0 5px 15px;
border-top: none;
border-left: 2px solid var(--spiritual-gold);
max-width: 100%;
min-width: unset;
background-color: transparent;
transition: none;
}
.dropdown-menu li a {
padding: 10px 10px;
font-size: 15px;
}
.dropdown-menu li a:hover {
padding-left: 15px;
background-color: transparent;
}
.dropdown.active .dropdown-menu {
display: block;
opacity: 1;
visibility: visible;
}
.dropdown.active .dropdown-arrow {
transform: rotate(180deg);
color: var(--spiritual-orange);
}
}
@media (max-width: 600px) {
.top-bar {
padding: 8px 0;
}
.top-bar-inner {
flex-direction: column;
gap: 8px;
}
.contact-meta {
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
font-size: 12px;
}
.top-bar-right {
width: 100%;
justify-content: space-between;
padding-top: 4px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-text .title {
font-size: 20px;
}
.logo-icon {
font-size: 26px;
}
}
.container { max-width: 1000px; margin: auto; text-align: center; }
h1 { color: #d35400; margin-bottom: 10px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 40px 0; }
.card { background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.donate-section {
background: linear-gradient(135deg, #ff9f43, #d35400);
padding: 40px;
border-radius: 20px;
color: white;
animation: pulse-bg 3s infinite;
}
.donate-btn {
background: #fff;
color: #d35400;
padding: 15px 30px;
border: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
cursor: pointer;
margin-top: 20px;
transition: transform 0.3s;
animation: bounce 2s infinite;
}
@keyframes pulse-bg {
0% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.4); }
70% { box-shadow: 0 0 0 20px rgba(211, 84, 0, 0); }
100% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0); }
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-10px);}
60% {transform: translateY(-5px);}
}
.padding5{
padding: 3%;
}
.seva-premium-section {
width: 100%;
background: linear-gradient(135deg, #5d0f14 0%, #3a0a0d 100%);
padding: 40px 20px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
border-top: 3px solid #d4af37;
}
.seva-wrapper {
max-width: 1100px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.seva-text h2 {
color: #d4af37;
font-size: 25px;
margin: 0;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.seva-text p {
color: #ffffff;
font-size: 14px;
margin: 5px 0 0 0;
opacity: 0.9;
}
.btn-donate-glow {
background: #fff;
color: #5d0f14;
border: none;
padding: 18px 45px;
font-size: 14px;
font-weight: 800;
border-radius: 50px;
cursor: pointer;
text-transform: uppercase;
box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
transition: all 0.4s ease;
animation: pulse-gold 2s infinite;
}
.btn-donate-glow:hover {
color: #fff;
background: #d4af37;
transform: scale(1.05);
box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}
@keyframes pulse-gold {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
@media (max-width: 768px) {
.seva-wrapper { justify-content: center; text-align: center; }
.seva-text h2 { font-size: 1.5rem; }
}
@media (max-width: 380px) {
.contact-meta {
flex-direction: column;
gap: 4px;
font-size: 16px;
align-items: center;
}
.logo img{
width: 60%;
}
}
.compact-services { padding: 60px 20px; background: #fffdf9; }
.container { max-width: 1000px; margin: auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { color: #5d0f14; font-size: 2rem; margin-bottom: 10px; }
.section-header p { color: #666; font-size: 1rem; }
.row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.box {
padding: 25px 15px;
background: white;
border-radius: 12px;
text-align: center;
border: 1px solid #eee;
transition: 0.4s;
}
.box:hover {
border-color: #d4af37;
transform: translateY(-8px);
box-shadow: 0 10px 20px rgba(93, 15, 20, 0.1);
}
.icon { font-size: 1.8rem; margin-bottom: 10px; }
.box h3 { font-size: 1rem; color: #5d0f14; margin-bottom: 8px; }
.box p { font-size: 0.85rem; color: #666; line-height: 1.4; margin: 0; }
@media (max-width: 768px) { .row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .row { grid-template-columns: 1fr; } }
.testimonial-section {
background-color: #ffffff;
padding-top: 40px;
position: relative;
width: 100%;
}
.rating-badge-container {
display: flex;
justify-content: center;
margin-bottom: 40px;
}
.rating-badge {
background: #f8f9fa;
color: #222222;
text-align: center;
padding: 18px 45px;
border-radius: 20px;
border: 1px solid #eaeaea;
box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.google-icon-wrapper {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-bottom: 6px;
}
.google-logo {
background: white;
padding: 5px;
border-radius: 50%;
display: inline-flex;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.badge-stars {
color: #ffcc00;
font-size: 16px;
letter-spacing: 2px;
}
.rating-badge h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 2px;
color: #111111;
}
.rating-badge p {
font-size: 12px;
color: #666666;
}
.main-content-area {
background-color: #fcfcfc;
border-radius: 30px;
padding: 0px 4%;
max-width: 1440px;
margin: 0 auto;
position: relative;
}
.slider-container {
position: relative;
display: flex;
align-items: center;
}
.slider-window {
overflow: hidden;
width: 100%;
padding: 15px 5px;
}
.slider-track {
display: flex;
transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
gap: 25px;
}
.testimonial-card {
background: #ffffff;
border-radius: 20px;
padding: 15px 28px;
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid #eeeeee;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
flex-shrink: 0;
width: calc((100% - (25px * 3)) / 4);
min-height: 300px;
}
.card-stars {
color: #ffcc00;
font-size: 18px;
margin-bottom: 15px;
}
.review-text {
font-size: 14px;
line-height: 1.6;
color: #444444;
font-weight: 400;
margin-bottom: 25px;
flex-grow: 1;
}
.user-info {
display: flex;
align-items: center;
gap: 12px;
border-top: 1px solid #f5f5f5;
padding-top: 18px;
}
.user-info img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}
.user-info h4 {
font-size: 12px;
font-weight: 700;
color: #111111;
letter-spacing: 0.3px;
}
.user-info span {
font-size: 11px;
color: #888888;
}
.nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 46px;
height: 46px;
border-radius: 50%;
border: 1px solid #dddddd;
background-color: #ffffff;
color: #555555;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
z-index: 20;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
transition: all 0.2s ease;
}
.prev-btn {
left: -20px;
}
.next-btn {
right: -20px;
}
.nav-btn:hover {
background-color: #111111;
color: #ffffff;
border-color: #111111;
}
.dots-container {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 35px;
}
.dot {
width: 8px;
height: 8px;
background-color: #e0e0e0;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
}
.dot.active {
background-color: #222222;
transform: scale(1.1);
}
@media (max-width: 1200px) {
.testimonial-card {
width: calc((100% - (25px * 2)) / 3);
}
}
@media (max-width: 900px) {
.testimonial-card {
width: calc((100% - 25px) / 2);
}
.nav-btn { display: none; }
}
@media (max-width: 600px) {
.testimonial-card {
width: 100%;
}
.rating-badge {
padding: 12px 25px;
width: 90%;
}
}
.marquee-container {
width: 100%;
height: 35px;
overflow: hidden;
background-color: #ffcc99;
position: relative;
display: flex;
align-items: center;
}
.marquee-content {
position: relative;
width: 100%;
height: 100%;
}
.item {
position: absolute;
width: 100%;
text-align: center;
font-weight: bold;
color: #8b0000;
opacity: 0;
white-space: nowrap;
animation: slideRightToLeft 60s linear infinite;
margin-top: 5px;
font-size: 14px;
}
.item:nth-child(1) { animation-delay: 0s; }
.item:nth-child(2) { animation-delay: 15s; }
.item:nth-child(3) { animation-delay: 30s; }
.item:nth-child(4) { animation-delay: 45s; }
@keyframes slideRightToLeft {
0% { opacity: 0; transform: translateX(100%); }
5% { opacity: 1; transform: translateX(0%); }
20% { opacity: 1; transform: translateX(0%); }
25% { opacity: 0; transform: translateX(-100%); }
100% { opacity: 0; }
}
.hero {
position: relative;
width: 100%;
height: 58vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
}
.hero-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.simple-donate {
width: 100%;
background: #4a0404;
padding: 10px 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.donate-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 30px;
max-width: 1000px;
}
.simple-donate h2 {
color: #ffffff;
font-size: 1.5rem;
margin: 0;
}
.btn-donate {
background: #ff8c00;
color: white;
padding: 12px 30px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: 0.3s;
white-space: nowrap;
}
.btn-donate:hover {
background: #e07b00;
transform: scale(1.05);
}
@media (max-width: 600px) {
.donate-container { gap: 20px; }
.simple-donate h2 { font-size: 1.2rem; }
}
.footer {
background-color: #ffffff;
padding: 60px 5%;
border-top: 1px solid #eee;
}
.footer-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}
.footer-col h3 {
color: #ff8c00;
margin-bottom: 15px;
}
.line {
width: 50px;
height: 3px;
background: #c00;
margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
text-decoration: none;
color: #555;
transition: 0.3s;
}
.footer-col ul li a:hover { color: #ff8c00; padding-left: 5px; }
.footer-brand img { width: 60px; margin-bottom: 10px; }
.social-icons a {
background: #ff8c00;
color: #fff;
padding: 8px 10px;
border-radius: 50%;
margin-right: 10px;
}
.footer-brand img{
width: 60%;
}
.footer-bottom {
text-align: center;
margin-top: 50px;
padding-top: 20px;
color: #888;
}
@media (max-width: 1024px) {
.footer-container {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.footer-container {
grid-template-columns: 1fr;
gap: 30px;
}
.footer-col {
text-align: center;
}
.line {
margin: 10px auto;
}
.social-icons {
justify-content: center;
display: flex;
}
}
.logo img {
max-width: 230px;
height: auto;
display: block;
}
@media (max-width: 768px) {
.logo img {
max-width: 300px;
}
}
.whatsapp-fixed {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background-color: #25d366;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
z-index: 9999;
transition: transform 0.3s ease;
animation: pulse-whatsapp 2s infinite;
}
.whatsapp-fixed img {
width: 35px;
height: 35px;
}
.whatsapp-fixed:hover {
transform: scale(1.1);
}
@keyframes pulse-whatsapp {
0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
.whatsapp-fixed {
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
}
.whatsapp-fixed img { width: 30px; height: 30px; }
}
h1 {
margin-bottom: 30px;
color: #333;
text-align: center;
}
.scroll-wrapper {
width: 90%;
max-width: 1200px;
overflow: hidden;
padding: 15px 0;
margin-left: 5%;
}
.scroll-container {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: auto;
white-space: nowrap;
padding: 10px;
}
.scroll-container::-webkit-scrollbar {
display: none;
}
.scroll-container {
-ms-overflow-style: none;
scrollbar-width: none;
}
.image-box {
flex: 0 0 300px;
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
background-color: #fff;
aspect-ratio: 4 / 3;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-box:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.image-box img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}
.image-box:hover img {
transform: scale(1.05);
}
@media (max-width: 600px) {
.image-box {
flex: 0 0 250px;
}
}
.trust-section {
display: flex;
align-items: center;
gap: 50px;
margin-left: 2.3%;
max-width: 1200px;
width: 100%;
background: #ffffff;
padding: 40px;
border-radius: 24px;
box-shadow: 0 20px 40px rgba(139, 69, 19, 0.05);
border: 1px solid rgba(230, 126, 34, 0.1);
}
.video-container {
flex: 1;
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
aspect-ratio: 16 / 9;
background-color: #000;
}
.video-container video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
pointer-events: none;
}
.text-container {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
}
.badge {
align-self: flex-start;
background-color: rgba(230, 126, 34, 0.1);
color: #d35400;
padding: 6px 16px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
}
.text-container h2 {
font-size: 38px;
color: #2c3e50;
font-weight: 700;
line-height: 1.2;
}
.text-container h2 span {
color: #e67e22;
}
.text-container p {
font-size: 16px;
color: #7f8c8d;
line-height: 1.8;
}
.cta-btn {
align-self: flex-start;
background: linear-gradient(135deg, #e67e22, #d35400);
color: #fff;
padding: 14px 32px;
border: none;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
transition: all 0.3s ease;
text-decoration: none;
text-align: center;
}
.cta-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(230, 126, 34, 0.4);
}
@media (max-width: 992px) {
.trust-section {
flex-direction: column;
gap: 30px;
padding: 25px;
}
.text-container h2 {
font-size: 32px;
}
}
@media (max-width: 576px) {
body {
padding: 0px;
}
.trust-section {
padding: 20px 15px;
border-radius: 16px;
}
.text-container h2 {
font-size: 26px;
}
.text-container p {
font-size: 15px;
}
.cta-btn {
width: 100%;
padding: 12px 24px;
}
}
.modern-footer {
border-top: 4px solid var(--primary-gold);
padding: 0px 0 30px 0;
position: relative;
overflow: hidden;
}
.footer-blur-bg {
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(255,183,3,0.08) 0%, rgba(255,255,255,0) 70%);
pointer-events: none;
}
.footer-container {
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 2.2fr 1fr 1fr 1.6fr 1.6fr;
gap: 40px;
}
.footer-logo {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 22px;
}
.logo-icon-wrapper {
background: linear-gradient(135deg, #FFF6E5, #FFEED0);
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(230, 126, 34, 0.2);
}
.logo-icon {
font-size: 24px;
color: var(--primary-orange);
}
.logo-text h2 {
font-size: 19px;
color: var(--dark-text);
font-weight: 700;
letter-spacing: -0.3px;
}
.logo-text p {
font-size: 10px;
color: var(--light-text);
letter-spacing: 1.5px;
margin-top: 1px;
}
.brand-desc {
font-size: 14px;
line-height: 1.65;
color: var(--light-text);
margin-bottom: 25px;
}
.social-links {
display: flex;
gap: 12px;
}
.social-links a {
width: 38px;
height: 38px;
border: 1px solid #EEDEC9;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-orange);
text-decoration: none;
transition: var(--transition-smooth);
}
.social-links a:hover {
transform: translateY(-4px);
background-color: var(--primary-orange);
color: var(--white);
border-color: var(--primary-orange);
box-shadow: 0 8px 20px rgba(230, 126, 34, 0.2);
}
.footer-col h3 {
color: var(--dark-text);
font-size: 16px;
font-weight: 700;
margin-bottom: 25px;
position: relative;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.animated-links {
list-style: none;
}
.animated-links li {
margin-bottom: 14px;
}
.animated-links li a {
color: var(--light-text);
text-decoration: none;
font-size: 14px;
font-weight: 500;
position: relative;
padding-bottom: 2px;
transition: var(--transition-smooth);
}
.animated-links li a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1.5px;
background-color: var(--primary-orange);
transition: var(--transition-smooth);
}
.animated-links li a:hover {
color: var(--primary-orange);
}
.animated-links li a:hover::after {
width: 100%;
}
.contact-card {
display: flex;
flex-direction: column;
gap: 18px;
}
.contact-item {
display: flex;
gap: 14px;
align-items: flex-start;
}
.icon-box {
color: var(--primary-orange);
font-size: 14px;
margin-top: 2px;
}
.contact-item p {
font-size: 14px;
color: var(--light-text);
line-height: 1.5;
}
.newsletter-text {
font-size: 14px;
color: var(--light-text);
margin-bottom: 18px;
line-height: 1.5;
}
.input-wrapper {
position: relative;
margin-bottom: 12px;
}
.input-icon {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: #A0AAB0;
font-size: 16px;
}
.modern-form input {
width: 100%;
padding: 14px 14px 14px 42px;
border: 1px solid #E2E8F0;
border-radius: 12px;
outline: none;
font-size: 14px;
background-color: var(--white);
transition: var(--transition-smooth);
}
.modern-form input:focus {
border-color: var(--primary-orange);
box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}
.submit-btn {
width: 100%;
padding: 14px;
background: linear-gradient(135deg, #FFB703 0%, #ED8936 100%);
border: none;
border-radius: 12px;
color: var(--white);
font-weight: 600;
font-size: 14px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
box-shadow: 0 4px 15px rgba(237, 137, 54, 0.2);
transition: var(--transition-smooth);
}
.submit-btn:hover {
box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4);
transform: translateY(-2px);
}
.footer-divider-wrapper {
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
}
.footer-divider {
border: 0;
height: 1px;
background: linear-gradient(to right, rgba(0,0,0,0.02), rgba(0,0,0,0.08), rgba(0,0,0,0.02));
margin: 50px 0 25px 0;
}
.footer-bottom {
max-width: 1240px;
margin: 0 auto;
padding: 0 90px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
color: var(--light-text);
}
.copyright span {
font-weight: 600;
color: var(--dark-text);
}
.certifications {
display: flex;
align-items: center;
gap: 12px;
}
.cert-item {
font-weight: 500;
}
.heart-pulse {
color: #E53E3E;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.15); }
100% { transform: scale(1); }
}
.bullet {
color: #CBD5E1;
}
.privacy-link {
cursor: pointer;
transition: var(--transition-smooth);
}
.privacy-link:hover {
color: var(--primary-orange);
}
.floating-container {
position: fixed;
bottom: 45px;
right: 25px;
display: flex;
flex-direction: column;
gap: 14px;
align-items: flex-end;
z-index: 9999;
}
.modern-float-donate {
background-color: #1A1A1A;
color: var(--white);
padding: 8px 20px 8px 8px;
border-radius: 40px;
text-decoration: none;
color: #fff;
font-weight: 600;
font-size: 14px;
display: flex;
align-items: center;
gap: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
transition: var(--transition-smooth);
}
.icon-circle {
width: 36px;
height: 36px;
background: linear-gradient(135deg, #E53E3E, #C53030);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
}
.modern-float-donate:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0,0,0,0.25);
background-color: #000000;
}
.modern-float-chat {
width: 52px;
height: 52px;
background-color: #10B981;
color: var(--white);
border-radius: 50%;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
text-decoration: none;
position: relative;
box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
transition: var(--transition-smooth);
}
.modern-float-chat:hover {
transform: scale(1.08) rotate(5deg);
}
@media (max-width: 1100px) {
.footer-container {
grid-template-columns: 1fr 1fr;
}
.brand-col {
grid-column: span 2;
}
}
@media (max-width: 650px) {
.footer-container {
grid-template-columns: 1fr;
gap: 35px;
}
.brand-col {
grid-column: span 1;
}
.footer-bottom {
flex-direction: column;
gap: 15px;
text-align: center;
}
.certifications {
justify-content: center;
flex-wrap: wrap;
}
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.card {
animation: fadeIn 1s ease-in-out;
}
.about-container { max-width: 1100px; margin: 0px auto; padding: 20px; font-family: 'Segoe UI', sans-serif; }
.hero-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 2.5rem; color: #2c3e50; margin-bottom: 15px; }
.btn-group { display: flex; gap: 10px; }
.btn-primary { background: #d35400; color: white; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; }
.btn-secondary { background: transparent; border: 1px solid #d35400; padding: 12px 25px; border-radius: 5px; cursor: pointer; }
.hero-image { text-align: center; }
.hero-image img { width: 100%; max-width: 230px; border-radius: 10px; border: 4px solid #d35400; }
.cards-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.card { padding: 25px; border: 1px solid #eee; border-radius: 15px; text-align: center; background: #fff; transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.impact-stats { display: flex; justify-content: space-around; text-align: center; margin-bottom: 30px; font-size: 1.1rem; color: #d35400; flex-wrap: wrap; gap: 20px; }
.connect-form { background: #2c3e50; padding: 25px; border-radius: 50px; display: flex; gap: 10px; align-items: center; }
.connect-form input { padding: 20px; border-radius: 30px; border: none; flex: 1; min-width: 0; }
.connect-form button { background: #d35400; color: white; border: none; padding: 15px 30px; border-radius: 30px; cursor: pointer; font-weight: bold; white-space: nowrap; }
@media (max-width: 992px) {
.cards-section { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.hero-section { flex-direction: column; text-align: center; }
.hero-text h1 { font-size: 1.8rem; }
.btn-group { justify-content: center; }
.cards-section { grid-template-columns: 1fr; }
.connect-form { flex-direction: column; border-radius: 20px; padding: 20px; }
.connect-form input, .connect-form button { width: 100%; box-sizing: border-box; }
}
.connect-form {
background: #2c3e50;
padding: 20px;
border-radius: 50px;
display: flex;
gap: 10px;
align-items: center;
flex-wrap: wrap;
}
.connect-form input {
padding: 15px 20px;
border-radius: 30px;
border: none;
flex: 1;
min-width: 200px;
box-sizing: border-box;
}
.connect-form button {
background: #d35400;
color: white;
border: none;
padding: 15px 30px;
border-radius: 30px;
cursor: pointer;
font-weight: bold;
flex-shrink: 0;
}
@media (max-width: 768px) {
.connect-form {
flex-direction: column;
border-radius: 20px;
padding: 20px;
}
.connect-form input,
.connect-form button {
width: 100%;
min-width: unset;
}
}
.bg-white{
background-color: #fff;
}
.about-container {
max-width: 1100px;
margin: 0px auto;
padding: 20px;
font-family: 'Segoe UI', sans-serif;
}
.hero-section {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
margin-bottom: 60px;
}
.hero-text {
flex: 1;
text-align: left;
}
.hero-text h1 {
font-size: 2.5rem;
color: #2c3e50;
margin-bottom: 15px;
text-align: left;
}
.btn-group {
display: flex;
gap: 10px;
justify-content: flex-start;
}
.connect-form {
background: #2c3e50;
padding: 20px;
border-radius: 50px;
display: flex;
gap: 10px;
align-items: center;
flex-wrap: wrap;
}
.connect-form input {
padding: 14px 14px;
font-size: 12px;
border-radius: 30px;
border: none;
flex: 1;
min-width: 200px;
box-sizing: border-box;
}
.connect-form button {
background: #d35400;
color: white;
font-size: 15px;
border: none;
padding: 12px 30px;
border-radius: 30px;
cursor: pointer;
font-weight: bold;
flex-shrink: 0;
}
@media (max-width: 768px) {
.hero-section { flex-direction: column; text-align: center; }
.hero-text { text-align: center; }
.hero-text h1 { text-align: center; font-size: 1.8rem; }
.btn-group { justify-content: center; }
.cards-section { grid-template-columns: 1fr; }
.connect-form { flex-direction: column; border-radius: 20px; }
.connect-form input, .connect-form button { width: 100%; min-width: unset; }
}
:root {
--srs-light-cream: #FCF8F1;
--srs-deep-brown: #3E2723;
--srs-gold: #FFB300;
--srs-orange: #E65100;
--srs-font-head: "Playfair Display", serif;
--srs-font-body: "EB Garamond", serif;
}
.srs-prem-section {
position: relative;
background-color: #ffffff;
padding: 1rem 0;
font-family: var(--srs-font-body);
font-size: 1.15rem;
line-height: 1.7;
color: var(--srs-deep-brown);
overflow: hidden;
width: 100%;
}
.srs-prem-container {
max-width: 82rem;
margin: 0 auto;
padding: 0 2rem;
}
.srs-prem-bg-shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
z-index: 1;
opacity: 0.4;
}
.srs-prem-shape-1 {
width: 300px;
height: 300px;
background-color: var(--srs-light-cream);
top: -50px;
left: -50px;
}
.srs-prem-shape-2 {
width: 400px;
height: 400px;
background-color: rgba(255, 179, 0, 0.15);
bottom: -100px;
right: -50px;
}
.srs-prem-wrapper {
position: relative;
z-index: 5;
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 4rem;
align-items: center;
}
.srs-prem-media-side {
position: relative;
display: flex;
justify-content: center;
}
.srs-prem-image-box {
position: relative;
width: 100%;
max-width: 580px;
box-shadow: 0 30px 60px rgba(62, 39, 35, 0.12);
border-radius: 1.5rem;
overflow: hidden;
border: 1px solid rgba(255, 179, 0, 0.2);
}
.srs-prem-main-img {
width: 100%;
height: 440px;
object-fit: cover;
display: block;
transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.srs-prem-image-box:hover .srs-prem-main-img {
transform: scale(1.04);
}
.srs-prem-om-medallion {
position: absolute;
top: 25px;
left: 25px;
width: 4rem;
height: 4rem;
background: linear-gradient(135deg, #ffffff, var(--srs-light-cream));
border: 2px solid var(--srs-gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
z-index: 10;
}
.srs-prem-om-medallion span {
font-size: 1.75rem;
font-weight: bold;
color: #8B0000;
}
.srs-prem-content-side {
position: relative;
}
.srs-prem-glass-card {
background: rgba(252, 248, 241, 0.75);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 179, 0, 0.25);
border-radius: 1.5rem;
padding: 3rem;
box-shadow: 0 20px 40px rgba(62, 39, 35, 0.05);
}
.srs-prem-tagline {
font-size: 0.9rem;
font-weight: 700;
color: var(--srs-gold);
text-transform: uppercase;
letter-spacing: 0.15em;
display: block;
margin-bottom: 0.5rem;
}
.srs-prem-heading {
font-family: var(--srs-font-head);
font-size: 1.85rem;
font-weight: 800;
color: var(--srs-deep-brown);
line-height: 1.2;
}
.srs-prem-line-divider {
width: 5rem;
height: 4px;
background: linear-gradient(90deg, var(--srs-gold), var(--srs-orange));
border-radius: 2px;
margin: 1rem 0 2rem 0;
}
.srs-prem-paragraph {
margin-bottom: 1.25rem;
text-align: justify;
font-size: 14px;
color: rgba(62, 39, 35, 0.88);
}
.srs-prem-paragraph strong {
color: var(--srs-orange);
font-weight: 700;
}
.srs-prem-action-area {
margin-top: 2rem;
}
.srs-prem-luxury-btn {
display: inline-flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
font-size: 1rem;
font-weight: 700;
color: #ffffff;
background: linear-gradient(135deg, var(--srs-orange), #BF360C);
padding: 0.9rem 2.2rem;
border-radius: 3rem;
box-shadow: 0 10px 25px rgba(230, 81, 0, 0.3);
transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.srs-prem-luxury-btn svg {
transition: transform 0.3s ease;
}
.srs-prem-luxury-btn:hover {
box-shadow: 0 15px 30px rgba(230, 81, 0, 0.45);
transform: translateY(-2px);
}
.srs-prem-luxury-btn:hover svg {
transform: translateX(5px);
}
@media (min-width: 1024px) {
.srs-prem-wrapper {
grid-template-columns: 1fr 1.1fr;
gap: 2rem;
}
.srs-prem-content-side {
margin-left: -4rem;
}
.srs-prem-main-img {
height: 520px;
}
}
@media (max-width: 768px) {
.srs-prem-section {
padding: 4rem 0;
}
.srs-prem-glass-card {
padding: 2rem;
}
.srs-prem-heading {
font-size: 2.25rem;
}
.srs-prem-main-img {
height: 320px;
}
}
:root {
--srs-mini-bg: #FCF8F1;
--srs-mini-dark: #3E2723;
--srs-mini-orange: #E65100;
--srs-mini-f-head: "Playfair Display", serif;
--srs-mini-f-body: "EB Garamond", serif;
}
.srs-minititle-wrapper {
position: relative;
background: linear-gradient(90deg, #FCF8F1 0%, #F4EBE0 100%);
padding: 1.25rem 0;
width: 100%;
border-bottom: 1px solid rgba(62, 39, 35, 0.08);
}
.srs-minititle-container {
max-width: 80rem;
margin: 0 auto;
padding: 0 2rem;
}
.srs-minititle-content {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.srs-minititle-left {
display: flex;
}
.srs-minititle-heading {
font-family: var(--srs-mini-f-head);
font-size: 1.65rem;
font-weight: 800;
color: var(--srs-mini-dark);
line-height: 1;
margin: 0;
}
.srs-minititle-breadcrumb {
display: flex;
align-items: center;
gap: 0.35rem;
font-family: var(--srs-mini-f-body);
font-size: 0.95rem;
font-weight: 600;
}
.srs-minititle-link {
color: rgba(62, 39, 35, 0.6);
text-decoration: none;
transition: color 0.15s ease;
}
.srs-minititle-link:hover {
color: var(--srs-mini-orange);
}
.srs-minititle-sep {
color: rgba(62, 39, 35, 0.3);
}
.srs-minititle-current {
color: var(--srs-mini-orange);
}
@media (max-width: 520px) {
.srs-minititle-heading {
font-size: 1.4rem;
}
.srs-minititle-breadcrumb {
font-size: 0.85rem;
}
.srs-minititle-wrapper {
padding: 1rem 0;
}
}
:root {
--srs-lux-cream: #FCF8F1;
--srs-lux-brown: #3E2723;
--srs-lux-orange: #E65100;
--srs-lux-gold: #FFB300;
--srs-lux-f-head: "Playfair Display", serif;
--srs-lux-f-body: "EB Garamond", serif;
}
.srs-luxct-section {
position: relative;
background-color: #ffffff;
padding: 4rem 0;
font-family: var(--srs-lux-f-body);
font-size: 1.15rem;
color: var(--srs-lux-brown);
width: 100%;
overflow: hidden;
}
.srs-luxct-container {
max-width: 74rem;
margin: 0 auto;
padding: 0 1.5rem;
}
.srs-luxct-bg-glow {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.35;
z-index: 1;
}
.srs-luxct-glow-1 {
width: 200px;
height: 200px;
background-color: var(--srs-lux-cream);
top: 50px;
left: -50px;
}
.srs-luxct-glow-2 {
width: 250px;
height: 250px;
background-color: rgba(255, 179, 0, 0.12);
bottom: 50px;
right: -50px;
}
.srs-luxct-grid {
position: relative;
z-index: 5;
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 3.5rem;
align-items: center;
padding-bottom: 3rem;
}
.srs-luxct-info-panel {
display: flex;
flex-direction: column;
}
.srs-luxct-tagline {
font-size: 0.9rem;
font-weight: 700;
color: var(--srs-lux-gold);
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 0.25rem;
}
.srs-luxct-heading {
font-family: var(--srs-lux-f-head);
font-size: 2.5rem;
font-weight: 800;
color: var(--srs-lux-brown);
line-height: 1.2;
}
.srs-luxct-divider {
width: 3.5rem;
height: 3px;
background-color: var(--srs-lux-orange);
border-radius: 2px;
margin: 0.75rem 0 1.25rem 0;
}
.srs-luxct-subtext {
font-size: 1.1rem;
color: rgba(62, 39, 35, 0.8);
margin-bottom: 2rem;
text-align: justify;
}
.srs-luxct-details-list {
display: flex;
flex-direction: column;
gap: 1.25rem;
}
.srs-luxct-detail-item {
display: flex;
align-items: center;
gap: 1rem;
}
.srs-luxct-mini-icon {
color: var(--srs-lux-orange);
flex-shrink: 0;
display: flex;
align-items: center;
}
.srs-luxct-detail-text h4 {
font-family: var(--srs-lux-f-head);
font-size: 1.1rem;
font-weight: 700;
margin: 0 0 0.15rem 0;
color: var(--srs-lux-brown);
}
.srs-luxct-detail-text p {
font-size: 0.95rem;
color: rgba(62, 39, 35, 0.75);
margin: 0;
}
.srs-luxct-glass-card {
background: rgba(252, 248, 241, 0.85);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 179, 0, 0.25);
border-radius: 1rem;
padding: 2.25rem;
box-shadow: 0 20px 40px rgba(62, 39, 35, 0.04);
}
.srs-luxct-form {
display: flex;
flex-direction: column;
gap: 1.25rem;
}
.srs-luxct-input-box input,
.srs-luxct-input-box textarea {
font-family: inherit;
font-size: 1rem;
width: 100%;
padding: 0.75rem 0.5rem;
border: none;
border-bottom: 1.5px solid rgba(62, 39, 35, 0.15);
background-color: transparent;
outline: none;
color: var(--srs-lux-brown);
transition: all 0.25s ease;
}
.srs-luxct-input-box input:focus,
.srs-luxct-input-box textarea:focus {
border-bottom-color: var(--srs-lux-orange);
}
.srs-luxct-input-box input::placeholder,
.srs-luxct-input-box textarea::placeholder {
color: rgba(62, 39, 35, 0.45);
}
.srs-luxct-submit-btn {
font-family: inherit;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
border-radius: 2rem;
padding: 0.8rem 2rem;
background: linear-gradient(135deg, var(--srs-lux-orange), #BF360C);
color: #ffffff;
box-shadow: 0 6px 16px rgba(230, 81, 0, 0.2);
transition: all 0.25s ease;
align-self: flex-start;
}
.srs-luxct-submit-btn svg {
transition: transform 0.2s ease;
}
.srs-luxct-submit-btn:hover {
box-shadow: 0 10px 22px rgba(230, 81, 0, 0.35);
transform: translateY(-1px);
}
.srs-luxct-submit-btn:hover svg {
transform: translateX(4px);
}
.srs-luxct-map-container {
position: relative;
z-index: 5;
border-radius: 1rem;
overflow: hidden;
border: 1px solid rgba(255, 179, 0, 0.2);
box-shadow: 0 15px 35px rgba(62, 39, 35, 0.04);
line-height: 0;
}
.srs-luxct-iframe {
border: 0;
width: 100%;
height: 320px;
}
@media (min-width: 1024px) {
.srs-luxct-grid {
grid-template-columns: 1fr 1fr;
gap: 4.5rem;
}
.srs-luxct-heading {
font-size: 3rem;
}
}
@media (max-width: 640px) {
.srs-luxct-glass-card {
padding: 1.75rem;
}
.srs-luxct-heading {
font-size: 2.15rem;
}
.srs-luxct-submit-btn {
width: 100%;
}
}
:root {
--srs-srv-bg: #FCF8F1;
--srs-srv-dark: #3E2723;
--srs-srv-orange: #E65100;
--srs-srv-gold: #FFB300;
--srs-srv-f-head: "Playfair Display", serif;
--srs-srv-f-body: "EB Garamond", serif;
}
.srs-services-section {
position: relative;
background-color: #ffffff;
padding: 5rem 0;
font-family: var(--srs-srv-f-body);
font-size: 1.15rem;
color: var(--srs-srv-dark);
width: 100%;
overflow: hidden;
}
.srs-services-container {
max-width: 76rem;
margin: 0 auto;
padding: 0 1.5rem;
position: relative;
z-index: 5;
}
.srs-srv-glow {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.35;
z-index: 1;
}
.srs-srv-glow-1 {
width: 250px;
height: 250px;
background-color: var(--srs-srv-cream);
top: -50px;
left: -50px;
}
.srs-srv-glow-2 {
width: 300px;
height: 300px;
background-color: rgba(255, 179, 0, 0.1);
bottom: -50px;
right: -50px;
}
.srs-services-header {
text-align: center;
max-width: 42rem;
margin: 0 auto 3.5rem auto;
display: flex;
flex-direction: column;
align-items: center;
}
.srs-services-tag {
font-size: 0.9rem;
font-weight: 700;
color: var(--srs-srv-gold);
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 0.35rem;
}
.srs-services-heading {
font-family: var(--srs-srv-f-head);
font-size: 2.75rem;
font-weight: 800;
line-height: 1.2;
color: var(--srs-srv-dark);
}
.srs-services-divider {
width: 4rem;
height: 3px;
background-color: var(--srs-srv-orange);
border-radius: 2px;
margin: 0.75rem 0 1.25rem 0;
}
.srs-services-subtext {
font-size: 1.15rem;
color: rgba(62, 39, 35, 0.8);
margin: 0;
}
.srs-services-grid {
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 2rem;
}
.srs-services-card {
background: rgba(252, 248, 241, 0.6);
border: 1px solid rgba(255, 179, 0, 0.15);
border-radius: 1rem;
padding: 2.5rem 2rem;
display: flex;
flex-direction: column;
align-items: flex-start;
transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.srs-services-card:hover {
background: #ffffff;
border-color: var(--srs-srv-orange);
box-shadow: 0 15px 35px rgba(62, 39, 35, 0.06);
transform: translateY(-4px);
}
.srs-services-icon-area {
color: var(--srs-srv-orange);
background-color: #ffffff;
width: 3.5rem;
height: 3.5rem;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(230, 81, 0, 0.05);
margin-bottom: 1.5rem;
border: 1px solid rgba(255, 179, 0, 0.1);
}
.srs-services-title {
font-family: var(--srs-srv-f-head);
font-size: 1.4rem;
font-weight: 700;
color: var(--srs-srv-dark);
margin: 0 0 0.75rem 0;
}
.srs-services-desc {
font-size: 1rem;
color: rgba(62, 39, 35, 0.78);
line-height: 1.6;
margin: 0 0 1.5rem 0;
text-align: left;
}
.srs-services-link {
font-size: 0.95rem;
font-weight: 700;
color: var(--srs-srv-orange);
text-decoration: none;
margin-top: auto;
transition: color 0.2s ease;
}
.srs-services-card:hover .srs-services-link {
color: var(--srs-srv-dark);
}
@media (min-width: 640px) {
.srs-services-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1024px) {
.srs-services-grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1.5rem;
}
.srs-services-header {
margin-bottom: 4.5rem;
}
.srs-services-heading {
font-size: 3rem;
}
}
:root {
--srsu-wp-bg: #FCF8F1;
--srsu-wp-dark: #3E2723;
--srsu-wp-orange: #E65100;
--srsu-wp-f-head: "Playfair Display", serif;
--srsu-wp-f-body: "EB Garamond", serif;
}
.srsu-whyph-section {
background-color: var(--srsu-wp-bg);
padding: 4rem 0;
font-family: var(--srsu-wp-f-body);
font-size: 1.1rem;
color: var(--srsu-wp-dark);
width: 100%;
overflow: hidden;
}
.srsu-whyph-container {
max-width: 74rem;
margin: 0 auto;
padding: 0 2rem;
}
.srsu-whyph-header {
text-align: center;
margin-bottom: 3.5rem;
}
.srsu-whyph-tag {
font-size: 0.85rem;
font-weight: 600;
color: var(--srsu-wp-orange);
text-transform: uppercase;
letter-spacing: 0.12em;
display: block;
margin-bottom: 0.25rem;
}
.srsu-whyph-heading {
font-family: var(--srsu-wp-f-head);
font-size: 2.25rem;
font-weight: 800;
color: var(--srsu-wp-dark);
margin: 0;
}
.srsu-whyph-flow {
display: flex;
flex-direction: column;
gap: 2.5rem;
position: relative;
}
.srsu-whyph-node {
display: flex;
align-items: flex-start;
gap: 1.25rem;
text-align: left;
}
.srsu-whyph-marker {
width: 1.25rem;
height: 1.25rem;
border: 1.5px solid var(--srsu-wp-orange);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 0.25rem;
background-color: #ffffff;
transition: background-color 0.3s ease;
}
.srsu-whyph-dot {
width: 6px;
height: 6px;
background-color: var(--srsu-wp-orange);
border-radius: 50%;
}
.srsu-whyph-node:hover .srsu-whyph-marker {
background-color: var(--srsu-wp-orange);
}
.srsu-whyph-node:hover .srsu-whyph-dot {
background-color: #ffffff;
}
.srsu-whyph-text {
display: flex;
flex-direction: column;
}
.srsu-whyph-title {
font-family: var(--srsu-wp-f-head);
font-size: 1.35rem;
font-weight: 700;
color: var(--srsu-wp-dark);
margin: 0 0 0.4rem 0;
}
.srsu-whyph-desc {
font-size: 1rem;
color: rgba(62, 39, 35, 0.75);
line-height: 1.5;
margin: 0;
}
.srs-line-connector {
display: none;
}
.srsu-whyph-animate {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.srsu-whyph-active {
opacity: 1;
transform: translateY(0);
}
@media (min-width: 1024px) {
.srsu-whyph-flow {
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 0;
}
.srsu-whyph-node {
flex-direction: column;
align-items: center;
text-align: center;
max-width: 20rem;
}
.srsu-whyph-marker {
margin-top: 0;
margin-bottom: 1.25rem;
}
.srs-line-connector {
display: block;
flex-grow: 1;
height: 1.5px;
background-color: rgba(236, 81, 0, 0.15);
margin-bottom: 4.5rem;
}
}
:root {
--srspja-cream: #FCF8F1;
--srspja-dark: #3E2723;
--srspja-orange: #E65100;
--srspja-gold: #FFB300;
--srspja-font-head: "Playfair Display", serif;
--srspja-font-body: "EB Garamond", serif;
}
.srspja-main-section,
.srspja-main-section * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.srspja-main-section {
background-color: #ffffff;
padding: 3.5rem 0;
font-family: var(--srspja-font-body);
font-size: 1.15rem;
color: var(--srspja-dark);
width: 100%;
}
.srspja-container {
width: 100%;
max-width: 75rem;
margin: 0 auto;
padding: 0 1rem;
}
.srspja-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
.srspja-info-side {
width: 100%;
}
.srspja-section-tag {
font-size: 0.85rem;
font-weight: 700;
color: var(--srspja-gold);
text-transform: uppercase;
letter-spacing: 0.12em;
display: block;
margin-bottom: 0.35rem;
}
.srspja-section-heading {
font-family: var(--srspja-font-head);
font-size: 2.15rem;
font-weight: 800;
color: var(--srspja-dark);
line-height: 1.25;
}
.srspja-divider {
width: 3.5rem;
height: 3px;
background-color: var(--srspja-orange);
border-radius: 2px;
margin: 0.75rem 0 1.25rem 0;
}
.srspja-para {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.25rem;
color: rgba(62, 39, 35, 0.85);
text-align: left;
}
.srspja-highlight-box {
display: flex;
align-items: flex-start;
gap: 1rem;
background-color: var(--srspja-cream);
border: 1px solid rgba(255, 179, 0, 0.2);
padding: 1.25rem;
border-radius: 0.75rem;
margin-top: 1.5rem;
}
.srspja-highlight-icon {
font-size: 1.4rem;
font-weight: bold;
color: #8B0000;
background-color: #ffffff;
width: 2.75rem;
height: 2.75rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4px 10px rgba(62, 39, 35, 0.04);
}
.srspja-highlight-text h4 {
font-family: var(--srspja-font-head);
font-size: 1.15rem;
margin-bottom: 0.25rem;
color: var(--srspja-dark);
}
.srspja-highlight-text p {
font-size: 0.95rem;
color: rgba(62, 39, 35, 0.75);
line-height: 1.45;
}
.srspja-timetable-side {
width: 100%;
}
.srspja-table-title {
font-family: var(--srspja-font-head);
font-size: 1.4rem;
font-weight: 700;
color: var(--srspja-dark);
margin-bottom: 1.75rem;
}
.srspja-timeline-flow {
display: flex;
flex-direction: column;
position: relative;
width: 100%;
border-left: 2px solid rgba(230, 81, 0, 0.15);
padding-left: 1.25rem;
}
.srspja-timeline-item {
display: flex;
flex-direction: column;
gap: 0.5rem;
position: relative;
padding-bottom: 2rem;
width: 100%;
}
.srspja-timeline-item:last-child {
padding-bottom: 0;
}
.srspja-meta-zone {
display: flex;
align-items: center;
}
.srspja-time-badge {
font-family: var(--srspja-font-head);
font-size: 0.95rem;
font-weight: 800;
color: var(--srspja-orange);
background-color: var(--srspja-cream);
padding: 0.25rem 0.75rem;
border-radius: 0.25rem;
display: inline-block;
}
.srspja-timeline-item::before {
content: '';
position: absolute;
left: calc(-1.25rem - 6px);
top: 8px;
width: 10px;
height: 10px;
background-color: #ffffff;
border: 2px solid var(--srspja-orange);
border-radius: 50%;
z-index: 10;
}
.srspja-line-dot {
display: none;
}
.srspja-text-zone h4 {
font-family: var(--srspja-font-head);
font-size: 1.25rem;
font-weight: 700;
color: var(--srspja-dark);
margin-bottom: 0.25rem;
}
.srspja-text-zone p {
font-size: 0.95rem;
color: rgba(62, 39, 35, 0.75);
line-height: 1.5;
}
@media (min-width: 768px) {
.srspja-main-section {
padding: 5rem 0;
}
.srspja-container {
padding: 0 2rem;
}
.srspja-section-heading {
font-size: 2.5rem;
}
.srspja-table-title {
font-size: 1.5rem;
}
.srspja-timeline-flow {
border-left: none;
padding-left: 0;
}
.srspja-timeline-flow::before {
content: '';
position: absolute;
left: 6.25rem;
top: 0.75rem;
bottom: 0.75rem;
width: 2px;
background-color: rgba(230, 81, 0, 0.15);
z-index: 1;
}
.srspja-timeline-item {
flex-direction: row;
gap: 2rem;
padding-bottom: 2.5rem;
}
.srspja-timeline-item::before {
display: none;
}
.srspja-meta-zone {
width: 7.5rem;
justify-content: space-between;
flex-shrink: 0;
position: relative;
}
.srspja-time-badge {
background-color: transparent;
padding: 0;
font-size: 1rem;
}
.srspja-line-dot {
display: block;
width: 12px;
height: 12px;
background-color: #ffffff;
border: 2px solid var(--srspja-orange);
border-radius: 50%;
position: absolute;
right: -7px;
z-index: 5;
transition: background-color 0.2s ease;
}
.srspja-timeline-item:hover .srspja-line-dot {
background-color: var(--srspja-orange);
}
.srspja-text-zone {
flex-grow: 1;
}
}
@media (min-width: 1024px) {
.srspja-grid {
grid-template-columns: 1.05fr 0.95fr;
gap: 5rem;
}
.srspja-section-heading {
font-size: 3rem;
}
}
:root {
--srsym-cream: #FCF8F1;
--srsym-dark: #3E2723;
--srsym-orange: #E65100;
--srsym-gold: #FFB300;
--srsym-font-head: "Playfair Display", serif;
--srsym-font-body: "EB Garamond", serif;
}
.srsym-main-section,
.srsym-main-section * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.srsym-main-section {
background-color: #ffffff;
padding: 3.5rem 0;
font-family: var(--srsym-font-body);
font-size: 1.15rem;
color: var(--srsym-dark);
width: 100%;
}
.srsym-container {
width: 100%;
max-width: 75rem;
margin: 0 auto;
padding: 0 1rem;
}
.srsym-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
.srsym-info-side {
width: 100%;
}
.srsym-section-tag {
font-size: 0.85rem;
font-weight: 700;
color: var(--srsym-gold);
text-transform: uppercase;
letter-spacing: 0.12em;
display: block;
margin-bottom: 0.35rem;
}
.srsym-section-heading {
font-family: var(--srsym-font-head);
font-size: 2.15rem;
font-weight: 800;
color: var(--srsym-dark);
line-height: 1.25;
}
.srsym-divider {
width: 3.5rem;
height: 3px;
background-color: var(--srsym-orange);
border-radius: 2px;
margin: 0.75rem 0 1.25rem 0;
}
.srsym-para {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.25rem;
color: rgba(62, 39, 35, 0.85);
text-align: left;
}
.srsym-para strong {
color: var(--srsym-orange);
}
.srsym-highlight-box {
display: flex;
align-items: flex-start;
gap: 1rem;
background-color: var(--srsym-cream);
border: 1px solid rgba(255, 179, 0, 0.2);
padding: 1.25rem;
border-radius: 0.75rem;
margin-top: 1.5rem;
}
.srsym-highlight-icon {
font-size: 1.4rem;
background-color: #ffffff;
width: 2.75rem;
height: 2.75rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4px 10px rgba(62, 39, 35, 0.04);
}
.srsym-highlight-text h4 {
font-family: var(--srsym-font-head);
font-size: 1.15rem;
margin-bottom: 0.25rem;
color: var(--srsym-dark);
}
.srsym-highlight-text p {
font-size: 0.95rem;
color: rgba(62, 39, 35, 0.75);
line-height: 1.45;
}
.srsym-benefits-side {
width: 100%;
}
.srsym-table-title {
font-family: var(--srsym-font-head);
font-size: 1.4rem;
font-weight: 700;
color: var(--srsym-dark);
margin-bottom: 1.75rem;
}
.srsym-benefits-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
width: 100%;
}
.srsym-benefit-card {
display: flex;
align-items: flex-start;
gap: 1.25rem;
padding: 1.25rem;
background-color: #ffffff;
border: 1px solid rgba(62, 39, 35, 0.08);
border-radius: 0.75rem;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.srsym-benefit-card:hover {
border-color: var(--srsym-orange);
box-shadow: 0 10px 25px rgba(62, 39, 35, 0.04);
transform: translateY(-2px);
}
.srsym-benefit-num {
font-family: var(--srsym-font-head);
font-size: 1.5rem;
font-weight: 800;
color: rgba(230, 81, 0, 0.25);
line-height: 1;
transition: color 0.2s ease;
}
.srsym-benefit-card:hover .srsym-benefit-num {
color: var(--srsym-orange);
}
.srsym-benefit-text h4 {
font-family: var(--srsym-font-head);
font-size: 1.25rem;
font-weight: 700;
color: var(--srsym-dark);
margin-bottom: 0.35rem;
}
.srsym-benefit-text p {
font-size: 0.95rem;
color: rgba(62, 39, 35, 0.75);
line-height: 1.5;
}
@media (min-width: 768px) {
.srsym-main-section {
padding: 5rem 0;
}
.srsym-container {
padding: 0 2rem;
}
.srsym-section-heading {
font-size: 2.5rem;
}
.srsym-table-title {
font-size: 1.5rem;
}
.srsym-benefits-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
@media (min-width: 1024px) {
.srsym-grid {
grid-template-columns: 1.05fr 0.95fr;
gap: 5rem;
}
.srsym-section-heading {
font-size: 2.85rem;
}
}

 :root {
            --sst-priv-primary: #003366; 
            --sst-priv-text: #2d3748;
            --sst-priv-bg: #f7fafc;
        }
        
        /* पूरी तरह से आइसोलेटेड और यूनीक क्लासेस */
        .sst-priv-body-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: var(--sst-priv-text);
            background-color: var(--sst-priv-bg);
            margin: 0;
            padding: 20px;
        }
        .sst-priv-main-container {
            max-width: 1100px;
            margin: 40px auto;
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            box-sizing: border-box;
        }
        .sst-priv-main-title {
            color: var(--sst-priv-primary);
            font-size: 30px;
            border-bottom: 2px solid #edf2f7;
            padding-bottom: 15px;
            margin-top: 0;
        }
        .sst-priv-sub-title {
            color: var(--sst-priv-primary);
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .sst-priv-paragraph, .sst-priv-list-item {
            font-size: 15px;
            color: #4a5568;
            text-align: justify;
        }
        .sst-priv-unordered-list {
            padding-left: 20px;
        }
        .sst-priv-list-item {
            margin-bottom: 8px;
        }
        .sst-priv-date-text {
            font-style: italic;
            color: #a0aec0;
            font-size: 13px;
            margin-bottom: 30px;
        }
        .sst-priv-alert-box {
            background-color: #f0f7ff;
            border-left: 4px solid var(--sst-priv-primary);
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .sst-priv-link {
            color: var(--sst-priv-primary);
            text-decoration: none;
        }
        .sst-priv-link:hover {
            text-decoration: underline;
        }

            :root {
            --sst-fcra-primary: #003366; /* Matching website corporate blue */
            --sst-fcra-text: #2d3748;
            --sst-fcra-bg: #f7fafc;
            --sst-fcra-success: #10b981;
        }
        
        .sst-fcra-body-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            line-height: 1.7;
            color: var(--sst-fcra-text);
            background-color: var(--sst-fcra-bg);
            margin: 0;
            padding: 20px;
        }
        .sst-fcra-main-container {
            max-width: 850px;
            margin: 40px auto;
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            box-sizing: border-box;
        }
        .sst-fcra-main-title {
            color: var(--sst-fcra-primary);
            font-size: 28px;
            border-bottom: 2px solid #edf2f7;
            padding-bottom: 15px;
            margin-top: 0;
        }
        .sst-fcra-badge {
            display: inline-block;
            background-color: #e6f4ea;
            color: var(--sst-fcra-success);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        .sst-fcra-sub-title {
            color: var(--sst-fcra-primary);
            font-size: 18px;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .sst-fcra-paragraph {
            font-size: 15px;
            color: #4a5568;
            text-align: justify;
            margin-bottom: 15px;
        }
        
        /* Bank Details Table Style */
        .sst-fcra-table-wrapper {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 15px;
        }
        .sst-fcra-table-wrapper th {
            background-color: var(--sst-fcra-primary);
            color: #ffffff;
            text-align: left;
            padding: 12px;
            font-weight: 600;
        }
        .sst-fcra-table-wrapper td {
            padding: 12px;
            border-bottom: 1px solid #e2e8f0;
            color: #4a5568;
        }
        .sst-fcra-table-wrapper tr:nth-child(even) {
            background-color: #f8fafc;
        }

        .sst-fcra-notice-box {
            background-color: #fff9db;
            border-left: 4px solid #fcc419;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .sst-fcra-notice-title {
            font-weight: 700;
            color: #664d03;
            margin-bottom: 5px;
            font-size: 14px;
        }

              /* --- FRESH 2026 ARCHITECTURE STYLING --- */
.sst-fresh-wrapper {
    background-color: #ffffff;
    padding: 10px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    color: #121212;
}

.sst-fresh-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

/* Badge Layout */
.sst-fresh-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4ec;
    color: #e65100;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 81, 0, 0.1);
}

.sst-fresh-pulse {
    width: 6px;
    height: 6px;
    background: #ff6d00;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.2);
}

/* Typography & Heading */
.sst-fresh-heading {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.sst-gradient-text {
    background: linear-gradient(90deg, #ff6d00, #b71c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Bento Grid Structure */
.sst-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.sst-bento-card {
    background: #f8fa9b;
    background: #fdfefe;
    border: 1px solid #eef2f6;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.sst-bento-accent {
    background: #fffcf9;
    border-color: rgba(255, 109, 0, 0.1);
}

.sst-full-span {
    grid-column: span 2;
}

.sst-bento-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff6d00;
    margin-bottom: 12px;
}

.sst-bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.sst-bento-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* Bottom Metrics Area */
.sst-fresh-stats {
    display: flex;
    gap: 40px;
    padding: 10px 10px;
}

.sst-stat-box {
    display: flex;
    flex-direction: column;
}

.sst-stat-box strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #b71c1c;
}

.sst-stat-box span {
    font-size: 0.88rem;
    color: #666;
}

/* Form Design Structure */
.sst-fresh-sidebar {
    position: sticky;
    top: 50px;
}

.sst-fresh-form-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 0px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.sst-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sst-form-header p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
}

/* Input Fields Floating Engine */
.sst-fresh-group {
    position: relative;
    margin-bottom: 24px;
}

.sst-fresh-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    font-size: 0.98rem;
    color: #111;
    background: transparent;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.sst-fresh-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 4px;
    color: #718096;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    pointer-events: none;
}

.sst-fresh-group input:focus,
.sst-fresh-group input:not(:placeholder-shown) {
    border-color: #ff6d00;
    outline: none;
}

.sst-fresh-group input:focus ~ label,
.sst-fresh-group input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.78rem;
    color: #ff6d00;
    font-weight: 700;
}

.sst-form-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 24px;
}

/* Modern Action Button */
.sst-fresh-btn {
    width: 100%;
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.sst-fresh-btn:hover {
    background: #ff6d00;
    transform: translateY(-1px);
}

/* --- ACCORDION LIST STACK --- */
.sst-fresh-faq-block {
    max-width: 850px;
    margin: 80px auto 0 auto;
    padding-top: 60px;
    border-top: 1px solid #eef2f6;
}

.sst-faq-headline {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}

.sst-faq-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sst-faq-row {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.sst-faq-row[open] {
    border-color: #ff6d00;
}

.sst-faq-row summary {
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.sst-faq-row summary::-webkit-details-marker {
    display: none;
}

.sst-faq-plus {
    width: 10px;
    height: 10px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.sst-faq-row[open] .sst-faq-plus {
    transform: rotate(-135deg);
    border-color: #ff6d00;
}

.sst-faq-pane {
    padding: 4px 24px 20px 24px;
    background: #fafafa;
}

.sst-faq-pane p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* RESPONSIVE BREAKPOINTS ENGINE */
@media (max-width: 991px) {
    .sst-fresh-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sst-fresh-sidebar {
        position: static;
    }
    .sst-fresh-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 650px) {
    .sst-bento-grid {
        grid-template-columns: 1fr;
    }
    .sst-full-span {
        grid-column: span 1;
    }
    .sst-fresh-heading {
        font-size: 1.9rem;
    }
    .sst-fresh-form-card {
        padding: 30px 20px;
    }
}

   /* Modern & Distinct Color Palette */
        :root {
            --accent-saffron: #e05a2b;   /* Dynamic Saffron */
            --deep-maroon: #5c1d11;      /* Deep Spiritual Maroon */
            --bg-gradient-1: #fffbf4;    /* Soft Dawn Cream */
            --bg-gradient-2: #f5eae0;    /* Sandy Sandstone */
            --text-main: #2b221d;        /* Mud Charcoal */
            --text-light: #706259;       /* Earth Muted */
            --white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --border-radius: 16px;
            --sharp-shadow: 0 20px 40px rgba(92, 29, 17, 0.05);
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Reset & Base Setup */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Aptos', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2));
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ==========================================================================
           1. ALTERNATIVE HERO SECTION (Split-Tone Layout)
           ========================================================================== */
        .hero-section {
            padding: 120px 0 80px 0;
            text-align: center;
            position: relative;
        }

        /* Subtle Geometric Background Elements for a different feel */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(224, 90, 43, 0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .trust-badge {
            background-color: var(--deep-maroon);
            color: #f7d6c8;
            padding: 6px 16px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(92, 29, 17, 0.15);
        }

        .hero-content h1 {
            font-size: 48px;
            color: var(--deep-maroon);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 19px;
            max-width: 680px;
            margin: 0 auto;
            color: var(--text-light);
            font-weight: 400;
        }

        /* ==========================================================================
           2. MODERN TIMELINE SCHEDULE SECTION
           ========================================================================== */
        .schedule-section {
            padding: 60px 0 100px 0;
        }

        .section-title-wrap {
            margin-bottom: 60px;
            text-align: center;
        }

        .section-title-wrap h2 {
            font-size: 28px;
            color: var(--text-main);
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title-wrap h2::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background-color: var(--accent-saffron);
            margin: 12px auto 0 auto;
            border-radius: 2px;
        }

        /* Different Card Layout: Minimalist, clean grid alignment */
        .timeline-container {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .event-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: var(--border-radius);
            padding: 30px;
            display: grid;
            grid-template-columns: 120px 1fr auto;
            align-items: center;
            box-shadow: var(--sharp-shadow);
            transition: var(--transition);
        }

        .event-card:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 30px 60px rgba(92, 29, 17, 0.08);
            border-color: rgba(224, 90, 43, 0.2);
        }

        /* Calendar Block Style */
        .event-date-block {
            border-right: 2px dashed rgba(112, 98, 89, 0.2);
            padding-right: 20px;
        }

        .date-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-saffron);
            line-height: 1;
            display: block;
        }

        .date-month {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Info Block Style */
        .event-info-block {
            padding: 0 40px;
        }

        .event-info-block h3 {
            font-size: 20px;
            color: var(--deep-maroon);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .event-info-block p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Time Tag Style */
        .event-time-tag {
            background-color: rgba(220, 90, 43, 0.08);
            color: var(--accent-saffron);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: inset 0 1px 2px rgba(224, 90, 43, 0.1);
        }

        /* ==========================================================================
           3. INTUITIVE NEWSLETTER SECTION (Asymmetric Card Style)
           ========================================================================== */
        .newsletter-section {
            padding-bottom: 120px;
        }

        .newsletter-box {
            background: linear-gradient(135deg, var(--deep-maroon), #3d120a);
            color: var(--white);
            border-radius: 24px;
            padding: 60px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(58, 14, 7, 0.3);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
        }

        /* Ornamental abstract shapes in background */
        .newsletter-box::after {
            content: '🕉';
            position: absolute;
            right: -30px;
            bottom: -50px;
            font-size: 220px;
            color: rgba(255, 255, 255, 0.03);
            font-weight: 400;
            pointer-events: none;
        }

        .newsletter-text h3 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .newsletter-text p {
            color: #d1bebc;
            font-size: 15px;
            max-width: 420px;
        }

        /* Form styling */
        .newsletter-form-container {
            position: relative;
            z-index: 2;
        }

        .modern-form {
            display: flex;
            background: rgba(255, 255, 255, 0.08);
            padding: 6px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition);
        }

        .modern-form:focus-within {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-saffron);
            box-shadow: 0 0 20px rgba(224, 90, 43, 0.2);
        }

        .modern-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 12px 24px;
            color: var(--white);
            font-size: 15px;
            outline: none;
        }

        .modern-form input::placeholder {
            color: #a89492;
        }

        .modern-form button {
            background-color: var(--white);
            color: var(--deep-maroon);
            border: none;
            padding: 0 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }

        .modern-form button:hover {
            background-color: var(--accent-saffron);
            color: var(--white);
            transform: scale(1.02);
        }

        /* ==========================================================================
           RESPONSIVE ENGINE (Completely Adaptive Layout)
           ========================================================================== */
        @media (max-width: 992px) {
            .newsletter-box {
                grid-template-columns: 1fr;
                padding: 45px;
                gap: 30px;
                text-align: center;
            }
            .newsletter-text p {
                margin: 0 auto;
            }
            .modern-form {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 34px;
            }
            .hero-content p {
                font-size: 16px;
            }
            .event-card {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
                padding: 24px;
            }
            .event-date-block {
                border-right: none;
                border-bottom: 2px dashed rgba(112, 98, 89, 0.15);
                padding-right: 0;
                padding-bottom: 15px;
            }
            .event-info-block {
                padding: 0;
            }
            .event-time-tag {
                display: inline-block;
                margin: 5px auto 0 auto;
            }
        }

        @media (max-width: 480px) {
            .modern-form {
                flex-direction: column;
                background: transparent;
                border: none;
                gap: 12px;
                border-radius: 0;
            }
            .modern-form input {
                background: rgba(255, 255, 255, 0.08);
                border-radius: 30px;
                border: 1px solid rgba(255, 255, 255, 0.15);
                text-align: center;
            }
            .modern-form button {
                padding: 14px;
                width: 100%;
            }
        }

           /* Unique Vedic Educational Color Palette */
        :root {
            --vedic-green: #1b4332;      /* Deep Forest Gurukul Green */
            --vedic-gold: #d4a373;       /* Brass / Ancient Scroll Gold */
            --accent-orange: #e07a5f;    /* Clay / Fire Pit Orange */
            --bg-cream: #fdfaf6;         /* Pure Handmade Paper Cream */
            --text-dark: #2f3e46;        /* Slate Charcoal */
            --text-muted: #6b705c;       /* Olive Muted Gray */
            --white: #ffffff;
            --card-radius: 16px;
            --smooth-shadow: 0 15px 35px rgba(27, 67, 50, 0.06);
            --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Reset & Base Rules */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif; /* Classic font for Vedic texture */
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.7;
        }

        .container {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ==========================================================================
           1. VEDIC HERO SECTION (Gurukul Introduction)
           ========================================================================== */
        .vedic-hero {
            padding: 100px 0 60px 0;
            text-align: center;
            position: relative;
        }

        .vedic-hero::before {
            content: '📖';
            font-size: 50px;
            display: block;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .institute-tag {
            color: var(--vedic-gold);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            display: block;
            margin-bottom: 12px;
            font-family: sans-serif;
        }

        .vedic-hero h1 {
            font-size: 44px;
            color: var(--vedic-green);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .vedic-hero p {
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto;
            color: var(--text-muted);
            font-style: italic;
        }

        /* ==========================================================================
           2. PATHSHALA COURSES GRID (Unique 3-Column Layout)
           ========================================================================== */
        .courses-section {
            padding: 60px 0 100px 0;
        }

        .grid-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .grid-header h2 {
            font-size: 28px;
            color: var(--vedic-green);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .grid-header h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background-color: var(--vedic-gold);
            margin: 10px auto 0 auto;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .course-card {
            background-color: var(--white);
            border-radius: var(--card-radius);
            padding: 40px 30px;
            box-shadow: var(--smooth-shadow);
            border: 1px solid rgba(27, 67, 50, 0.03);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--vedic-gold);
            border-radius: var(--card-radius) var(--card-radius) 0 0;
            transition: var(--transition);
        }

        .course-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(27, 67, 50, 0.1);
        }

        .course-card:hover::before {
            background-color: var(--accent-orange);
        }

        .course-icon {
            font-size: 32px;
            margin-bottom: 20px;
            background-color: rgba(212, 163, 115, 0.12);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .course-card h3 {
            font-size: 21px;
            color: var(--vedic-green);
            margin-bottom: 12px;
        }

        .course-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 25px;
            flex-grow: 1;
            font-family: sans-serif;
            line-height: 1.6;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #f0e6df;
            padding-top: 15px;
            font-size: 13px;
            font-weight: 600;
            font-family: sans-serif;
        }

        .duration {
            color: var(--text-muted);
        }

        .enroll-link {
            color: var(--accent-orange);
            text-decoration: none;
            transition: var(--transition);
        }

        .enroll-link:hover {
            color: var(--vedic-green);
            letter-spacing: 0.5px;
        }

        /* ==========================================================================
           3. ADMISSION CTA (Traditional Notice-Board Style)
           ========================================================================== */
        .admission-section {
            padding-bottom: 100px;
        }

        .admission-banner {
            background-color: var(--vedic-green);
            color: var(--white);
            border-radius: var(--card-radius);
            padding: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            box-shadow: 0 30px 60px rgba(27, 67, 50, 0.2);
        }

        .admission-text h3 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--white);
        }

        .admission-text p {
            color: #bcd4ca;
            font-size: 15px;
            max-width: 550px;
            font-family: sans-serif;
        }

        .admission-btn {
            background-color: var(--vedic-gold);
            color: var(--vedic-green);
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            font-family: sans-serif;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .admission-btn:hover {
            background-color: var(--white);
            color: var(--vedic-green);
            transform: scale(1.03);
        }

        /* ==========================================================================
           RESPONSIVE ENGINE
           ========================================================================== */
        @media (max-width: 992px) {
            .admission-banner {
                flex-direction: column;
                text-align: center;
                padding: 40px;
            }
            .admission-text p {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .vedic-hero h1 {
                font-size: 34px;
            }
            .vedic-hero p {
                font-size: 16px;
            }
            .courses-grid {
                grid-template-columns: 1fr;
            }
            .course-card {
                padding: 30px 20px;
            }
        }














         :root {
            --primary-dark: #7c2d12;    /* Deep terracotta rust */
            --accent-orange: #ea580c;  /* Warm spiritual saffron */
            --soft-cream: #fffbeb;     /* Calm background */
            --dark-charcoal: #1e293b;  /* Text color */
            --pure-white: #ffffff;
            --gradient-accent: linear-gradient(135deg, #ea580c 0%, #b45309 100%);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: #fafaf9;
            color: var(--dark-charcoal);
            line-height: 1.7;
        }

        /* ==========================================================================
           ULTRA-MODERN HERO SECTION (Asymmetric Split Screen Design)
           ========================================================================== */
        .modern-hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background-color: var(--soft-cream);
            overflow: hidden;
            padding: 60px 5%;
        }

        /* Abstract Saffron Background Shapes */
        .modern-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60vw;
            height: 120%;
            background: linear-gradient(145deg, #ffedd5 0%, #fed7aa 100%);
            border-radius: 50% 0 0 50%;
            z-index: 1;
            transform: skewX(-5deg);
        }

        .hero-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* Left Side Text Panel */
        .hero-left {
            padding-right: 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #ffedd5;
            color: var(--accent-orange);
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            border: 1px solid #fed7aa;
        }

        .hero-left h1 {
            font-family: 'Cinzel', serif;
            font-size: 54px;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-left h1 span {
            display: block;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            color: var(--accent-orange);
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .hero-left p {
            font-size: 18px;
            color: #475569;
            margin-bottom: 35px;
            max-width: 580px;
        }

        /* Premium Floating Buttons */
        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-premium {
            background: var(--gradient-accent);
            color: var(--pure-white);
            padding: 16px 38px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-premium:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(234, 88, 12, 0.45);
        }

        .btn-outline {
            border: 2px solid var(--primary-dark);
            color: var(--primary-dark);
            padding: 14px 34px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border-radius: 14px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline:hover {
            background-color: var(--primary-dark);
            color: var(--pure-white);
        }

        /* Right Side Modern Image Frame with Overlaps */
        .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .image-frame-container {
            position: relative;
            width: 100%;
            max-width: 440px;
            height: 520px;
        }

        .main-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border: 8px solid var(--pure-white);
        }

        /* Floating Stat card overlay */
        .floating-stat-box {
            position: absolute;
            bottom: 30px;
            left: -40px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 16px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-left: 5px solid var(--accent-orange);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: floatAnim 4s ease-in-out infinite;
        }

        .floating-stat-box i {
            font-size: 30px;
            color: var(--accent-orange);
        }

        .floating-stat-box .stat-text h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .floating-stat-box .stat-text p {
            font-size: 13px;
            color: #64748b;
            font-weight: 500;
        }

        @keyframes floatAnim {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ==========================================================================
           MAIN CONTENT AREA
           ========================================================================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        /* Core Philosophy Section */
        .intro-section {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 17px;
            max-width: 850px;
            margin: 0 auto;
            color: #475569;
        }

        /* Responsive Grid Cards */
        .grid-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 70px;
        }

        .card {
            background-color: var(--pure-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid #f1f5f9;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(124, 45, 18, 0.08);
        }

        .card-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 240px;
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .card:hover .card-img {
            transform: scale(1.08);
        }

        .card-content {
            padding: 30px;
        }

        .card-content h3 {
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-content p {
            color: #64748b;
            font-size: 15px;
        }

        /* Modern CTA Callout Banner */
        .cta-banner {
            background: linear-gradient(135deg, #fffbeb 0%, #ffedd5 100%);
            border-radius: 24px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            border: 1px solid #fed7aa;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .cta-banner h2 {
            font-family: 'Cinzel', serif;
            color: var(--primary-dark);
            font-size: 30px;
            max-width: 700px;
        }

        .cta-banner p {
            font-size: 16px;
            color: #475569;
            max-width: 800px;
        }

        /* ==========================================================================
           RESPONSIVE BREAKPOINTS
           ========================================================================== */
        @media (max-width: 992px) {
            .hero-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            .hero-left {
                padding-right: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-left h1 {
                font-size: 42px;
            }
            .hero-cta-group {
                justify-content: center;
            }
            .modern-hero::before {
                width: 100vw;
                height: 50%;
                top: auto;
                bottom: 0;
                border-radius: 50% 50% 0 0;
            }
            .image-frame-container {
                height: 460px;
            }
            .floating-stat-box {
                left: 10px;
                bottom: -20px;
            }
        }

        @media (max-width: 576px) {
            .hero-left h1 {
                font-size: 32px;
            }
            .image-frame-container {
                height: 380px;
            }
            .cta-banner {
                padding: 30px 20px;
            }
            .cta-banner h2 {
                font-size: 24px;
            }
        }


        
        /* ======================================================= */
        /* PREMIUM MINIMAL LIGHT THEME TOASTIFY DESIGN            */
        /* ======================================================= */
        .srst-toast-wrapper-container {
            position: fixed;
            bottom: 24px;
            /* Changed from right to left as requested */
            left: 24px; 
            z-index: 999999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 360px;
            width: calc(100% - 48px);
            pointer-events: none;
        }

        .srst-toast-card {
            background: #ffffff; /* Pure White Background */
            border-radius: 16px;
            padding: 16px 20px;
            /* Premium Soft Drop Shadow for Light BG */
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.03);
            border: 1px solid #e2e8f0; /* Soft border line */
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            pointer-events: auto;
            /* Changed animation to enter from the left side */
            transform: translateX(-120%);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        }

        /* Active Class for slide-in animation from the left */
        .srst-toast-card.srst-toast-show {
            transform: translateX(0);
            opacity: 1;
        }

        /* Premium Minimal Icon Layout */
        .srst-toast-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
        }

        /* Icon styling with brand colors as highlights */
        .srst-icon-welcome {
            background-color: #fff7ed;
            color: #ea580c;
        }

        .srst-icon-donate {
            background-color: #ecfdf5;
            color: #059669;
        }

        /* Light Mode Premium Text Highlights */
        .srst-text-welcome { color: #ea580c; font-weight: 600; }
        .srst-text-donate { color: #059669; font-weight: 600; }

        .srst-toast-content {
            flex-grow: 1;
            color: #334155; /* Modern Slate Text */
            font-size: 13.5px;
            font-weight: 500;
            line-height: 1.4;
        }
        
        /* Premium Text Action Button for Light Theme */
        .srst-toast-action-btn {
            display: inline-block;
            color: #059669;
            text-decoration: none;
            font-size: 13.5px;
            font-weight: 700;
            margin-top: 2px;
            border-bottom: 1.5px solid transparent;
            transition: all 0.2s;
        }
        .srst-toast-action-btn:hover { 
            border-color: #059669;
        }

        .srst-toast-close-btn { 
            background: none; 
            border: none; 
            color: #94a3b8; 
            font-size: 18px; 
            cursor: pointer; 
            padding: 0;
            line-height: 1; 
            opacity: 0.7;
            transition: opacity 0.2s;
            margin-left: 10px;
        }
        .srst-toast-close-btn:hover { opacity: 1; color: #64748b; }

        /* Universal Device Responsive Design */
        @media (max-width: 500px) {
            .srst-toast-wrapper-container { 
                bottom: 16px; 
                right: 16px; /* Center on mobile but with padding */
                left: 16px; 
                width: calc(100% - 32px); 
            }
            .srst-toast-card { padding: 14px; border-radius: 12px; gap: 10px; }
            .srst-toast-icon { width: 32px; height: 32px; font-size: 16px; border-radius: 8px; }
            .srst-toast-content { font-size: 13px; }
            .srst-toast-close-btn { margin-left: 5px; }
        }



        /*================ Dropdown =======================*/

             /* Unique Prefixed Main Wrapper */
        .rwm-full-width-container {
            width: 100%;
            max-width: 1200px;
            padding: 0 5%;
        }

        /* Clean Minimal Header */
        .rwm-section-header {
            margin-bottom: 24px;
        }

        .rwm-section-title {
            font-size: clamp(20px, 5vw, 24px);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #111827;
            text-align: left;
        }

        .rwm-section-subtitle {
            font-size: clamp(11px, 3vw, 12px);
            color: #6b7280;
            text-align: left;
            margin-top: 6px;
        }

        /* Modern Unified Accordion Component */
        .rwm-modern-accordion {
            width: 100%;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .rwm-modern-accordion:hover {
            border-color: #d1d5db;
        }

        /* Unique Hidden Input state */
        .rwm-accordion-state {
            display: none;
        }

        /* Clickable Header Area */
        .rwm-accordion-trigger {
            width: 100%;
            padding: clamp(16px, 4vw, 20px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
            background: #ffffff;
            gap: 16px;
        }

        .rwm-trigger-title {
            font-size: clamp(12px, 4vw, 13px);
            font-weight: 600;
            color: #111827;
            line-height: 1.4;
        }

        /* Unique Chevron Style */
        .rwm-chevron-icon {
            width: 28px;
            height: 28px;
            background: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .rwm-chevron-icon::after {
            content: '';
            width: 6px;
            height: 6px;
            border-right: 2px solid #4b5563;
            border-bottom: 2px solid #4b5563;
            transform: rotate(45deg) translate(-1px, -1px);
            transition: transform 0.3s;
        }

        /* Content Panel Wrapper */
        .rwm-accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Body Paragraph Design */
        .rwm-single-paragraph-content {
            padding: 0 clamp(16px, 4vw, 24px) clamp(16px, 4vw, 24px) clamp(16px, 4vw, 24px);
            font-size: clamp(13px, 3.5vw, 13px);
            line-height: 1.7;
            color: #374151;
            text-align: justify;
            border-top: 1px solid #f3f4f6;
            padding-top: 16px;
        }

        .rwm-highlight-text {
            color: #4f46e5;
            font-weight: 600;
        }

        /* -------------------------------------------
            SMOOTH OPEN STATES (Unique Flow)
        ------------------------------------------- */
        
        .rwm-accordion-state:checked ~ .rwm-accordion-panel {
            max-height: 600px;
        }

        .rwm-accordion-state:checked ~ .rwm-accordion-trigger .rwm-chevron-icon {
            background: #111827;
        }

        .rwm-accordion-state:checked ~ .rwm-accordion-trigger .rwm-chevron-icon::after {
            border-color: #ffffff;
            transform: rotate(-135deg) translate(1px, 1px);
        }
        /* --- Global Container Styling --- */
.rwm-full-width-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    box-sizing: border-box;
}

.rwm-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.rwm-section-title {
    font-size: 28px;
    color: #b5651d; /* Elegant Trust Theme Color */
    margin-bottom: 8px;
    font-weight: 700;
}

.rwm-section-subtitle {
    font-size: 15px;
    color: #666666;
}

/* --- Accordion Main Wrapper --- */
.rwm-modern-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Hide native checkbox */
.rwm-accordion-state {
    display: none;
}

/* --- Accordion Trigger --- */
.rwm-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #fffaf5; /* Warm spiritual tint */
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.rwm-accordion-trigger:hover {
    background-color: #f5eae0;
}

.rwm-trigger-title {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

/* --- Smooth Rotating Chevron Icon --- */
.rwm-chevron-icon {
    width: 12px;
    height: 12px;
    border-right: 3px solid #b5651d;
    border-bottom: 3px solid #b5651d;
    transform: rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 5px;
}

/* Toggle rotation on click */
.rwm-accordion-state:checked ~ .rwm-accordion-trigger .rwm-chevron-icon {
    transform: rotate(-135deg);
}

/* --- Accordion Panel Smooth Transition --- */
.rwm-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.rwm-accordion-state:checked ~ .rwm-accordion-panel {
    max-height: 2500px; /* Allocated enough room for English text length */
}

/* --- Content Paragraph Settings --- */
.rwm-single-paragraph-content {
    padding: 25px;
}

.rwm-single-paragraph-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-top: 0;
    margin-bottom: 22px;
    text-align: justify;
}

.rwm-single-paragraph-content p:last-child {
    margin-bottom: 0;
}

/* Targeted SEO Keyword Highlights */
.rwm-single-paragraph-content strong {
    color: #b5651d;
    font-weight: 700;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .rwm-trigger-title {
        font-size: 16px;
    }
    .rwm-single-paragraph-content p {
        font-size: 15px;
        text-align: left;
    }
}