/* Colors based on logo - Navy Blue Theme */
:root {
    --primary-color: #1a3a5f;
    --primary-dark: #0f2538;
    --primary-light: #2d5a8a;
    --secondary-color: #4a90e2;
    --accent-color: #6bb3ff;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 7px;
}

/* Navigation */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-left: 10px;
}

.brand-text {
    color: var(--primary-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    margin: 0 5px;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: var(--bg-light);
    color: var(--primary-dark) !important;
}

/* Slideshow */
.carousel {
    margin-top: 76px;
}

.carousel-item img {
    height: 600px;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-caption {
    background: rgba(26, 58, 95, 0.7);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    right: 20px;
    left: auto;
}

.carousel-control-next {
    left: 20px;
    right: auto;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Sections */
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

/* Services Section */
.service-card {
    background: var(--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;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Products Section */
.product-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-right: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateX(-5px);
}

.product-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-card ul li {
    padding: 8px 0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.contact-section i {
    color: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Company Info */
.info-box {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    margin-bottom: 15px;
}

.info-box i {
    font-size: 1.2rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-body {
    background: var(--white);
}

.vision-section .card,
.mission-section .card,
.goals-section .card {
    border-right: 5px solid var(--primary-color);
}

.goal-item {
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 10px;
}

.contact-item {
    padding: 10px 0;
}

.contact-item i {
    width: 30px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.3);
}

/* Footer */
.footer {
    background-color: var(--primary-dark) !important;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item img {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.product-card {
    animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
    
    .carousel {
        margin-top: 0;
    }
}

