/* ✅ General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: white;
    margin: 0;
    padding: 0;
}


.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    visibility: hidden;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
  
/* ✅ Top Header */
.top-header {
    background: url('camoflaugered.jpg') no-repeat center center/cover;
    padding: 10px 15px;
    position: fixed;
    width: 100%;
    height: 38px;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@font-face {
    font-family: 'DigitalClock';
    src: url('fonts/digital-7.ttf') format('truetype');
}

@font-face {
    font-family: 'AvarezoSerif';
    src: url('fonts/AvarezoSerif.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


/* ✅ Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: red;
    transform: scale(1.1);
}

/* ✅ Inquiries Text */
.top-header .inquiry-text {
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 12px;
    position: relative;
    top: 10px;
}

/* ✅ Phone Number in Gold */
.top-header .inquiry-text strong {
    color: gold;
}

/* ✅ Navigation Bar with Logo */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    position: fixed;
    top: 32px;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* ✅ Logo in Navbar */
.logo img {
    height: 50px;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  /* Animation only – fade-in and slight zoom */
  .animated-logo {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoomIn 1s ease-out forwards;
  }
  
  @keyframes fadeZoomIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  
/* ✅ Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ✅ Navigation Button Styling */
.nav-btn {
    position: relative;
    color: white;
    font-size: 18px;
    font-family: 'Lordcorps', sans-serif;
    font-weight: 100;
    text-decoration: none;
    padding: 10px 18px;
    transition: color 0.3s ease-in-out;
    letter-spacing: 1px;
    line-height: 1.1;
    display: inline-block;
    text-transform: uppercase;
}

@font-face {
  font-family: 'Lordcorps';
  src: url('fonts/Lordcorps.ttf') format('truetype');
}


/* ✅ Red Underline Animation */
.nav-btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: red;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.nav-btn:hover::after {
    width: 100%;
}

.nav-btn:hover,
.nav-btn:focus {
    color: red;
}

/* ✅ Search Engine */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
}

.search-icon {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.search-icon:hover {
    color: red;
    transform: scale(1.1);
}

.search-bar {
    width: 0;
    opacity: 0;
    padding: 6px 10px;
    font-size: 12px;
    border: none;
    border-radius: 20px;
    background: white;
    color: black;
    outline: none;
    transition: width 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* ✅ Expand Search Bar */
.search-container.active .search-bar {
    width: 120px;
    opacity: 1;
}

.search-bar:focus {
    box-shadow: 0px 0px 5px rgba(255, 0, 0, 0.5);
}

/* ✅ Full-Screen Background Video */
#video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ✅ Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 10%;
    color: white;
    overflow: hidden;
}

/* ✅ Hero Content */
.hero-content {
    font-family: 'DigitalClock', sans-serif;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* ✅ Hero Text */
.hero h1 {
    font-family: 'Times', serif;
    font-size: 60px;
    font-weight: 1000;
    color: red;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideIn 1.5s ease-out forwards;
    text-shadow: 
        2px 2px 0 #420a0a,
        4px 4px 0 #420a0a,
        6px 6px 0 #420a0a;
}

/* 🧨 Animation Keyframes */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-family: 'AvarezoSerif', serif;
    font-size: 25px;
    color: trgb(235, 88, 88); /* or any color you prefer */
    text-shadow: 
        -1px -1px 0 rgb(93, 2, 2),
         1px -1px 0 rgb(93, 2, 2),
        -3px  3px 0 rgb(93, 2, 2),
         1px  1px 0 rgb(93, 2, 2);
}

.hero a {
    font-size: 20px;
    font-family: 'DigitalClock', sans-serif;
    font-weight: 500;
}

/* ✅ OUR COMPANY Section */
.company-section {
    background: white;
    padding: 60px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 80px; /* ✅ Extra space at the bottom */
}

/* ✅ OUR COMPANY Title */
.company-text h2 {
    font-family: 'DigitalClock', sans-serif;
    font-size: 45px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    display: inline-block;
}

/* ✅ Description Text */
.company-text {
    width: 55%;
    font-family: 'Arial', serif;
    font-size: 15px;
    color: gray;
    font-weight: normal;
    line-height: 1.5;
}

/* ✅ Aligning Text & Video */
.company-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

/* ✅ YouTube Video Effects */
.company-video iframe {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}

.company-video:hover iframe {
    transform: scale(1.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}

/* ✅ YouTube Video Animation */
.company-video {
    width: 40%;
    text-align: right;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.company-video {
    display: flex;
    align-items: center; /* Aligns video to the center of the text */
    padding-top: 20px; /* Adjust value to move it down */
}

#our-company {
    padding-bottom: 25px; /* Adjust this value as needed */
    margin-bottom: 0; /* Remove unnecessary margins */
}

/* ✅ Video Appears on Scroll */
.company-video.scrolled {
    opacity: 1;
    transform: translateY(-30px);
}

/* ✅ Buttons */
.btn {
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
}

.btn-danger:hover {
    background-color: #a30000
}

/* ✅ PRODUCT PAGE SECTION - FULL WIDTH FIX */
.product-section {
    background: url('productbackground.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Keeps background fixed */
    background-size: cover; /* Ensures full coverage */
    background-position: center;
    width: 100vw; /* Full viewport width */
    min-height: 100vh; /* Full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0; /* Adjusted padding */
    margin: 0;
    overflow: hidden;
}

/* ✅ PRODUCT TITLE */
.product-text h2 {
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
    margin-top: -25px;
    text-align: center;
}

/* ✅ PRODUCT GRID */
.product-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 4 columns */
    gap: 20px; /* Space between products */
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}


/* ✅ PRODUCT ITEM STYLING */
.product-item {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* ✅ TEXT STYLING */
.product-item p {
    font-family: "Trebuchet MS", sans-serif; /* Change to your desired font */
    font-size: 18px;
    color: white;
    margin-top: 10px;
    font-weight: bold;
}

/* ✅ Styling for Product Buttons */
.product-btn {
    background-color: rgb(172, 0, 0); /* Red button */
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: 10px;
    display: block;
    font-weight: bold;
    width: 100%; /* Make it same width as image */
    font-family: "Trebuchet MS", sans-serif !important;
}
/* ✅ Hover Effect */
.product-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

/* ✅ Click Effect */
.product-btn:active {
    transform: scale(0.95);
}


/* ✅ HOVER ANIMATION */
.product-item:hover {
    transform: translateY(-10px); /* Move up slightly on hover */
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.5); /* Red glow effect */
}

.product-item:hover img {
    transform: scale(1.1); /* Zoom effect on image hover */
}

/* ✅ New Products Section */
.new-products-section {
    background: url('backgroundsurron.jpg') no-repeat center center/cover;
    height: 85vh;
    background-size: 100%;
    background-position: center top !important;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* ✅ Logo Styling */
.new-products-logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.new-products-logo img {
    width: 150px;
    height: auto;
}
#surron3D {
  width: 100%;
  max-width: 600px;
  height: 470px;
  background: url('surron3dbackground.png') no-repeat center center / cover;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* ✅ Bicycle Display */
.new-products-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    width: 120%;
}

/* ✅ Style for New Products Image (Vertical Alignment) */
.new-products-image {
    position: absolute;
    right: -7%;  /* Move it to the left */
    top: 50%;  /* Center it vertically */
    transform: translateY(-50%) rotate(-70deg); /* Rotate 90° */
    width: 450px; /* Adjust the size */
}

.new-products-image img {
    width: 100%;
    height: auto;
}


.bicycle-container {
    flex: 1;
    text-align: left;
    position: relative; /* ✅ Required for absolute positioning inside */
    display: inline-block;
}

.bicycle-img {
    width: 1000px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.bicycle-img:hover {
    transform: scale(1.1);
}

/* ✅ Bicycle Specifications */
.bicycle-specs {
    flex: 1;
    text-align: left;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 1.5s ease-in-out;
}

.bicycle-specs ul {
    list-style: none;
    padding: 0;
}

.bicycle-specs li {
    margin-bottom: 10px;
}

/* ✅ Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ 3D Model Popup Styling */
.model-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.model-content {
    position: relative;
    width: 50%;
    max-width: 600px;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* ✅ Close Button Styling */
.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background-color: red; /* Same as zoom buttons */
    color: white;
    border: none;
    font-size: 18px;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 30%; /* Make it round */
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    z-index: 1001; /* ✅ Ensure button is above other elements */
}

.close-modal-btn:hover {
    background-color: darkred;
}

/* ✅ Zoom Controls Styling */
.zoom-controls {
    display: flex;
    gap: 10px;
    position: absolute;  /* Position relative to .model-content */
    bottom: 20px; /* Move up inside the box */
    right: 40px; /* Position inside the right side */
    left: 35%;
    transform: translateX(-50%); 
    z-index: 10; /* Ensure it's above the 3D model */
}

.zoom-controls button {
    background-color: red;
    color: white;
    border: none;
    font-size: 18px; /* Bigger icons */
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 30%; /* Make it round */
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    opacity: 0.8;
}

.zoom-controls button:hover {
    background-color: darkred;
    opacity: 1;
}

/* ✅ Change 3D Model Popup Box Color */
.model-content {
    position: relative;
    width: 50%;
    max-width: 600px;
    background: url('surron3dbackground.png') no-repeat center center/cover; /* Medium Gray */
    border-radius: 0px; /* Optional: Rounded Corners */
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Optional: Soft Shadow */
}


#surronImage {
    width: 600px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer; /* Makes it clear that it's clickable */
}

/* ✅ Apply Hover Effects */
#surronImage:hover {
    transform: scale(1.1) translateY(-5px);; /* Slight zoom effect */
    filter: drop-shadow(0px 0px 15px rgba(255, 0, 0, 0.7)); /* Soft red glow around shape */
}

.explore-more-btn {
  position: absolute;
  bottom: 5px;
  right: 80px;
  background-color: #ffd700;
  color: black;
  font-size: 20px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  font-family: 'DigitalClock', sans-serif;
}

.explore-more-btn:hover {
  background-color: darkred;
  color: white;
}

/* ✅ About Us Page Styling */
.aboutus-section {
    background: url('aboutusbg.jpg') no-repeat center center/cover;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ✅ Container for About Us */
.aboutus-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    margin-top: 50px;
}

/* ✅ About Us Image */
.aboutus-image img {
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Bigger & deeper shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.aboutus-text {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);  /* Soft shadow */
    backdrop-filter: blur(3px); /* Optional: gives a glassy feel */
    max-width: 700px;
}

.aboutus-text h2 {
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 10px;
}

.aboutus-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ✅ Vision & Mission Section */
.vision-mission-section {
    background: url('aboutusbackground.jpg') no-repeat center center/cover;
    padding: 100px 10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 90vh;
    justify-content: flex-end; /* ✅ Move it to the right */
}

/* ✅ Vision/Mission Box */
.vision-mission-container {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    animation: fadeIn 1.2s ease-in-out;
    right: 5%;
    top: 115vh !important;  /* Moves it UP (Decrease value to move higher) */
    transform: translateY(0%);
    backdrop-filter: blur(8px);
}

/* ✅ Title Styling */
.vision-mission-content h2 {
    font-size: 45px;
    font-weight: bold;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
}

/* ✅ Description Styling */
.vision-mission-content p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.6;
}

/* ✅ Buttons */
#prev-btn, #next-btn {
    background: none;
    color: red;
    border: none;
    font-size: 40px; /* Bigger size */
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;

    /* 3D Text Effect */
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7), /* Bottom-right shadow */
                 -2px -2px 3px rgba(255, 255, 255, 0.4); /* Top-left highlight */
}

#prev-btn:hover, #next-btn:hover {
    transform: scale(1.2); /* Slight hover effect */
    color: #ff3c00; /* Change color to red on hover */
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 1), 
                 0px 0px 15px rgba(255, 255, 255, 0.8), 
                 0px 0px 25px rgba(255, 255, 255, 0.6);
    
}

/* ✅ Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-mission-container {
    position: absolute;
    top: 80%;  /* Adjust as needed */
    right: 3%; /* Adjust as needed */
}

#vision-mission-title {
    color: red; /* Change to your desired color */
    font-weight: bold;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 1), 
                 0px 0px 15px rgba(255, 255, 255, 0.8), 
                 0px 0px 25px rgba(255, 255, 255, 0.6);
/* Balanced 3D depth */
    
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ✅ Center the OUR PARTNERS Section */
/* OUR PARTNERS SECTION */
.partners-section {
    background: white;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 70vh;
}
.partners-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: -50px !important;
    perspective: 1000px;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    position: relative;
    height: 300px;
    margin-bottom: 100px;


    /* ✅ This visually creates equal left and right space */
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
}

.slider-wrapper::before {
    content: "";
    display: block;
    width: 60px; /* ✅ left-side spacer */
    flex-shrink: 0;
}

.slider-item {
    width: 280px;
    height: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: absolute;
    transform: translateX(-50%);
    opacity: 0.5;
    left: 35%;
}

.slider-item.active {
    transform: translateX(-50%) scale(1.2) translateZ(50px);
    opacity: 1;
    z-index: 3;
    left: 50%;


    /* 🔥 Red glow */
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7), 
                0 0 30px rgba(255, 0, 0, 0.5);

}


/* Images inside the cards */
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Active Slide */
.slider-item.active {
    transform: translateX(-50%) scale(1.2) translateZ(50px); /* Ensure perfect centering */
    opacity: 1;
    z-index: 3;
    left: 50%; /* Move it to the center */
}

/* Left & Right Slides */
.slider-item.prev {
    transform: translateX(-500px) scale(0.9) rotateY(10deg);
    opacity: 0.8;
    z-index: 2;

    /* 🖤 Black glow for left slide */
    box-shadow: 0 0 20px rgba(7, 7, 7, 0.6),
                0 0 30px rgba(114, 112, 112, 0.4);
}

.slider-item.next {
    transform: translateX(220px) scale(0.9) rotateY(-10deg);
    opacity: 0.8;
    z-index: 2;

    /* 🖤 Black glow for left slide */
    box-shadow: 0 0 20px rgba(7, 7, 7, 0.6),
                0 0 30px rgba(114, 112, 112, 0.4);
}

/* Hide Other Slides */
.slider-item.hidden {
    transform: translateX(-400px) scale(0.7);
    opacity: 0;
    z-index: 1;
}

/* Navigation Dots */
.dot-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px !important;
    position: relative;
    z-index: 10;
}

.dot-navigation .dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.dot-navigation .dot.active {
    background-color: black;
}

.dot-navigation .dot:hover {
    background-color: #777;
}

/* ✅ OUR LOCATION Section */
.location-section {
    text-align: center;
    padding: 50px 0; /* Adjust spacing */
}

.section-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
    font-size: 45px;
}


/* ✅ Dot Navigation for Background Video */
.video-dots {
    position: absolute;
    bottom: 30px; /* Adjust based on design */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* ✅ Hover Effect */
.dot:hover {
    background-color: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: scale(1.4);
}

/* ✅ Click Effect */
.dot:active {
    transform: scale(1.2);
    opacity: 0.8;
}


/* ✅ Gallery Page Background */
.gallery-section {
    padding: 120px 10% 8px;  /* Added top padding to move content below navbar */
    text-align: center;
    background: url('gallerybackground.jpg') no-repeat center center/cover;;
    background-attachment: fixed;
    min-height: 100vh;
}

/* ✅ Gallery Title */
.gallery-title {
    font-size: 45px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
}

/* ✅ Category Buttons */
.category-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-scroll-wrapper {
    position: sticky;
    top: 80px; /* adjust based on your navbar height */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
    padding: 0 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    background: #111;
  }
  
  
  .category-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
  }
  
  .category-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .category-scroll-btn {
    background: none;
    color: red;
    border: none;
    font-size: 30px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  }
  
  .category-scroll-btn:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px red;
  }
  
  
  .category-btn {
    background: black;
    color: white;
    border: 2px solid red;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
  }
  
  .category-btn:hover,
  .category-btn.active {
    background: red;
    color: black;
  }
  

.category-btn {
    background: black;
    color: white;
    border: 2px solid red;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.category-btn:hover, .category-btn.active {
    background: red;
    color: black;
}

.category-fade-shadow {
    position: relative;
    flex: 1;
    overflow: hidden;
  }
  
  .category-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 20px;
    border: 2px solid red;
    border-radius: 30px;
    background: #1a1a1a;
  }
  
  

/* ✅ Gallery Grid */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* keeps all images centered */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces exactly 5 per row */
    gap: 20px;
    padding: 0 20px;
    justify-items: center;
  }
  
  

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(255, 0, 0, 0.5);
}

.gallery-image {
    display: block !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    max-width: 250px; /* Adjust size */
    max-height: 200px;
    border: 2px solid white; /* Debugging border */
}

.gallery-image {
    border: 10px solid transparent; /* Ensures space for background */
    padding: 5px; /* Adds spacing inside */
    background-size: cover;
    background-position: center;
    border-radius: 8px; /* Smooth edges */
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 250px;
    max-height: 200px;
}

/* Lightbox Background */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/* Lightbox Image */
.lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out;
}


/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: red;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }


  
  .close:hover {
    background: darkred;
  }
  
/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.prev, .next {
    color: white;
    font-size: 50px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.prev:hover, .next:hover {
    color: red;
}

.prev {
    margin-left: 60px; /* bring closer to image */
  }
  
  .next {
    margin-right: 60px; /* bring closer to image */
  }
  

.contact-section {
    padding: 50px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130vh;
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1); /* Lighter transparency */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Softer shadow */
    backdrop-filter: blur(8px); /* Keep the blur effect */
}


.contact-info {
    flex: 1;
    text-align: center;
    color: black; /* ✅ Ensure text is visible */
}
.contact-info h2 {
    font-size: 40px;
    font-weight: bold;
    color: red; /* ✅ Highlight title in red */
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
}

.contact-title {
    font-size: 28px; /* Adjust size as needed */
    font-weight: bold;
    color: red !important; /* Keep "Contact" in black */
}

.contact-title .red-text {
    color: black !important; /* "Us" in red */
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: rgb(220, 6, 6);
}

.contact-item h4 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
    color: black;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
}

.contact-item p {
    font-size: 16px;
    color: black; /* ✅ Ensure text is readable */
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f2f2f2;
}

textarea {
    height: 100px;
}

.captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha label {
    font-weight: bold;
}

.submit-btn {
    background: rgb(220, 6, 6);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.submit-btn:hover {
    background: rgba(70, 5, 5, 0.818);
}

.contact-container {
    background: rgba(255, 255, 255, 0.5); /* Adjust transparency */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* ✅ Optional shadow for better visibility */
    width: 80%; /* Adjust this value to make it smaller */
    max-width: 1000px; /* Ensures it doesn’t stretch too much */
    margin: 20px auto; /* Centers the container */
    padding: 20px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.captcha-container img {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.captcha-container input {
    width: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.captcha-container button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#captcha-display {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    background: white;
    color: black;
    border: 2px solid red;
    padding: 10px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    margin-left: 10px;
}


.contactus-page {
    background: url('contactusbackground.jpg') no-repeat center center fixed;
    background-size: cover;
    margin-top: 20px; /* Adjust based on your navbar height */
    padding-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}
.contactus-page {
    height: 100px; /* ✅ gives space to see footer */
  }
  

.map-container {
    width: 100%;
    max-width: 450px; /* Adjusted smaller width */
    margin: 15px auto; /* Center it */
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 250px; /* Adjusted height to fit */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

/* ✅ OUR LOCATION Section Styling */
/* ✅ OUR LOCATION Section Styling */
.location-section {
    text-align: center;
    padding: 50px 20px;
}

.location-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ Ensures a 2x2 format */
    gap: 40px; /* Space between items */
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Ensure images are uniform */
.location-box img {
    width: 65%;
    height: auto;
    border-radius: 0px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

/* Center text */
.location-info {
    text-align: center;
    margin-top: 15px;
}

/* Location Title Styling */
.location-info h3 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
    
}

/* Location Text */
.location-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

/* ✅ Footer Section */
.footer {
    background-color: #222; /* Dark background */
    color: white;
    padding: 40px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
}
footer {
    z-index: 10;
    position: relative;
  }
  

/* ✅ Footer Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ✅ Left Section - Logo & Social Media */
.footer-left {
    text-align: left;
}

.footer-logo {
    width: 200px; /* Adjust logo size */
    margin-bottom: 30px;
}

.footer-social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.footer-social-icons a:hover {
    color: red;
}

/* ✅ Right Section - Contact Info */
.footer-right {
    text-align: right;
}

.footer-right h3 {
    font-size: 20px;
    font-weight: bold;
}

.footer-right p {
    font-size: 14px;
    margin: 5px 0;
}

/* ✅ Bottom Copyright */
.footer-bottom {
    background-color: black;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
    color: white;
}

/* ✅ Image Row Styling - Full Width */
.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Adjust spacing between images */
    padding: 0px 0 0px;
    width: 100%; /* Full width */
}

.image-row img {
    flex: 1; /* Makes all images grow evenly */
    height: 250px; /* Increase height for better visibility */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 0px; /* Optional: rounded corners */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 20%; /* Ensures five images fit in one row */
}

/* ✅ Ensures Content Appears Below Navigation Bar */
.nitecore-container {
    margin-top: 100px; /* Pushes content below navbar */
    display: flex;
    padding: 20px 5px 20px 5px;;
    gap: 20px;
}

/* ✅ Left Sidebar */
.nitecore-sidebar {
    width: 10%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nitecore-sidebar img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
    /* ✅ Add this part */
    border-right: 5px solid red;
    border-bottom: 5px solid red;
}

.nitecore-sidebar img:hover {
    transform: scale(1.05);
}

/* ✅ Right Content */
.nitecore-content {
    width: 90%;
}

/* ✅ Category Buttons */
.nitecore-category-buttons {
    display: flex;
    justify-content: center; /* Centers the buttons horizontally */
    align-items: center; /* Ensures proper vertical alignment */
    gap: 12px;
    margin: 20px auto; /* Adds spacing and ensures it's centered */
    width: 100%; /* Ensures full width for centering */
    text-align: center;
}

.nitecore-btn {
    padding: 8px 15px;
    border: 2px solid white;
    background: black;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nitecore-btn.active {
    background: red;
    color: white;
}


/* Replace existing .nitecore-category-content styles with this: */
.nitecore-category-content {
    display: none; /* Hide by default */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 90%;
    margin-left: 70px;
}
  

.nitecore-category-content img {
    width: 18%;
    max-width: 200px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.nitecore-category-content img:hover {
    transform: scale(1.1);
}

.nitecore-category-content.active {
    display: grid;
}

.nitecore-btn:hover {
    background: red;
    color: white;
    transform: scale(1.1); /* Slightly enlarges the button */
}

/* ✅ Animated Cursor Pointer */
.nitecore-btn::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* ✅ Clicking Effect (Expanding White Dot) */
.nitecore-btn:active::after {
    transform: scale(10);
    opacity: 0;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

/* ✅ Nitecore Popup Modal */
.nitecore-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.nitecore-popup-content {
    display: flex;
    background: white;
    width: 80%;
    height: 75vh;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

/* ✅ Left Section - Main Image */
.nitecore-popup-left {
    width: 50%;
    background: url('popupbackground1.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.nitecore-popup-left img {
    width: 60%;
    max-height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* ✅ Thumbnail Images */
.nitecore-thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.nitecore-thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
    border: 2px solid #2b2929; /* Default border */
}

.nitecore-thumbnail:hover {
    transform: scale(1.1);
    border-color: red; /* Border turns red on hover */
}

/* ✅ Right Section - Scrollable Text */
.nitecore-popup-right {
    width: 50%;
    padding: 20px;
    overflow-y: auto; /* Enable scrolling */
    max-height: 75vh;
}

.nitecore-popup-text {
    font-size: 16px;
    color: black;
    font-family: "Trebuchet MS", sans-serif;
}

/* ✅ Close Button */
.nitecore-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: black;
    font-size: 24px;
    cursor: pointer;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    color: red;
    margin-bottom: 20px;
  }
  
  .spec-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
/* Row Layout */
.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr; /* Wider left column */
    gap: 20px;
    align-items: start;
    font-size: 15px;
    color: black;
}

/* Left side: Labels */
.spec-row .label {
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 20px;
}

/* Right side: Values */
.spec-row .value {
    text-align: left;
    color: black;
    line-height: 1.5;
    padding-left: 50px;
}

.nitecore-thumbnail.active {
    border: 2px solid red;
}

/* ✅ Enquire Now Button */
.enquire-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.enquire-now-btn {
    background-color: red;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    animation: pulseGlow 1.8s infinite;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.enquire-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    background-color: darkred;
}

/* 🔥 Pulse Glow Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 0, 0, 0.4);
    }
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease-in-out;
    width: 200px;
    margin: 10px;

    /* ✅ Make height fixed and use flexbox */
    height: 300px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.product-card .product-name {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
    min-height: 45px; /* Ensures all names use the same height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card .product-btn {
    background-color: #db3535;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    margin-top: auto;
}

.product-card .product-btn:hover {
    background-color: #660000;
    transform: scale(1.05);
}

#all-products-container .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.nitecore-category-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .product-image-container {
    height: 180px; /* Adjust based on image space needed */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  body.product-page {
    background: url('backgroundproduct.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
  }

  .suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111; /* Dark background */
    color: #eee; /* Light text */
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2); /* Red glow effect */
    z-index: 1000;
    width: 260px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    border: 1px solid #ff3c3c; /* Red border */
}

.suggestion-box div {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.suggestion-box div strong {
    color: #ff3c3c; /* Red brand name */
    margin-left: 6px;
    font-weight: 600;
}

.suggestion-box div:hover {
    background-color: #1c1c1c;
}

.surron-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 5px 0px;
    text-align: center;
    border-radius: 0px;
  }
  .surron-logo {
    height: 40px;
    width: auto;
    margin-bottom: 5px;
  }
  
  
  /* Carousel */
  #surronCarousel {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

  
  .carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .carousel-fixed-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
  }
  
  .surron-explore-btn {
    background-color: #ffd700;
    color: black;
    font-size: 18px;
    margin-top: 70%;
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 20px;
    font-family: 'DigitalClock', sans-serif;
    transition: background 0.3s ease-in-out;
  }
  
  .surron-explore-btn:hover {
    background-color: darkred;
    color: white;
  }

  /* Intro section */
  .surron-section {
    margin-top: 100vh;
    padding: 100px 20px;
    background-color: #111;
    color: white;
    text-align: center;
  }
  
  .surron-heading {
    font-size: 42px;
    color: red;
    font-family: 'DigitalClock', sans-serif;
    margin-bottom: 20px;
  }
  
  .surron-text {
    font-size: 18px;
    color: #ccc;
  }
  


  /* ✅ Surron .category-scroll-wrapper Display Section */
  .surron-bike-section {
    min-height: 87vh;              /* Ensures it's at least full screen */
    height: auto;                  /* ✅ Allows growing beyond screen */
    padding: 100px 20px 80px;      /* ✅ Add bottom padding to avoid cut-off */
    background: url('surronpagebackground.jpg') no-repeat center center fixed;;
    background-size: cover;
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: flex-start;       /* ✅ Align top, not center */
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .bike-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
  }
  
  .bike-gallery {
    flex: 1;
    max-width: 600px;
  }
  
  .bike-section-title {
    font-size: 32px;
    font-family: 'DigitalClock', sans-serif;
    color: red;
    margin-bottom: 20px;
  }
  
  .bike-color-set {
    margin-bottom: 30px;
  }
  
  .bike-color-set h5 {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .bike-images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .bike-images-row img {
    width: 48%;
    border-radius: 8px;
    border: 2px solid red;
    transition: transform 0.3s ease-in-out;
  }
  
  .bike-images-row img:hover {
    transform: scale(1.05);
  }
  
  .bike-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ✅ Space out the content vertically */
    height: 360px; /* Or 400px depending on your design */
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ffc107;
    box-shadow: 0 0 15px #ffc107;
    max-width: 500px;
  }

  .bike-description a.surron-explore-btn {
    margin-top: auto;
  }
  
  .surron-bike-section .container {
    align-items: stretch !important; /* force all children to equal height */
  }
  
  
  .bike-description h3 {
    font-family: 'DigitalClock', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: red;
  }
  
  .bike-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
  }

  .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out;
  }
  
  /* ✅ Half yellow, half black */
.color-circle[data-color="vibrantyellow"] {
    background: linear-gradient(to right, #FFD700 50%, #111 50%);
  }
  
  /* ✅ Half yellow, half white */
  .color-circle[data-color="hardcoreblack"] {
    background: linear-gradient(to right, #FFD700 50%, #ffffff 50%);
  }

  .color-circle:hover {
    transform: scale(1.2);
  }
  .bike-color-name {
  font-family: 'DigitalClock', sans-serif;
  font-size: 20px;
  margin-top: 10px;
  color: #ffc107;
}

  .flashsilver-color {
    color: #c0c0c0;
  }

  .hardcoreblack-color {
    color: #111;
  }

  .phantompurple-color {
    color: purple;
  }

  .sapphireblue-color {
    color: #0055ff;
  }
  /* ✅ Hover effect for thumbnails */
  #thumbnail-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #ffc107;
  }

  /* ✅ Hover effect for color circles */
  .color-circle:hover {
    transform: scale(1.3);
    box-shadow: 0 0 12px #ffc107;
  }

  /* ✅ Yellow-styled description box */
  .bike-description h3 {
    color: #ffc107;
    font-family: 'DigitalClock', sans-serif;
    margin-bottom: 20px;
  }

  .bike-description {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffc107;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffc107;
  }
  .main-bike-box {
    box-shadow: 0 0 15px #ffc107;
  }

  #thumbnail-container img {
    box-shadow: 0 0 10px #ffc107;
  }

/* ✅ Fixed background effect for bike section wrapper */
#bike-section-wrapper {
    background-color: black; 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 200vh; /* allows scrolling clearly */
    overflow-y: visible;
      
  }
  
  /* ✅ Container to hold both bike sections */
  .bike-content-container {
    position: sticky;
    top: 50px;
    height: calc(100vh - 160px);
  }
  
  
  /* ✅ Both bike sections positioned identically */
  .surron-bike-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  
  .active-bike-section {
    opacity: 1;
    visibility: visible;
  }
  
  .inactive-bike-section {
    opacity: 0;
    visibility: hidden;
  }
  .surron-bike-section {
    min-height: 100vh;
  }
  #bike-section-wrapper {
    min-height: 300vh; /* Enough for 3 full-screen sections */
  }
  html {
    scroll-behavior: smooth;
  }
  
  .bike-content-container {
    scroll-snap-type: y mandatory;
  }
  
  .surron-bike-section {
    scroll-snap-align: start;
  }

  .scroll-box-surron {
    max-height: 330px;
    overflow-y: auto;
    padding-right: 15px;
    color: white;
    line-height: 1.5;
  }
  
  .scroll-box-surron::-webkit-scrollbar {
    width: 6px;
  }
  
  .scroll-box-surron::-webkit-scrollbar-thumb {
    background-color: gold;
    border-radius: 4px;
  }
  
  .surron-section-title {
    color: gold;
  }

  .surron-gallery-section {
    background: url('surrongallerybackground.jpg') no-repeat center center/cover;
    background-attachment: scroll;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
  }
  
  .surron-gallery-scroll-wrapper {
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
    padding: 20px 10%;
  }
  
  /* Gallery Grid */
  .surron-gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    padding: 20px;
    justify-items: center;
    margin-left: 4%;         /* ✅ Center block */
    margin-right: 8%;
  }
  
  /* Gallery Image Uniform Sizing */
  #surronGallery .surron-gallery-image {
    width: 240px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid goldenrod;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;

  }
  

  .surron-gallery-image {
    will-change: transform;
  }
  
  
  #surronGallery .surron-gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.7);
  }
  
  /* Lightbox */
  #surronLightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  #surronLightboxImg {
    max-width: 80%;
    max-height: 80%;
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out;
  }
  
  /* Pagination Buttons */
  #surronGalleryPagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  #surronGalleryPagination button {
    background: black;
    color: white;
    border: 2px solid red;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'DigitalClock', sans-serif;
    transition: all 0.3s ease-in-out;
  }
  
  #surronGalleryPagination button:hover,
  #surronGalleryPagination button.active-page-btn {
    background: red;
    color: black;
  }
  
  /* Scrollbar styling (optional) */
  .surron-gallery-scroll-wrapper::-webkit-scrollbar {
    width: 10px;
  }
  .surron-gallery-scroll-wrapper::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 5px;
  }
  
  /* Responsive layout */
  @media (max-width: 992px) {
    .surron-gallery-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 600px) {
    .surron-gallery-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .surron-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: red;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }
  
  .surron-close:hover {
    background: darkred;
  }

  .gallery-image.blurred {
    filter: blur(8px);
    pointer-events: auto;
    transition: filter 0.4s ease-in-out;
  }

  .gallery-password-modal {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .gallery-password-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
  }

  .password-modal {
  position: fixed;
  inset: 0;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.password-modal-content {
  text-align: center;
  color: white;
  max-width: 400px;
  width: 90%;
  padding: 30px;
}

.password-modal-content h2 {
  font-size: 24px;
  margin: 15px 0 10px;
}

.password-modal-content p {
  color: #ccc;
  margin-bottom: 25px;
}

.input-group {
  display: flex;
  background-color: #2e2e2e;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #444;
}

.input-group input {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: white;
  outline: none;
  font-size: 16px;
}

.input-group input::placeholder {
  color: #aaa;
}

.input-group button {
  background: none;
  border: none;
  color: white;
  padding: 0 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.input-group button:hover {
  background-color: #444;
}

.lock-icon {
  font-size: 40px;
  color: white;
  margin-bottom: 10px;
}

.zoom-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;

  /* ✅ Prevent blocking drag interactions */
  pointer-events: none;
}

.zoom-controls button {
  pointer-events: auto;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  padding: 10px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoom-controls button:hover {
  background-color: darkred;
}

.zoom-controls img {
  width: 24px;
  height: 24px;
}

/* 📽️ Info Section Styling */
.info-section {
  background: url('infobg.jpg') no-repeat center center / cover;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
}

.info-media {
  width: 80%;
  max-width: 1000px;
  position: relative;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.info-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ▶ Toggle Button */
.video-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 20px;
  font-size: 24px;
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 40%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
  opacity: 1; /* show by default */
}

/* ⛶ Fullscreen Button Bottom Left */
.fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
  padding: 5px 10px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: white;
  border: none;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #f0f0f0;
}

#scrollToTopBtn .chevron {
  display: block;
  color: red;
  font-size: 14px;
  line-height: 1;
  margin-top: -2px;
  animation: pulse 1.5s infinite;
}

#scrollToTopBtn .chevron2 {
  opacity: 0.6;
  animation-delay: 0.2s;
}

#scrollToTopBtn .chevron3 {
  opacity: 0.3;
  animation-delay: 0.4s;
}

@keyframes pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@media only screen and (max-width: 768px) {
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

  .nav-container { 
    display: flex;
    flex-direction: row;
    align-items: center; /* Ensures everything lines up vertically */
    justify-content: space-between;
    padding: 7px 12px;
    flex-wrap: nowrap; /* Prevents search from wrapping below */
    gap: 8px;
    top: 14px;
    z-index: 999;
  }
  .nav-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px;
    width: 100%;
  }

  .nav-btn {
    font-size: 7.5px;
    padding: 4px 5px;
    white-space: nowrap;
  }

  .logo img {
    height: 20px;
    margin: 5px 0;
  }

  .search-container {
    margin-top: 3px;
    width: 10%;
    justify-content: center;
  }
  .top-header {
    background: url('camoflaugered.jpg') no-repeat center center/cover;
    padding: 10px 12px;
    position: fixed;
    width: 100%;
    height: 20px;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .social-icons {
    display: flex;
    gap: 5px;
      
  }
  .social-icons a {
    color: white;
    font-size: 10px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
      
  }
  .social-icons a:hover {
    color: red;
    transform: scale(1.1);
      
  }
  .top-header .inquiry-text {
    color: white;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 6px;
    position: relative;
    top: 10px;
  }
  /* ✅ Phone Number in Gold */
  .top-header .inquiry-text strong {
    color: gold !important;
      
  }
  /* ✅ Search Engine */
  .search-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2px 10px;
      
  }
  .search-icon {
    color: white;
    font-size: 6px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
      
  }
  .search-icon:hover {
    color: red;
    transform: scale(1.1);
      
  }
  .search-bar {
    width: 0;
    opacity: 0;
    padding: 3px 5px;
    font-size: 6px;
    border: none;
    border-radius: 10px;
    background: white;
    color: black;
    outline: none;
    transition: width 0.5s ease-in-out, opacity 0.5s ease-in-out;
      
  }
  /* ✅ Expand Search Bar */
  .search-container.active .search-bar {
    width: 30px;
    opacity: 1;
      
  }
  .search-bar:focus {
    box-shadow: 0px 0px 5px rgba(255, 0, 0, 0.5);
      
  }
  .hero {
    transform: scale(0.99);
    transform-origin: top center;
    height: auto;
    padding-left: 5%;
    height: 50vh;
    overflow: hidden;
    position: relative;
  }
  .hero-logo {
    max-width: 250px;
    width: 50%;
    height: auto;
    margin-bottom: 10px;
  }
  
  /* Animation only – fade-in and slight zoom */
  .animated-logo {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoomIn 1s ease-out forwards;
  }
  
  @keyframes fadeZoomIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  /* ✅ Hero Text */
  .hero h1 {
    font-family: 'Times', serif;
    font-size: 30px;
    font-weight: 500;
    color: red;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideIn 1.5s ease-out forwards;
    text-shadow: 
        2px 2px 0 #420a0a,
        4px 4px 0 #420a0a,
        6px 6px 0 #420a0a;
      
  }
  .hero p {
    font-family: 'AvarezoSerif', serif;
    font-size: 15px;
    color: trgb(235, 88, 88); /* or any color you prefer */
    text-shadow: 
        -1px -1px 0 rgb(93, 2, 2),
         1px -1px 0 rgb(93, 2, 2),
        -3px  3px 0 rgb(93, 2, 2),
         1px  1px 0 rgb(93, 2, 2);
      
  }
  .hero a {
    font-size: 10px;
    font-family: 'DigitalClock', sans-serif;
    font-weight: 250;
      
  }
  #video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    user-select: none;
      
  }
 
 



  /* ✅ OUR COMPANY Section */
  .company-section {
    background: white;
    padding: 30px 15px;
    text-align: left;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 40px; /* ✅ Extra space at the bottom */
      
  }
  /* ✅ OUR COMPANY Title */
  .company-text h2 {
    font-family: 'DigitalClock', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    display: inline-block;
      
  }
  /* ✅ Description Text */
  .company-text {
    width: 50%;
    font-family: 'Arial', serif;
    font-size: 10px;
    color: gray;
    font-weight: normal;
    line-height: 1.5;
      
  }
  /* ✅ Aligning Text & Video */
  .company-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    width: 100%;
      
  }
  /* ✅ YouTube Video Effects */
  .company-video iframe {
    transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
    border-radius: 10px;
  }
  
  .company-video:hover iframe {
    transform: scale(1.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
      
  }
  /* ✅ YouTube Video Animation */
  .company-video {
    width: 50%;
    text-align: right;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      
  }
  .company-video {
    display: flex;
    align-items: center; /* Aligns video to the center of the text */
    padding-top: 5px; /* Adjust value to move it down */
      
  }
  #our-company {
    padding-bottom: 5px; /* Adjust this value as needed */
    margin-bottom: 0; /* Remove unnecessary margins */
      
  }
  /* ✅ Video Appears on Scroll */
  .company-video.scrolled {
    opacity: 1;
    transform: translateY(-30px);
      
  }
  /* ✅ Buttons */
  .btn {
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 5px;
      
  }
  .btn-danger:hover {
    background-color: #a30000
      
  }
  .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    visibility: hidden;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
  /* ✅ PRODUCT PAGE SECTION - FULL WIDTH FIX */
  .product-section {
    background: url('productbackground.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Keeps background fixed */
    background-size: cover; /* Ensures full coverage */
    background-position: center;
    width: 100vw; /* Full viewport width */
    min-height: 50vh; /* Full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 0; /* Adjusted padding */
    margin: 0;
    overflow: hidden;
      
  }

  /* ✅ PRODUCT TITLE */
  .product-text h2 {
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: -10px;
    text-align: center;
      
  }

  /* ✅ PRODUCT GRID */
  .product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 15px; /* Space between products */
    max-width: 600px;
    width: 100%;
    padding: 0 10px;
  }

  /* ✅ PRODUCT ITEM STYLING */
  .product-item {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    padding: 4px;
    border-radius: 3px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
      
  }
  .product-item img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    transition: transform 0.3s ease-in-out;
      
  }
  /* ✅ TEXT STYLING */
  .product-item p {
    font-family: "Trebuchet MS", sans-serif; /* Change to your desired font */
    font-size: 9px;
    color: white;
    margin-top: 5px;
    font-weight: bold;
      
  }
  /* ✅ Styling for Product Buttons */
  .product-btn {
    background-color: rgb(172, 0, 0); /* Red button */
    color: white;
    font-size: 8px;
    padding: 5px 7px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: 5px;
    display: block;
    font-weight: bold;
    width: 100%; /* Make it same width as image */
    font-family: "Trebuchet MS", sans-serif !important;
      
  }
  /* ✅ Hover Effect */
  .product-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
      
  }
  /* ✅ Click Effect */
  .product-btn:active {
    transform: scale(0.95);
      
  }
  /* ✅ HOVER ANIMATION */
  .product-item:hover {
    transform: translateY(-10px); /* Move up slightly on hover */
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.5); /* Red glow effect */
      
  }
  .product-item:hover img {
    transform: scale(1.1); /* Zoom effect on image hover */
  }
  
  @media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
  .product-section {
    background-attachment: scroll !important;
    background-position: center center;
    background-size: cover;
  }
}



  @media screen and (max-width: 768px) {
  .new-products-section {
    transform: scale(0.8); /* Shrinks everything inside */
    transform-origin: top center;
    height: auto; /* Let it adjust height naturally */
    padding: 40px 0;
  }
  #surron3D {
    max-width: 200px;
    width: 180px;
    height: 150px;
    left: 20px;
    bottom: 30px !important;
    top: 10px !important;
  }
    /* ✅ Zoom Controls Styling */
  .zoom-controls {
    display: flex;
    gap: 10px;
    position: absolute;  /* Position relative to .model-content */
    bottom: 20px; /* Move up inside the box */
    right: 40px; /* Position inside the right side */
    left: 35%;
    transform: translateX(-50%); 
    z-index: 10; /* Ensure it's above the 3D model */
      
  }

   .zoom-controls button {
    background-color: gold;
    color: white;
    border: none;
    font-size: 9px; /* Bigger icons */
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 30%; /* Make it round */
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    opacity: 0.8;
   }
   
  /* ✅ Logo Styling */
  .new-products-logo {
    position: absolute;
    top: 10px;
    left: 10px;
      
  }
  .new-products-logo img {
    width: 50px;
    height: auto;
  }
  .explore-more-btn {
    font-size: 7px;
    padding: 5px 8px;
    bottom: 30px;
    right: 140px;
  }
   .bicycle-container {
       left: 40px;
  }
  }
  @media screen and (max-width: 768px) {
  .info-section {
  background: url('infobg.jpg') no-repeat center center / cover;
  width: 100%;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
      
  }
  .info-media {
  width: 80%;
  max-width: 1000px;
  position: relative;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
      
  }
  .info-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
      
  }
  /* ▶ Toggle Button */
  .video-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 20px;
  font-size: 24px;
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 40%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
  opacity: 1; /* show by default */
  }


  /* ⛶ Fullscreen Button Bottom Left */
  .fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
  padding: 5px 10px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999;          /* ensure it's not behind anything */
      
  }
  .new-products-section,
  .info-section {
    margin: 0 !important;
    padding-bottom: 0 !important;
  }

  .new-products-section {
    margin-bottom: 0px !important;
    padding-bottom: 40px !important;
  }

  .info-section {
    margin-top: 0 !important;
  }
}
  /* Navigation Dots */
  .dot-navigation {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 25px !important;
    position: relative;
    z-index: 10;
      
  }
  .dot-navigation .dot {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
      
  }
  .dot-navigation .dot.active {
    background-color: black;
      
  }
  .dot-navigation .dot:hover {
    background-color: #777;
      
  }
  /* ✅ Footer Section */
  .footer {
    background-color: #222; /* Dark background */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    z-index: 10;
    position: relative;
  }
  /* ✅ Footer Layout */
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
    flex-wrap: wrap;
      
  }
  /* ✅ Left Section - Logo & Social Media */
  .footer-left {
    text-align: left;
      
  }
  .footer-logo {
    width: 100px; /* Adjust logo size */
    margin-bottom: 30px;
      
  }
  .footer-social-icons a {
    color: white;
    font-size: 10px;
    margin: 0 5px;
    transition: color 0.3s ease-in-out;
      
  }
  .footer-social-icons a:hover {
    color: red;
      
  }
  /* ✅ Right Section - Contact Info */
  .footer-right {
    text-align: right;
      
  }
  .footer-right h3 {
    font-size: 10px;
    font-weight: bold;
      
  }
  .footer-right p {
    font-size: 7px;
    margin: 10px 0;
      
  }
  /* ✅ Bottom Copyright */
  .footer-bottom {
    background-color: black;
    padding: 10px 0;
    margin-top: 20px;
      
  }
  .footer-bottom p {
    font-size: 7px;
    margin: 0;
    color: white;
      
  }   
  /* ✅ About Us Page Styling */
  .aboutus-section {
    background: url('aboutusbg.jpg') no-repeat center center/cover;
    padding: 0px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
      
  }
  /* ✅ Container for About Us */
  .aboutus-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 350px;
    width: 100%;
    gap: 10px;
    margin-top: 25px;
      
  }
  /* ✅ About Us Image */
  .aboutus-image img {
    width: 100px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Bigger & deeper shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      
  }
  .aboutus-text {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);  /* Soft shadow */
    backdrop-filter: blur(3px); /* Optional: gives a glassy feel */
    max-width: 250px;
      
  }
  .aboutus-text h2 {
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
      
  }
  .aboutus-text p {
    font-size: 10px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
      
  }
  /* ✅ Vision & Mission Section */
  .vision-mission-section {
    transform: scale(0.8);
    transform-origin: top center;
    padding: 60px 5%; /* Reduce padding too for smaller space */
    min-height: 50vh; /* Let it shrink naturally */
      
  }

  /* ✅ Vision/Mission Box */
  .vision-mission-container {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 200px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    animation: fadeIn 1.2s ease-in-out;
    right: 5%;
    top: 55vh !important;  /* Moves it UP (Decrease value to move higher) */
    transform: translateY(0%);
    backdrop-filter: blur(8px);
      
  }
  /* ✅ Title Styling */
  .vision-mission-content h2 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
      
  }
  /* ✅ Description Styling */
  .vision-mission-content p {
    font-size: 8px;
    margin-top: 10px;
    line-height: 1.5;
      
  }
  /* ✅ Buttons */
  #prev-btn, #next-btn {
    background: none;
    color: red;
    border: none;
    font-size: 20px; /* Bigger size */
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;

    /* 3D Text Effect */
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7), /* Bottom-right shadow */
                 -2px -2px 3px rgba(255, 255, 255, 0.4); /* Top-left highlight */
      
  }
  #prev-btn:hover, #next-btn:hover {
    transform: scale(1.2); /* Slight hover effect */
    color: #ff3c00; /* Change color to red on hover */
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 1), 
                 0px 0px 15px rgba(255, 255, 255, 0.8), 
                 0px 0px 25px rgba(255, 255, 255, 0.6);
      
  }
  /* ✅ Fade In Animation */
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
      
  }
  .vision-mission-container {
    position: absolute;
    top: 80%;  /* Adjust as needed */
    right: 3%; /* Adjust as needed */
      
  }
  #vision-mission-title {
    color: red; /* Change to your desired color */
    font-weight: bold;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 1), 
                 0px 0px 15px rgba(255, 255, 255, 0.8), 
                 0px 0px 25px rgba(255, 255, 255, 0.6);
                 /* Balanced 3D depth */
                 letter-spacing: 1.5px;
                 text-transform: uppercase;
      
  }
  /* ✅ Center the OUR PARTNERS Section */
  /* OUR PARTNERS SECTION */
  .partners-section {
    background: white;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 70vh;
      
  }
  .partners-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: -50px !important;
    perspective: 1000px;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
      
  }
  .slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    position: relative;
    height: 300px;
    margin-bottom: 100px;

    /* ✅ This visually creates equal left and right space */
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
      
  }
  .slider-wrapper::before {
    content: "";
    display: block;
    width: 60px; /* ✅ left-side spacer */
    flex-shrink: 0;
      
  }
  .slider-item {
    width: 280px;
    height: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: absolute;
    transform: translateX(-50%);
    opacity: 0.5;
    left: 35%;
      
  }
  .slider-item.active {
    transform: translateX(-50%) scale(1.2) translateZ(50px);
    opacity: 1;
    z-index: 3;
    left: 50%;


    /* 🔥 Red glow */
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7), 
                0 0 30px rgba(255, 0, 0, 0.5);
      
  }
  /* Images inside the cards */
  .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
      
  }
  /* Active Slide */
  .slider-item.active {
    transform: translateX(-50%) scale(1.2) translateZ(50px); /* Ensure perfect centering */
    opacity: 1;
    z-index: 3;
    left: 50%; /* Move it to the center */
      
  }
  /* Left & Right Slides */
  .slider-item.prev {
    transform: translateX(-500px) scale(0.9) rotateY(10deg);
    opacity: 0.8;
    z-index: 2;

    /* 🖤 Black glow for left slide */
    box-shadow: 0 0 20px rgba(7, 7, 7, 0.6),
                0 0 30px rgba(114, 112, 112, 0.4);
      
  }
  .slider-item.next {
    transform: translateX(220px) scale(0.9) rotateY(-10deg);
    opacity: 0.8;
    z-index: 2;

    /* 🖤 Black glow for left slide */
    box-shadow: 0 0 20px rgba(7, 7, 7, 0.6),
                0 0 30px rgba(114, 112, 112, 0.4);
      
  }
  /* Hide Other Slides */
  .slider-item.hidden {
    transform: translateX(-200px) scale(0.7);
    opacity: 0;
    z-index: 1;
      
  }
  /* ✅ OUR LOCATION Section Styling */
  .location-section {
    text-align: center;
    padding: 50px 20px;
      
  }
  .section-title {
    font-size: 22px; /* or 20px as you prefer */
  }
  .location-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ Ensures a 2x2 format */
    gap: 40px; /* Space between items */
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
      
  }
  /* Ensure images are uniform */
  .location-box img {
    width: 65%;
    height: auto;
    border-radius: 0px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
      
  }
  /* Center text */
  .location-info {
    text-align: center;
    margin-top: 15px;
      
  }
  /* Location Title Styling */
  .location-info h3 {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
      
  }
  /* Location Text */
  .location-info p {
    font-size: 8px;
    color: #555;
    line-height: 1.2;
      
  }
  /* ✅ Image Row Styling - Full Width */
  .image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Adjust spacing between images */
    padding: 0px 0 0px;
    width: 100%; /* Full width */
      
  }
  .image-row img {
    flex: 1; /* Makes all images grow evenly */
    height: 120px; /* Increase height for better visibility */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 0px; /* Optional: rounded corners */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 20%; /* Ensures five images fit in one row */
      
  }
  
  .contact-section {
    padding: 10px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130vh;
      
  }

  
  .contact-container {
    display: flex;
    flex-direction: column; /* Optional for mobile stacking */
    gap: 25px;
    width: 80%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    margin: 20px auto;
      
  }

  .contact-info {
    flex: 1;
    text-align: center;
    color: black; /* ✅ Ensure text is visible */}
    
    .contact-info h2 {
    font-size: 15px;
    font-weight: bold;
    color: red; /* ✅ Highlight title in red */
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
        
    }
    .contact-title {
    font-size: 14px; /* Adjust size as needed */
    font-weight: bold;
    color: red !important; /* Keep "Contact" in black */
        
    }
    .contact-title .red-text {
    color: black !important; /* "Us" in red */
        
    }
    .contact-item {
    margin-bottom: 10px;
        
    }
    .contact-item i {
    font-size: 12px;
    color: rgb(220, 6, 6);
        
    }
    .contact-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-top: 5px;
    color: black;
    font-family: 'DigitalClock', sans-serif;
    display: inline-block;
        
    }
    .contact-item p {
    font-size: 8px;
    color: black; /* ✅ Ensure text is readable */
        
    }
    .contact-form {
    flex: 1;
        
    }
    .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 5px;
        
    }
    .form-row {
    display: flex;
    gap: 5px;
        
    }
    .form-row input {
    flex: 1;
        
    }

    input, textarea {
    width: 100%;
    padding: 6px 10px;         /* Smaller padding */
    font-size: 12px;           /* Smaller text */
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f2f2f2;
        
    }
    textarea {
    height: 80px;
        
    }
    .captcha {
    display: flex;
    align-items: center;
    gap: 5px;
        
    }
    .captcha label {
    font-weight: bold;
        
    }
    .submit-btn {
    background: rgb(220, 6, 6);
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
        
    }
    .submit-btn:hover {
    background: rgba(70, 5, 5, 0.818);
        
    }
  
    .captcha-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
        
    }
    .captcha-container img {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
        
    }
    .captcha-container input {
    width: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
        
    }
    .captcha-container button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 8px;
        
    }
    #captcha-display {
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    background: white;
    color: black;
    border: 2px solid red;
    padding: 10px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    margin-left: 10px;
        
    }
    .contactus-page {
    background: url('contactusbackground.jpg') no-repeat center center fixed;
    background-size: cover;
    margin-top: 20px; /* Adjust based on your navbar height */
    padding-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
        
    }
    .contactus-page {
    height: 100vh; /* ✅ gives space to see footer */
        
    }
    .map-container {
    width: 100%;
    max-width: 600px; /* Adjusted smaller width */
    margin: 25px auto; /* Center it */
    text-align: center;
        
    }
    .map-container iframe {
    width: 100%;
    height: 120px; /* Adjusted height to fit */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
        
    }
@media screen and (max-width: 768px) {
  /* Shrink category buttons */
  .nitecore-btn {
    font-size: 10px;
    padding: 5px 8px;
    min-width: unset;
    white-space: nowrap;
  }

  .nitecore-category-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 10px 0;
  }

  /* Adjust content to take full width */
  .nitecore-container {
    flex-direction: column;
    padding: 10px;
  }

  .nitecore-sidebar {
    display: none;
  }

  .nitecore-content {
    width: 100%;
  }

  /* Force 2 products per row */
  .nitecore-category-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  width: 95%;
  margin: 0 auto;
  gap: 10px;
  justify-items: stretch;
  align-items: stretch;
      
  }

  .product-card {
  width: 100% !important; /* FULL width of grid cell */
  height: 250px; /* Let content define height */
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
      
  }


  .product-card img {
    max-height: 120px;
  }

  .product-card .product-name {
    font-size: 13px;
    min-height: auto;
  }

  .product-card .product-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Shrink popup for mobile */
  .nitecore-popup-content {
    flex-direction: column;
    width: 95%;
    height: 90vh;
  }

  .nitecore-popup-left,
  .nitecore-popup-right {
    width: 100%;
    padding: 10px;
  }

  .nitecore-popup-left img {
    width: 80%;
  }

  .product-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  on-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 5px 0px;
    text-align: center;
    border-radius: 0px;
  }
  .surron-logo {
    height: 40px;
    width: auto;
    margin-bottom: 5px;
  }
  
  
  /* Carousel */
  #surronCarousel {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

  
  .carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .carousel-fixed-btn {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
  }
  
  .surron-explore-btn {
    background-color: #ffd700;
    color: black;
    font-size: 18px;
    margin-top: 70%;
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 20px;
    font-family: 'DigitalClock', sans-serif;
    transition: background 0.3s ease-in-out;
  }
  
  .surron-explore-btn:hover {
    background-color: darkred;
    color: white;
  }
  
  @media screen and (max-width: 768px) {
  /* Shrink carousel height */
  #surronCarousel {
    height: 30vh;
  }

  /* Smaller logo */
  .surron-logo-wrapper {
    padding: 5px 0;
  }

  .surron-logo {
    height: 20px;
    margin-bottom: 0;
  }

  /* Adjust Explore More button position */
  .carousel-fixed-btn {
    top: 55%; /* Moves button slightly higher */
    transform: translate(-50%, -50%);
  }

  .surron-explore-btn {
    font-size: 10px;
    padding: 4px 14px;
  }

  /* Ensure prev/next arrows show above everything */
  .carousel-control-prev,
  .carousel-control-next {
    z-index: 11;
  }

  .bike-section-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .bike-color-set h5 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .color-circle {
    width: 20px;
    height: 20px;
  }

  .bike-images-row img {
    width: 47%;
  }

  .bike-description {
    padding: 15px;
    height: auto;
    font-size: 14px;
    box-shadow: 0 0 10px #ffc107;
  }

  .bike-description h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .bike-description p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .bike-color-name {
    font-size: 14px;
    margin-top: 5px;
  }

  .surron-explore-btn {
    font-size: 12px;
    padding: 5px 15px;
  }

  .scroll-box-surron {
    max-height: 100px;
    font-size: 13px;
    padding-right: 10px;
  }

  .bike-flex-container {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .bike-gallery, .bike-description {
    max-width: 90%;
  }

  /* Shrink bike image wrapper */
  .bike-gallery {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .bike-images-row img {
    width: 45%;
  }

  /* Shrink main image */
  .bike-gallery img {
    width: 80%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Fix section stacking issue */
  #bike-section-wrapper {
    min-height: auto;
    height: auto;
    background-attachment: scroll;
  }

  .surron-bike-section {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    padding-bottom: 0px;
  }

  .bike-content-container {
    position: relative;
    height: auto;
  }
  .bike-images-row {
    gap: 6px;
    justify-content: center;
  }
  @media screen and (max-width: 768px) {
  /* Target main images only */
  #main-bike-img,
  #main-bike-img-2,
  #main-bike-img-3{
    width: 240px !important;
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Optional: Tweak surrounding layout spacing */
  .bike-flex-container {
    gap: 20px;
  }

  .bike-gallery, .bike-description {
    max-width: 95%;
  }

  /* Optional: reduce thumbnail size */
  #thumbnail-container img,
  #thumbnail-container-2 img,
  #thumbnail-container-2 img{
    width: 40px;
    height: auto;
  }
  .surron-bike-section {
  margin: 0;
  padding-top: 10px !important;     /* Reduce space above each bike section */
  padding-bottom: 10px !important;  /* Reduce space below each bike section */
      
  }
  #bike-1,
  #bike-2,
  #bike-3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
      
  }


  







}






