/* ================================================= */
/* ROOT VARIABLES START */
/* ================================================= */
:root {
    /* Primary Brand Colors */
    --primary-color: #6A1B9A;
    --primary-light: #8E24AA;
    --primary-dark: #4A148C;
    
    /* Secondary Colors */
    --secondary-color: #FF6B35;
    --accent-color: #FFC107;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --info-color: #2196F3;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-100);
    --bg-dark: var(--gray-900);
    
    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --text-light: var(--white);
    
    /* Font Family */
    --font-primary: 'Poppins', sans-serif;
    
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}
/* ROOT VARIABLES END */

/* ================================================= */
/* BASE STYLES START */
/* ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Loading animation for images */
img {
    opacity: 1;
    transition: opacity var(--transition-normal);
}

img.loaded {
    opacity: 1;
}

/* Smooth animations for all elements */
* {
    transition: all var(--transition-fast);
}

/* Selection styling */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
/* BASE STYLES END */

/* ================================================= */
/* TOP BANNER SECTION START */
/* ================================================= */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: var(--spacing-2) 0;
    font-size: var(--font-sm);
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 10s linear infinite;
}

@keyframes float {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-60px); }
}

.top-banner i {
    margin-right: var(--spacing-2);
    color: var(--accent-color);
}
/* TOP BANNER SECTION END */

/* ================================================= */
/* NAVIGATION BAR SECTION START */
/* ================================================= */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-4) 0;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: var(--spacing-2) 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: var(--font-3xl);
    margin-right: var(--spacing-3);
    color: var(--secondary-color);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-6);
}

.nav-links .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.nav-links .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all var(--transition-normal);
}

.nav-links .nav-link:hover::before,
.nav-links .nav-link.active::before {
    width: 100%;
    left: 0;
}

.nav-links .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(106, 27, 154, 0.1);
}

.nav-buttons {
    display: flex;
    gap: var(--spacing-3);
}

.signup-btn,
.login-btn {
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.signup-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.signup-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.login-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.login-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.custom-toggler {
    border: none;
    background: transparent;
    color: var(--primary-color);
}

.custom-toggler:focus {
    box-shadow: none;
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        margin-top: var(--spacing-4);
        padding: var(--spacing-4);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links {
        flex-direction: column;
        gap: var(--spacing-2);
    }
    
    .nav-buttons {
        margin-top: var(--spacing-4);
        flex-direction: column;
    }
}
/* NAVIGATION BAR SECTION END */

/* ================================================= */
/* HERO CAROUSEL SECTION START */
/* ================================================= */
.carousel-inner {
    height: 70vh;
    min-height: 500px;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 1;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(106, 27, 154, 0.8), rgba(255, 107, 53, 0.6)); */
   background: linear-gradient(45deg, rgb(237 134 8 / 0%), rgb(17 5 0 / 60%));
    z-index: 1;

   
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
}

.carousel-caption h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: var(--font-lg);
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--white);
}

/* Mobile carousel adjustments */
@media (max-width: 768px) {
    .carousel-inner {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: var(--font-2xl);
    }
    
    .carousel-caption p {
        font-size: var(--font-base);
    }
}
/* HERO CAROUSEL SECTION END */

/* ================================================= */
/* SEARCH HERO SECTION START */
/* ================================================= */
.search-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-16) 0;
    position: relative;
    overflow: hidden;
}

.search-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40 40 0 1 1 80 0a40 40 0 1 1 -80 0' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    animation: float 15s ease-in-out infinite;
}

.search-hero-content {
    text-align: center;
    color: var(--white);
}

.main-heading {
    font-size: var(--font-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-10);
}

.action-item {
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.action-item:hover {
    transform: translateY(-5px);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-3);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.action-icon i {
    font-size: var(--font-2xl);
    color: var(--white);
}

.action-item:hover .action-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.quick-search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-4);
    align-items: end;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-sm);
}

.form-group label i {
    margin-right: var(--spacing-2);
    color: var(--primary-color);
}

.form-select {
    width: 100%;
    padding: var(--spacing-3);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--font-base);
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, var(--secondary-color), #ff8a50);
    color: var(--white);
    border: none;
    padding: var(--spacing-4) var(--spacing-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    box-shadow: var(--shadow-md);
}

.search-btn:hover {
    background: linear-gradient(135deg, #ff8a50, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile adjustments for search hero */
@media (max-width: 768px) {
    .main-heading {
        font-size: var(--font-3xl);
    }
    
    .hero-actions {
        gap: var(--spacing-4);
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
    }
    
    .action-icon i {
        font-size: var(--font-xl);
    }
    
    .quick-search-form {
        padding: var(--spacing-6);
        margin: 0 var(--spacing-4);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}
/* SEARCH HERO SECTION END */

/* ================================================= */
/* REGISTRATION SEARCH SECTION START */
/* ================================================= */
.registration-search-section {
    background: #fff8f0; /* subtle saffron feel */
}

.search-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.2);
    overflow: hidden;
}

.search-card-header {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #fff;
    padding: var(--spacing-8);
    text-align: center;
    position: relative;
}

.search-card-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #fff;
    border-radius: 20px 20px 0 0;
}

.search-card-header h3 i {
    color: #ffeaa7;
}



.search-card-body {
    padding: var(--spacing-8);
}

/* Input Group Enhancement */
.input-group {
    display: flex;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.25);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

.input-group .form-control {
    border: none;
    padding: var(--spacing-4) var(--spacing-5);
    font-size: var(--font-base);
    flex: 1;
    outline: none;
}

/* Search Button */
.search-profile-btn {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #fff;
    border: none;
    padding: var(--spacing-4) var(--spacing-6);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-profile-btn:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

.search-loading {
    text-align: center;
    padding: var(--spacing-8);
    color: var(--text-secondary);
}

.loading-spinner i {
    font-size: var(--font-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-4);
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-6);
    border: 1px solid var(--gray-200);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid var(--gray-200);
}

.profile-image {
    position: relative;
    flex-shrink: 0;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    opacity: 1;
}

.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.online-indicator.online {
    background-color: var(--success-color);
    animation: pulse 2s infinite;
}

.online-indicator.offline {
    background-color: var(--gray-400);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.profile-basic-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-2);
}

.profile-id {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    margin-bottom: var(--spacing-3);
}

.profile-quick-stats {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.profile-quick-stats span {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.detail-item {
    margin-bottom: var(--spacing-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-3);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.detail-item strong {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    flex: 1;
}

.detail-item strong i {
    color: var(--primary-color);
    width: 16px;
}

.profile-about {
    margin: var(--spacing-6) 0;
    padding: var(--spacing-4);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.profile-about h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-3);
}

.profile-actions {
    display: flex;
    gap: var(--spacing-3);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-6);
}

.btn-action {
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

/* Mobile adjustments for profile search */

   /* Mobile adjustments */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }

    .input-group .form-control {
        width: 100%;
        border-bottom: 1px solid #f5c26b;
    }

    .search-profile-btn {
        width: 100%;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-quick-stats {
        justify-content: center;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .btn-action {
        justify-content: center;
    }
}
/* REGISTRATION SEARCH SECTION END */

  /* members section css start */
  /* Member Card */
.member-card {
    width: 200px;
    flex: 0 0 auto;
    border: 1px solid #f5c26b;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease;
}
.member-card:hover {
    transform: translateY(-5px);
}

/* Image container */
.member-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.member-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Scroll */
.members-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
}
.members-wrapper::-webkit-scrollbar {
    display: none;
}

/* Desktop Grid */
@media (min-width: 768px) {
    .members-wrapper {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        overflow: visible;
    }
}
    /* members section css end */

/* ================================================= */
/* ABOUT SECTION (Bhramin Samaj Theme) */
/* ================================================= */
.about-section {
    background: linear-gradient(135deg, #ffb347 0%, #ff7733 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-content {
    color: #fff;
}

.about-section .section-subtitle {
    color: #ffe082;
    font-weight: 700;
    font-size: var(--font-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section .section-title {
    color: #fff;
    font-size: var(--font-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-6);
    line-height: 1.3;
}

.brand-highlight {
    color: #ffd54f;
    text-shadow: 0 0 15px rgba(255, 221, 68, 0.7);
}

.about-description {
    font-size: var(--font-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-6);
    color: rgba(255, 255, 255, 0.95);
}

.feature-list {
    margin-bottom: var(--spacing-6);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    color: rgba(255, 255, 255, 0.95);
}

.feature-item i {
    color: #ffd54f;
    font-size: var(--font-lg);
}

.about-stats {
    display: flex;
    gap: var(--spacing-6);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-6);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h4 {
    font-size: var(--font-3xl);
    font-weight: 800;
    color: #ffd54f;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-sm);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #ffd54f, #ff9100);
    color: #5d4037;
    border: none;
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-3);
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 138, 0, 0.4);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ff9100, #ffd54f);
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(255, 138, 0, 0.5);
}

/* Image Section */
.main-image img {
    width: 100%;
    max-width: 420px;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 6px solid rgba(255, 255, 255, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: floatAround 6s ease-in-out infinite;
}

.floating-element i {
    font-size: 28px;
    color: #ffd54f;
}

/* Different positions */
.element-1 { top: 15%; left: 12%; }
.element-2 { top: 70%; right: 12%; }
.element-3 { bottom: 10%; left: 25%; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    .about-section .section-title {
        font-size: var(--font-2xl);
    }
    .main-image img {
        max-width: 320px;
        height: 400px;
    }
    .about-stats {
        justify-content: center;
    }
    .floating-elements { display: none; }
}
/* ABOUT SECTION END */

/* ================================================= */
/* FEATURES SECTION START */
/* ================================================= */
.features-section {
  background: var(--bg-secondary);
}

.section-header .section-title {
  font-weight: 800;
  color: var(--primary-color);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--font-base);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-6);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff9933, #ffcc66); /* saffron tone */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-5);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.feature-icon i {
  font-size: var(--font-xl);
  color: var(--white);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(8deg);
  background: linear-gradient(135deg, #ffcc66, #ff9933);
}

.feature-title {
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-3);
  color: var(--primary-color);
}

.feature-description {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile adjustments for app-like feel */
@media (max-width: 768px) {
  .features-section {
    padding: var(--spacing-6) var(--spacing-4);
  }

  .feature-card {
    padding: var(--spacing-5);
    border-radius: var(--radius-lg);
  }

  .feature-icon {
    width: 55px;
    height: 55px;
  }

  .feature-icon i {
    font-size: var(--font-lg);
  }

  .feature-title {
    font-size: var(--font-base);
  }

  .feature-description {
    font-size: var(--font-sm);
  }
}
/* FEATURES SECTION END */


/* ================================================= */
/* SUCCESS STORIES SECTION START */
/* ================================================= */
.success-stories-section {
    background: var(--white);
}

.story-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.story-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    opacity: 1;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(244, 67, 54, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.story-overlay i {
    font-size: var(--font-xl);
    color: var(--white);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

.story-content {
    padding: var(--spacing-6);
    text-align: center;
}

.couple-name {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-4);
}

.story-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-5);
    font-style: italic;
}

.story-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
    font-size: var(--font-sm);
    color: var(--text-muted);
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

.story-meta i {
    color: var(--secondary-color);
}

/* Mobile adjustments for success stories */
@media (max-width: 768px) {
    .story-meta {
        flex-direction: column;
        gap: var(--spacing-2);
    }
}
/* SUCCESS STORIES SECTION END */

/* ================================================= */
/* FOOTER SECTION START */
/* ================================================= */
.footer-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: var(--spacing-16) 0 var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-brand {
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: var(--font-2xl);
    font-weight: 800;
    margin-bottom: var(--spacing-4);
    color: var(--white);
}

.footer-logo i {
    font-size: var(--font-3xl);
    margin-right: var(--spacing-3);
    color: var(--accent-color);
    animation: rotate 30s linear infinite;
}

.footer-logo .highlight {
    color: var(--accent-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
}

.social-links {
    display: flex;
    gap: var(--spacing-3);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--white);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.footer-title {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-6);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: var(--spacing-2);
}

.footer-links a i {
    font-size: var(--font-xs);
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-5);
}

.contact-item i {
    color: var(--accent-color);
    font-size: var(--font-lg);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: var(--spacing-1);
}

.footer-bottom {
    margin-top: var(--spacing-12);
    padding-top: var(--spacing-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-6);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Back to Top Button Left Floating */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #ff9933;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: #ffcc66;
    transform: translateY(-3px);
}

/* Mobile adjustments for footer */
@media (max-width: 768px) {
    .footer-section {
        padding: var(--spacing-12) 0 var(--spacing-6);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-3);
        text-align: center;
        margin-top: var(--spacing-4);
    }
    
    .social-links {
        justify-content: center;
    }
}
/* FOOTER SECTION END */

/* ================================================= */
/* FLOATING ACTION BUTTON START */
/* ================================================= */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.floating-action-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
}

.floating-action-btn i {
    font-size: var(--font-xl);
    transition: transform var(--transition-normal);
}

.floating-action-btn.active i {
    transform: rotate(45deg);
}

.fab-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}


