:root {
    --primary-color: #2a7f62;
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-gray: #f1f1f1;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}
/* Information Slider */
.info-slider {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.info-slider-content {
    display: flex;
    animation: slide 20s linear infinite;
    width: 100%;
}

.info-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    white-space: nowrap;
    font-size: 14px;
}

.info-slide i {
    margin-right: 8px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.quote-btn {
    background-color: var(--accent-color);
    color: var(--text-color) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Carousel */
.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 70vh;
    min-height: 400px;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.hero-slider .carousel-caption {
    bottom: 15%;
    background-color: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 80%;
    margin: 0 auto;
}

.hero-slider .carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero-slider .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-slider .carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--accent-color);
    border: none;
    color: var(--text-color);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

/* CEO Section - Enhanced */
.ceo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.ceo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ceo-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ceo-image:hover img {
    transform: scale(1.05);
}

.ceo-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.ceo-content {
    padding: 30px;
}

.ceo-name {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ceo-name h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.ceo-badge {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 15px;
}

.ceo-position {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.ceo-bio {
    margin-bottom: 25px;
    line-height: 1.6;
}

.ceo-contact {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.ceo-contact .d-flex {
    margin-bottom: 15px;
}

.ceo-contact i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 25px;
}

/* Commercial Printing Services Section */
.services-section {
    padding: 80px 0;
}

.services-list {
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 40px;
}

.service-name {
    font-size: 18px;
    font-weight: 500;
}

/* Our Work Section */
.work-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 250px;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.work-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Clients Section - Enhanced */
.clients-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.clients-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.clients-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.clients-carousel {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.clients-carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.client-logo {
    flex: 0 0 calc(20% - 20px);
    margin: 0 10px;
    background-color: white;
    border-radius: 10px;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

.clients-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.clients-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.clients-control:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(42, 127, 98, 0.25);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1e5c48;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    margin-bottom: 15px;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}


/* Floating Contact Widget */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-widget-toggle {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 1.5rem;
}

.contact-widget-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-widget-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-widget-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
}

.contact-widget-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-widget-header p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background-color: var(--secondary-color);
}

.contact-option:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.contact-icon.whatsapp {
    background-color: #25d366;
    color: white;
}

.contact-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: #1e5c48;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider .carousel-caption {
        bottom: 10%;
        padding: 20px;
        max-width: 90%;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .client-logo {
        flex: 0 0 calc(50% - 20px);
        height: 120px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
    }
    
    .ceo-image {
        height: 300px;
    }
}