/* Main content styles */
main {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Video banner styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}

.video-overlay h1 {
    color: white;
    font-size: 3.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    max-width: 800px;
    line-height: 1.2;
}

/* Search icon styles */
.search-icon-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.search-icon {
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-icon i {
    font-size: 24px;
    color: #333;
    transition: transform 0.3s ease;
}

.search-icon:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.search-icon:hover i {
    transform: rotate(90deg);
}
/* Services Section Styles */
.services {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Claim Performances Section Styles */
.claim-performances {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.claim-performances h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.claim-performances h3 {
    color: #4a5568;
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-weight: 500;
}

.claim-performances .stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.claim-performances .stat-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.claim-performances .stat-item:hover {
    transform: translateY(-10px);
}

.claim-performances .stat-item h4 {
    color: #2c5282;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.claim-performances .stat-item p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.claim-performances .stat-item .highlight {
    display: inline-block;
    background: #ebf8ff;
    color: #2c5282;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Media Queries for Services Section */

/* Why RakshaNivesh Section Styles */
.why-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/whybg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-card {
    max-width: 1000px;
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.why-card h3 {
    color: #e2e8f0;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-text {
    color: #f7fafc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.trust-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Why Section */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-card h2 {
        font-size: 2rem;
    }

    .why-card h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .services {
        padding: 60px 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .search-container {
        width: 90%;
        max-width: 400px;
    }
    
    .search-container input {
        width: 100%;
    }

    .search-icon-container {
        position: fixed;
        bottom: auto;
        left: auto;
        top: 300px;
        right: 15px;
        transform: none;
    }

    .search-icon {
        width: 40px;
        height: 40px;
    }

    .search-icon i {
        font-size: 20px;
    }
}
