body { 
    margin: 0; 
    padding: 0; 
    background-color: #121212;
}
.navbar { 
    position: fixed; 
    width: 100%; 
    top: 0;
    z-index: 1000;
    background: #ffffff; 
}
.navbar{
    background-color:#101110;
}
.navbar-nav .nav-link {
    margin-right: 20px;
    color:#00ffa3; 
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: #007bff; 
}
.navbar-toggler{
    background-color:#235369;
}
.dropdown-menu { 
    background: #444; 
    display: none;
    position: absolute;
}
.dropdown-item { 
    color: #fff; 
}
.dropdown-item:hover {
    background: #555; 
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Banner images */
.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: cover;
}

/* Adjust space below carousel for thumbnails */
.carousel-inner {
    margin-bottom: 0;
}

/* Thumbnail scrolling container */
.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 15px;
    background-color: transparent; /* Removed white background */
    position: relative;
    z-index: 999;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.thumbnail-container::-webkit-scrollbar {
    display: none;
}

/* Style when dragging */
.thumbnail-container.dragging {
    cursor: grabbing;
    user-select: none;
}

/* Individual thumbnail wrapper */
.thumb-wrapper {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* Removed white background */
    overflow: hidden;
    border-radius: 6px;
    box-shadow: none; /* Removed shadow */
}

/* Thumbnail images */
.thumbnail {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border: none; /* Removed border */
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

.thumbnail.active {
    border: 2px solid #007bff; /* Only apply when active */
    opacity: 1;
}

.thumbnail:hover {
    opacity: 0.85;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .thumb-wrapper {
        width: 90px;
        height: 60px;
    }

    .thumbnail {
        width: 80px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .thumb-wrapper {
        width: 70px;
        height: 50px;
    }

    .thumbnail {
        width: 70px;
        height: 40px;
    }
}

.banner img{
    width: 100%;
    height: 400px;
    margin-top: 60px;
    }
.underline1 {
    height: 4px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(to right, blue, rgba(0, 123, 255, 0));
}
.underline {
    height: 4px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #007bff, transparent);
}

.aboutp {
    font-size: 15px;
    text-align: justify;
    color: #ededed;
}
.abt h3{
    padding-top: 10px;
    padding-bottom: 10px;
    color: #007bff;
}
.abt h5{
    color: #00ffa3;
}
.btn-custom {
    background-color:#007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color:#00ffa3;
    color: #ffffff;
}
.image-hover {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    display: block;
    filter: grayscale(0%);
}
.image-hover:hover {
    filter: grayscale(50%);
}


#modalImage {
    max-width: 100%;
    max-height: 70vh;
    transition: transform 0.3s ease-in-out;
    cursor: zoom-in;

}
.modal-body {
    overflow: hidden;
}


.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  color: #00ffa3;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #ffffff;
}
        
.gallery1 img {
    width: 100%;
    height: auto;
    cursor: pointer;
}
.modal-content img {
    width: 100%;
    height: auto;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.service-section {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
    text-align: center;
    position: relative;
    background: #fff;
}

.service-section:hover {
    background-color: #f1f1f1;
}
         
.service-icon {
            
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 10px;
}

.service-heading {
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
}

.service-underline {
    width: 50px;
    height: 3px;
    background-color: #333;
    margin: 10px auto;
}
.service-description {
    text-align: justify;
    font-size: 14px;
}

.service-button {
    background-color:#007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: absolute;
    bottom:-20px;
    left: 50%;
    transform: translateX(-50%);
}
        
.service-button:hover {
    background-color:#00ffa3;

}
.service-button a{
    text-decoration: none;
    color:#f1f1f1;
}

.service-button a:hover{
    text-decoration: none;
    color:#121212;
}

.heading a {
    text-decoration: none;
    color:#00ffa3;
    transition: color 0.3s ease-in-out;
}
        
.heading a:hover {
    color: #007bff;
}

.shop-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.shop-btn:hover {
    background-color:#00ffa3;
    color: #000;
}
.bullet-points li {
    list-style-type: disc;
    color: #f1f1f1;
}

.shop-btn a{
    text-decoration: none;
    color: #fff;
}

.contact-info {
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #007bff;
    margin-bottom: 20px;
}

.contact-info h5{
    color:#ffffff;
}

.contact-info i {
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-info a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: bold;
}

.contact-info a:hover {
    color: #007bff;
}

.contact-form {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background:#1a1a2e;
    color: #f1f1f1;
}

.btn-submit {
        background-color:#007bff;
        color: white;
        border: none;
        padding: 10px;
}
.btn-submit:hover {
    background-color:#00ffa3;
}

.tex1{
    font-size: 14px;
    color: db3434;
}
.text-center{
    color: #007bff;
}
.text-center1{
    font-size: 15px;
    text-align: center;
    color: #ededed;
}

.text-justify{
    color: #f1f1f1;
}
.heading1{
    color:#007bff;
}
.container-fluid h6{
    color: #ffffff;
}
hr {
    width: 100%;
    border: 1px solid #6c757d; /* Light gray color like Bootstrap secondary */
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .banner img{
        width: 100%;
        height: auto;
        margin-top: 65px;
    }
}
   /* Footer Social Icons Styling */
.social-icon a, 
.social-iconn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #007bff; /* optional background */
    color: #fff;
    font-size: 24px;
    border-radius: 50%; /* rounded */
    /*border: 2px solid #fff;*/
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.social-icon a:hover,
.social-iconn:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.1);
}
.image-container{
    margin-top: 180px;
}
@media (max-width: 768px) {
   .image-container{
    margin-top:0px;
    }
}
.carousel-inner1 {
    max-height: 400px; /* Adjust as needed */
    overflow: hidden;
}

.carousel-inner1 .carousel-item img {
    object-fit: cover;
    height: 400px; /* Match the max-height above */
    width: 100%;
    border-radius: 10px; /* Optional for rounded corners */
}

.model-card {
    cursor: pointer;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* 3D Viewer */
model-viewer {
    width: 100%;
    height: 320px;
    background: #f5f5f5;
}

/* Info Section */
.model-info {
    padding: 14px 16px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #eee;
}

/* TITLE (FIXED) */
.model-info h6 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    text-transform: capitalize;
}

/* DESCRIPTION */
.model-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.model-card:hover .model-info h6 {
    color: #0d6efd; /* Bootstrap primary */
}

/* ================= HOME ABOUT SECTION (ATTRACTIVE) ================= */

.home-about-section {
    background: linear-gradient(180deg, #121212, #0f2027);
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.section-title span {
    color: #00ffa3;
}

.section-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #00ffa3, transparent);
    margin-top: 12px;
}

.section-subtitle {
    color: #bdbdbd;
    font-size: 16px;
    margin-top: 12px;
}

/* About Titles */
.about-title {
    color: #00ffa3;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.about-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #007bff;
    position: absolute;
    bottom: -6px;
    left: 0;
}

/* About Image */
.about-img {
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 65px rgba(0,0,0,0.8);
}

/* About Cards */
.about-card {
    background: linear-gradient(145deg, #1a1a2e, #121212);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.about-card h5 {
    color: #00ffa3;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    color: #dcdcdc;
    font-size: 14px;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.9);
}

/* About Lists */
.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    color: #ededed;
    font-size: 14px;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00ffa3;
    font-weight: bold;
}

/* CTA Button */
.home-about-section .btn-outline-primary {
    border-color: #00ffa3;
    color: #00ffa3;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.home-about-section .btn-outline-primary:hover {
    background: #00ffa3;
    color: #121212;
    border-color: #00ffa3;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .home-about-section {
        padding: 60px 0;
    }

    .about-img {
        margin-top: 20px;
    }
}

/* ================= TEAM SECTION ================= */

.team-card {
    background: linear-gradient(145deg, #1a1a2e, #121212);
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.7);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9);
}

.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00ffa3;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.08);
}

.team-card h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-card p {
    color: #00ffa3;
    font-size: 14px;
    margin: 0;
}

/* ================= FOUNDER / VISIONARY SECTION ================= */

.founder-section {
    background: linear-gradient(145deg, #121212, #1a1a2e);
    border-radius: 20px;
    padding: 40px 30px;
}

.founder-img {
    max-width: 260px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
    border: 3px solid #00ffa3;
}

@media (max-width: 768px) {
    .founder-section {
        padding: 30px 20px;
    }

    .founder-img {
        max-width: 200px;
    }
}





footer {
    margin-top: 60px;
}


