/* Base Styles */
:root {
    --primary-color: #FE7301;
    --blue-accent: #00AEEF;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f4f4f4;
    --dark-gray: #666;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
}

.btn-primary:hover {
    background-color: #e66800;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Header/Navbar */
.header {
    position: sticky;
    top: 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-list {
    display: flex;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    display: block;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary-color);
}

.call-btn .btn {
    display: flex;
    align-items: center;
}

.call-btn .btn i {
    margin-right: 8px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--light-color);
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: url('../images/hero-bg-1.jpg');
}

.slide:nth-child(2) {
    background-image: url('../images/hero-bg-2.jpg');
}

.slide:nth-child(3) {
    background-image: url('../images/hero-bg-3.jpg');
}

.slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-right: 10px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Service Cards */
.services {
    padding: 80px 0;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card {
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    flex: 1;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    text-align: center;
    background-color: var(--gray-color);
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.intro h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* Wide Services Section */
.wide-services {
    padding: 80px 0;
}

.wide-services .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services-image {
    flex: 1;
}

/* Wide Services Section (continued) */
.services-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.services-content {
    flex: 1;
    background-color: var(--gray-color);
    padding: 40px;
    border-radius: 10px;
}

.services-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.services-content ul {
    padding-left: 20px;
}

.services-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.services-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Review Section */
.reviews {
    padding: 80px 0;
    text-align: center;
    background-color: #333;
    color: var(--light-color);
}

.reviews h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.reviews h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    color: #ccc;
}

.review-stars {
    color: var(--primary-color);
    font-size: 30px;
    margin-top: 20px;
}

/* What Makes Us Different */
.different {
    padding: 80px 0;
    background-color: var(--blue-accent);
    color: var(--light-color);
}

.different h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.different-points {
    max-width: 800px;
    margin: 0 auto;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.check {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.point p {
    font-size: 18px;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p, .location p {
    font-size: 14px;
}

/* Animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
    .service-cards {
        flex-direction: column;
    }
    
    .wide-services .container {
        flex-direction: column;
    }
    
    .services-image, .services-content {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header .container {
        position: relative;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .call-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .intro h2, .reviews h2, .different h2 {
        font-size: 26px;
    }
    
    .intro h3, .reviews h3 {
        font-size: 18px;
    }
    
    .services-content {
        padding: 25px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}
