/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base Styles */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
    --danger: #dc3545;
    --success: #198754;
    --warning: #ffc107;
    --info: #0dcaf0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.section-title {
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-subtitle {
    color: var(--secondary);
    margin-bottom: 30px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    text-align: center;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(13, 110, 253, 0.9) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
}

.hero-slider .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.slide-1 {
    /* background-image: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */
    background-image:url('../images/c1.jpg');
}

.slide-2 {
    /* background-image: url('https://images.unsplash.com/photo-1558002038-1055907df827?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */
    background-image:url('../images/c2.jpg');
}

.slide-3 {
    /* background-image: url('https://images.unsplash.com/photo-1597852074816-d933c7d2b988?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); */
    background-image:url('../images/c3.jpg');
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.service-card .card-img-top {
    overflow: hidden;
}

.service-card img {
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-features li {
    margin-bottom: 8px;
}

.service-features i {
    color: var(--primary);
    margin-right: 8px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials-slider {
    padding: 30px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating {
    color: var(--warning);
}

.testimonial-body {
    margin-bottom: 20px;
}

.testimonial-body p {
    font-style: italic;
    color: var(--secondary);
}

.testimonial-footer {
    display: flex;
    align-items: center;
}

.client-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 80px 0;
}

.google-rating-card {
    background: white;
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.stars {
    margin: 10px 0;
    font-size: 1.5rem;
    color: var(--warning);
}

.total-reviews {
    color: var(--secondary);
    margin-bottom: 15px;
}

.review-keyword {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.keyword {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.count {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-info-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form-card {
    background: white;
}

.form-title {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.form-control, .form-select {
    height: 55px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: var(--primary);
}

textarea.form-control {
    height: auto !important;
}

/* Map Section */
.map-section {
    position: relative;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: white;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0b5ed7;
    color: white;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        background-color: var(--primary) !important;
    }
    
    .nav-link {
        color: white !important;
        padding: 10px 0 !important;
    }
    
    .nav-link:after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-slider .swiper-slide {
        height: auto;
        min-height: auto;
        padding: 100px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .section-title:after {
        left: 0;
        transform: none;
    }
    
    .contact-info-item {
        flex-direction: column;
    }
    
    .contact-info-item .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 8px 20px;
    }
}


/* Lightbox Custom Styles */
.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
    opacity: 1 !important;
    background: rgba(13, 110, 253, 0.7) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.lb-nav a.lb-prev:hover, 
.lb-nav a.lb-next:hover {
    background: var(--primary) !important;
}

.lb-nav a.lb-prev:after, 
.lb-nav a.lb-next:after {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    opacity: 1 !important;
}

.lb-nav a.lb-prev {
    left: 20px !important;
}

.lb-nav a.lb-next {
    right: 20px !important;
}

.lb-data .lb-close {
    background: rgba(13, 110, 253, 0.7) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.lb-data .lb-close:hover {
    background: var(--primary) !important;
}

.lb-data .lb-close:before {
    color: white !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
}

.lb-number {
    display: none !important;
}

@media (max-width: 767px) {
    .lb-nav a.lb-prev, 
    .lb-nav a.lb-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .lb-nav a.lb-prev:after, 
    .lb-nav a.lb-next:after {
        font-size: 1.2rem !important;
    }
}

/* Lightbox Custom Styles with Arrow Icons */
.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
    opacity: 1 !important;
    background: rgba(13, 110, 253, 0.7) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.lb-nav a.lb-prev:hover, 
.lb-nav a.lb-next:hover {
    background: var(--primary) !important;
}

/* Remove default arrows */
.lb-nav a.lb-prev:after, 
.lb-nav a.lb-next:after {
    content: "" !important;
}

/* Add custom arrow icons using Font Awesome */
.lb-nav a.lb-prev:before, 
.lb-nav a.lb-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white !important;
    font-size: 1.5rem !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.lb-nav a.lb-prev:before {
    content: "\f060" !important; /* Font Awesome left arrow */
    left: 18px !important;
}

.lb-nav a.lb-next:before {
    content: "\f061" !important; /* Font Awesome right arrow */
    right: 18px !important;
}

.lb-nav a.lb-prev {
    left: 20px !important;
}

.lb-nav a.lb-next {
    right: 20px !important;
}

.lb-data .lb-close {
    background: rgba(13, 110, 253, 0.7) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.lb-data .lb-close:hover {
    background: var(--primary) !important;
}

.lb-data .lb-close:before {
    content: "\f00d" !important; /* Font Awesome close icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white !important;
    font-size: 1.5rem !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.lb-number {
    display: none !important;
}

@media (max-width: 767px) {
    .lb-nav a.lb-prev, 
    .lb-nav a.lb-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .lb-nav a.lb-prev:before, 
    .lb-nav a.lb-next:before {
        font-size: 1.2rem !important;
    }
    
    .lb-nav a.lb-prev:before {
        left: 14px !important;
    }
    
    .lb-nav a.lb-next:before {
        right: 14px !important;
    }
}