/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00a0e9;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --danger-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #555;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #333;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
}

.section-title p {
    color: #777;
}

/* Topbar */
.topbar {
    background-color: var(--dark-color);
    padding: 10px 0;
    font-size: 14px;
}

.topbar-contact span {
    color: #fff;
    margin-right: 20px;
}

.topbar-contact i {
    margin-right: 5px;
    color: var(--primary-color);
}

.topbar-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.col-lg-4 {
    margin-bottom: 22px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar-brand img {
    height: 75px !important;
    transition: all 0.3s ease;
}

.navbar-brand .logo-text {
    color: var(--primary-color);
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 100%;
}

/* 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;
    z-index: 1;
}

.hero-slider .swiper-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1606761568499-6d2451b23c66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}

.hero-slider h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-slider p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-slider .btn {
    padding: 12px 35px;
    font-size: 16px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    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: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #777;
    margin-bottom: 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 30px;
    /* opacity: 0; */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 {
    color: #fff;
    margin-bottom: 15px;
}

.service-overlay ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-overlay ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-section {
    position: relative;
}

.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.experience-box h3 {
    font-size: 40px;
    margin-bottom: 0;
    color: #fff;
}

.experience-box p {
    margin-bottom: 0;
    font-size: 16px;
}

.about-features {
    margin: 30px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-box i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.feature-box h4 {
    margin-bottom: 0;
    font-size: 16px;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.why-us-section .section-title h2,
.why-us-section .section-title p {
    color: #fff;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
}

.why-us-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonials-slider {
    padding: 20px 0 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    position: relative;
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 18px;
}

.testimonial-author span {
    color: #777;
    font-size: 14px;
}

.swiper-pagination-bullet {
    background: #ccc;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    background-color: #fff;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0; */
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

/* YouTube Section */
.youtube-section {
    background-color: #f8f9fa;
}

.youtube-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.youtube-content h2 span {
    color: var(--primary-color);
}

.youtube-content p {
    margin-bottom: 30px;
    color: #555;
}

.youtube-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-danger {
    background-color: var(--danger-color);
    color: #fff;
}

.btn-danger:hover {
    background-color: #c82333;
    color: #fff;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-info-box {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-text p {
    margin-bottom: 0;
    color: #555;
}

.contact-social h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: 150px;
    padding: 15px;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
}

.footer-widget p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #bbb;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.footer-social 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: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
}

.copyright {
    background-color: #111;
    padding: 20px 0;
    margin-top: 40px;
}

.copyright p {
    margin-bottom: 0;
    color: #bbb;
    font-size: 14px;
}

.copyright i {
    color: var(--danger-color);
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: translateY(-5px);
}

.whatsapp {
    background-color: #25D366;
}

.phone {
    background-color: var(--primary-color);
}

.scroll-top {
    background-color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-slider h1 {
        font-size: 48px;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .about-img {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .hero-slider h1 {
        font-size: 36px;
    }

    .hero-slider p {
        font-size: 16px;
    }

    .topbar-contact span {
        display: block;
        margin-bottom: 5px;
    }

    .topbar-social {
        margin-top: 10px;
    }

    .experience-box {
        right: 15px;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 40px 0;
    }

    .hero-slider h1 {
        font-size: 28px;
    }

    .hero-slider .btn {
        padding: 10px 25px;
    }

    .service-card,
    .why-us-card {
        padding: 20px;
    }

    .contact-info-box {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 15px;
    }

    .floating-icons {
        bottom: 15px;
        right: 15px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* Lightbox customization */
.lightbox .lb-image {
  border: 4px solid white;
  border-radius: 3px;
}

.lb-data .lb-caption {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
  opacity: 1;
}

.lb-close {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center;
  width: 24px;
  height: 24px;
}

.lb-loader,
.lb-nav {
  background-color: rgba(0,0,0,0.7);
}