:root {
    --primary-color: #e63946;
    --primary-dark: #d62c39;
    --primary-light: #ff6b6b;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --white: #ffffff;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 20px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Navbar */
.navbar {
    background: rgba(29, 53, 87, 0.95);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(29, 53, 87, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.scrolled .logo {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--light-color) !important;
    position: relative;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-nav {
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#heroCarousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(29, 53, 87, 0.6), rgba(230, 57, 70, 0.6));
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.carousel-caption h1 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 250px;
    color: #c9c6c6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    color: #c9c6c6;
    margin-left: auto;
    margin-right: auto;
}

.carousel-indicators {
    z-index: 3;
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 3;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 2rem;
    background-size: 50%;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 1.5rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* About Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Products Section */
.product-card {
    text-align: center;
    padding: 35px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
}

.product-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background: var(--light-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover i {
    transform: scale(1.1);
    color: var(--white);
    background-color: var(--primary-color);
}

.product-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Leadership Section */
.leadership-card {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.leadership-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.leadership-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.leadership-card:hover .leadership-img {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.leadership-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.leadership-card .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.leadership-card .description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links-leader {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-leader a {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Business Verticals Section */
.vertical-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.vertical-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
}

.vertical-card .icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.vertical-card:hover .icon-wrapper {
    background: var(--primary-color);
}

.vertical-card .icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.vertical-card:hover .icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

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

.vertical-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.vertical-card .learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vertical-card .learn-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.vertical-card:hover .learn-more {
    color: var(--primary-dark);
}

.vertical-card:hover .learn-more i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-form .form-control {
    padding: 15px;
    margin-bottom: 25px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(69, 123, 157, 0.25);
}

.contact-info {
    padding-left: 30px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px 0;
}

.social-links {
    text-align: right;
}

.social-links a {
    color: white;
    margin-left: 20px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        text-align: center;
        margin-top: 20px;
    }
    
    .footer p {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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