:root {
    --primary-color: #1a237e;
    --secondary-color: #3f51b5;
    --accent-color: #ff6f00;
    --text-dark: #212121;
    --text-light: #757575;
    --background-light: #f5f5f5;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Section */
.header-info {
    background: #033265;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

/* Language Selector */
.language-selector .dropdown-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 13px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
}

.language-selector .dropdown-toggle:hover,
.language-selector .dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: none;
}

.language-selector .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    min-width: 120px;
}

.language-selector .dropdown-item {
    padding: 8px 15px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.language-selector .dropdown-item:hover {
    background: var(--secondary-color);
    color: white;
}

.language-selector .dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

.language-selector .dropdown-item.active:hover {
    background: var(--secondary-color);
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0,0,0,0.4); */
    z-index: 1;
}

.btn-primary-custom {
    /* background: var(--accent-color); */
    
    /* background: linear-gradient(135deg, #3498db, #2980b9); */
    background: #FEE300;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    /* background: #e65100; */
    /* background: linear-gradient(135deg, #3498db, #2980b9); */
    background: #FEE300;
    color: #051E36;
    font-weight: bold;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Company Highlight Section */
.company-highlight-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.company-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-light);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    z-index: 15;
}

.company-highlight::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
}

.company-name {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.company-specialty {
    font-size: 1.1rem;
    font-weight: 500;
    color: #7F8C8D;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

/* Info Section */
.info-section {
    padding: 120px 0 80px 0;
    /* background: var(--background-light); */
}

.info-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 50px;
    height: 100%;
}

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

.info-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content with Image Slider Section */
.content-slider-section {
    padding: 80px 0;
    background: var(--background-light);
}

/* Service Details Navigation */
.service-details-container {
    position: relative;
    overflow: visible;
    margin: 0 80px;
    padding: 20px 0;
}

.service-details-wrapper {
    position: relative;
}

.service-detail-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-detail-item.active {
    display: block;
    opacity: 1;
}

/* Navigation Controls */
.service-nav-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
    right: -70px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.service-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(26, 35, 126, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    font-size: 1.2rem;
    color: var(--primary-color);
    position: relative;
}

.service-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.service-nav-btn:active {
    transform: scale(0.95);
}

.service-nav-prev {
    left: 0;
}

.service-nav-next {
    right: 0;
}

/* Progress Indicators */
.service-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.service-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-indicator.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.service-indicator:hover {
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.content-row {
    margin-bottom: 60px;
}

.content-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-slider-container {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border: 2px solid var(--secondary-color);
}

/* Second Info Section */
.info-section-2 {
    padding: 80px 0;
    background: white;
    color: var(--text-dark);
}

.info-section-2 .info-card {
    /* background: var(--background-light); */
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 30px 25px;
}

.info-section-2 .info-card:hover {
    background: white;
    border-color: var(--secondary-color);
}

.info-section-2 .info-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-section-2 .info-content {
    flex: 1;
}

.info-section-2 .info-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-section-2 .info-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* YouTube Video Section */
.video-section {
    padding: 80px 0;
    /* background: white; */
    background: var(--background-light);
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.video-container iframe {
    border: none;
    border-radius: 15px;
}

/* Contact Form and Footer */
.contact-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

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

.footer {
    background: #051E36;
    /* var(--text-dark); */
    color: white;
    padding: 40px 0 20px;
}

.footer h5 {
    color: #FEE300;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FEE300;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
}

/* WhatsApp specific styling */
.social-icons a .fa-whatsapp {
    color: white;
}

.social-icons a:hover .fa-whatsapp {
    color: white;
}

.social-icons a:has(.fa-whatsapp) {
    background: #25D366 !important;
}

.social-icons a:has(.fa-whatsapp):hover {
    background: #128C7E !important;
    transform: scale(1.2);
}

/* Footer Map Styling */
.footer-map {
    margin-top: 25px;
}

.footer-map h6 {
    color: #ccc;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-map .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.footer-map .map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}

/* Map Button Styling */
.btn-map-link {
    display: inline-block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-map-link:hover {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-map-link i {
    font-size: 13px;
}

/* Phone and Email Links */
.phone-link, .email-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    /* color: var(--accent-color); */
    color: #FEE300;
    text-decoration: none;
}

/* Header phone links - specific styling for white header */
.header-info .phone-link, .header-info .email-link {
    color: white;
}

.header-info .phone-link:hover, .header-info .email-link:hover {
    /* color: var(--accent-color); */
    color: #FEE300;
    text-decoration: none;
}

/* Footer phone links - specific styling for dark footer */
.footer .phone-link, .footer .email-link {
    color: #ccc;
}

.footer .phone-link:hover, .footer .email-link:hover {
    /* color: var(--accent-color); */
    color: #FEE300;
    text-decoration: none;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .company-name {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .company-specialty {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .company-highlight-section {
        margin-top: -100px;
        padding: 0 20px;
    }
    
    .company-highlight {
        padding: 40px 30px;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .info-section {
        padding: 100px 0 80px 0;
    }
    
    .info-section-2 .info-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .info-section-2 .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .info-section-2 .info-content {
        text-align: center;
    }
    
    /* Service Navigation Mobile */
    .service-details-container {
        margin: 0 20px;
        padding: 10px 0;
    }
    
    .service-nav-controls {
        left: -50px;
        right: -50px;
    }
    
    .service-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Language Selector Mobile */
    .header-info .col-md-6:last-child {
        flex-direction: column;
        align-items: end !important;
        gap: 8px;
    }
    
    .language-selector .dropdown-toggle {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    /* Alternative mobile layout for very small screens */
    @media (max-width: 480px) {
        .service-details-container {
            margin: 0 10px;
        }
        
        .service-nav-controls {
            position: relative;
            top: auto;
            transform: none;
            left: auto;
            right: auto;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .header-info .col-md-6:last-child {
            align-items: center ;
            text-align: center;
        }
        
            .header-info .col-md-6:last-child .me-3 {
        margin-bottom: 5px;
    }

    /* Footer Map Mobile */
    .footer-map iframe {
        height: 150px;
    }

    .btn-map-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* Mobile phone and email links */
    .phone-link, .email-link {
        font-size: 14px;
    }

    .header-info .phone-link, .header-info .email-link {
        font-size: 13px;
    }
    }
} 


.brand-list-section {

    background-color: #f8f8f8;
    background-image: linear-gradient(to right, rgba(240, 240, 240, 0.5) 1px, transparent 1px), linear-gradient(to bottom, rgba(240, 240, 240, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #333;
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 30px;
}


.brand-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-list h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
}

.simple-brand-list {
    text-align: center;
    line-height: 2.5;
    padding: 15px 0;
    margin: 20px auto;
    max-width: 1000px;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
}

.simple-brand-list a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    padding: 0 8px;
    font-family: Arial, sans-serif;
}

.simple-brand-list a:hover {
    color: #3498db;
    text-decoration: underline;
}

.simple-brand-list .separator {
    color: #777;
    font-weight: normal;
    font-size: 1.2rem;
}