*{
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    /* padding-top: 1.2rem; */
    background: linear-gradient(to right, #ffffff, #f8f9fa) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}







.navbar-logo {
    height: 60px;
    border-radius: 50%;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
    color: #1a252f !important;
}

.nav-link {
    color: #34495e !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 1.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2980b9 !important;
    background-color: rgba(41, 128, 185, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #2980b9;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .home-section {
        padding: 2rem 0;
    }
    
    .home-content {
        text-align: center;
        margin-top: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    
    .home-image {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
    }
    
    .home-content h1 {
        font-size: 2rem;
    }
    
    .home-content .lead {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .home-image img {
        border-radius: 15px;
    }
}

/* Home Section Styles */
.home-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232980b9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.home-content {
    position: relative;
    z-index: 1;
}

.home-content h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-content .lead {
    color: #2980b9;
    font-size: 1.5rem;
    font-weight: 500;
}

.home-content p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: #ddddff;
}

.feature-item i {
    font-size: 1.5rem;
    color: #2980b9;
    background: rgba(41, 128, 185, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
}

.feature-item span {
    font-weight: 500;
    color: #2c3e50;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background-color: #2980b9;
    border-color: #2980b9;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2471a3;
    border-color: #2471a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.2);
}

.btn-outline-primary {
    color: #2980b9;
    border-color: #2980b9;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.2);
}

.home-image {
    position: relative;
    margin-bottom: 2rem;
}

.home-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.home-image:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments for home section */
@media (max-width: 991.98px) {
    .home-section {
        padding: 4rem 0;
    }

    .home-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .home-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content .lead {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, 0.25);
}

.form-control:hover, .form-select:hover {
    border-color: #2980b9;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Animation for modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive modal adjustments */
@media (max-width: 576px) {
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
}

/* Room Availability Styles */
.room-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-option {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.room-option:hover {
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.1);
}

.room-option.selected {
    border-color: #2980b9;
    background-color: rgba(41, 128, 185, 0.05);
}

.room-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 128, 185, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
}

.room-icon i {
    font-size: 1.5rem;
    color: #2980b9;
}

.room-info {
    flex: 1;
}

.room-info h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.room-status {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: #666;
}

.room-status i {
    margin-right: 0.3rem;
}

.text-success {
    color: #27ae60 !important;
}

.text-danger {
    color: #e74c3c !important;
}

/* Animation for room options */
.room-option {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.room-option:nth-child(1) {
    animation-delay: 0.1s;
}

.room-option:nth-child(2) {
    animation-delay: 0.2s;
}

.room-option:nth-child(3) {
    animation-delay: 0.3s;
}

.room-option:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .room-option {
        padding: 1rem;
    }
    
    .room-icon {
        width: 40px;
        height: 40px;
    }
    
    .room-icon i {
        font-size: 1.2rem;
    }
    
    .room-info h6 {
        font-size: 1rem;
    }
}

/* Call Now Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.popup-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-body {
    padding: 2rem;
    text-align: center;
}

.popup-body h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-body p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.popup-features {
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.feature span {
    color: #2c3e50;
    font-weight: 500;
}

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #27ae60;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    margin-top: 1rem;
}

.call-button i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.call-button:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    color: white;
}

/* Animation for features */
.feature {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .popup-content {
        width: 95%;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-body h3 {
        font-size: 1.3rem;
    }
    
    .call-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2980b9;
    padding: 5px;
    background: white;
}

.service-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-size: 1.1rem;
}

.service-features li i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-cta {
    text-align: center;
}

.service-cta .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 50px;
}

/* Additional Info Styles */
.additional-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #2980b9;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .services-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .additional-info {
        flex-direction: column;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 1rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-card i {
        font-size: 2rem;
    }

    .info-card h4 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 1rem;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232980b9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.feature-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2980b9;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(41, 128, 185, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #2980b9;
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 2rem;
    color: #2980b9;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: #ffffff;
    transform: rotateY(-180deg);
}

.feature-box h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-size: 1.1rem;
}

.feature-list li i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cta-container h3 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-container p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-container .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(41, 128, 185, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .why-choose-us-section {
        padding: 3rem 0;
    }

    .feature-box {
        margin-bottom: 2rem;
    }

    .cta-container {
        padding: 2rem;
        margin-top: 2rem;
    }

    .cta-container h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .feature-box {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-box h3 {
        font-size: 1.3rem;
    }

    .feature-box p {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .cta-container {
        padding: 1.5rem;
    }

    .cta-container h3 {
        font-size: 1.5rem;
    }

    .cta-container p {
        font-size: 1.1rem;
    }

    .cta-container .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(41, 128, 185, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(41, 128, 185, 0.05) 0%, transparent 50%);
    opacity: 0.7;
}

.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-category {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2980b9, #3498db);
}

.testimonial-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    border-radius: 3px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(41, 128, 185, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(41, 128, 185, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(41, 128, 185, 0.2);
}

.testimonial-rating {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.2);
}

.testimonial-text {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(41, 128, 185, 0.1);
}

.author-info h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.reviews-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2980b9, #3498db);
}

.reviews-cta p {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.reviews-cta .btn-outline-primary {
    background: transparent;
    border: 2px solid #2980b9;
    color: #2980b9;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-cta .btn-outline-primary:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.2);
}

/* Responsive adjustments for testimonials */
@media (max-width: 991.98px) {
    .testimonial-category {
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .reviews-cta .btn-outline-primary {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reviews-column {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.reviews-column:hover {
    transform: translateY(-5px);
}

.column-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.column-header i {
    font-size: 24px;
    color: #007bff;
    margin-right: 15px;
}

.column-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.review-quote {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: #007bff;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.review-content {
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-details h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f0f7ff;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Review Stats Styles */
.review-stats {
    margin-top: 50px;
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-header {
    margin-bottom: 20px;
}

.stat-header i {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-count {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* TrustBox Section Styles */
.trustbox-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.trustbox-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.trustbox-container {
    position: relative;
    z-index: 2;
}

.trustbox-header .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.trustbox-header .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

.trustbox-widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trustbox-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    max-width: 300px;
}

.trustbox-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.trustbox-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.trustbox-icon i {
    font-size: 24px;
    color: #fff;
}

.trustbox-content h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.trustbox-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.trustbox-cta {
    margin-top: 40px;
}

.trustbox-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.trustbox-cta .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.trustbox-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #d63031 100%);
}

/* Review Platforms Styles */
.review-platforms-container {
    margin-top: 50px;
}

.platforms-header h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.platforms-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.platform-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
    position: relative;
}

.google-card .platform-icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

.trustpilot-card .platform-icon {
    background: linear-gradient(135deg, #00b67a 0%, #00d4aa 100%);
    box-shadow: 0 5px 15px rgba(0, 182, 122, 0.4);
}

.trustpilot-card .platform-icon i {
    font-size: 35px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.trustpilot-card:hover .platform-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.platform-content h4 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.platform-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.platform-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.google-btn {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.trustpilot-btn {
    background: linear-gradient(135deg, #00b67a 0%, #00d4aa 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 182, 122, 0.3);
}

.trustpilot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive TrustBox Styles */
@media (max-width: 768px) {
    .trustbox-widget-container {
        flex-direction: column;
        gap: 20px;
    }

    .trustbox-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .trustbox-header .section-title {
        font-size: 2rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platforms-header h3 {
        font-size: 1.8rem;
    }

    .platform-card {
        padding: 25px;
    }

    .reviews-column {
        margin-bottom: 30px;
    }

    .reviewer-info {
        flex-direction: column;
    }

    .review-date {
        margin-top: 5px;
    }

    .stat-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .trustbox-section {
        padding: 60px 0;
    }

    .trustbox-header .section-title {
        font-size: 1.8rem;
    }

    .trustbox-card {
        padding: 20px;
    }

    .platforms-header h3 {
        font-size: 1.6rem;
    }

    .platform-card {
        padding: 20px;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .platform-content h4 {
        font-size: 1.2rem;
    }

    .platform-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Action Button States */
.action-btn.clicked {
    background: #e3f2fd;
    color: #2980b9;
    pointer-events: none;
}

.action-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Animation for modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    .toast-notification {
        left: 20px;
        right: 20px;
        text-align: center;
    }
}

/* Reviews Carousel Styles */
.reviews-carousel {
    margin-top: 3rem;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.carousel-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.carousel-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(41, 128, 185, 0.1);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(41, 128, 185, 0.1);
    position: relative;
    overflow: hidden;
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(41, 128, 185, 0.1);
    line-height: 1;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-text {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(41, 128, 185, 0.1);
}

.reviewer-details h5 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

.stars i {
    margin-right: 2px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(41, 128, 185, 0.1);
    color: #2980b9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2980b9;
    color: white;
    transform: translateY(-2px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav:hover {
    background: #2980b9;
    color: white;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.2);
}

.carousel-nav i {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-section {
        padding: 1.5rem;
    }

    .carousel-title {
        font-size: 1.5rem;
    }

    .review-card {
        padding: 2rem;
    }

    .review-quote {
        font-size: 2.5rem;
        top: 1rem;
        left: 1rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .review-date {
        align-self: flex-start;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}

/* Animation for carousel */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide {
    animation: slideIn 0.5s ease forwards;
}

/* Review Selection Styles */
.review-selection {
    margin-bottom: 3rem;
}

.review-selection .btn-group {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.review-selection .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.review-selection .btn-primary {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.review-selection .btn-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.review-selection .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-selection .btn.active {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-selection .btn i {
    font-size: 1.2rem;
}

/* Reviews Container Styles */
.reviews-container {
    opacity: 1;
    transition: all 0.5s ease;
}

.reviews-container.hidden {
    opacity: 0;
    display: none;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(41, 128, 185, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(41, 128, 185, 0.1);
    line-height: 1;
}

.review-content {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

.review-text {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(41, 128, 185, 0.1);
}

.reviewer-details h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
}

.stars i {
    margin-right: 2px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(41, 128, 185, 0.1);
    color: #2980b9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2980b9;
    color: white;
    transform: translateY(-2px);
}

/* Animation for review cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.5s ease forwards;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-selection .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-quote {
        font-size: 2.5rem;
        top: 1rem;
        left: 1rem;
    }

    .review-content {
        padding-left: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .review-date {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .review-selection .btn-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .review-selection .btn {
        width: 100%;
        border-radius: 0 !important;
    }
}

/* Selection Message Styles */
.selection-message {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.5s ease forwards;
}

.selection-icon {
    font-size: 3rem;
    color: #2980b9;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.selection-message h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.selection-message p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.selection-prompt {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Review Container Transitions */
.reviews-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.reviews-container.show {
    opacity: 1;
    transform: translateY(0);
}

.review-stats {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.review-stats.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .selection-message {
        padding: 2rem;
    }

    .selection-icon {
        font-size: 2.5rem;
    }

    .selection-message h3 {
        font-size: 1.5rem;
    }

    .selection-message p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .selection-message {
        padding: 1.5rem;
    }

    .selection-icon {
        font-size: 2rem;
    }

    .selection-message h3 {
        font-size: 1.3rem;
    }
}

/* Reviews Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 2px solid #f0f0f0;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 2px solid #f0f0f0;
    padding: 1.5rem;
}

/* Review Stats in Modal */
.review-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: #6c757d;
    font-size: 1rem;
}

/* Review Cards in Modal */
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-quote {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-details h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #007bff;
    color: #fff;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-body {
        padding: 1.5rem;
    }

    .review-stats {
        padding: 1.5rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }

    .stars {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modal-body {
        padding: 1rem;
    }

    .review-stats {
        padding: 1rem;
    }

    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-date {
        margin-top: 0.5rem;
    }
}

/* Registration Form Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.form-floating {
    position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

.form-floating.focused > label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label {
    color: #4a90e2;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-check-input:checked {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #495057;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Form Validation Styles */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
}

.was-validated .form-check-input:invalid {
    border-color: #dc3545;
}

.was-validated .form-check-input:valid {
    border-color: #198754;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        height: calc(3rem + 2px);
    }
}

/* Animation for form fields */
@keyframes fieldFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.form-floating.focused {
    animation: fieldFocus 0.3s ease;
}

/* Document Upload Styles */
.document-upload {
    position: relative;
}

.upload-area {
    border: 2px dashed #4a90e2;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.upload-area:hover {
    background: #e9ecef;
    border-color: #2980b9;
}

.upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-prompt {
    color: #6c757d;
}

.upload-prompt i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.upload-prompt p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.upload-prompt small {
    display: block;
    margin-top: 0.5rem;
}

.upload-preview {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.preview-item i {
    color: #4a90e2;
    font-size: 1.5rem;
}

.file-name {
    flex: 1;
    font-size: 0.9rem;
    color: #495057;
    word-break: break-all;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    color: #c82333;
    transform: scale(1.1);
}

/* Updated Form Styles */
.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.15);
    background: #fff;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
}

.form-floating.focused > label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label {
    color: #4a90e2;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Animation for form fields */
@keyframes fieldFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.form-floating.focused {
    animation: fieldFocus 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .upload-area {
        padding: 1.5rem;
    }

    .upload-prompt i {
        font-size: 2rem;
    }

    .upload-prompt p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .upload-area {
        padding: 1rem;
    }

    .upload-prompt i {
        font-size: 1.8rem;
    }

    .upload-prompt p {
        font-size: 0.9rem;
    }

    .preview-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232980b9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    background: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #2980b9;
    background: rgba(41, 128, 185, 0.1);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background: #ffffff;
    color: #666;
    line-height: 1.8;
}

.accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2980b9, #3498db);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact p i {
    color: #3498db;
    font-size: 1.2rem;
}

.footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-info,
    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 0;
    }

    .footer-logo {
        max-width: 120px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animation for FAQ */
.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-collapse {
    transition: all 0.3s ease;
}

/* Hover Effects */
.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-links ul li a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    margin-right: 0.8rem;
}

/* Additional SEO-friendly styles */
.faq-section h2,
.footer h4 {
    position: relative;
    display: inline-block;
}

.faq-section h2::after,
.footer h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2980b9;
    border-radius: 3px;
}

.footer h4::after {
    background: #3498db;
}

/* Accessibility improvements */
.accordion-button:focus-visible {
    outline: 2px solid #2980b9;
    outline-offset: 2px;
}

.footer a:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .faq-section,
    .footer {
        break-inside: avoid;
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-collapse {
        display: block !important;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('IMG/hostel/Roma_Maam_OFFICE_web.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: #333;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Form Styles */
.form-floating {
    margin-bottom: 20px;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > textarea.form-control {
    height: 150px;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Luxurious Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0056b3, #003d82);
    cursor: pointer;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #007bff #f1f1f1;
}

/* For Edge and IE */
body {
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: #007bff #f1f1f1;
}

/* Floating Peacock Styles */
.floating-peacock {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 1000;
    pointer-events: none;
    animation: float 6s ease-in-out infinite, sway 8s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.floating-peacock:hover {
    transform: scale(1.1);
}

.floating-peacock img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: featherWave 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes sway {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(10px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes featherWave {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(2deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Combine animations */
.floating-peacock {
    animation: 
        float 6s ease-in-out infinite,
        sway 8s ease-in-out infinite;
}

.floating-peacock img {
    animation: featherWave 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .floating-peacock {
        width: 70px;
        height: 70px;
        bottom: 10px;
        right: 10px;
    }
    
    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        25% {
            transform: translateY(-10px) rotate(1deg);
        }
        50% {
            transform: translateY(-15px) rotate(-1deg);
        }
        75% {
            transform: translateY(-10px) rotate(1deg);
        }
        100% {
            transform: translateY(0) rotate(0deg);
        }
    }
    
    @keyframes sway {
        0% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(5px);
        }
        50% {
            transform: translateX(0);
        }
        75% {
            transform: translateX(-5px);
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* Floating Peacock with Text Comparison */
.floating-peacock {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 1000;
    pointer-events: none;
    animation: float 6s ease-in-out infinite, sway 8s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.floating-peacock::after {
    content: "Best Hostel";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    opacity: 0;
    animation: textFade 4s ease-in-out infinite;
}

.floating-peacock::before {
    content: "Best Service";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    opacity: 0;
    animation: textFade 4s ease-in-out infinite 2s;
}

@keyframes textFade {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    25%, 75% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.floating-peacock:hover {
    transform: scale(1.1);
}

.floating-peacock:hover::after,
.floating-peacock:hover::before {
    animation-play-state: paused;
}

.floating-peacock img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: featherWave 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes sway {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(10px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes featherWave {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(2deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Combine animations */
.floating-peacock {
    animation: 
        float 6s ease-in-out infinite,
        sway 8s ease-in-out infinite;
}

.floating-peacock img {
    animation: featherWave 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .floating-peacock {
        width: 70px;
        height: 70px;
        bottom: 10px;
        right: 10px;
    }
    
    .floating-peacock::after,
    .floating-peacock::before {
        font-size: 12px;
    }
    
    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        25% {
            transform: translateY(-10px) rotate(1deg);
        }
        50% {
            transform: translateY(-15px) rotate(-1deg);
        }
        75% {
            transform: translateY(-10px) rotate(1deg);
        }
        100% {
            transform: translateY(0) rotate(0deg);
        }
    }
    
    @keyframes sway {
        0% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(5px);
        }
        50% {
            transform: translateX(0);
        }
        75% {
            transform: translateX(-5px);
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* Remove social media styles */
.footer-contact {
    padding: 20px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact p i {
    margin-right: 10px;
    color: #007bff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #007bff;
}

/* Legal Declaration Section Styles */
.legal-declaration-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.legal-declaration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232980b9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.legal-declaration-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(41, 128, 185, 0.1);
}

.legal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(41, 128, 185, 0.1);
}

.legal-header h3 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.legal-header h3 i {
    color: #2980b9;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-info {
    background: rgba(41, 128, 185, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #2980b9;
}

.legal-info p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-info strong {
    color: #2980b9;
    font-weight: 600;
}

.business-story {
    background: rgba(255, 193, 7, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
}

.business-story h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.business-story h4 i {
    color: #e74c3c;
}

.business-story p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.legal-notice {
    background: rgba(39, 174, 96, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #27ae60;
}

.legal-notice p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.legal-notice i {
    color: #27ae60;
}

/* Responsive adjustments for legal declaration */
@media (max-width: 768px) {
    .legal-declaration-section {
        padding: 3rem 0;
    }

    .legal-declaration-content {
        padding: 2rem;
    }

    .legal-header h3 {
        font-size: 1.6rem;
    }

    .legal-info,
    .business-story,
    .legal-notice {
        padding: 1rem;
    }

    .legal-info p,
    .business-story p {
        font-size: 1rem;
    }

    .business-story h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .legal-declaration-content {
        padding: 1.5rem;
    }

    .legal-header h3 {
        font-size: 1.4rem;
    }

    .legal-body {
        gap: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: #ffffff;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 400px;
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(41, 128, 185, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-badge i {
    font-size: 1.2rem;
}

.founder-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-content h3 {
    color: #2980b9;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder-qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(41, 128, 185, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quality-item:hover {
    background: rgba(41, 128, 185, 0.2);
    transform: translateY(-2px);
}

.quality-item i {
    color: #2980b9;
    font-size: 1.5rem;
}

.quality-item span {
    font-weight: 500;
    color: #2c3e50;
}

.founder-message {
    background: rgba(41, 128, 185, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2980b9;
}

.founder-message blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.founder-message cite {
    color: #2980b9;
    font-weight: 600;
    font-style: normal;
}

/* Mission & Values Section */
.mission-values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-card, .values-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-icon, .values-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i, .values-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .values-card h3 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.mission-points li i {
    color: #27ae60;
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(41, 128, 185, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(41, 128, 185, 0.1);
    transform: translateY(-3px);
}

.value-item i {
    font-size: 2rem;
    color: #2980b9;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Journey Timeline */
.journey-section {
    padding: 6rem 0;
    background: #ffffff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.timeline-marker i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    color: #2980b9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #2980b9;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-contact .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* About CTA Section */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive Styles for About Page */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-qualities {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: -60px;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .founder-content h2 {
        font-size: 2rem;
    }
    
    .founder-content h3 {
        font-size: 1.5rem;
    }
    
    .mission-card, .values-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="1" fill="%232980b9" fill-opacity="0.03"/></svg>');
    opacity: 0.6;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(41, 128, 185, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.about-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.about-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 2px;
}

.about-card p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Founder Card Styles */
.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-info h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-info h4 {
    color: #2980b9;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.founder-qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.quality-tag {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
    transition: all 0.3s ease;
}

.quality-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
}

/* Mission & Values Cards */
.mission-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mission-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #7f8c8d;
}

.values-list li i {
    color: #27ae60;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Journey Timeline */
.journey-section {
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
    transition: all 0.3s ease;
}

.timeline-marker i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: #2980b9;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2980b9, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for About Section */
@media (max-width: 991.98px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .founder-qualities {
        justify-content: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: -60px;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    .mission-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.5rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-info h3 {
        font-size: 1.4rem;
    }
    
    .founder-info h4 {
        font-size: 1.2rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    .mission-card h4 {
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .timeline-content h5 {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quality-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232980b9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
}

.gallery-filters {
    position: relative;
    z-index: 1;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    border-color: #2980b9;
    color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-color: #2980b9;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.filter-btn i {
    margin-right: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(41, 128, 185, 0.1);
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 128, 185, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.overlay-content .btn {
    background: #ffffff;
    color: #2980b9;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.overlay-content .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h5 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.lightbox-image {
    max-height: 70vh;
    overflow: hidden;
}

.lightbox-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 2rem;
    background: #ffffff;
}

.lightbox-info h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lightbox-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Gallery CTA Styles */
.gallery-cta {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(41, 128, 185, 0.1);
}

.gallery-cta h3 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-cta p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.gallery-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(41, 128, 185, 0.3);
}

/* Responsive Design for Gallery */
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-cta {
        padding: 2rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .overlay-content {
        padding: 1rem;
    }
    
    .overlay-content h4 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .gallery-info {
        padding: 1rem;
    }
    
    .gallery-info h5 {
        font-size: 1.2rem;
    }
    
    .gallery-cta {
        padding: 1.5rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.5rem;
    }
    
    .gallery-cta p {
        font-size: 1rem;
    }
    
    .gallery-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-info {
        padding: 1.5rem;
    }
    
    .lightbox-info h4 {
        font-size: 1.3rem;
    }
    
    .lightbox-info p {
        font-size: 1rem;
    }
}
