/* CSS Variables for Global Color Scheme */
/* CSS Variables for Modern Color Scheme - Dark Blue & Orange */
/* CSS Variables for Modern Color Scheme - Emerald & Indigo */
:root {
    --primary-color: #4338ca;        /* Indigo 600 */
    --secondary-color: #6366f1;      /* Indigo 500 */
    --accent-color: #10b981;         /* Emerald 500 */
    --background-color: #f9fafb;     /* Gray 50 */
    --surface-color: #ffffff;        /* Pure white */
    --text-color: #111827;           /* Gray 900 */
    --text-secondary: #6b7280;       /* Gray 500 */
    --border-color: #d1d5db;         /* Gray 300 */
    --shadow: rgba(67, 56, 202, 0.08);
    --shadow-hover: rgba(67, 56, 202, 0.15);
    --white: #ffffff;
    --gradient-start: #4f46e5;       /* Indigo 600 */
    --gradient-end: #7c3aed;         /* Violet 600 */
    --success-color: #059669;        /* Emerald 600 */
    --warning-color: #dc2626;        /* Red 600 */
    --border-radius: 12px;
}

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

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    margin: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px var(--shadow);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    min-height: 80px;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    width: 60px;
    height: 60px;
}

.company-info {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.company-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white); /* Add this line */
}
.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    color: var(--white); /* Add this line */
}

.phone-section {
    flex: 0 0 auto;
    text-align: right;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.phone-number:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    margin: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Sliders Section */
.sliders-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.slider-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s ease;
}

.slider-container:hover {
    transform: translateY(-5px);
}

.slider-container h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.slider-content {
    position: relative;
    padding: 0 40px;
}

.slide {
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px var(--shadow);
}

.slide-description {
    font-size: 1rem;
    color: var(--text-color);
    font-style: italic;
}

.review-content {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.review-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-content p {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.reviewer {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Dots Navigation */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-section,
.services-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px var(--shadow);
}

.contact-section h2,
.services-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--background-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook { background-color: #3b5998; }
.social-link.instagram { background-color: #e4405f; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.linkedin { background-color: #0077b5; }

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px var(--shadow);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header,
    .main-content,
    .footer {
        margin: 10px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .logo-section {
        order: 1;
    }

    .company-info {
        order: 2;
        padding: 0;
    }

    .phone-section {
        order: 3;
        text-align: center;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .phone-number {
        font-size: 1.1rem;
        padding: 8px 12px;
    }

    .sliders-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slider-container {
        padding: 15px;
    }

    .slide img {
        height: 200px;
    }

    .slider-content {
        padding: 0 10px;
    }

    .contact-section,
    .services-section {
        padding: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .services-content {
        gap: 20px;
    }

    /* Mobile slider adjustments */
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .review-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 15px 10px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .company-name {
        font-size: 1.3rem;
    }

    .phone-number {
        font-size: 1rem;
        padding: 6px 10px;
    }

    .slider-container h2 {
        font-size: 1.3rem;
    }

    .contact-section h2,
    .services-section h2 {
        font-size: 1.5rem;
    }

    .slide img {
        height: 150px;
    }
}

/* Tablet landscape adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .top-bar {
        padding: 15px 20px;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .phone-number {
        font-size: 1.1rem;
    }
}

