/**********************************/
/********** General CSS ***********/
/**********************************/
:root {
    --primary-color: #3a86ff;
    --secondary-color: #8338ec;
    --accent-color: #ff006e;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #495057;
    --text-dark: #212529;
}

body {
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: var(--light-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
    color: var(--secondary-color);
    outline: none;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: white;
    margin: 5px;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    transition: all 0.3s ease;
    z-index: 11;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
#nav {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

#nav.nav-sticky {
    position: fixed;
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

#nav .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

#nav .navbar-brand span {
    color: var(--primary-color);
}

#nav .navbar-light .nav-link {
    position: relative;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

#nav .navbar-light .nav-link:hover,
#nav .navbar-light .nav-link.active {
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    #nav .navbar-nav {
        padding: 15px 0;
    }
}

/**********************************/
/*********** Header CSS ***********/
/**********************************/
#header {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(58,134,255,0.1) 0%, rgba(255,255,255,1) 100%);
    overflow: hidden;
}

#header .header-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

#header .header-content h2 span {
    color: var(--primary-color);
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header .header-content p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 30px;
}

#header .header-img img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 767.98px) {
    #header {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    #header .header-content h2 {
        font-size: 36px;
    }
}

/**********************************/
/******** Mini Feature CSS ********/
/**********************************/
#feature-mini {
    position: relative;
    margin-top: -60px;
    z-index: 1;
}

#feature-mini .container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
}

#feature-mini .feature-item {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

#feature-mini .feature-item:hover {
    transform: translateY(-10px);
}

#feature-mini .feature-item i {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#feature-mini .feature-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

#feature-mini .feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

#feature-mini .feature-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header p {
    margin: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h1 {
    margin: 10px 0 0;
    color: var(--text-dark);
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

@media (max-width: 767.98px) {
    .section-header h1 {
        font-size: 36px;
    }
}

/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 100px 0;
    background: white;
}

#feature .product-feature {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#feature .product-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

#feature .product-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58,134,255,0.1);
    border-radius: 50%;
    margin-right: 20px;
    float: left;
}

#feature .product-icon i {
    color: var(--primary-color);
    font-size: 30px;
}

#feature .product-content {
    width: calc(100% - 90px);
    float: left;
}

#feature .product-feature h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

#feature .product-feature p {
    font-size: 15px;
    margin: 0;
    color: var(--text-color);
}

#feature .product-img img {
    max-width: 100%;
    height: auto;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/**********************************/
/********* Newsletter CSS *********/
/**********************************/
#newsletter {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

#newsletter h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

#newsletter p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

#newsletter form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

#newsletter form input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px 0 0 50px;
}

#newsletter form .btn {
    border-radius: 0 50px 50px 0;
    background: var(--dark-color);
    border-color: var(--dark-color);
    padding: 0 30px;
    height: 50px;
    line-height: 46px;
}

#newsletter form .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/**********************************/
/********** Process CSS ***********/
/**********************************/
#process {
    position: relative;
    padding: 100px 0;
    background: var(--light-color);
}

#process .process-col {
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

#process .process-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

#process .process-col i {
    color: var(--primary-color);
    font-size: 60px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

#process .process-col:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

#process .process-col h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

#process .process-col p {
    font-size: 16px;
    margin: 0;
    color: var(--text-color);
}

/**********************************/
/******* Call To Action CSS *******/
/**********************************/
#call-to-action {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%), url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-dark);
}

#call-to-action h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

#call-to-action p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

/**********************************/
/********** Products CSS **********/
/**********************************/
#products {
    position: relative;
    padding: 100px 0;
    background: white;
}

#products .product-single {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

#products .product-single.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

#products .product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

#products .product-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

#products .product-title h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

#products .product-title p {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
}

#products .product-img {
    margin: 30px 0;
}

#products .product-img img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

#products .product-single:hover .product-img img {
    transform: scale(1.1);
}

#products .product-footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

#products .product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

#products .product-specs li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-color);
}

#products .product-specs li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/**********************************/
/******** Testimonial CSS *********/
/**********************************/
#testimonial {
    position: relative;
    padding: 100px 0;
    background: var(--light-color);
    text-align: center;
}

#testimonial .testimonial-slider-nav .slick-slide {
    padding: 0 15px;
}

#testimonial .testimonial-slider-nav .slick-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#testimonial .testimonial-slider-nav .slick-center img {
    transform: scale(1.2);
    border-color: var(--primary-color);
}

#testimonial .testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0 0 0;
}

#testimonial .testimonial-slider::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 60px;
    color: rgba(58,134,255,0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

#testimonial .slider-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#testimonial .slider-item h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

#testimonial .slider-item h2 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

#testimonial .slider-item p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

/**********************************/
/************ FAQs CSS ************/
/**********************************/
#faqs {
    position: relative;
    padding: 100px 0;
    background: white;
}

#faqs .faqs-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

#faqs .faqs-text p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}

#faqs .faq-contact {
    margin-top: 30px;
}

#faqs .faq-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

#faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

#faqs .card-header {
    padding: 0;
    background: white;
    border: none;
}

#faqs .card-header a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    background: white;
    transition: all 0.3s ease;
}

#faqs .card-header a:hover {
    color: var(--primary-color);
}

#faqs .card-header a[aria-expanded="true"] {
    color: white;
    background: var(--primary-color);
}

#faqs .card-body {
    padding: 20px;
    font-size: 15px;
    color: var(--text-color);
    background: rgba(58,134,255,0.05);
}

/**********************************/
/********** Contact CSS ***********/
/**********************************/
#contact {
    position: relative;
    width: 100%;
}

#contact .contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

#contact .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#contact .contact-info {
    padding: 60px 30px;
    height: 100%;
}

#contact .contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

#contact .contact-info p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
}

#contact .contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

#contact .contact-info h3 i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}

#contact .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

#contact .social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    padding: 30px 0;
    background: var(--dark-color);
    color: white;
}

#footer p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

#footer a {
    color: white;
    font-weight: 600;
}

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

#footer .footer-links a {
    margin-left: 15px;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    #footer .footer-links {
        margin-top: 15px;
    }
    
    #footer .footer-links a {
        margin: 0 10px 0 0;
    }
}