/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #000;
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #fff !important;
    /* text-transform: uppercase; */
}


/* Enhanced Logo Styling */
.logo-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-x {
    color: #4d94ff; /* Lighter blue color */
    font-weight: 900;
    text-shadow: -1px -1px 0 #fff, 
                  1px -1px 0 #fff, 
                 -1px 1px 0 #fff, 
                  1px 1px 0 #fff;
}

@media (min-width: 992px) {
    .navbar-brand {
        font-size: 2rem;
    }
}


/* Main Title Styling */
.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

/* .main-title .title-x {
    color: #4d94ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
} */

.main-title .title-x {
    color: #4d94ff; /* Keep the same blue color as before */
    text-shadow: -1.5px -1.5px 0 #000, 
                  1.5px -1.5px 0 #000, 
                 -1.5px 1.5px 0 #000, 
                  1.5px 1.5px 0 #000,
                 -0.5px 0 0 #000,
                  0.5px 0 0 #000,
                  0 -0.5px 0 #000,
                  0 0.5px 0 #000;
}



.main-subtitle {
    font-size: 1.4rem;
    color: #555;
    font-weight: 300;
}

/* Product Title Spacing */
.product-title {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}


/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.social-icons li {
    display: inline-block;
    margin-left: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
}

.social-icons a:hover {
    color: #0056b3;
}


/* Make images fit properly within the carousel */
.carousel-inner img {
    object-fit: contain;
    height: 500px;
    width: 100%;
}

/* Increase carousel height */
.carousel-inner {
    height: 500px; /* Adjust this value as needed */
}

#imageGallery {
    border: 1px solid #ddd;
    border-radius: 4px;
}


/* Carousel Controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 5px;
}

/* Fix for carousel controls */
.carousel-control-prev, .carousel-control-next {
    opacity: 1;
}

/* html, body {
    overflow-x: hidden;
} */

@media (max-width: 768px) {
    .carousel-inner {
        position: relative;
        height: 300px;
    }
    
    .carousel-item {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .carousel-inner img {
        position: absolute;
        height: 100%;
        max-width: none;
        min-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    overflow-x: auto;
    margin-top: 20px;
    gap: 10px;
    padding-bottom: 10px;
}

.thumbnail {
    width: 120px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #0056b3;
}


/* Section Divider */
.section-divider {
    height: 2px;
    background-color: #eee;
    margin: 30px 0;  
}

/* Video Section */
.video-section {
    margin-top: 30px;
}

.video-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.specs-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 10px 20px;
}

.inquiry-btn {
    background-color: #0056b3;
    border-color: #0056b3;
}

.inquiry-btn:hover {
    background-color: #003d7a;
}

/* Responsive Behavior */
@media (max-width: 1399px) {
    .action-buttons {
        flex-direction: column; /* Stack buttons vertically */
    }

    .action-buttons .btn {
        margin-bottom: 10px; /* Add spacing between stacked buttons */
    }
}

/* Ensure Equal Width for Action Buttons Above 1400px */
@media (min-width: 1400px) {
    .action-buttons {
        display: flex;
        width: 100%; /* Occupy full width */
        justify-content: space-between;
    }

    .action-buttons .btn {
        flex: 1; /* Equal width distribution */
        text-align: center; /* Center text */
        margin-right: 5px; /* Add some right margin*/
    }

    .action-buttons .btn:last-child {
        margin-right: 0; /* Remove from the last*/
    }
}

/* Contact Information */
.contact-info {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #0056b3;
}

/* Email Link Styling */
.contact-info a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #003d7a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        margin-bottom: 10px;
    }
    
    .social-icons {
        text-align: center;
        margin-top: 20px;
    }
    
    .carousel-inner img {
        height: 300px;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .main-subtitle {
        font-size: 1.2rem;
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Description Styles */
.product-description {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Description Wrapper */
.description-wrapper {
    padding: 0;
}

/* Preview Text */
.preview-text {
    display: inline;
}

/* Read More Container */
.read-more-container {
    display: inline; /* Default: Show on larger screens */
    margin-left: 5px;
}

.read-more {
    font-weight: bold;
    color: #0056b3;
    text-decoration: none;
    cursor: pointer;
}

.read-more .arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more:hover {
    text-decoration: underline;
}

/* Hidden Full Content */
.full-content {
    display: none; /* Default: Hidden on larger screens */
    margin-top: 12px;
}

/* JavaScript for Accordion */
.product-description.expanded .full-content {
    display: block; /* Expanded state */
}

.product-description.expanded .read-more .arrow-icon {
    transform: rotate(180deg); /* Expanded state */
}

/* Responsive Breakpoints */

/* Breakpoint for Mobile View */
@media (max-width: 768px) {
    .read-more-container {
        display: none; /* Hide read more link and arrow on mobile */
    }

    .full-content {
        display: block; /* Show full content on mobile */
    }
}

/* Accordion Activation Point */
@media (min-width: 769px) and (max-width: 1399px) {
    .read-more-container {
        display: inline; /* Activate accordion */
    }

    .full-content {
        display: none; /* Hide the content by default*/
    }
}

/* Deactivate above 1400 */
@media (min-width: 1400px) {

    .read-more-container {
        display: none;
    }

    .full-content {
        display: block;
    }
}







/* Product Tabs Styling */
#productTabs .nav-link {
    font-weight: 500;
    color: #555;
}

#productTabs .nav-link.active {
    color: #0056b3;
    font-weight: 600;
}

.tab-content {
    background-color: #fff;
}

.feature-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item .fas {
    color: #0056b3;
}

@media (max-width: 768px) {
    #productTabs .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Image Collage Styling */
.image-collage {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.collage-left, .collage-right {
    height: 100%;
}

.main-image, .small-image, .top-image, .bottom-images {
    padding: 2px;
}

.main-image {
    height: calc(75% - 2px);
    overflow: hidden;
}

.small-image {
    height: calc(25% - 2px);
    overflow: hidden;
}

.top-image {
    height: calc(50% - 2px);
    overflow: hidden;
}

.bottom-images {
    height: calc(50% - 2px);
}

.bottom-images .row {
    height: 100%;
}

.bottom-images .col-6 {
    height: 100%;
    padding: 2px;
}

.collage-left img, .collage-right img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .main-image, .small-image, .top-image, .bottom-images {
        height: auto;
    }
}
.position-relative {
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.overlay-title {
    font-weight: 700;
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 5px;
}

.overlay-subtitle {
    font-weight: 400;
    color: white;
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .overlay-title {
        font-size: 1.4rem;
    }
    
    .overlay-subtitle {
        font-size: 0.9rem;
    }
}
/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Social Icons Section */
.follow-us {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: right;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.social-icons li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 0;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
}

.social-icons a:hover {
    color: #0056b3;
}
 
@media (max-width: 768px) {
    .social-icons, .follow-us {
        text-align: left;
    }
    
    .social-icons li {
        margin-left: 0;
        margin-right: 10px;
    }
}




