/* Color Variables */
:root {
    --primary-color: #2196F3;
    --primary-dark: #1976D2;
    --primary-light: #BBDEFB;
    --secondary-color: #FFC107;
    --secondary-dark: #FFA000;
    --accent-color: #FF4081;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #f5f7fa;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: var(--bg-gradient);
    color: var(--text-primary);
}

/* Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; /* 5% padding se logo aur buttons screen ke kinaro se thoda andar rahenge */
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(33, 150, 243, 0.1);
}

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

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

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    color: var(--primary-color);
}

.menu-btn.active i::before {
    content: '\f00d';
}

@media (max-width: 767px) {
    .menu-btn {
        display: block;
    }

    nav {
        justify-content: space-between;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        display: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .nav-links a:hover {
        background: rgba(33, 150, 243, 0.1);
    }
}
/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 1rem;
    margin-top: 60px;
    filter: brightness(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #00b300;
    box-shadow: 0 4px 10px var(--shadow-color);
}

/* Services Section */
#services {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #c3c2c2 0%, #f8f9fa 100%);
}

#services h2 {
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.service-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-color);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgb(0, 162, 255);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 1rem;
    padding-bottom: 1rem;
}

#about {
    padding: 100px 15px;
    background: #f8fbff; /* Clean light background */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

#about h2 {
    text-align: center;
    font-size: 3rem;
    color: #2d3436;
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: linear-gradient(to right, #3b93f2, #00b300);
    border-radius: 10px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.about-intro {
    font-size: 1.25rem;
    color: #3b93f2; /* Primary Blue */
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 600;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #636e72;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for list in PC */
    gap: 15px;
    margin-top: 25px;
}

.about-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #2d3436;
    background: #f1f7ff;
    padding: 12px 15px;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.about-list li:hover {
    transform: translateY(-3px);
    background: #3b93f2;
    color: white;
}

.about-list li i {
    color: #00b300; /* Success Green */
    margin-right: 12px;
    font-size: 1.2rem;
}

.about-list li:hover i {
    color: white;
}

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

/* Image Decorative Element */
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 10px solid #e1e9f5;
    border-radius: 30px;
    z-index: -1;
}

.team-img {
    width: 100%;
    max-width: 500px;
    height: 50%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-img:hover {
    transform: scale(1.03) rotate(1deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .about-text { padding: 30px; }
    .about-list { grid-template-columns: 1fr; } /* Back to 1 col for tablets */
}

@media (max-width: 768px) {
    #about { padding: 60px 20px; }
    #about h2 { font-size: 2.2rem; }
    .about-image { order: 1; }
    .about-text { order: 2; text-align: left; }
    .about-list li { justify-content: flex-start; }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Reviews Section */
#reviews {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #98afaf 0%, #f8f9fa 100%);
}

.review-slider {
    padding: 2rem 1rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.3s ease;
    height: 100%;
}

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

.review-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.review-info h4 {
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .review-slider {
        padding: 1rem 0.5rem 3rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.review-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

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

.review-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.review-avatar img:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px var(--shadow-color);
}

.review-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.review-stars {
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.review-stars i {
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Review Form */
.review-form-container {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-color);
}

.review-form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Star Rating */
.rating-select {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--secondary-color);
}

.submit-review-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-review-btn:hover {
    background: var(--primary-dark);
}

/* Responsive Design for Review Form */
@media (max-width: 768px) {
    .review-form-container {
        margin: 3rem 1rem 0;
        padding: 1.5rem;
    }

    .rating-select {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-container {
        grid-template-columns: 1fr;
    }

    .review-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .review-stats {
        grid-template-columns: 1fr;
    }
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.call-button {
        position: fixed;
        bottom: 65px;  /* Neeche se 20px ka gap */
        left: 14px;   /* Right hata ke Left use karein */
        background: var(--primary-color);  /* Button ka background color */
        color: white;  /* Text color */
        padding: 10px 15px;  /* Button ka size */
        border-radius: 50px; /* Gol button ke liye */
        text-decoration: none;
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        margin-left: -0.3cm;
        border: none;  /* Border remove karein */
        cursor: pointer;  /* Mouse cursor pointer hoga */
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
    
    
}

.call-button:hover {
    background: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.call-button i {
    font-size: 1.2rem;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

.call-text {
    font-weight: 500;
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Contact Section */
#contact {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #e8edf2 0%, #dfe6ec 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, select, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 150px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: white;
    color: var(--primary-color);
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin: 0;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-details p {
    margin: 0;
    opacity: 0.8;
}

.hover-text {
    display: none;
    color: white;
    font-weight: 500;
    margin-top: 0.5rem;
}

.contact-card:hover .hover-text {
    display: block;
}

.contact-card:hover p {
    opacity: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(134, 158, 177, 0.2);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(134, 158, 177, 0.1);
    color: #869eb1;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.fa-facebook-f:hover {
    background: #1877f2;
    color: white;
    background-color: none;
}

.social-icon.fa-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    background-color: none;
}

.social-icon.fa-whatsapp:hover {
    background: #25d366;
    color: white;
    background-color: none;
}

.social-icon.fa-youtube:hover {
    background: #ff0000;
    color: white;
}

/* Responsive Social Icons */
@media (max-width: 1024px) {
    .social-icons {
        margin-left: 1rem;
        padding-left: 1rem;
        gap: 0.8rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .social-icons {
        margin: 1rem 0 0 0;
        padding: 1rem 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(134, 158, 177, 0.2);
        width: 100%;
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Responsive Design */
/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .review-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Medium Screens (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Small Screens (up to 767px) */
@media (max-width: 767px) {
    /* General */
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        font-size: medium;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(222, 222, 222, 0.95);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        display: none;
        box-shadow: 0 2px 10px rgba(2, 2, 2, 0.1);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .menu-btn {
        display: block;
    }

    /* Hero Section */
    #hero {
        padding: 6rem 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-img {
        height: 180px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Reviews Section */
    .review-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Review Form */
    .review-form-container {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .rating-select {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Extra Small Screens (up to 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .service-card {
        margin: 0 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .menu-btn,
    .nav-links,
    .cta-button,
    .floating-call,
    .review-form-container {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 2cm;
    }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-img,
    .about-img,
    .review-avatar img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: #f0f0f0;
    }

    header {
        background: rgba(45, 45, 45, 0.95);
    }

    .service-card,
    .review-card,
    .contact-form {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


footer {
    background: #0f172a; /* Extra Dark Blue-Grey for premium feel */
    color: white;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #3b93f2;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Row-wise Links Styling */
.links-wrapper {
    display: flex;
    flex-wrap: wrap; /* Isse links automatically line change karenge */
    gap: 10px;
}

.links-wrapper a {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.links-wrapper a:hover {
    background: #3b93f2;
    color: white;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-info i {
    color: #3b93f2;
}

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

.dev-link {
    color: #3b93f2;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 15px;
    }

    .links-wrapper {
        justify-content: center; /* Mobile mein center alignment */
    }

    .contact-info p {
        justify-content: center;
    }

    footer {
        padding: 40px 15px 20px;
    }
}

/* Common Styles */
h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Image Hover Effects */
img:not(.logo-img):not(.service-img):not(.about-img):not(.review-avatar img) {
    transition: all 0.3s ease;
}

img:not(.logo-img):not(.service-img):not(.about-img):not(.review-avatar img):hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    right: 10px;
    /* PC position mobile ki tarah neeche karne ke liye */
    top: auto; 
    bottom: 80px; 
    transform: none; 
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
    background: transparent !important; 
    box-shadow: none !important;        
    border: none !important;           
    z-index: 1000;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.6s ease;
}

.social-icon:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.social-icon:hover {
    transform: translateX(-8px);
    box-shadow: -4px 4px 12px var(--shadow-color);
}

/* Facebook */
.facebook {
    background: #1877f2;
    background: linear-gradient(45deg, #1877f2, #2196f3);
    
}

.facebook:hover {
    background: linear-gradient(45deg, #2196f3, #1877f2);
}

/* Instagram */
.instagram {
    background: #f09433;
    background: linear-gradient(45deg, 
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%
    );
}

.instagram:hover {
    background: linear-gradient(45deg, 
        #285AEB 0%,
        #d6249f 30%,
        #fd5949 55%,
        #fdf497 95%,
        #fdf497 100%
    );
}

/* WhatsApp */
.whatsapp {
    background: #25d366;
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
}

/* Responsive Social Sidebar */
@media (max-width: 768px) {
    .social-sidebar {
        position: fixed;
        top: auto;
        bottom: 80px;
        right: 3px;
        transform: none;
        flex-direction: column;
        padding: 0;
        gap: 1rem;
        backdrop-filter: none;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .social-icon:hover {
        transform: translateX(-5px);
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        bottom: 70px;
        padding: 0;
        gap: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Review Modal and Button Styles */
.submit-review-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.rating-input i {
    transition: all 0.2s ease;
}

.rating-input i:hover,
.rating-input i.active {
    transform: scale(1.2);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}
 #location {
    padding: 80px 20px;
    background: #fdfdfd;
    font-family: 'Poppins', sans-serif;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

#location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 5px;
}

.loc-subtitle {
    text-align: center;
    color: #3b93f2;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-text {
    flex: 1;
}

.intro-p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.coverage-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

/* Modern Area List Grid */
.area-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns in Laptop */
    gap: 15px;
}

.area-list li {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.area-list li i {
    color: #00b300;
    margin-right: 10px;
    font-size: 1rem;
}

.area-list li:hover {
    transform: translateX(8px);
    border-color: #3b93f2;
    color: #3b93f2;
}

/* Map Styling */
.location-map {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
    }
    .area-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .area-list {
        grid-template-columns: 1fr; /* Mobile me single column */
    }
    #location h2 { font-size: 2rem; }
}
/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button styling */
.dropbtn {
    background-color: transparent;
    color: rgb(2, 2, 2); /* Aapke theme ke hisab se change karein */
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
/* new wala */
/* Parent dropdown */
.dropdown {
    position: relative;
}

/* Dropdown content (Hidden by default) */
.dropdown-content {
    display: none;                 /* default hidden */
    position: absolute;
    top: 100%;                     /* button ke neeche open ho */
    left: 0;

    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;

    /* 🔥 MOBILE SCROLL FIX (MAIN PART) */
    max-height: calc(100vh - 200px); /* screen ke andar rahe */
    overflow-y: auto;               /* vertical scroll */
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
    touch-action: pan-y;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Hover effect on links */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show class for JavaScript toggle */
.show {
    display: block;
}
/* ===== DROPDOWN SCROLL FIX (ADD ONLY) ===== */
.dropdown {
    position: relative;
}

.dropdown-content {
    top: 100%;
    left: 0;
    z-index: 9999;

    max-height: 270px;        /* sirf dropdown ki height */
    overflow-y: auto;         /* sirf dropdown me scroll */
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}


/* about page ka css */
/* --- FINAL MODERN ABOUT CSS --- */

/* Header se niche gap dene ke liye */
.about-page-wrapper {
    padding-top: 110px; 
    background: #fdfdfd;
    padding-bottom: 50px;
}

/* PC Version */
.about-modern-flex {
    display: flex;
    max-width: 97%;
    margin: 0 auto;
    background: #e7e6e6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    align-items: stretch;
}

.about-modern-text {
    flex: 1.2;
    padding: 50px;
}

.about-modern-text h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
    color: #3b93f2;
}

.feature-item {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modern-badge{
    color: #3b93f2;
    font-weight: bold;
}

.about-modern-image {
    flex: 0.8;
}

.stretched-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Face focus ke liye */
    min-height: 550px;
}

.modern-call-btn {
    background: #ff6600;
    color: white !important;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

/* MOBILE VERSION FIX */
@media (max-width: 992px) {
    .about-page-wrapper {
        padding-top: 90px; /* Mobile header gap */
    }
    .about-modern-flex {
        flex-direction: column;
        margin: 0 15px;
    }
    .about-modern-image {
        height: 300px; /* Mobile par image height control */
        width: 100%;
    }
    .stretched-hero-img {
        min-height: 300px;
    }
    .about-modern-text {
        padding: 30px 20px;
    }
    .about-modern-text h1 {
        font-size: 1.8rem;
    }
}
/* about section jo page hai uska 2nd */
/* --- Extra Services Section Styling --- */
.kanpur-serv-section {
    padding: 80px 20px;
    background-color: #91cdf0;
    text-align: center;
    margin-top: 15px;
    border-radius: 25px;
}

.kanpur-serv-title {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 10px;
}

.kanpur-serv-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.kanpur-serv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.kanpur-serv-card {
    background: #f8fbff;
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    position: relative;
}

.kanpur-serv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(59, 147, 242, 0.1);
    background: #fff;
    border-color: #3b93f2;
}

.kanpur-serv-icon {
    font-size: 40px;
    color: #3b93f2;
    margin-bottom: 20px;
}

.kanpur-serv-card h4 {
    font-size: 1.4rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.kanpur-serv-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.kanpur-serv-tag {
    background: #e7f3ff;
    color: #3b93f2;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .kanpur-serv-title { font-size: 1.8rem; }
    .kanpur-serv-grid { gap: 20px; }
    .kanpur-serv-card { padding: 30px 20px; }
}
/* Gallery */
/* =========================
   GALLERY MAIN CONTAINER
========================= */
.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* =========================
   GALLERY INTRO
========================= */
.gallery-intro {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-intro h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 10px;
}

.gallery-intro p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

/* =========================
   GALLERY GRID
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.gallery-grid + .gallery-grid {
  margin-top: 10px;
}

/* =========================
   GALLERY ITEM
========================= */
.gallery-item {
  position: relative;
  cursor: pointer;
  aspect-ratio: 5/2; /* 🔥 SAME SIZE FOR IMAGE + VIDEO */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Image & Video inside grid */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   GALLERY TAG
========================= */
.gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 600;
}

/* =========================
   PREVIEW MODAL
========================= */
.gallery-preview {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* =========================
   PREVIEW CONTENT
========================= */
.preview-content {
  background: #fff;
  max-width: 850px;
  width: 100%;
  max-height: 90vh;          /* 🔥 HEIGHT CONTROL */
  overflow-y: auto;
  border-radius: 16px;
  padding: 25px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   CLOSE BUTTON
========================= */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.close-btn:hover {
  background: #e74c3c;
}

/* =========================
   PREVIEW MEDIA
========================= */
#previewMedia img,
#previewMedia video {
  width: 100%;
  max-height: 55vh;        /* 🔥 MAIN FIX */
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto 20px;
}

/* =========================
   PREVIEW TEXT
========================= */
#previewTitle {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a252f;
  margin-bottom: 8px;
}

#previewDesc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* =========================
   PREVIEW ACTIONS
========================= */
.preview-actions {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-download,
.btn-back {
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: 0.3s;
}

/* Download Button */
.btn-download {
  background: #3b93f2;
  color: #fff;
}

.btn-download:hover {
  background: #2f7ad1;
}

/* Back Button */
.btn-back {
  background: #f1f1f1;
  color: #333;
}

.btn-back:hover {
  background: #e1e1e1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  .gallery-intro h1 {
    font-size: 2rem;
  }

  #previewMedia img,
  #previewMedia video {
    max-height: 45vh;
  }

  .preview-actions {
    flex-direction: column;
  }

  .btn-download,
  .btn-back {
    width: 100%;
    text-align: center;
  }
}
