/* Custom Styles for Company Website */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,208C384,203,480,181,576,181.3C672,181,768,203,864,208C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
    opacity: 0.3;
}

/* Cards and Components */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.service-card {
    cursor: pointer;
}

/* Stat Counters */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

/* Process Steps */
.step-circle {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-circle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color) !important;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .step-circle {
        margin-bottom: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .stat-item {
    animation: fadeInUp 0.6s ease-out;
}






/*CAROUSEL STYLES*/

/* Hero Carousel Styles */

.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.carousel-content {
    position: relative;
    z-index: 2;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

/* Ensure consistent height across all slides */
.carousel-item .min-vh-100 {
    min-height: 600px !important;
    height: 60vh;
    max-height: 800px;
}

/* Responsive height for mobile */
@media (max-width: 768px) {
    .carousel-item .min-vh-100 {
        min-height: 500px !important;
        height: auto;
        padding: 80px 0;
    }
    
    .carousel-item .display-4 {
        font-size: 1.8rem;
    }
    
    .carousel-item .lead {
        font-size: 1rem;
    }
}

/* Carousel control buttons styling */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

/* Carousel indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 15;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
}

/* Animation delays for carousel items */
.carousel-item .animate__animated {
    animation-duration: 0.8s;
}

.carousel-item.active .animate__fadeInUp {
    animation-name: fadeInUp;
}

.carousel-item.active .animate__fadeInRight {
    animation-name: fadeInRight;
}

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Optional: Add subtle parallax effect on carousel */
.carousel-item {
    background-attachment: fixed;
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-item {
        background-attachment: scroll;
    }
}





/* Explicit Background Colors - Force Apply */
.bg-white-custom {
    background-color: #ffffff !important;
}

.bg-light-custom {
    background-color: #f8f9fa !important;
}

.bg-dark-custom {
    background-color: #2C3E50 !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%) !important;
}

/* Section spacing and borders for clarity */
.section-white {
    background-color: #ffffff;
}

.section-light {
    background-color: #f4f6f9;
}

.section-dark {
    background-color: #2C3E50;
    color: white;
}



