
/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
font-family:'Poppins',sans-serif;
background:#f7f9fc;
line-height:1.7;
overflow-x:hidden;
}

/* GLOBAL */

.section{
padding:50px 0;
}

.section-title{
text-align:center;
font-size:36px;
font-weight:700;
color:#0B2E63;
margin-bottom:35px;
position:relative;
}

.section-title:after{
content:"";
width:80px;
height:4px;
background:#E51B3E;
display:block;
margin:15px auto;
border-radius:10px;
}

/* TOPBAR */

.topbar{
background:#0B2E63;
color:white;
padding:4px 0;
font-size:13px;
}

.topbar .container{
display:flex;
align-items:center;
justify-content:space-between;
}

.topbar-left{
display:flex;
gap:25px;
align-items:center;
}

.topbar-left span{
display:flex;
align-items:center;
gap:8px;
}

/* TOPBAR LINK STYLES */
.topbar-link {
    color: white; 
    text-decoration: none; 
    transition: 0.3s;
}

.topbar-link:hover {
    color: #E51B3E; 
    text-decoration: none;
}

.social-icons{
display:flex;
gap:14px;
}

.social-icons a{
color:white;
font-size:14px;
transition:.3s;
}

.social-icons a:hover{
color:#E51B3E;
}

/* NAVBAR */

.navbar-brand {
    padding: 0; 
    margin: 0;
    display: flex;
    align-items: center;
}
.navbar{
background:white;
padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 100px;
box-shadow:0 3px 12px rgba(0,0,0,0.06);
}

.navbar-brand img{
height:100px !important;
width: auto;
    object-fit: contain;
    display: block;
	margin-right:8px;
}

.brand-text{
font-size:26px;
font-weight:700;
color:#0B2E63;
font-family: 'Montserrat', sans-serif;
}

.slogan{
font-size:12px;
font-weight:500;
color:#f20241;
}

.nav-link{
font-weight:500;
margin-left:16px;
font-size:14px;
color:#333 !important;
}

.nav-link:hover{
color:#E51B3E !important;
}
.dropdown-menu{
border:none;
border-radius:12px;
padding:10px;
background:linear-gradient(135deg,#ffffff,#f5f7ff);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.dropdown-item{
border-radius:8px;
padding:10px 14px;
font-size:14px;
font-weight:500;
transition:.3s;
}

.dropdown-item:hover{
background:linear-gradient(90deg,#ff6a8a,#ff9aa2);
color:white;
padding-left:18px;
}

.navbar .dropdown:hover .dropdown-menu{
display:block;
margin-top:0;
}
.regd-nav-logo {
    font-size: 11px; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -2px; 
    color: #0B2E63;
    white-space: nowrap; 
	width: 100%; 
    text-align: center;
}
.regd-nav-logo strong {
    color: #0B2E63 !important;
}

.regd-nav-logo span {
    color: #E51B3E !important;
}
@media (max-width: 768px) {
    .regd-nav-logo {
        font-size: 8px;
    }
}
/* BREADCRUMB DESIGN - ENHANCED */
.breadcrumb-area {
    position: relative;
    padding: 120px 0; 
    background: url('img/breadcrumb.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.30);
    z-index: 0;
}

.breadcrumb-area .container {
    position: relative;
    z-index: 1; 
}

.breadcrumb-area h1 {
    font-size: 48px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.breadcrumb-item a {
    color: #ff9aa2;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #ffffff !important;
    opacity: 0.9;
}
/* BREADCRUMB TAGLINE STYLE */
.breadcrumb-tagline {
    color: #ffffff; 
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 25px;
    display: inline-block;
    padding: 5px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .breadcrumb-tagline {
        font-size: 14px;
        padding: 4px 15px;
    }
}

.about-info {
    background: radial-gradient(circle at top right, #f0f4ff, #ffffff);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.about-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(229, 27, 62, 0.03);
    border-radius: 50%;
}
/* Left Side: 5 Hearts */
.hearts-left { position: absolute; top: 5%; left: 3%; z-index: 1; }
.hearts-left i { color: rgba(229, 27, 62, 0.15); position: absolute; animation: floatUp 5s infinite ease-in-out; }

.h-1 { font-size: 12px; left: 0; top: 0; animation-delay: 0s; }
.h-2 { font-size: 20px; left: 25px; top: 25px; animation-delay: 1s; }
.h-3 { font-size: 30px; left: 10px; top: 60px; animation-delay: 2s; }
.h-4 { font-size: 40px; left: 50px; top: 100px; animation-delay: 3s; }
.h-5 { font-size: 50px; left: 20px; top: 150px; animation-delay: 4s; }

/* --- Right Side Bottom: 3 Hearts --- */
.hearts-right { 
    position: absolute; 
    bottom: 15%; /* Top-ku pathila Bottom-la vachiruken */
    right: 5%; 
    z-index: 1; 
}

.hearts-right i { 
    color: rgba(229, 27, 62, 0.15); 
    position: absolute; 
    animation: floatUp 6s infinite ease-in-out; 
}

/* Bottom corner-la irunthu mela float aaga positions */
.rh-1 { font-size: 35px; right: 0; bottom: 0; }
.rh-2 { font-size: 22px; right: 45px; bottom: 30px; animation-delay: 1.5s; }
.rh-3 { font-size: 15px; right: 15px; bottom: 60px; animation-delay: 3s; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.6; }
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.6; }
}
.about-description {
    color: #475569;
    font-size: 16px;
    line-height: 1.8; 
    margin-bottom: 25px;
    text-align: justify;
}

.ls-2 {
    letter-spacing: 2px;
}

.about-img-box img {
    border-right: 10px solid #0B2E63;
    border-bottom: 10px solid #E51B3E;
    transition: 0.5s;
}

.about-img-box:hover img {
    transform: scale(1.02);
}
.about-img-box {
    position: relative;
}
.rg{
	color: #E51B3E;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #E51B3E;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(229, 27, 62, 0.3);
}
.experience-badge span {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

/* VISION MISSION */
.vision-section {
    position: relative;
    padding: 50px 0;
    background-color:linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    overflow: hidden;
    z-index: 1;
}

/* Unique Soft Mesh Layer */
.vision-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(229, 27, 62, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(11, 46, 99, 0.1) 0%, transparent 40%);
    z-index: -2;
}

/* Floating Glass Orbs - The Unique Element */
.vision-section::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    /* Soft blend of your branding colors */
    background: radial-gradient(circle, rgba(11, 46, 99, 0.04) 0%, rgba(229, 27, 62, 0.03) 30%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: -1;
    animation: slowGlow 15s infinite alternate ease-in-out;
}


/* 2. Clean Modern Cards */
/* 2. Enhanced Glass Look Cards */
.vm-card {
    background: rgba(255, 255, 255, 0.8) !important; /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blur effect for background */
    padding: 30px 10px !important;
    border-radius: 30px !important;
    
    /* Intha border dhaan card-ai highlight panni kaatum */
    border: 2px solid #ffffff !important; 
    
    text-align: center;
    height: 100% !important;
    position: relative;
    z-index: 5;
    
    /* Stronger Shadow for Floating Feel */
    box-shadow: 0 20px 40px rgba(11, 46, 99, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 3. Icon Wrapper - Glow Effect (Summa paarkum pothey theriyaum) */
.icon-wrapper {
    width: 90px !important;
    height: 90px !important;
    background: #ffffff !important;
    color: #E51B3E !important; /* Brand Red Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circle for better look */
    margin: 0 auto 35px;
    font-size: 35px;
    
    /* Intha glow icon-ai empty-ah theriya vidathu */
    box-shadow: 0 10px 25px rgba(229, 27, 62, 0.2); 
    border: 3px solid rgba(229, 27, 62, 0.1);
    transition: all 0.4s ease !important;
}

/* 4. Hover State - Deep Change */
.vm-card:hover {
    transform: translateY(-15px) !important;
    background: #ffffff !important; /* Hover panna solid white-ah maarum */
    border-color: #E51B3E !important; /* Red border on hover */
    box-shadow: 0 40px 80px rgba(11, 46, 99, 0.15) !important;
}

.vm-card:hover .icon-wrapper {
    background: #E51B3E !important;
    color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(229, 27, 62, 0.4);
}

/* 5. Typography Fix */
.vm-card h4 {
    font-weight: 800;
    color: #0B2E63;
    margin-bottom: 20px;
    font-size: 26px;
    /* Title-kku kila oru soft underline */
    background: linear-gradient(to right, #E51B3E 30%, transparent 100%);
    background-size: 50px 3px;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-bottom: 15px;
}

.vm-card p {
    color: #4a5568;
    font-weight: 500;
    line-height: 1.8;
}
/* COMMITTEE MEMBER CARDS */
.committee-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f8fafc 0%, #edf2f7 100%);
}

.committee-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #e51b3e; /* Red color */
    filter: blur(120px);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 0;
}
.member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%; /* Ensures all cards are same height */
    border: 1px solid #eee;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: #E51B3E;
}

.member-img {
    position: relative;
	border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 320px; 
    object-fit: cover;
	object-position: top;
	transition: transform 0.5s ease;
}

.member-info {
    padding: 20px;
    text-align: center;
	border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.member-info span {
    color: #E51B3E;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.member-info h4 {
    color: #0B2E63;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.member-info p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

/* VALUES SECTION STYLES */
.values-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    overflow: hidden;
}

/* Little Hearts Common Style */
.v-heart {
    position: absolute;
    font-size: 16px; /* Uniform small size */
    color: rgba(229, 27, 62, 0.1); /* Subtle red */
    z-index: 0;
    pointer-events: none;
    animation: heartFloatMove 7s infinite ease-in-out;
}

/* Scattered Positions - Covering all corners and gaps */
.vh-1 { top: 5%; left: 8%; animation-delay: 0s; }
.vh-2 { top: 12%; left: 45%; animation-delay: 1.5s; }
.vh-3 { top: 8%; right: 10%; animation-delay: 3s; }

.vh-4 { top: 35%; left: 3%; animation-delay: 2.5s; }
.vh-5 { top: 40%; right: 5%; animation-delay: 4.5s; }

.vh-6 { top: 55%; left: 50%; transform: translateX(-50%); animation-delay: 1s; }

.vh-7 { bottom: 35%; left: 12%; animation-delay: 5s; }
.vh-8 { bottom: 40%; right: 15%; animation-delay: 2.2s; }

.vh-9 { bottom: 10%; left: 5%; animation-delay: 0.8s; }
.vh-10 { bottom: 15%; left: 45%; animation-delay: 3.5s; }
.vh-11 { bottom: 8%; right: 8%; animation-delay: 1.2s; }
.vh-12 { top: 25%; left: 25%; animation-delay: 2s; }

/* Smooth floating and slight rotation */
@keyframes heartFloatMove {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-25px) rotate(15deg); opacity: 0.7; }
}
.value-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 25px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon {
    font-size: 42px;
    color: #E51B3E; /* Red color for icons */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-card h4 {
    font-weight: 700;
    color: #0B2E63; /* Dark Blue color */
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.value-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hover Effect - All cards behave the same */
.value-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #E51B3E;
}

/* Closing css */
.closing-section {
    position: relative;
    padding: 50px 0;
    background:url('img/cta.jpeg') center/cover no-repeat;
    overflow: hidden;
}

.closing-card {
background: rgba(255, 255, 255, 0.5);
    padding: 60px 40px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(11, 46, 99, 0.2);
    position: relative;
    overflow: hidden;
}


.closing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
	color:#0B2E63;
}

/* Red line under title like your section-title class */
.closing-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #E51B3E; /* Your Primary Red */
    display: block;
    margin: 15px auto;
    border-radius: 10px;
}

.closing-text {
    font-size: 18px;
    line-height: 1.8;
    color: #475569; /* Light grey text for readability on dark blue */
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}



/* Mobile Adjustments */
@media (max-width: 768px) {
    .closing-card {
        padding: 40px 20px;
        margin: 0 15px;
    }
    .closing-title {
        font-size: 26px;
    }
    .closing-text {
        font-size: 15px;
    }
}


/* Services CSS */
/* SERVICES PAGE - SOFT GRADIENT REFINEMENT */
.services-page {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    z-index: 1;
}
/* 1. Moving Grid (With Pulse & Slide Animation) */
.moving-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    
    background-image: 
        linear-gradient(rgba(11, 46, 99, 0.03) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(11, 46, 99, 0.03) 1.5px, transparent 1.5px);
    background-size: 80px 80px;
    z-index: -2;
    transform: rotate(-5deg);
    
    /* DOUBLE ANIMATION: Slide + Pulse (Breathing effect) */
    animation: 
        gridSlide 40s linear infinite, 
        gridPulse 8s ease-in-out infinite; 
}

/* Slide Animation: Grid mella move aagum */
@keyframes gridSlide {
    from { transform: rotate(-5deg) translate(0, 0); }
    to { transform: rotate(-5deg) translate(-80px, -80px); }
}

/* Pulse Animation: Grid mella fade-in / fade-out aagum */
@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 2. Glassy Floating Shapes - HIGH VISIBILITY VERSION */
.glass-shape {
    position: absolute;
    border-radius: 50%;
    /* Blur-ah 120px-la irunthu 60px-ku kuraichuruken - ippo shape nalla theryum */
    filter: blur(60px); 
    z-index: -1;
    /* Opacity increase panniyachu */
    opacity: 0.5;
    /* Morphing animation sethuruken (shape change aagitte irukkum) */
    animation: morphingAnim 15s infinite alternate ease-in-out;
}

/* Shape 1: Vibrant Red Tint */
.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 27, 62, 0.2) 0%, rgba(229, 27, 62, 0.05) 70%);
    top: -5%;
    right: -5%;
}

/* Shape 2: Deep Blue Tint */
.shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 46, 99, 0.15) 0%, rgba(11, 46, 99, 0.05) 70%);
    bottom: 5%;
    left: -5%;
    animation-delay: -3s;
}

/* Shape 3: Warm Glow Tint */
.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0.02) 70%);
    top: 40%;
    left: 25%;
    animation-delay: -6s;
}

/* NEW: Morphing & Floating Combined Animation */
@keyframes morphingAnim {
    0% {
        border-radius: 50% 50% 50% 50%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        border-radius: 40% 60% 50% 50%;
        transform: translate(40px, -40px) scale(1.1) rotate(5deg);
    }
    66% {
        border-radius: 60% 40% 70% 30%;
        transform: translate(-30px, 50px) scale(0.9) rotate(-5deg);
    }
    100% {
        border-radius: 50% 50% 50% 50%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

@keyframes gridSlide {
    from { transform: rotate(-5deg) translate(0, 0); }
    to { transform: rotate(-5deg) translate(-80px, -80px); }
}

@keyframes floatAnim {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(50px, 50px) scale(1.1) rotate(10deg); }
    100% { transform: translate(-30px, -60px) scale(1) rotate(-10deg); }
}
/* 3. Compact & Corner-Aligned Diamond Dot Pattern */
.diamond-dot-pattern {
    position: absolute;
    /* Innum mela and corner-ku move panniyachu */
    top: -20px; 
    left: -20px;
    
    /* Height and Width reduce panniyachu for compact look */
    width: 280px; 
    height: 320px;
    
    /* Dots visibility and size optimized */
    background-image: radial-gradient(rgba(11, 46, 99, 0.3) 2.5px, transparent 2.5px);
    background-size: 30px 30px;
    
    z-index: -1;
    /* Diamond rotation */
    transform: rotate(45deg); 
    
    /* High Visibility */
    opacity: 0.3; 
    
    /* Subtle movement in the corner */
    animation: cornerFloat 6s infinite alternate ease-in-out;
}

/* Red Accent Layer (Slightly smaller) */
.diamond-dot-pattern::after {
    content: '';
    position: absolute;
    top: 30px; 
    left: 30px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(229, 27, 62, 0.25) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: -2;
}

/* Corner Specific Animation */
@keyframes cornerFloat {
    0% { 
        transform: rotate(45deg) translate(0, 0); 
    }
    100% { 
        transform: rotate(45deg) translate(15px, 10px); 
    }
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Image Styling with Floating Effect */
.program-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.program-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.program-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Content Styling */
.program-content {
    position: relative;
}

.program-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(229, 27, 62, 0.1); /* Red with low opacity */
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: -1;
    font-family: sans-serif;
}
/* BALANCED TITLE HOVER EFFECT */
.program-content h4.color-blue {
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
    /* Default color blue-laye irukkum */
}

/* Hover pannumpothu Solid & Clear Red */
.program-content h4.color-blue:hover {
    /* Balanced Red - Not too dark, not too light */
    color: #E51B3E !important; 
    /* Slight lift instead of side move (for a premium feel) */
    transform: translateY(-3px);
}

/* Underline logic - Solid visibility */
.program-content h4.color-blue::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Visibility-kaga thickness konjam kootiyachu */
    bottom: -6px;
    left: 0;
    background-color: #E51B3E;
    border-radius: 50px; /* Rounded corners for the line */
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.program-content h4.color-blue:hover::after {
    width: 60px; /* Chinna accent line mathiri varum, ithu romba unique look */
}
.color-blue {
    color: #0B2E63;
}

.program-content p {
    color: #526071;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive Zig-Zag */
@media (max-width: 991px) {
    .program-content {
        text-align: center;
        padding: 0 !important;
    }
    .program-number {
        left: 50%;
        transform: translateX(-50%);
    }
    .program-img-wrapper img {
        height: 300px;
    }
}

/* Optional: Subtle Entry Animation */
.row {
    transition: all 0.3s ease;
}


/* VOLUNTEER SECTION - WIDE CARD & RED UNDERLINE */
.volunteer-program-section {
    position: relative;
    padding: 50px 0;
    background-color: #f1f5f9; /* Slightly darker base to show dots */
    overflow: hidden;
    z-index: 1;
}

/* 1. High Visibility Dot Pattern */
.volunteer-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* Wider for smooth scrolling */
    height: 200%;
    /* Pattern: Darker Blue Dots */
    background-image: radial-gradient(#0b2e63 2px, transparent 2px); 
    background-size: 40px 40px;
    opacity: 0.15; /* Increased opacity for visibility */
    z-index: -1;
    animation: patternMove 40s linear infinite;
}

/* Pattern Moving Animation */
@keyframes patternMove {
    from { transform: translate(0, 0); }
    to { transform: translate(-500px, -500px); }
}

/* 2. Vibrant Floating Glows (Corners) */
.volunteer-program-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(229, 27, 62, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulseRed 8s infinite alternate;
}

.volunteer-program-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(11, 46, 99, 0.25) 0%, transparent 70%);
    z-index: -1;
    animation: pulseBlue 10s infinite alternate;
}

@keyframes pulseRed {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

@keyframes pulseBlue {
    0% { opacity: 0.5; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(-50px); }
}

/* 2. Expanded Glassmorphism Card */
.volunteer-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 50px 40px; /* Increased padding */
    border-radius: 50px; /* Softer professional edges */
    box-shadow: 0 50px 120px rgba(11, 46, 99, 0.06);
}

/* 3. Unique Red Underline Logic */
.heading-wrapper {
    position: relative;
    display: inline-block;
}
.volunteer-badge {
    display: inline-block;
    color: #E51B3E; /* Logo Red */
    background: rgba(229, 27, 62, 0.05); /* Very light red tint */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px; /* Smaller size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(229, 27, 62, 0.1);
}
.red-underline {
    width: 80px;
    height: 4px;
    background: #E51B3E; /* Logo Red */
    margin: 15px auto 0;
    border-radius: 10px;
    position: relative;
}

/* Optioal: Hover pannumpothu underline expand aagum */
.volunteer-glass-card:hover .red-underline {
    width: 150px;
    transition: width 0.5s ease;
}



.lead-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    font-size:16px;
}

/* 4. Professional Button */
.btn-volunteer-center {
    background: linear-gradient(90deg, #E51B3E, #ff4d6d);
    color: white !important;
    padding: 18px 60px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(229, 27, 62, 0.25);
}

.btn-volunteer-center:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(229, 27, 62, 0.4);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .volunteer-glass-card {
        padding: 60px 30px;
        border-radius: 30px;
    }
    .lead-text {
        font-size: 1.15rem;
    }
}

/* CLOSING SECTION */
/* Closing css */
.closing-impact-minimal {
    position: relative;
    padding: 50px 0;
    background:url('img/cta.jpeg') center/cover no-repeat;
    overflow: hidden;
}

.closing-card {
background: rgba(255, 255, 255, 0.5);
    padding: 60px 40px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(11, 46, 99, 0.2);
    position: relative;
    overflow: hidden;
}


.closing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
	color:#0B2E63;
}

/* Red line under title like your section-title class */
.closing-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #E51B3E; /* Your Primary Red */
    display: block;
    margin: 15px auto;
    border-radius: 10px;
}

.closing-text {
    font-size: 18px;
    line-height: 1.8;
    color: #475569; /* Light grey text for readability on dark blue */
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}



/* Mobile Adjustments */
@media (max-width: 768px) {
    .closing-card {
        padding: 40px 20px;
        margin: 0 15px;
    }
    .closing-title {
        font-size: 26px;
    }
    .closing-text {
        font-size: 15px;
    }
}


/* 4. Bottom-Right Diamond Dot Pattern */
.diamond-dot-pattern-footer {
    position: absolute;
    /* Right and Bottom-la corner-ku move panniyachu */
    bottom: -40px; 
    right: -40px;
    
    /* Compact size for closing section */
    width: 250px; 
    height: 250px;
    
    /* Blue dots visibility increase */
    background-image: radial-gradient(rgba(11, 46, 99, 0.28) 2.5px, transparent 2.5px);
    background-size: 30px 30px;
    
    z-index: -1;
    transform: rotate(45deg); 
    opacity: 0.3; 
    
    /* Smooth floating animation in the bottom corner */
    animation: footerDiamondFloat 7s infinite alternate ease-in-out;
}

/* Red Accent Layer for Footer Diamond */
.diamond-dot-pattern-footer::after {
    content: '';
    position: absolute;
    top: -30px; 
    left: -30px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(229, 27, 62, 0.2) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: -2;
}

@keyframes footerDiamondFloat {
    0% { 
        transform: rotate(45deg) translate(0, 0); 
    }
    100% { 
        transform: rotate(45deg) translate(-15px, -15px); 
    }
}

/* Rest of your existing CSS (Blobs, Typography, etc.) */
.blob-bg-left, .blob-bg-right {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}
.closing-impact-minimal::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(229, 27, 62, 0.03);
    border-radius: 50%;
}



.blob-bg-left {
    background: radial-gradient(circle, rgba(11, 46, 99, 0.07) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.blob-bg-right {
    background: radial-gradient(circle, rgba(229, 27, 62, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
}

/* 2. Divider with Heart */
.impact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-divider .line {
    width: 50px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
}

/* 3. Typography Focus */
.colors-blue {
    color: #0B2E63;
    letter-spacing: -1px;
	font-size:2.5rem;
	font-weight:800;
}

.impact-lead-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 500;
}

.impact-sub-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}


/* Responsive */
@media (max-width: 991px) {
    .impact-lead-text {
        font-size: 1.3rem;
    }
    .closing-impact-minimal {
        padding: 80px 0;
    }
}

/* DONATION SECTION - SOFT VIBRANT LOOK */
.donation-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    /* Softened Gradient: Pink-ah romba light panniyachu */
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 50%, #fffafa 100%);
    z-index: 1;
}

/* Dots-ku pathila oru soft wave pattern (Optional overlay) */
.donation-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle diagonal lines instead of dots */
    background: linear-gradient(45deg, rgba(11, 46, 99, 0.02) 25%, transparent 25%, transparent 50%, rgba(11, 46, 99, 0.02) 50%, rgba(11, 46, 99, 0.02) 75%, transparent 75%, transparent);
    background-size: 100px 100px;
    z-index: -1;
    pointer-events: none;
}

/* HIGH VISIBILITY BLOBS */
.donation-section::before, .donation-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Blur-ah kuraichal thaan shapes nalla theryum */
    z-index: -1;
    opacity: 0.4; /* Opacity increased for visibility */
    animation: vibrantFloat 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

/* Soft Red/Pink Glow - Top Right */
.donation-section::before {
    width: 650px;
    height: 650px;
    /* Soft Red using RGBA for better blending */
    background: radial-gradient(circle, rgba(229, 27, 62, 0.4) 0%, rgba(229, 27, 62, 0) 70%);
    top: -150px;
    right: -100px;
}

/* Soft Blue Glow - Bottom Left */
.donation-section::after {
    width: 600px;
    height: 600px;
    /* Professional Blue Glow */
    background: radial-gradient(circle, rgba(11, 46, 99, 0.3) 0%, rgba(11, 46, 99, 0) 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -4s;
}

/* New Vibrant Animation */
@keyframes vibrantFloat {
    0% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    50% { 
        transform: translate(-30px, 100px) scale(1.15) rotate(10deg); 
    }
    100% { 
        transform: translate(60px, -20px) scale(1) rotate(-10deg); 
    }
}

/* Glassmorphism Card pop-up */
.donation-card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 100px -20px rgba(11, 46, 99, 0.15);
}

/* Card Style - Glassmorphism */
.donation-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Slightly larger content side */
    gap: 50px; 
    align-items: start;     
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-title { color: #0B2E63; font-weight: 800; margin-top: 15px; font-size: 2.5rem; }
.tagline { color: #64748b; font-size: 1.1rem; }

/* Left Side Styling */
.lead1{ color: #0B2E63; 
font-weight: 700; 
margin-bottom: 20px; 
font-size: 1.5rem; 
}
.lead2{ color: #475569; 
line-height: 1.7; 
margin-bottom: 15px; 
text-align:justify !important;
}

.donation-note-box {
    margin-top: 35px;
    padding: 25px;
    background: #fff5f6;
    border-radius: 20px;
    border: 1px dashed #E51B3E;
    display: flex;
    gap: 15px;
    color: #475569;
}

.contact-details i { color: #E51B3E; margin-right: 10px; margin-top: 10px; }

/* Right Side (Banking) Styling */
.banking-side {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.icon-note { color: #E51B3E; font-size: 24px; }
.icon-bank { color: #E51B3E; margin-right: 12px; }

.bank-row { margin-bottom: 15px; }
.bank-row label { display: block; font-size: 10px; color: #94a3b8; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.bank-row p { font-weight: 700; color: #0B2E63; margin: 0; font-size: 1.05rem; }

.upi-highlight {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.upi-row { border-bottom: 2px solid #E51B3E; padding-bottom: 8px; }
.upi-label { color: #E51B3E !important; font-weight: 700; }
.upi-text { font-size: 1.3rem !important; }

.gpay-number { font-size: 0.9rem; color: #475569; }

.qr-highlight-box {
    text-align: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    margin-top: 25px;
    border: 2px dashed #0B2E63;
}
.qr-highlight-box img { width: 150px; border-radius: 10px; }
.qr-text { color: #0B2E63; font-weight: 700; margin-top: 12px; font-size: 0.9rem; }

/* Card content and Banking side kulla line span aaga */
.closing-line-inside {
    grid-column: 1 / span 2; 
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #edf2f7;
    position: relative;
    z-index: 2;
}

.closing-line-inside h5 {
    color: #0B2E63;
    font-weight: 600;
    opacity: 0.9;
    font-size: 1.15rem;
    margin: 0;
}

/* Mobile Responsive Correction */
@media (max-width: 991px) {
    .closing-line-inside {
        grid-column: 1; /* Mobile-la single column layout */
        margin-top: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 991px) {
    .donation-card { grid-template-columns: 1fr; padding: 30px; gap: 40px; }
    .section-title { font-size: 2rem; }
}
/* gallery css */
/* Gallery Item Alignment & General Styles */
.gallery-item {
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

/* Photo and Video Thumbnails - Same Height and Width */
.gallery-item img, 
.video-thumb-container img {
    width: 100% !important;
    height: 250px !important; /* Adjust as needed */
    object-fit: cover; 
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
}

/* Video Thumbnail Container */
.video-thumb-container {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* Play Icon Overlay Style (No Background Color) */
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centering the icon */
    z-index: 10;
    pointer-events: none;
}

.play-icon-overlay i {
    color: white;
    font-size: 60px; /* Size of the Play button */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* For visibility on light images */
    opacity: 0.9;
    transition: 0.3s ease;
}

/* Hover Effects for Photo and Video */
.gallery-item img:hover, 
.video-thumb-container:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

/* Video Hover: Play button changes color to Red (YouTube style) */
.video-thumb-container:hover i {
    transform: scale(1.2);
    opacity: 1;
    color: #ff0000;
}

/* Modal Video Wrapper */
.video-container {
    height: 250px; 
    width: 100%;
    border-radius: 15px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* contact CSS */

/* SECTION WRAPPER */
.contact-page {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

/* 1. CONTACT CARDS DESIGN */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Start-la irunthu alignment */
    height: 100%; /* Important for equal height */
    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(11, 46, 99, 0.05);
    transition: all 0.4s ease;
}

/* Make sure the text inside takes available space */
.contact-card p {
    margin-bottom: 0;
    flex-grow: 1; 
    display: flex;
    align-items: center; /* Text-a card-kulla center-la veikum */
}
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #E51B3E;
    box-shadow: 0 20px 40px rgba(229, 27, 62, 0.1);
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    transition: 0.5s;
}

.blue-icon { background: #eff6ff; color: #0B2E63; }
.red-icon { background: #fff1f2; color: #E51B3E; }
.green-icon { background: #f0fdf4; color: #22c55e; }

/* 2. FORM BOX WITH ICONS */
.contact-form-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid #f8fafc;
}

.badge-ngo {
    background: rgba(229, 27, 62, 0.1);
    color: #E51B3E;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
}

.form-title {
    color: #0B2E63;
    font-weight: 800;
}

/* Input Icons Logic */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: 0.3s;
}

.premium-input {
    padding-left: 50px !important; /* Space for the icon */
    background: #f8fafc !important;
    border: 2px solid transparent !important;
    height: 55px;
    border-radius: 15px !important;
    transition: 0.3s;
}

textarea.premium-input { height: auto; padding-top: 15px !important; }

.premium-input:focus {
    background: #ffffff !important;
    border-color: #E51B3E !important;
    box-shadow: 0 10px 20px rgba(229, 27, 62, 0.05) !important;
}

.premium-input:focus + i, 
.input-with-icon:focus-within i {
    color: #E51B3E; /* Icon turns red on focus */
}
/* CONTACT CARD LINKS - FORCE REMOVE UNDERLINE */
.contact-card p a, 
.contact-card a {
    text-decoration: none !important; /* Forcefully removes the line */
    border-bottom: none !important;   /* Sila theme-la border-bottom irukkum, athaiyum thookiyachu */
    color: #526071;                   /* Default NGO Grey Color */
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* HOVER EFFECT - PREMIUM RED (#E51B3E) */
.contact-card p a:hover, 
.contact-card a:hover {
    color: #E51B3E !important;        /* Balanced Red color on hover */
    text-decoration: none !important; /* Hover pannumbothum line vara koodathu */
    transform: translateY(-2px);      /* Mella mela lift aagum */
}

/* 3. BUTTON & MAP */
.btn-ngo-action {
    background: #0B2E63;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    transition: 0.4s;
}

.btn-ngo-action:hover {
    background: #E51B3E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 27, 62, 0.2);
}

.map-container-premium {
    border-radius: 40px;
    overflow: hidden;
    border: 10px solid #ffffff;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* FOOTER */
.main-footer{
position:relative;
background:url('img/footer-bg.jpeg') center/cover no-repeat;
color:#ffffff;
padding:15px 0 8px;
font-size:14px;
overflow:hidden;
font-family: 'Poppins',sans-serif;
}


.main-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* BRAND SECTION */
.footer-top-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.footer-main-logo {
    height: 100px;
    padding: 5px;
    border-radius: 8px;
}

.brand-text h2{
margin:0;
font-size:26px;
font-weight:600;
color: #ffffff;
}

.brand-text .slogan{
font-size:12px;
font-weight:500;
color:#f20241;
font-family:'Poppins',sans-serif;
}

hr{
border:0;
border-top:1px solid #ffffff;
margin:25px 0;
}
/* GRID SYSTEM - Equal Spacing Fix */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr; /* 3 balanced columns */
    gap: 40px; /* Space between columns */
    margin-bottom: 30px;
    align-items: start;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #E51B3E;
    display: block;
    margin-top: 8px;
}

/* ABOUT SECTION */
.footer-about {
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 20px;
	font-size:1.0rem;
}

/* QUICK LINKS */
.footer-links {
    list-style: none;
    padding: 0;
	font-size:1.0rem;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #E51B3E;
    padding-left: 8px;
}

/* CONTACT INFO */
.footer-contact {
    list-style: none;
    padding: 0;
	font-size:1.0rem;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    color: #cbd5e0;
}

.footer-contact i {
    color: #E51B3E;
    font-size: 16px;
    margin-top: 4px;
}

/* SOCIAL ICONS */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
	text-decoration: none !important; 
    border-bottom: none !important;
    outline: none !important;
}

.footer-social a:hover {
    background: #E51B3E;
    transform: translateY(-3px);
	text-decoration: none !important;
}
/* Footer Registration Number Styling */
.regd-footer {
    display: inline-flex;
    align-items: center;
    background: rgba(229, 27, 62, 0.1);
    border: 1px solid rgba(229, 27, 62, 0.3); 
    padding: 6px 15px;
    border-radius: 50px; 
    margin-top: 15px;
    transition: all 0.3s ease;
}

.regd-footer:hover {
    background: #E51B3E; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(229, 27, 62, 0.3);
}

.regd-footer strong {
    color: #E51B3E;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
}

.regd-footer span {
    color: #ffffff; 
    font-weight: 700;
    font-size: 1rem;
}

.regd-footer:hover strong, 
.regd-footer:hover span {
    color: #ffffff; 
}
/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
	font-size:0.90rem;
}
.footer-bottom-flex {
    display: flex;
    justify-content: space-between; /* This pushes items to Left and Right */
    align-items: center;
    color: #a0aec0;
}

.footer-bottom-flex p {
    margin: 0;
	
}

.developer-text a {
    color: #E51B3E; 
    text-decoration: none;
    font-weight: 600;
}
.developer-text a:hover {
    color: #ffffff;
}

/* RESPONSIVE FIXES */
@media(max-width: 767px) {
    .footer-top-brand {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-flex {
        flex-direction: column; /* Stack on mobile */
        text-align: center;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-title::after { margin: 8px auto 0; }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact li { justify-content: center; }
    .footer-title::after { margin: 8px auto 0; }
    .footer-social { justify-content: center; }
}

/* WHATSAPP FLOATING BUTTON - DESKTOP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px; /* Desktop-la konjam thalli vechuruken */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 5px 20px rgba(0,0,0,0.25);
    z-index: 9999; /* Priority romba high-ah vechukonga */
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;  
        height: 50px;
        bottom: 25px; 
        right: 25px;  
        font-size: 28px;
        box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
        transform: translate(0, 0) !important;
        left: 5px !important; 
    }
}
/* MOBILE RESPONSIVE */

@media (max-width:768px){

/* TOPBAR */

.topbar{
font-size:12px;
padding:6px 0;
}

.topbar .container{
flex-direction:column;
gap:5px;
text-align:center;
}

.topbar-left{
flex-direction:column;
gap:3px;
}

.social-icons{
justify-content:center;
}
/* NAVBAR */

.navbar{
height:auto;
padding:8px 0;
}

.navbar-brand{
height:auto;
}

.navbar-brand img{
height:55px;
}

.brand-text{
font-size:18px;
}

.slogan{
font-size:10px;
}

/* MENU */

.navbar-nav{
margin-top:10px;
text-align:center;
}

.nav-link{
margin-left:0;
padding:10px 0;
font-size:15px;
}

/* DROPDOWN */

.dropdown-menu{
text-align:center;
}
}

/* EXTRA SMALL MOBILE */

@media (max-width:480px){
.navbar-brand img{
height:50px;
}
.brand-text{
font-size:16px;
}
.slogan{
font-size:9px;
}
.hero-text h1{
font-size:26px;
}
.hero-text p{
font-size:14px;
}
}
/* --- COMPLETE MOBILE RESPONSIVE CSS --- */

@media (max-width: 768px) {
    /* 1. Section Padding Reduction */
    .donation-section {
        padding: 40px 15px;
    }

    /* 2. Background Blobs Adjustment (Mobile-la size kuraikanum illana content maraikum) */
    .donation-section::before {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
    }

    .donation-section::after {
        width: 250px;
        height: 250px;
        bottom: -50px;
        left: -50px;
    }

    /* 3. Donation Card Reset */
    .donation-card {
        grid-template-columns: 1fr; /* Single column for mobile */
        padding: 25px 20px;
        gap: 30px;
        border-radius: 20px;
    }

    /* 4. Text & Header Adjustments */
    .section-title {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .lead1 {
        font-size: 1.25rem;
        text-align: center;
    }

    .lead2 {
        font-size: 0.95rem;
        text-align: left !important; /* Mobile-la justify pannuna gaps varum, so left align best */
    }

    /* 5. Note Box & Banking Side */
    .donation-note-box {
        padding: 15px;
        flex-direction: column; /* Icon and text one by one */
        text-align: center;
        gap: 10px;
    }

    .banking-side {
        padding: 20px;
        border-radius: 18px;
    }

    /* 6. UPI & Bank Row Text Resize */
    .bank-row p {
        font-size: 0.95rem;
    }

    .upi-text {
        font-size: 1.1rem !important; /* Long UPI IDs screen-ai vittu veliya pogaama iruka */
        word-break: break-all;
    }

    /* 7. QR Box Resize */
    .qr-highlight-box {
        padding: 15px;
    }

    .qr-highlight-box img {
        width: 130px; /* QR size optimized for mobile */
    }

    /* 8. Closing Line Inside */
    .closing-line-inside {
        margin-top: 15px;
        padding-top: 20px;
    }

    .closing-line-inside h5 {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Tablets (iPad) extra padding adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .donation-card {
        padding: 40px;
        gap: 30px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}