/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*************** Font Color class ***********/
.white {
    color: #fff;
}

.black {
    color: #1C1C1C !important;
}
/* Header */
.header {
    background: #191919;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
}

.nav-brand .logo > img {
    max-height: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ade80;
}

.nav-btn {
    background: #4ade80;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #22c55e;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* Hero Section - Updated for image overlay */
.hero {
    background: #fff;
    padding: 85px 20px 20px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    margin: 0 auto;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/Jaipur.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #191919;
    color: white;
    text-align: center;
}

.featured-review-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.write-review-btn {
    background: #4ade80;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 3rem;
    transition: background 0.3s ease;
}

.write-review-btn:hover {
    background: #22c55e;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: #F6F6F6;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.company-name {
    font-weight: 600;
    color: #000000;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #4ade80;
    font-size: 1rem;
}

.rating-number {
    background: #E6E6E6;
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.review-item p {
    color: #474747;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-date {
    color: #474747;
    font-size: 0.9rem;
}

.view-all-btn {
    background: #191919;
    color: white;
    border: 2px solid #191919;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #191919;
    color: white;
}

/* Companies Section */
.companies-section {
    padding: 80px 0;
    background: #EBFFE5;
}

.companies-section .section-title {
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 3rem;
}

.companies-table {
    background: white;
    /*border-radius: 12px;*/
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px 100px;
    background: #A8FF95;
    color: #000000;
    font-weight: 600;
    padding: 1rem;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 150px 100px;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.rank {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
}

.company {
    font-weight: 600;
    color: #333;
}

.rating-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-cell .stars {
    color: #4ade80;
}

.rating-cell .rating-number {
    background: #4ade80;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-count {
    font-weight: 600;
    color: #666;
}

/* Blog Section - Horizontal Layout with Rounded Images */
.blog-section {
    margin: 20px 0;
}

.blog-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card-horizontal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: stretch;
    min-height: 140px;
}

.blog-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image-horizontal {
    width: 120px;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px; /* Added rounded corners to all sides */
    margin: 8px; /* Small margin to separate from card edge */
}

.blog-content-horizontal {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.blog-content-horizontal h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content-horizontal p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-content-horizontal .blog-date {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: auto;
}

/* Responsive Design for Blog Section */
@media (max-width: 1024px) {
    .blog-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-card-horizontal {
        min-height: 120px;
    }
    
    .blog-image-horizontal {
        width: 100px;
        height: 120px;
        border-radius: 10px; /* Slightly smaller radius for mobile */
        margin: 6px;
    }
    
    .blog-content-horizontal {
        padding: 1rem;
    }
    
    .blog-content-horizontal h3 {
        font-size: 0.95rem;
    }
    
    .blog-content-horizontal p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .blog-card-horizontal {
        flex-direction: column;
        min-height: auto;
    }
    
    .blog-image-horizontal {
        width: calc(100% - 16px); /* Full width minus margins */
        height: 150px;
        border-radius: 8px; /* Smaller radius for small screens */
        margin: 8px;
    }
    
    .blog-content-horizontal {
        padding: 1rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #EBFFE5;
    text-align: center;
}

.newsletter-section .section-title {
    color: #333;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #333;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #333;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        color: white;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0.5rem 0;
        border-bottom: 1px solid #555;
    }

    .nav-links .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-links .nav-link:hover {
        color: #4ade80;
    }

    .nav-links .nav-btn {
        background: #4ade80;
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        margin-top: 1rem;
        transition: background 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-block;
    }

    .nav-links .nav-btn:hover {
        background: #22c55e;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 15px 40px;
    }
    
    .hero-container {
        height: 350px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .companies-table,
    .table-header,
    .table-row {
        grid-template-columns: 60px 1fr 120px 80px;
    }


    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 10px 30px;
    }
    
    .hero-container {
        height: 280px;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .companies-table,
    .table-header,
    .table-row {
        grid-template-columns: 50px 1fr 100px 60px;
        font-size: 0.9rem;
    }
}

/* Footer Section */
.footer-new {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: #fff;
    border-bottom-color: #4ade80;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a5568;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4ade80;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-new {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-description,
    .footer-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Hero Section */
.reviews-hero {
    background: #191919;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.reviews-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.reviews-hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
}

/* Search and Filter Section */
.search-filter-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.search-box {
    display: flex;
    flex: 1;
    max-width: 400px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border-color: #4ade80;
}

.search-btn {
    background: #4ade80;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #22c55e;
}

.filter-dropdowns {
    display: flex;
    gap: 1rem;
}

.filter-dropdown {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    min-width: 150px;
}

.filter-dropdown:focus {
    outline: none;
    border-color: #4ade80;
}

/* Reviews Grid Section */
.reviews-grid-section {
    padding: 3rem 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #f6f6f6;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.company-name {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #4ade80;
    font-size: 1rem;
}

.rating-number {
    background: #e6e6e6;
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000;
}

.review-content {
    color: #474747;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-author {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Load More Button */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    background: #191919;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Latest Blog Section */
.latest-blog-section {
    padding: 4rem 0;
    background: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .search-filter-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .search-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .reviews-hero {
        padding: 100px 0 60px;
    }
    
    .reviews-hero-title {
        font-size: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-dropdowns {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-dropdown {
        min-width: auto;
    }
    
    .search-filter-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .reviews-hero-title {
        font-size: 2rem;
    }
    
    .reviews-hero-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .search-input,
    .search-btn,
    .filter-dropdown {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Hidden class for filtering */
.review-card.hidden {
    display: none;
}

/* Wrapper for the search input and its dropdown */
.search-wrapper {
    position: relative;
    display: flex; /* To align input and button */
    flex: 1;
    max-width: 400px; /* Adjust as needed */
}

/* Styles for the suggestions list (the dropdown itself) */
.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%; /* Position below the input */
    left: 0;
    /* Adjust right to account for the search button width if it's inside the wrapper */
    right: 80px; /* Assuming search-btn is ~80px wide */
    background: white;
    border: 1px solid #ddd;
    border-top: none; /* No top border as it connects to the input */
    border-radius: 0 0 8px 8px; /* Rounded corners only at the bottom */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it's above other content */
    max-height: 250px; /* Limit height and add scroll if needed */
    overflow-y: auto;
}

.suggestions-list.hidden {
    display: none;
}

.suggestions-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    color: #333;
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestions-list li:hover,
.suggestions-list li.highlighted {
    background-color: #f8f9fa;
}

.suggestions-list .loading-message,
.suggestions-list .no-results-message {
    padding: 12px 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Responsive adjustments for search-wrapper and suggestions-list */
@media (max-width: 768px) {
    .search-wrapper {
        max-width: 100%; /* Allow it to take full width on smaller screens */
    }
    .suggestions-list {
        right: 70px; /* Adjust for smaller button on mobile if applicable */
    }
}



/* General styles for the About Us page */
.about-main {
  background-color: #fff; /* Dark background */
  color: #f0f0f0; /* Light text color */
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  padding-top: 80px; /* Adjust for fixed header height */
}

/* Hero Section */
.about-hero {
  background-color: #1a1a1a;
  padding: 6rem 1rem 4rem;
  text-align: center;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.about-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content Section */
.about-content-section {
  padding: 4rem 1rem;
}

.about-grid {
  display: flex;
  flex-direction: column; /* Stack columns on small screens */
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start; /* Align items to the start of the cross axis */
}

@media (min-width: 768px) {
  .about-grid {
    flex-direction: row; /* Two columns on larger screens */
    justify-content: space-between;
  }
}

.about-text-column {
  flex: 1;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-text-column {
    max-width: 55%; /* Adjust width for text column */
  }
}

.about-image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-image-column {
    max-width: 40%; /* Adjust width for image column */
  }
}

.about-illustration {
  max-width: 100%;
  height: auto;
  border-radius: 15px; /* Rounded corners for the image */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Text Content Styling */
.about-text-column h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1C1C1C;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-text-column h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.about-text-column p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #1C1C1C;
}

.about-text-column ul {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin-bottom: 1.5rem;
}

.about-text-column ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: #1C1C1C;
}

.about-text-column ul li::before {
  content: "•"; /* Custom bullet point */
  color: #4ade80; /* Green color for bullets */
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.about-text-column strong {
  color: #1C1C1C;
}

.contact-link {
  color: #4ade80; /* Green color for the link */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #22c55e;
  text-decoration: underline;
}


/* Main container for the Share Experience page */
.share-experience-main {
  background-color: #1a1a1a; /* Dark background as per image */
  color: #f0f0f0; /* Light text color */
  font-family: "Inter", sans-serif;
  min-height: 100vh; /* Ensure it takes full viewport height */
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* Adjust for fixed header height */
}

/* Hero Section */
.share-experience-hero {
  text-align: center;
  padding: 3rem 1rem;
}

.share-experience-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f0f0f0;
}

.share-experience-hero .hero-subtitle {
  font-size: 1.125rem;
  color: #b0b0b0;
}

/* Form Section */
.form-section {
  flex-grow: 1; /* Allows form section to take available space */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align to top to prevent form from stretching vertically */
  padding: 2rem 1rem 4rem; /* Add padding at bottom for footer */
}

.review-form-card {
  background-color: #fff; /* White background for the form card */
  border-radius: 1rem; /* Rounded corners */
  padding: 2.5rem; /* Padding inside the card */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); /* Shadow for depth */
  width: 900px; /* Full width up to max-width */
  color: #333; /* Dark text inside the form */
}

.review-form .form-group {
  margin-bottom: 1.5rem;
}

.review-form-card .search-box {
    display: flex;
    flex: 1;
    max-width: 1000px;
}

.review-form-card .search-wrapper {
    max-width: 1000px;
}


.review-form .form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.5rem;
}

.review-form .form-input,
.review-form .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #f5f5f5; /* Light grey background for inputs */
  color: #333;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-form .form-input::placeholder,
.review-form .form-textarea::placeholder {
  color: #a0a0a0;
}

.review-form .form-input:focus,
.review-form .form-textarea:focus {
  border-color: #4ade80; /* Green focus border */
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.review-form .form-textarea {
  resize: vertical; /* Allow vertical resizing */
}

.review-form .date-input-wrapper {
  position: relative;
  display: flex; /* To align input and icon */
  align-items: center;
}

.review-form .date-input-wrapper .form-input {
  padding-right: 2.5rem; /* Space for the calendar icon */
}

.review-form .date-input-wrapper .calendar-icon {
  position: absolute;
  right: 1rem;
  color: #a0a0a0;
  pointer-events: none; /* Make icon not interfere with input clicks */
}

.review-form .form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.review-form .radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-form .radio-label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

.review-form .radio-label input[type="radio"] {
  margin-right: 0.75rem;
  /* Custom radio button styling */
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #a0a0a0;
  border-radius: 50%;
  outline: none;
  position: relative;
  cursor: pointer;
}

.review-form .radio-label input[type="radio"]:checked {
  border-color: #4ade80; /* Green for checked state */
}

.review-form .radio-label input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #4ade80; /* Inner circle color */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.review-form .submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #1a1a1a; /* Dark button background */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
}

.review-form .submit-btn:hover {
  background-color: #333; /* Slightly lighter dark on hover */
}

/* Utility for hiding elements with JavaScript */
.d-none {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .review-form-card {
    padding: 1.5rem;
    width: 100%;
  }
  .share-experience-hero .hero-title {
    font-size: 2.5rem;
  }
  .share-experience-hero .hero-subtitle {
    font-size: 1rem;
  }
}

/* OTP Modal Styles */
.otp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top of other content */
}

.otp-modal-content {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  max-width: 450px; /* Adjusted max-width for the popup */
  width: 90%; /* Responsive width */
  text-align: center;
  position: relative;
  color: #333;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-button:hover {
  color: #777;
}

.otp-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.otp-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.otp-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.otp-inputs {
  display: flex;
  gap: 0.75rem; /* Space between input boxes */
  margin-bottom: 2rem;
  justify-content: center;
}

.otp-input {
  width: 45px; /* Fixed width for each input */
  height: 55px; /* Fixed height for each input */
  font-size: 1.5rem;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.otp-input:focus {
  border-color: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.otp-submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

.otp-submit-btn:hover {
  background-color: #333;
}

.resend-text {
  font-size: 0.9rem;
  color: #555;
}

.resend-link {
  color: #4ade80;
  text-decoration: none;
  font-weight: 500;
}

.resend-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments for OTP modal */
@media (max-width: 480px) {
  .otp-modal-content {
    padding: 1.5rem;
  }
  .otp-title {
    font-size: 1.75rem;
  }
  .otp-input {
    width: 40px;
    height: 50px;
    font-size: 1.25rem;
  }
  .otp-inputs {
    gap: 0.5rem;
  }
}