/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Variables */

:root {
    --primary-color: #2aa1c3;
    --secondary-color: #14212b;
    --text-color: #555555;
    --light-color: #f8f8f8;
    --dark-color: #222222;
    --white-color: #ffffff;
    --black-color: #000000;
    --transition: all 0.3s ease;
}


/* Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.section-header {
    margin-bottom: 50px;
}

.section-header .section-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-header .section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header .section-title span {
    position: relative;
}

.section-header .section-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: rgba(193, 155, 118, 0.3);
    z-index: -1;
}

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


/* Preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 100px;
    height: 100px;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.loader-line-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    transform: rotate(calc(var(--i) * 72deg));
}

.loader-line {
    width: 200%;
    height: 2px;
    position: absolute;
    background-color: var(--primary-color);
    left: -50%;
    top: 50%;
    transform: translateY(-50%);
    animation: lineAnimation 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes lineAnimation {
    0%,
    50%,
    100% {
        transform: translateY(-50%) translateX(-50%);
    }
    25% {
        transform: translateY(-50%) translateX(0%);
    }
    75% {
        transform: translateY(-50%) translateX(-100%);
    }
}


/* Floating Contact Button */

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.contact-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Navbar */

.img-fluids {
    width: 250px;
}

.navbar {
    padding: 0px 0;
    transition: var(--transition);
	background:aliceblue
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar-brand .logo-text .highlight {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 24px;
    color: var(--dark-color);
}

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

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}


/* Hero Section */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-slider .slide-1 {
    background-image: url('../images/hero-1.jpg');
}

.hero-slider .slide-2 {
    background-image: url('../images/hero-2.jpg');
}

.hero-title {
    font-size: 72px;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-btns {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-slider .swiper-pagination {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid var(--white-color);
    opacity: 1;
    margin: 0 8px !important;
    transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 50px;
}


/* Scroll Down Animation */

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 5px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: wheelAnimation 2s ease infinite;
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin-top: 5px;
    animation: arrowAnimation 2s ease infinite;
}

@keyframes wheelAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes arrowAnimation {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}


/* About Section */

.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-img {
    position: relative;
    padding-right: 30px;
}

.about-img .img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img .img-box img {
    width: 100%;
    display: block;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.experience-text {
    font-size: 16px;
    color: var(--dark-color);
}

.about-text {
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 155, 118, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-color);
}


/* Accommodations Section */

.accommodations-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.room-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
}

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

.room-img {
    position: relative;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
}

.room-price span {
    font-size: 14px;
    font-weight: 400;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-content p {
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.room-features span {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features i {
    color: var(--primary-color);
}


/* Services Section */

.services-section {
    padding: 100px 0;
    position: relative;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    margin-bottom: 30px;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(193, 155, 118, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}


/* Testimonials Section */

.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    padding: 30px;
    margin: -30px;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px;
    position: relative;
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 50px;
    color: rgba(193, 155, 118, 0.1);
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-color);
}

.testimonial-slider .swiper-pagination {
    position: relative;
    margin-top: 50px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    opacity: 1;
    margin: 0 8px !important;
    transition: var(--transition);
}

.testimonial-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* Reservations Section */

.reservations-section {
    padding: 100px 0;
    position: relative;
}

.reservation-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.reservation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.availability-box h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.availability-box p {
    font-size: 14px;
    margin-bottom: 15px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.reservation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
}


/* Contact Section */

.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-info {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 155, 118, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-text p {
    font-size: 15px;
}

.contact-hours {
    margin-top: 40px;
}

.contact-hours h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-hours p {
    font-size: 15px;
    margin-bottom: 10px;
}

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

.contact-form textarea.form-control {
    height: 150px;
    padding: 15px;
    resize: none;
}


/* Newsletter Section */

.newsletter-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(20, 33, 43, 0.8), rgba(20, 33, 43, 0.8)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}

.newsletter-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 50px;
}

.newsletter-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-box p {
    opacity: 0.8;
}

.newsletter-form .input-group {
    position: relative;
}

.newsletter-form .form-control {
    height: 60px;
    padding: 0 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    padding: 0 25px;
    border-radius: 5px;
    z-index: 1;
}


/* Footer */

.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 0;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-about {
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--white-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 3px;
}

.copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.copyright p {
    font-size: 14px;
    margin-bottom: 0;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-menu a {
    font-size: 14px;
    transition: var(--transition);
}

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


/* Back to Top Button */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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


/* Responsive Styles */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .section-header .section-title {
        font-size: 36px;
    }
    .hero-title {
        font-size: 50px;
    }
    .navbar-collapse {
        background-color: var(--white-color);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    .about-img {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .reservation-img {
        margin-bottom: 40px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .section-header .section-title {
        font-size: 32px;
    }
    .hero {
        min-height: 600px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .room-features {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-box {
        padding: 30px;
    }
    .newsletter-box h3 {
        font-size: 24px;
    }
    .footer-menu {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .section-header .section-title {
        font-size: 28px;
    }
    .hero-title {
        font-size: 32px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .contact-info,
    .contact-form,
    .reservation-form {
        padding: 25px;
    }
    .footer {
        padding: 70px 0 0;
    }
}

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

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

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

.stats-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.stats-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 16px;
    opacity: 0.9;
}