/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #6fff00 100%);
    min-height: \90vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons .btn {
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Floating Icons */
.hero-icons {
    position: relative;
    height: 500px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon i {
    font-size: 24px;
    color: #6fff00;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.icon-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.icon-4 {
    top: 70%;
    right: 30%;
    animation-delay: 1.5s;
}

.icon-5 {
    top: 20%;
    left: 50%;
    animation-delay: 2s;
}

.icon-6 {
    top: 80%;
    left: 40%;
    animation-delay: 2.5s;
}

/* Scroll Down Arrow */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #6fff00;
    background: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Product Image Overlay */
.product-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay .btn {
    transform: scale(0.9);
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    font-weight: 600;
    background: #FFD700;
    color: #1E3A8A;
    pointer-events: auto;
}

.product-image:hover .image-overlay .btn {
    transform: scale(1);
}

.image-overlay .btn:hover {
    background: #FFA500;
    border-color: #FFA500;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-buttons .btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 20;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
     .hero-content{
        margin-top: 2rem;
    }
}

/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6fff00, #FCD34D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #1E3A8A;
}

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

/* About Section */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.image-placeholder {
    background: linear-gradient(135deg, #1E3A8A, #6fff00);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

/* Products Section */
.product-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.product-image {
    height: 150px;
    background: linear-gradient(135deg, #F8F9FA, #E5E7EB);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
}

.product-image i {
    font-size: 48px;
    color: #1E3A8A;
    transition: all 0.3s ease;
}

.product-card:hover .product-image i {
    transform: scale(1.2) rotate(10deg);
    color: #6fff00;
}

.product-features .badge {
    font-size: 11px;
    margin-right: 5px;
}

/* Contact Form */
.form-floating > .form-control {
    font-size: 14px;
}

.form-floating > label {
    font-size: 13px;
}

/* FAQ Section */
.accordion-item {
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.accordion-button {
    font-size: 14px;
    font-weight: 500;
}

/* Enhanced Professional Sections */

/* Section Headers */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FCD34D);
    color: #1E3A8A;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Background Patterns */
.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
    position: relative;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFD700, #FCD34D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 36px;
    color: #1E3A8A;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #FFD700, #FCD34D);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.service-card:hover .icon-glow {
    opacity: 0.3;
}

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

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

.feature-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: #1E3A8A;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    margin: 2px;
    transition: all 0.3s ease;
}

.feature-tag i {
    margin-right: 4px;
    color: #10B981;
}

.service-card:hover .feature-tag {
    background: rgba(255, 215, 0, 0.2);
}

/* Enhanced Button Styles */
.btn-hover-fill {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    transition: left 0.3s ease;
    z-index: -1;
}

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

.btn-hover-fill:hover {
    color: white !important;
    border-color: #1E3A8A;
}

/* Enhanced Product Cards */
.product-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 58, 138, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, #F8F9FA, #E5E7EB);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Enhanced Contact Form */
#contact-form .card {
    border-radius: 25px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

#contact-form .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #1E3A8A, #FFD700);
}

.form-floating .form-control {
    border-radius: 15px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.5);
}

.form-floating .form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    background: white;
    transform: translateY(-2px);
}

/* Enhanced FAQ Section */
.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    background: linear-gradient(135deg, #F8F9FA, #E5E7EB);
    border: none;
    border-radius: 15px !important;
    font-weight: 600;
    padding: 20px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #FFD700, #FCD34D);
    color: #1E3A8A;
    box-shadow: none;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 25px;
    background: white;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Enhancements */
@media (max-width: 768px) {
      .hero-content{
        margin-top: 8rem;
    }
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-image i {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
}