:root {
    --primary-color: #FF6B35; /* Orange */
    --secondary-color: #4A90E2; /* Blue */
    --accent-color: #FF69B4; /* Pink */
    --dark-color: #333333;
    --light-color: #FFFFFF;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Header Styles */
.navbar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    max-height: 100px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 700 !important;
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--light-color) !important;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 80%;
    background: var(--light-color);
}

.nav-item .btn-primary {
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    margin-left: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-item .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    transition: all 0.4s ease;
}

.nav-item .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.nav-item .btn-primary span {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    margin-top: 120px;
}

.carousel {
    height: 60vh;
}

.carousel-item {
    position: relative;
    height: 600px;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 80%;
    max-width: 800px;
}

.carousel-caption h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Why Choose Us Section */
#why-choose-us {
    background-color: #2c3e50;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

#why-choose-us .section-header h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Contact Info */
.contact-info {
    padding: 2rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel,
    .carousel-item {
        height: 50vh;
    }
    
    .carousel-caption {
        padding: 3px 10px;
    }
    
    .carousel-caption h1 {
        font-size: 2rem !important;
        padding: 2px 10px;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem !important;
    }
    
    .carousel-caption .lead {
        font-size: 1.1rem !important;
        padding: 2px 10px;
    }
    
    .carousel-caption .btn {
        padding: 0.4rem 1.2rem;
        font-size: 1rem;
        margin-top: 6px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel,
    .carousel-item {
        height: 40vh;
    }

    .carousel-caption {
        padding: 2px 8px;
    }

    .carousel-caption h1 {
        font-size: 1.6rem !important;
        padding: 2px 8px;
    }

    .carousel-caption h2 {
        font-size: 1rem !important;
    }

    .carousel-caption .lead {
        font-size: 1rem !important;
        padding: 2px 8px;
    }

    .carousel-caption .btn {
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
        margin-top: 4px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .feature-card {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive adjustments for header */
@media (max-width: 991px) {
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar-brand img {
        max-height: 80px;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 5px 0;
    }
    
    .nav-item .btn-primary {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
}

/* Hidden Services */
.hidden-service {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.hidden-service.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* View More Button */
#view-more-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

#view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

#view-more-btn.hide {
    display: none;
}

/* Section Spacing */
section {
    scroll-margin-top: 100px; /* This ensures the section starts below the fixed header */
}

/* About Section */
.about-section {
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 6rem; /* Add extra padding at the top */
    padding-bottom: 6rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.about-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

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

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-content {
        padding: 1.5rem 0;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
}

/* Services Section */
#services {
    padding-top: 6rem; /* Add extra padding at the top */
    padding-bottom: 6rem;
}

/* Services Section */
#services {
    padding-top: 6rem; /* Add extra padding at the top */
    padding-bottom: 6rem;
}

/* Sectors Section */
.sectors-section {
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.sectors-section h2 {
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.sector-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 1.5rem;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    background: #fff;
}

.sector-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    font-family: inherit;
}

.sector-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .sector-card {
        min-height: 180px;
        padding: 2rem 1rem;
    }
    .sector-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .sectors-section h2 {
        font-size: 1.5rem;
    }
    .sector-card {
        min-height: 140px;
        padding: 1.5rem 0.5rem;
    }
    .sector-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
} 