        /* CSS Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b0000, #a52a2a);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
        }

        .btn-secondary {
            background: #2c3e50;
            color: white;
        }

        .btn-view {
            background: #27ae60;
            color: white;
        }

        .btn-interest {
            background: #e74c3c;
            color: white;
        }

        .btn-read {
            background: #3498db;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #a52a2a, #8b0000);
        }

        /* Hero Banner with Image */
        .hero-banner {
            position: relative;
            height: 600px;
            /* background: url('../uploads/banners/index-banner1.png') center/cover no-repeat; */
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 600px;
            padding-left: 50px;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        /* Search/Enquiry Form */
        .enquiry-section {
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .enquiry-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 18px;
        }

        .enquiry-form {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #2c3e50;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group label i {
            margin-right: 8px;
            color: #8b0000;
        }

        .form-control {
            width: 100%;
            padding: 14px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            border-color: #8b0000;
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
            outline: none;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
            text-align: center;
        }

        .age-inputs {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .age-inputs .form-control {
            flex: 1;
        }

        .age-inputs span {
            color: #7f8c8d;
            font-weight: 500;
        }

        .form-message {
            margin-top: 20px;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 4px solid #28a745;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 4px solid #dc3545;
        }

        /* Profiles Feed */
        .profiles-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .profiles-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .profiles-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            color: #2c3e50;
            font-weight: 700;
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .profile-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .profile-header {
            background: linear-gradient(135deg, #8b0000, #a52a2a);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .profile-id {
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .profile-status {
            background: #27ae60;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .profile-content {
            padding: 25px;
        }

        .profile-info {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }

        .profile-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #f1f1f1;
            flex-shrink: 0;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-details h3 {
            color: #2c3e50;
            font-size: 20px;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
        }

        .profile-details .age-gender {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .profile-attributes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .attribute {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .attribute i {
            color: #8b0000;
            width: 20px;
            text-align: center;
        }

        .attribute-label {
            font-size: 12px;
            color: #7f8c8d;
            margin-bottom: 2px;
        }

        .attribute-value {
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
        }

        .profile-actions {
            display: flex;
            gap: 15px;
        }

        .profile-actions .btn {
            flex: 1;
            padding: 10px 15px;
            font-size: 14px;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .pagination .btn {
            padding: 10px 20px;
            min-width: 100px;
        }

        .page-numbers {
            display: flex;
            gap: 5px;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: white;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }

        .page-link:hover,
        .page-link.active {
            background: #8b0000;
            color: white;
            border-color: #8b0000;
        }

        /* Blogs Section */
        .blogs-section {
            background: white;
            padding: 80px 0;
        }

        .blogs-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .blog-post {
            display: flex;
            gap: 25px;
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            flex: 0 0 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-post:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }

        .blog-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #7f8c8d;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .read-count {
            color: #7f8c8d;
            font-size: 13px;
            font-weight: 500;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #8b0000, #660000);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .cta-content p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-content .btn {
            font-size: 18px;
            padding: 16px 40px;
        }

        /* Testimonials */
        .testimonials-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .testimonial-rating {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .testimonial-author p {
            color: #7f8c8d;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 80px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: #f8f9fa;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question h3 {
            color: #2c3e50;
            font-size: 18px;
            margin: 0;
            font-weight: 600;
        }

        .faq-question i {
            color: #8b0000;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #555;
            line-height: 1.8;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                padding-left: 30px;
                padding-right: 30px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .enquiry-form {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .profiles-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .blogs-container {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hero-banner {
                height: 500px;
                justify-content: center;
                text-align: center;
            }
            
            .hero-content {
                padding: 20px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .enquiry-form {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .profiles-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .profiles-grid {
                grid-template-columns: 1fr;
            }
            
            .profile-info {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .profile-attributes {
                grid-template-columns: 1fr;
            }
            
            .profile-actions {
                flex-direction: column;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .cta-content p {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .hero-banner {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 24px;
            }
            
            .enquiry-card {
                padding: 25px;
            }
            
            .profile-header {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .blog-post {
                flex-direction: column;
            }
            
            .blog-image {
                flex: 0 0 200px;
            }
            
            .cta-content h2 {
                font-size: 24px;
            }
            
            .cta-content p {
                font-size: 16px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.6s ease forwards;
        }