/* Global Styles */
:root {
    --primary-color: #ff6b6b;
    --primary-light: #ff8e8e;
    --primary-dark: #e05555;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --light-color: #f7fff7;
    --dark-color: #292f36;
    --gray-light: #f1f1f1;
    --gray-medium: #d1d1d1;
    --gray-dark: #777;
    --success-color: #6bff6b;
    --warning-color: #ffcc5c;
    --danger-color: #ff6b6b;
    --font-primary: 'Poppins', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: black;
    border-radius: 2px;
}

.main {
    padding: 5px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: slateblue;
    border-style: solid;
    border-width: 0 0 2px 0;
    border-color: orangered;
}

.navbar {
    padding: 10px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Navbar Styles 
.navbar {
    background-color: white;
    border-style: solid;
    border-color: black;
    border-width: 1px 0 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}*/

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Fluid logo sizing */
.logo {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    font-size: inherit;
    /* Makes span match parent size */
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .sbut:hover {
    background-color: white;
    border: 2px solid orangered;
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}


.nav-links a:hover::after {
    width: 100%;
}

.nav-links .sbut:hover::after {
    width: 0%;
}



.login-btn {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background-color: white;
    margin-top: 15px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-150%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    display: flex;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('#') no-repeat center center/cover;
    padding: 0px 0 0px !important;
    margin-top: 0px !important;
}

.slide-1 .container,
.slide-3 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.slide-2 .container {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 40px;
}



.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: white;
}

.hero-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    flex: 1;
    max-width: 450px;
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--gray-dark);
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: orangered;
}


.feature-icon {
    width: 80px;
    height: 80px;
    background-color: aliceblue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: rgb(0, 115, 230);
    font-size: 1.8rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 0 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-light);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.testimonial-content h4 {
    color: var(--primary-color);
}

.testimonial-content span {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Search Section */
.search-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.search-sidebar {
    flex: 0 0 300px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.search-sidebar h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

/* ======================
   FILTER ELEMENTS STYLING
   ====================== */

/* Filter Container */
/* ======================
   FILTER PROFILE STYLING (Consistent Theme)
   ====================== */

/* Filter Container - Consistent with Theme */
.search-sidebar .filter-group {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

/* Filter Headings - Theme Colors */
.search-sidebar .filter-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

/* Range Slider (Seek Bar) - Theme Styling */
.search-sidebar .range-slider {
    margin: 1.5rem 0 1rem;
}

.search-sidebar .range-slider input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-light);
    outline: none;
    margin: 10px 0;
}

.search-sidebar .range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.search-sidebar .range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-sidebar .range-slider input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.2);
    background: var(--primary-dark);
}

/* Range Value Display - Theme Colors */
.search-sidebar .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.search-sidebar .range-values {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-top: 5px;
    font-weight: 500;
}

.search-sidebar .range-values span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Select Dropdowns - Theme Styling */
.search-sidebar .filter-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
    background-color: white;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    transition: all 0.3s ease;
}

.search-sidebar .filter-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* Text Inputs - Theme Styling */
.search-sidebar .filter-group input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
    background-color: white;
    transition: all 0.3s ease;
}

.search-sidebar .filter-group input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* ======================
   FIXED FILTER FORM STYLING
   ====================== */

/* Remove default dropdown arrow to prevent double icons */
.search-sidebar .filter-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom dropdown arrow styling */
.search-sidebar .filter-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2rem;
    /* Ensure enough space for the icon */
}

/* Focus state with theme color */
.search-sidebar .filter-group select:focus,
.search-sidebar .filter-group input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
    outline: none;
    color: var(--dark-color);
    /* Ensure text color remains consistent */
}

/* Active state styling */
.search-sidebar .filter-group select:active,
.search-sidebar .filter-group input[type="text"]:active {
    border-color: var(--primary-dark);
    color: var(--dark-color);
    /* Maintain text color */
}

/* Remove duplicate icons in Firefox */
.search-sidebar .filter-group select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--dark-color);
}

/* IE11 specific fixes */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .search-sidebar .filter-group select {
        padding-right: 1rem;
        background-image: none;
    }
}

/* Apply Button - Theme Styling */
.search-sidebar .btn-primary {
    width: 100%;
    padding: 0.85rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.search-sidebar .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.search-results {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.profile-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .profile-img img {
    transform: scale(1.05);
}

.online-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success-color);
    border: 2px solid white;
}

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    grid-column: 1 / -1;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-medium);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Link Styling */
.footer-bottom p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    margin: 0 2px;
}

/* Specific style for the site name link */
.footer-bottom .site-link {
    font-weight: 600;
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Separator styling */
.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: "|";
    color: var(--gray-medium);
    opacity: 0.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 80px auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-view {
    max-width: 800px;
}


/* Add this to your existing CSS */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    /* Ensure it's above other elements */
    width: 23px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}


.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
}

.tab-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-dark);
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    cursor: pointer;
}

.form-options a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.switch-tab {
    color: var(--primary-color);
    font-weight: 600;
}

.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed var(--gray-medium);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.file-upload:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.05);
}

.file-upload i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-upload span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.file-upload input {
    display: none;
}

/* Profile View Modal */
.profile-header {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.profile-img {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    margin-bottom: 5px;
}

.profile-info p {
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.profile-info p i {
    margin-right: 5px;
    color: var(--primary-color);
}

.profile-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.profile-details {
    padding: 30px;
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.detail-item p {
    font-weight: 500;
}

.premium-info {
    color: var(--primary-color);
    font-weight: 500;
}

.premium-cta {
    background-color: rgba(255, 107, 107, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.premium-cta h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.premium-cta p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .search-container {
        flex-direction: column;
    }

    .search-sidebar {
        flex: 1;
    }

    .about .container {
        flex-direction: column;
    }

    .about-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-menu {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 0px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .profile-header {
        flex-direction: column;
    }

    .profile-img {
        margin: 0 auto;
    }

    .profile-info {
        text-align: center;
    }

    .profile-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 20px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 80px 15px;
    }

    .profile-view {
        max-width: 100%;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}


.logo-img {
    height: 60px;
    /* desktop size */
    width: auto;
    max-width: 100%;
    display: block;
}


@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
}


.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* or your toggle logic */
    }
}


.logo {
    padding: 4px 0;
}



@media (min-width: 768px) and (max-width: 850px) {
    .nav-links a {
        font-size: 62%;
    }
}

@media (min-width: 850px) and (max-width: 1100px) {
    .nav-links a {
        font-size: 70%;
    }

    .logo-img {
        height: 50px;
    }
}












.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero-content {
    max-width: 700px;
}

.btn-primary {
    display: inline-block;
    padding: 12px;
    background: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    /*margin-top: 20px;*/
}

/* Slide Backgrounds */
.slide-1 {
    background: #0f2027;
    color: #fff;
}

.slide-2 {
    background: #203a43;
    color: #fff;
}

.slide-3 {
    background: #2c5364;
    color: #fff;
}

/* TEXT ANIMATION */
.animate {
    opacity: 0;
    transform: translateY(40px);
}

.hero-slide.active .animate {
    animation: slideUp 0.8s forwards;
}

.hero-slide.active .delay-1 {
    animation-delay: 0.3s;
}

.hero-slide.active .delay-2 {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    left: 50%;
    z-index: 2;
}

.slider-dots span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
}

.slider-dots span.active {
    opacity: 1;
}


.slide-1 {
    background-image: url('images/slide1.jpg');
    background-position: center;
    background-size: cover;
}


.slide-2 {
    background-image: url('images/how2.jpg');
    background-position: center;
    background-size: cover;
}


.slide-3 {
    background-image: url('images/slide3.jpg');
    background-position: center;
    background-size: cover;
}



.slide-1::after,
.slide-2::after,
.slide-3::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


.slide-1::before,
.slide-2::before,
.slide-3::before {
    z-index: 0;
}

.slide-1::after,
.slide-2::after,
.slide-3::after {
    z-index: 1;
}

.slide-1 .hero-content,
.slide-2 .hero-content,
.slide-3 .hero-content {
    z-index: 2;
}







.features {
    background-color: rgb(249, 249, 249);
}




/* Why us Section begin */


.why-choose {
    padding: 100px 0;
    /* increased padding for more height */
    background-image: url('images/why\ choose.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    min-height: 600px;
    /* ensures height matches other sections */
    display: flex;
    align-items: center;
}

.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    /* dark overlay for readability */
}

.why-choose .container {
    position: relative;
    /* to bring content above overlay */
    z-index: 2;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Side */
.why-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-intro {
    font-size: 16px;
    color: white;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

/* Right Side Items */
.why-right {
    display: grid;
    gap: 18px;
    margin: 10px auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: white;
    margin: 3px 0;
}

.why-item i {
    color: #0073e6;
    font-size: 18px;
    min-width: 20px;
    padding: 4px;
    border-radius: 25px;
    background-color: white;
}

/* -------- Responsive -------- */

/* Tablet */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-left {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-left h2 {
        font-size: 28px;
    }

    .why-item {
        font-size: 14px;
    }
}






/* Why us Section end */





/* What we do Begin  */


.services-alt {
    padding: 80px 0;
    background: rgb(249, 249, 249);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
}

.services-list {
    max-width: 1440px;
    margin: auto;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: #fff;
    border-left: 4px solid #0073e6;
    transition: 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
    border-left: 4px solid orangered;
}

.service-item:hover .icon {
    color: orangered;
}


.service-item .icon {
    font-size: 22px;
    color: #0073e6;
    min-width: 30px;
}

.service-item h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.service-item p {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
    }

    .service-item .icon {
        margin-bottom: 10px;
    }
}


@media (min-width: 769px) {
    .service-item {
        align-items: center;
    }

    .service-item .icon {
        margin-bottom: 10px;
    }
}


/* What we do end  */




/*How it works*/

.feature-card:hover {
    transform: translateY(-8px);
    background-color: white
}

.howitworks {
    background-image: url('images/howitworks.jpg');
    background-position: center;
    background-size: cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}




.howitworks::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    /* dark overlay for readability */
    z-index: 1;
}

.howitworks .container {
    z-index: 2;
}


.howitworks .section-title {
    color: white;
}


.features .section-title {
    margin: 30px 0 70px;
}



/*About us*/


.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-box {
    padding: 25px 50px;
    border-radius: 14px;
    margin-bottom: 10px;
}

.about-heading {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.about-heading i {
    font-size: 32px;
    color: #0d6efd;
    margin: 0 18px 16px 0;
}

.about-heading h2 {
    font-size: 30px;
    font-weight: 600;
}

.about-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.mv-section {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.mv-card {
    flex: 1 1 48%;
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-card:hover .mv-title {
    color: orangered;
}

.mv-icon {
    font-size: 30px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.mv-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mv-desc {
    font-size: 16px;
    color: #555;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-box {
        padding: 30px;
    }

    .mv-card {
        flex: 1 1 100%;
    }
}

.about-wrapper .section-title {
    font-size: 36px;
}


@media (max-width: 1024px) {
    .mv-section {
        padding: 0 5%;
    }
}





/* FAQ */


.faq-wrapper-main {
    background-color: rgb(249, 249, 249);
}


.faq-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 50px;
}

.faq-heading h2 {
    font-size: 32px;
    color: #1f2d3d;
    margin-bottom: 10px;
}

.faq-heading p {
    color: #6c757d;
    font-size: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #1f2d3d;
}

.faq-question i {
    transition: 0.3s;
    color: #0d6efd;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 15px;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/*CTA*/



.cta-section-main,
#ctaQues {
    background-position: center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    text-align: center;
}

.cta-section-main {
    background-image: url('images/cta.jpg');
}

#ctaQues {
    background-image: url('images/how.jpg');
}



.cta-section-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay for readability */
    z-index: 1;
}

.cta-section {
    z-index: 2;
    position: relative;
}


.cta-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    font-size: 20px;
}

.cta-button:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}




/*Contact us*/


/* SECTION WRAPPER */
.reachout-area {
    padding: 60px 20px;
    background-color: rgb(249, 249, 249);
}

.reachout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* FORM SIDE */
.reachout-title {
    margin-bottom: 10px;
}

.reachout-subtitle {
    color: #555;
    margin-bottom: 25px;
}

.field-row {
    margin-bottom: 15px;
}

.input-field {
    width: 100%;
    padding: 13px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    transition: 0.3s ease;
}

.input-field:focus {
    border-color: #0b5ed7;
    outline: none;
}

.primary-action-btn {
    width: 100%;
    padding: 14px;
    background-color: #0b5ed7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.primary-action-btn:hover {
    background-color: #084298;
}

.privacy-note {
    font-size: 12px;
    margin-top: 10px;
    color: #777;
    text-align: center;
}

/* RIGHT SIDE INFO */
.info-title {
    font-size: 22px;
    margin-bottom: 8px;
    text-align: center;
}

.info-subtitle {
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

.contact-card {
    background: #ffffff;
    width: 95%;
    padding: 20px;
    border-radius: 8px;
    margin: 15px auto;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-card h4 {
    margin-bottom: 5px;
}

.contact-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    text-decoration: none;
}

/*.whatsapp-card .contact-link {
  color: #25D366;
}

.call-card .contact-link {
  color: #0b5ed7;
}

.mail-card .contact-link {
  color: #d44638;
}*/

/* DESKTOP VIEW */
@media (min-width: 768px) {
    .reachout-wrapper {
        flex-direction: row;
    }

    .reachout-form-box,
    .reachout-info-box {
        flex: 1;
    }

    .reachout-info-box {
        flex: 1;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}


/*Footer*/

.site-footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 50px 20px 20px;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-heading {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* Desktop */
@media (min-width: 768px) {
    .footer-wrap {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}


#currentYear {
    color: white;
}





#home,
#whyus,
#whatweprovide,
#howitworks,
#about,
#contact {
    padding-top: 110px;
}



/*utiltiy*/

.utility-bar {
    padding: 2px 0;
    font-size: 13px;
    font-weight: 600;
}

.utility-bar i {
    padding: 2px 0;
    font-size: 16px;
}

.utility-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-info a {
    text-decoration: none;
    margin-right: 20px;
    transition: opacity 0.3s;
    color: white;
}

.contact-info i {
    color: white;
    margin-right: 5px;
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    padding: 5px 20px;
    font-weight: 520;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    border: 2px solid white;
    color: white;
}

.whatsapp-btn i {
    font-size: 18px;
    margin-right: 8px;
    color: white;
}

.whatsapp-btn:hover {
    background-color: orangered;
    color: white;
    border-color: white;
}

/* Responsive: Hide text on tiny screens */
@media (max-width: 600px) {
    .contact-info span {
        display: none;
    }

    .contact-info a {
        font-size: 18px;
        /* Larger icons for mobile tapping */
    }
}

/*
@media (max-width: 768px){
    section {
    scroll-margin-top: 380px;
}
}
*/



/* Form message styling */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    font-weight: 500;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-weight: 500;
    white-space: pre-wrap;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


.video {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    margin: 10px 0;
}

.video iframe {
    max-width: 100%;
    border-style: solid;
    border-radius: 20px;
    border-width: 10px 0;
    border-color: black;
}

.mv-card-1 {
    background-color: transparent !important;
}


@media (min-width: 1200px) {

    .mv-card-1 {
        padding: 20px 40px;
    }

    .about-box {
        padding: 20px 40px 5px 40px !important;
    }
}

.alertS {
    display: none;
    padding-top: 2px;
    padding-bottom: 2px;
}

#submissionLoading {
    display: none;
    font-size: 15px;
    width: 17px;
    height: 17px;
}