﻿:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --light: #f8fafc;
    --dark: #0f172a;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--secondary);
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    padding: 140px 0 30px;
    position: relative;
}

    .hero-section .container {
        background-color: rgba(255, 255, 255, 0.85);
        padding: 2rem;
        border-radius: var(--border-radius);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

    .btn-primary:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
    }

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.hero-buttons .btn {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    padding: 2rem;
}

    .hero-image img {
        max-height: 300px;
        margin: 0 auto;
        display: block;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    }

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 30px;
    }

        .hero-section .container {
            padding: 1.5rem;
        }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-image {
        padding: 1rem;
    }
}

/* Add these styles to your existing CSS */

/* Section Scroll Margins */
#hero,
#aboutUs,
#gallery,
#download,
#custom,
#contact {
    scroll-margin-top: 80px; /* Adjust this value based on your navbar height */
}

/* Common Section Styles */
.section-padding {
    padding: 30px 0;
}

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

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .section-header p.lead {
        color: var(--dark);
        font-size: 1.1rem;
        line-height: 1.6;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

/* Section Content Containers */
#aboutUs .container,
#download .container,
#contact .container,
#custom .container,
#gallery .container,
#socialMedia .container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

/* Text Styles */
#aboutUs p,
#gallery p,
#download p,
#custom p,
.contact-info-item p {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contact Items */
.contact-info-item {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

    .contact-info-item:hover {
        transform: translateY(-5px);
        background-color: rgba(255, 255, 255, 0.95);
    }

    .contact-info-item h4 {
        color: var(--dark);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

    .contact-link:hover {
        color: var(--dark);
        text-decoration: underline;
    }

/* Social Media Icons */
.social-icons {
    margin-top: 2rem;
}

    .social-icons a {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--dark);
        border-radius: 50%;
        margin: 0 10px;
        transition: var(--transition);
        backdrop-filter: blur(5px);
    }

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 30px 0;
        margin: 0px 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    #aboutUs .container,
    #download .container,
    #contact .container,
    #custom .container,
    #gallery .container {
        padding: 1rem;
    }
}

/* Features Section */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .icon-wrapper i {
        font-size: 1.5rem;
        color: var(--primary);
    }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

    .feature-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

        .feature-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary);
        }

.feature-image {
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    background: var(--light);
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .benefit-item i {
        color: var(--primary);
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        margin: 0;
        color: var(--secondary);
    }

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .benefit-item {
        justify-content: center;
        text-align: left;
    }
}

/* Contact Section Styles */
.contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .contact-info-item .icon i {
        font-size: 1.5rem;
        color: var(--primary);
    }

/* Footer Styles */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 0 1rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

    .footer-links ul li {
        margin-bottom: 0.75rem;
    }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

            .footer-links ul li a:hover {
                color: white;
                padding-left: 5px;
            }

.social-links {
    display: flex;
    gap: 1rem;
}

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

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
        margin-bottom: 2rem;
    }

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

    .footer-links ul,
    .footer-links h4 {
        text-align: center;
    }
}

/* Clients Section */
.clients-section {
    background: white;
}

.client-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

.client-logo {
    width: 180px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .client-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.client-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.client-card .location {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.testimonial {
    position: relative;
    padding-top: 1.5rem;
}

    .testimonial::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 4rem;
        line-height: 1;
        color: var(--primary);
        opacity: 0.2;
    }

.quote {
    font-style: italic;
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .client-card {
        margin-bottom: 2rem;
    }
}

.social-icons a {
    font-size: 40px;
    margin: 10px;
    color: var(--dark);
    text-decoration: none;
}

    .social-icons a:hover {
        color: #007bff;
    }

/* Modal */

.modal-dialog.modal-xl {
    max-width: 95vw;
    width: auto;
    margin: 0.5rem auto;
}

.modal-content {
    background: rgba(0, 0, 0, 0.8);
}

.modal-body {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

    .modal-body img {
        max-width: 100%;
        max-height: 80vh;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: auto;
    }

.modal-header {
    position: absolute;
    right: 0;
    z-index: 1;
    border: none;
    background: transparent;
}

    .modal-header .btn-close {
        padding: 0.75rem;
        margin: 0.5rem;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
    }

@media (max-width: 768px) {
    .modal-dialog.modal-xl {
        margin: 0.25rem;
        max-width: 98vw;
    }

    .modal-body {
        padding: 0.5rem;
    }

        .modal-body img {
            max-height: 85vh;
        }

    .modal-header .btn-close {
        padding: 0.5rem;
        margin: 0.25rem;
    }
}

/* Rendering adjustments */

body {
    font-size: 1.2rem;
}

.content {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: whitesmoke;
}

/* Gallery Thumbnails */
.thumbnail-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.thumbnail {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .thumbnail:hover {
        transform: scale(1.05);
    }

.image-description {
    text-align: center;
    padding: 0.5rem;
    color: #666;
}

/* Download Cards */
.download-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

    .download-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #007bff, #00d4ff);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

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

    .download-card:hover::before {
        transform: scaleX(1);
    }

.file-icon {
    font-size: 3.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

    .download-card:hover .file-icon {
        transform: scale(1.1);
    }

    .file-icon .fa-file-pdf {
        color: #e74c3c;
    }

    .file-icon .fa-file-word {
        color: #2b579a;
    }

    .file-icon .fa-file-excel {
        color: #217346;
    }

    .file-icon .fa-file-powerpoint {
        color: #d24726;
    }

    .file-icon .fa-file-archive {
        color: #9b59b6;
    }

    .file-icon .fa-file-image {
        color: #3498db;
    }

    .file-icon .fa-file-alt {
        color: #95a5a6;
    }

.file-info {
    width: 100%;
}

    .file-info h5 {
        margin: 0 0 1rem 0;
        font-size: 0.95rem;
        color: #2c3e50;
        font-weight: 600;
        word-break: break-word;
        line-height: 1.4;
    }

    .file-info .btn {
        width: 100%;
        padding: 0.6rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
    }

    .file-info .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }
