/* Navbar css starts here  */

.navbar-nav .nav-link {
    transition: all 0.3s ease;
    border-radius: 30px;
    display: inline-block;
    width: fit-content;
}

.navbar-nav .nav-link:hover {
    background-color: #0d6efd;
    color: white !important;
}

/* Style for dropdown items */
.dropdown-menu {
    max-width: 100vw;
    width: auto;
}
.dropdown-item {
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    padding: 8px 15px;
}
@media (max-width: 991px) {
    .dropdown-menu {
        width: 90vw;
        margin: 0 auto;
    }
}

.dropdown-item:hover {
    background-color: #0d6efd;
    color: white;
}

/* Active link style */
.nav-link.active {
    background-color: #0d6efd;
    color: white !important;
}

/* Mobile specific styles */
@media (max-width: 991px) {
    .navbar-nav .nav-item {
        display: inline-block;
        justify-content: center;
    }
    
    .navbar-nav .nav-link {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* Navbar css ends here  */

/* Top section css starts here  */

.bg-gradient {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-left {
    padding: 40px;
    color: white;
}

.content-left h1 {
    font-weight: 700;
    margin-bottom: 25px;
}

.content-left p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.image-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* border-radius: 15px; */
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.3); */
}

.image-carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-carousel img.active {
    opacity: 1;
}

@media (max-width: 991px) {
    .content-left {
        text-align: center;
        padding: 40px 20px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .image-carousel {
        height: 400px;
        margin-top: 30px;
    }
}

/* Top section css ends here  */

/* Product section css starts here  */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.capability-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capability-card:hover .card-image img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover .overlay {
    opacity: 1;
}

.card-title {
    text-align: center;
    padding: 0.5rem;
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
    background: white;
    transition: color 0.3s ease;
    font-size: 1.1rem;

}

.capability-card:hover .card-title {
    color: #3498db;
}

@media (max-width: 768px) {
    .capability-card {
        margin-bottom: 2rem;
    }
}



/* Product section css ends here  */

/* Experience section css starts here  */



.section-heading {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.content-text {
    color: #555;
    line-height: 1.6;
}

.feature-box {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    height: 100%;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(33, 147, 176, 0.2);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    border: none;
    padding: 10px 30px;
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.3);
}

.divider {
    border: 1.5px solid #e0e2e3;
    /* margin: 2rem 0; */
}

.company-profile {
    padding: 20px;
}

.subtitle {
    color: #6dd5ed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.main-title {
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.image-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.company-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.company-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-block {
        margin-bottom: 2rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
}


/* Experience section css starts here  */

/* Testimonial section css starts here  */

.testimonial-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 1rem;
    transition: all 0.3s ease;
}

.quote-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.client-details h5 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.client-details span {
    font-size: 0.9rem;
    color: #666;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3498db;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-heading {
        font-size: 2rem;
    }
}



/* Testimonial section css starts here  */

/* Quesry section css starts here  */

.custom-accordion {
    padding: 20px;
}

.section-title {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(10px);
}

.accordion-header {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-left: 15px;
}

.icon {
    width: 30px;
    height: 30px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
    background: #2c3e50;
}

.icon .fa-minus {
    display: none;
}

.accordion-item.active .fa-plus {
    display: none;
}

.accordion-item.active .fa-minus {
    display: block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.content-inner {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.content-icon {
    font-size: 2rem;
    color: #3498db;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .accordion-header h3 {
        font-size: 1rem;
    }
}

.query-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.query-card:hover {
    transform: translateY(-10px);
}

.query-header {
    margin-bottom: 2rem;
}

.badge-custom {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.query-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.query-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.contact-btn {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* Quesry section css starts here  */

/* About page css starts here */

.about-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card.featured {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.featured .icon-box {
    background: white;
    color: #3498db;
}

.about-card:hover .icon-box {
    transform: rotate(360deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured .card-title {
    color: white;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured .card-text {
    color: rgba(255,255,255,0.9);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed rgba(0,0,0,0.1);
}

.featured .stat-box {
    border-top-color: rgba(255,255,255,0.2);
}

.number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.featured .number {
    color: white;
}

.label {
    font-size: 0.9rem;
    color: #666;
}

.featured .label {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .about-card {
        margin-bottom: 2rem;
    }
}

/* Add these styles to your existing CSS */


/* About page css starts here */

/* Products page css starts here  */

   /* Styling for the layout */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.img-fluid.hover-zoom {
    transition: transform 0.3s ease;
}

.img-fluid.hover-zoom:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.gradient-line {
    height: 3px;
    background: linear-gradient(to right, #007bff, #00ff88);
    border: none;
    border-radius: 3px;
}

.price-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #6c757d;
}

.feature-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-table td {
    padding: 15px;
    vertical-align: middle;
}

.feature-table i {
    margin-right: 10px;
    color: #007bff;
}

.pulse-button {
    animation: pulse 2s infinite;
}

.glow-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border: none;
}

.detail-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.detail-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.detail-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,123,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0);
    }
}

/* Mobile First Approach */
@media (max-width: 576px) {
    .price-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .detail-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .price-tag {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .feature-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .detail-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card {
        padding: 15px;
    }

    .price-tag {
        font-size: 2.2rem;
    }
}

/* Small Desktop */
@media (min-width: 769px) and (max-width: 992px) {
    .detail-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* General Responsive Rules */
.img-fluid {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* .btn {
    white-space: nowrap;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    display: block;
} */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}




/* Products page css starts here  */

/* Contact page css starts here */

.contact-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: white;
    text-align: center;
    transform: translateY(60px);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .card-overlay {
        padding: 4rem 2rem;  /* Increased padding for larger screens */
    }
}
.contact-card:hover .card-overlay {
    transform: translateY(0);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(52,152,219,0.5);
}

.card-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: white;
    color: #3498db;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-card {
        height: 350px;
    }

    .card-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    }
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.text-gradient {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    z-index: 10;
}

.custom-input {
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 15px rgba(52,152,219,0.1);
}

textarea.custom-input {
    resize: none;
}

textarea.custom-input + .input-icon {
    top: 25px;
    transform: none;
}

.submit-btn {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52,152,219,0.2);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

.map-section {
    padding: 3rem 0;
}

.location-heading {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.map-frame:hover {
    transform: scale(1.01);
}

.map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 8px solid #fff;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.map-frame iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .location-heading {
        font-size: 2rem;
    }
    
    .map-frame iframe {
        height: 350px;
    }
}


/* Contact page css ends here */

/* Social media links css starts here  */

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-links .social-icon:hover {
    transform: translateY(-3px);
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.linkedin {
    background: #0077b5;
}

@media (max-width: 991px) {
    .social-links {
        margin-top: 1rem;
        justify-content: start;
    }
}

/* Social media links css ends here  */


/*-----------------
7. Footer-Area
-------------------*/

.footer-area.v2 {
    /* background-image: -webkit-gradient(linear, left top, right top, from(#5040F4), to(#31B4FE)); */
    background-image: linear-gradient(to right, #f9f9fb 0%, #f9f9fb 100%);
}

.footer-area.v2 {
    margin-top: 200px;
}
.footer-area {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

.footer-bottom {
    padding-top: 80px;
    padding-bottom: 60px;
    color: #ffffff;
}

.copyright-area {
    padding-bottom: 80px;
    color: #ffffff;
}

.footer-area.v3 .copyright-area {
    padding-top: 60px;
    padding-bottom: 0;
}

.footer-bottom.v3 {
    padding-top: 300px;
}

.footer-bottom a {
    color: #ffffff;
}

.footer-bottom .widget-title {
    color: black;
    font-size: 22px;
}

.footer-bottom .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom .widget ul li {
    display: block;
    padding: 5px 0;
}

.footer-bottom .widget ul li a {
    display: block;
    text-decoration: none;
    color: #666;
}

.footer-bottom .widget ul li a:hover {
    color: #4f81f5;
}

.footer-bottom .widget ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #ffffff;
    display: inline-block;
    margin-right: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-bottom .widget ul li:hover a:before {
    width: 20px;
    margin-right: 5px;
}

/*--------------------
8. Subscribe-Form
---------------------*/

.subscribe-area {
    padding: 50px 50px;
    box-shadow: 0 0 50px 0 rgba(80, 107, 135, 0.34);
    border-radius: 10px;
    background-color: #ffffff;
}

.subscribe-area.v2 {
    margin-top: -200px;
}

.subscribe-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2196F3, #673AB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subscribe-desc {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.subscribe-form .input-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    border-color: #2196F3;
    outline: none;
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.1);
}

.subscribe-form button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #2196F3, #673AB7);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscribe-area {
        padding: 50px 30px;
    }
    
    .subscribe-title {
        font-size: 2rem;
    }
    
    .subscribe-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .subscribe-form .input-group {
        flex-direction: column;
    }
    
    .subscribe-form button {
        width: 100%;
        justify-content: center;
    }
    
    .subscribe-title {
        font-size: 1.8rem;
    }
}


.product-single-slider .item {
    text-align: center;
    display: inline-block;
}

.over-hidden {
    overflow: hidden;
}

