 /* --- VARIABLES --- */
 :root {
     --primary: #bf0409;
     /* Logo Red */
     --primary-dark: #b11116;
     --black: #0a0a0a;
     --dark-gray: #1a1a1a;
     --white: #ffffff;
     --light-bg: #f8f9fa;
     --border: rgba(0, 0, 0, 0.08);

     --heading-font: 'Space Grotesk', sans-serif;
     --body-font: 'Plus Jakarta Sans', sans-serif;

     --shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
     --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
     --c-red: #bf0409;
     --c-red-hover: #a50000;
     --c-black: #111111;
     --c-white: #ffffff;
     --c-gray-light: #f4f5f7;
     --c-gray-text: #555555;
     --c-border: #e0e0e0;
     --white: #ffffff;
     --f-heading: 'Montserrat', sans-serif;
     --f-body: 'Open Sans', sans-serif;
     --heading-font: 'Space Grotesk', sans-serif;
     --body-font: 'Plus Jakarta Sans', sans-serif;
     --black: #0a0a0a;
     --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
     --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
     --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);

     --transition: all 0.3s ease;
     --gunmetal: #1a1a1a;
     --white: #ffffff;
     --soft-gray: #f8f8f8;
     --font-head: 'Space Grotesk', sans-serif;
     --font-body: 'Plus Jakarta Sans', sans-serif;
     --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
 }

 /* --- RESET & GLOBAL --- */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: var(--f-body);
     color: var(--c-black);
     background-color: var(--c-white);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--f-heading);
     /* font-weight: 600; */
     font-weight: 600;
     line-height: 1.2;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 24px;
 }

 .text-red {
     color: var(--c-red);
 }

 /* Buttons */
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 14px 32px;
     font-family: var(--f-heading);
     font-weight: 600;
     font-size: 0.95rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 4px;
     cursor: pointer;
     transition: var(--transition);
     border: 2px solid transparent;
 }

 .btn-primary {
     background-color: var(--c-red);
     color: var(--c-white);
 }

 .btn-primary:hover {
     background-color: var(--c-black);
     color: var(--c-white);
 }

 .btn-outline {
     background-color: transparent;
     color: var(--c-black);
     border-color: var(--c-black);
 }

 .btn-outline:hover {
     background-color: var(--c-black);
     color: var(--c-white);
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 16px;
     position: relative;
     display: inline-block;
     color: var(--c-black);
 }

 .section-header h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background-color: var(--c-red);
     border-radius: 2px;
 }

 .section-header p {
     color: var(--c-gray-text);
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .section-subtitle {
     color: #000;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 10px;
     font-size: 0.95rem;
 }

 /* --- ANIMATIONS --- */
 .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
     margin-top: 10px;
     text-align: center;
     margin-bottom: 70px;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 /* --- TOP HEADER --- */
 .top-header {
     background-color: #bf0409;
     color: #dddddd;
     padding: 10px 0;
     font-size: 0.85rem;
     font-weight: 500;
     border-bottom: 1px solid #222;
 }

 .top-header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .top-left {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .top-left i {
     color: #fff;
     font-size: 1rem;
 }

 .top-left a {
     color: var(--c-white);
     font-weight: 700;
     text-decoration: underline;
     transition: var(--transition);
 }

 .top-left a:hover {
     color: #fff;
 }

 .top-right {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .top-contact-item {
     display: flex;
     align-items: center;
     gap: 6px;
     transition: var(--transition);
 }

 .top-contact-item i {
     color: #fff;
     font-size: 0.9rem;
 }

 .top-contact-item:hover {
     color: var(--c-white);
 }

 /* --- NAVBAR --- */
 /* .navbar {
     position: sticky;
     top: 0;
     z-index: 1000;
     background-color: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
 } */

 .navbar {
     position: absolute;
     width: 100%;
     top: 41px;
     z-index: 1000;
     background-color: white;
     /* backdrop-filter: blur(10px); */
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
 }

 .nav-container {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 100px;
 }

 .brand-logo {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2px;
     /* background: #fff; */
     z-index: 10;
     top: 5px;

     /* padding: 10px; */
     border-bottom-left-radius: 100px;
     border-bottom-right-radius: 100px;

 }





 .brand-text-1 {
     font-size: 1.4rem;
     font-weight: 600;
     color: var(--c-black);
     letter-spacing: -0.5px;
     line-height: 1;
 }

 .brand-text-2 {
     font-size: 0.9rem;
     font-weight: 600;
     background: var(--c-red);
     color: var(--c-white);
     padding: 2px 6px;
     border-radius: 3px;
     letter-spacing: 1px;
     line-height: 1;
 }

 .nav-menu {
     display: flex;
     width: 100%;
     justify-content: space-between;
 }

 .nav-links {
     display: flex;
     gap: 24px;
     align-items: center;
     flex: 1;
     list-style: none;
 }

 .nav-left {
     justify-content: flex-start;
     padding-right: 120px;
 }

 .nav-right {
     justify-content: flex-end;
     padding-left: 120px;
 }

 .nav-links>li>a {
     font-family: var(--f-heading);
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--c-black);
     position: relative;
     padding: 10px 0;
     display: block;
 }

 .nav-links>li>a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--c-red);
     transition: var(--transition);
 }

 .nav-links>li:hover>a::after,
 .nav-links>li>a.active::after {
     width: 100%;
 }

 .menu-item-has-children {
     position: relative;
 }

 .menu-item-has-children>a::before {
     content: '\f078';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     font-size: 0.7rem;
     position: absolute;
     right: -14px;
     top: 50%;
     transform: translateY(-50%);
     transition: transform 0.3s ease;
     color: var(--c-red);
 }

 .menu-item-has-children:hover>a::before {
     transform: translateY(-50%) rotate(180deg);
 }

 .menu-item-has-children>a {
     margin-right: 14px;
 }

 .sub-menu {
     position: absolute;
     top: 100%;
     left: 0;
     min-width: 250px;
     background-color: var(--c-white);
     box-shadow: var(--shadow-md);
     border-top: 3px solid var(--c-red);
     border-radius: 0 0 4px 4px;
     padding: 10px 0;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     transition: all 0.3s ease;
     z-index: 100;
     display: flex;
     flex-direction: column;
     text-align: left;
 }

 .nav-right .sub-menu {
     left: auto;
     right: 0;
 }

 .menu-item-has-children:hover .sub-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .sub-menu li {
     width: 100%;
 }

 .sub-menu li a {
     padding: 10px 20px;
     display: block;
     font-family: var(--f-body);
     font-size: 0.9rem;
     font-weight: 500;
     color: var(--c-gray-text);
     transition: var(--transition);
 }

 .sub-menu li a:hover {
     background-color: var(--c-gray-light);
     color: var(--c-red);
     padding-left: 25px;
 }

 .mobile-menu-btn {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--c-black);
 }

 /* --- HERO SECTION --- */
 /* .hero {
     padding: 80px 0 120px;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     position: relative;
     overflow: hidden;
     min-height: 85vh;
     display: flex;
     align-items: center;
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .hero-content {
     max-width: 600px;
 }

 .hero-subtitle {
     display: inline-block;
     background: rgba(211, 0, 0, 0.1);
     color: var(--c-red);
     padding: 6px 16px;
     border-radius: 30px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-bottom: 20px;
     font-size: 0.85rem;
 }

 .hero h1 {
     font-size: 3.8rem;
     margin-bottom: 24px;
     color: var(--c-black);
     line-height: 1.15;
 }

 .hero p {
     font-size: 1.15rem;
     color: var(--c-gray-text);
     margin-bottom: 40px;
 }

 .hero-btns {
     display: flex;
     gap: 16px;
 }

 .hero-image-wrapper {
     position: relative;
     width: 100%;
 }

 .hero-image-wrapper::before {
     content: '';
     position: absolute;
     top: -20px;
     right: -20px;
     width: 100%;
     height: 100%;
     border: 4px solid var(--c-red);
     border-radius: 12px;
     z-index: 0;
 }

 .hero-img {
     width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: var(--shadow-lg);
     display: block;
     object-fit: cover;
     position: relative;
     z-index: 1;
 }

 .hero-badge {
     position: absolute;
     bottom: -30px;
     left: -30px;
     background: var(--c-white);
     padding: 20px 30px;
     border-radius: 8px;
     box-shadow: var(--shadow-lg);
     display: flex;
     align-items: center;
     gap: 15px;
     z-index: 3;
     border-left: 5px solid var(--c-red);
     animation: float 6s ease-in-out infinite;
 } */

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* 
 .hero-badge i {
     font-size: 2rem;
     color: var(--c-red);
 }

 .hero-badge-text h4 {
     font-size: 1.1rem;
     margin-bottom: 2px;
 }

 .hero-badge-text p {
     font-size: 0.85rem;
     color: var(--c-gray-text);
     font-family: var(--f-body);
     font-weight: 600;
     margin: 0;
     line-height: 1;
 } */

 /* --- ABOUT US SECTION --- */
 .about-us-section {
     padding: 100px 0;
     background-color: var(--c-white);
 }

 .about-us-grid {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-us-content h2 {
     font-size: 2.8rem;
     margin-bottom: 30px;
     line-height: 1.2;
     color: var(--c-black);
     letter-spacing: 1px;
 }

 .about-us-content p {
     color: var(--c-gray-text);
     font-size: 1.05rem;
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .about-us-content p strong {
     color: var(--c-black);
     font-weight: 700;
 }

 .about-us-image {
     height: 100%;
 }

 .about-img {
     width: 100%;
     height: 100%;
     min-height: 500px;
     object-fit: cover;
     border-radius: 4px;
     box-shadow: var(--shadow-md);
 }

 /* --- DETAILED "WHY CHOOSE US" SECTION --- */
 .why-choose-section {
     padding: 100px 0;

     overflow: hidden;
 }

 .why-choose-grid {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 60px;
     align-items: center;
 }

 .why-image-side {
     position: relative;
     padding: 20px;
 }

 .image-accent {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--c-gray-light);
     border: 2px dashed #ccc;
     border-radius: 8px;
     z-index: 0;
 }

 .why-img-2 {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 100%;
     min-height: 600px;
     border-radius: 8px;
     box-shadow: var(--shadow-md);
     object-fit: cover;
     border-bottom: 6px solid var(--c-red);
 }

 .why-content-side {
     padding-right: 20px;
 }

 .why-content-side h2 {
     font-size: 2.8rem;
     margin-bottom: 30px;
     line-height: 1.2;
 }

 .custom-check-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .custom-check-list li {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 12px;
     padding: 12px 18px;
     border-radius: 6px;
     background: var(--c-white);
     border: 1px solid var(--c-border);
     transition: var(--transition);
     border-left: 4px solid transparent;
 }

 .custom-check-list li:hover {
     transform: translateX(8px);
     box-shadow: var(--shadow-sm);
     border-color: var(--c-border);
     border-left-color: var(--c-red);
     background: var(--c-gray-light);
 }

 .custom-check-list i {
     color: var(--c-red);
     font-size: 1.1rem;
     margin-top: 4px;
 }

 .custom-check-list span {
     color: var(--c-gray-text);
     font-size: 1.05rem;
     line-height: 1.5;
 }

 .custom-check-list strong {
     color: var(--c-black);
     font-weight: 700;
 }

 /* --- PRODUCT GALLERY SECTION --- */
 .product-gallery-section {
     padding: 100px 0;
     background-color: var(--c-gray-light);
 }

 .product-gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .gallery-card {
     background: var(--c-black);
     border-radius: 4px;
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
     cursor: pointer;
     display: flex;
     flex-direction: column;
 }

 .gallery-card:hover {
     box-shadow: var(--shadow-lg);
     transform: translateY(-5px);
 }

 .gallery-img-wrap {
     width: 100%;
     height: 380px;
     overflow: hidden;
     position: relative;
 }

 .gallery-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease, opacity 0.3s ease;
 }

 .gallery-card:hover .gallery-img-wrap img {
     transform: scale(1.08);
     opacity: 0.85;
 }

 .gallery-title {
     background-color: var(--c-black);
     color: var(--c-white);
     padding: 16px 10px;
     text-align: center;
     font-family: var(--f-heading);
     font-weight: 600;
     font-size: 0.95rem;
     position: relative;
     z-index: 2;
     transition: var(--transition);
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .gallery-card:hover .gallery-title {
     background-color: var(--c-red);
     border-color: var(--c-red);
 }

 .gallery-btn-wrapper {
     text-align: center;
     margin-top: 50px;
 }

 /* --- UNIQUE HIGHLIGHT: Trackless Doors --- */
 .trackless-section {
     padding: 100px 0;
     /* background-color: var(--c-black); */
     background-image: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../image/bg/1.webp);
     background-position: center;
     background-size: cover;

     color: var(--c-white);
     position: relative;
 }

 .trackless-grid {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 60px;
     align-items: center;
 }

 .trackless-content h2 {
     font-size: 3rem;
     margin-bottom: 20px;
     line-height: 1.1;
 }

 .trackless-content p {
     color: #cccccc;
     font-size: 1.1rem;
     margin-bottom: 30px;
 }

 .feature-list {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .feature-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
 }

 .feature-item i {
     color: var(--c-red);
     font-size: 1.2rem;
     margin-top: 4px;
 }

 .feature-item span {
     font-weight: 500;
     font-family: var(--f-heading);
 }

 .trackless-visual {
     height: 600px;
     background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
     border-radius: 8px;
     border: 1px solid #333;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .door-panel {
     width: 60%;
     height: 80%;
     background-color: rgba(255, 255, 255, 0.05);
     border: 2px solid var(--c-red);
     position: absolute;
     right: 10%;
     display: flex;
     flex-direction: column;
     justify-content: space-evenly;
     padding: 20px;
 }

 .door-pleat {
     height: 1px;
     background-color: rgba(255, 255, 255, 0.1);
     width: 100%;
 }

 /* --- TESTIMONIAL SECTION --- */
 .testimonial-section {
     padding: 100px 0;
     background-color: var(--c-white);
     overflow: hidden;
 }

 .testimonial-card {
     background-color: var(--c-white);
     padding: 40px 30px;
     border-radius: 8px;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--c-border);
     position: relative;
     height: 100%;
     display: flex;
     flex-direction: column;
     transition: var(--transition);
 }

 .testimonial-card:hover {
     box-shadow: var(--shadow-lg);
     border-color: var(--c-red);
     transform: translateY(-5px);
 }

 .quote-icon {
     position: absolute;
     top: 25px;
     right: 30px;
     font-size: 3rem;
     color: rgba(211, 0, 0, 0.1);
 }

 .stars {
     margin-bottom: 15px;
     color: #ffb400;
     font-size: 0.9rem;
 }

 .review-text {
     font-style: italic;
     color: var(--c-gray-text);
     margin-bottom: 30px;
     margin-top: 10px;
     font-size: 1.05rem;
     flex-grow: 1;
     min-height: 110px;
 }

 .client-info {
     display: flex;
     align-items: center;
     gap: 15px;
     border-top: 1px solid var(--c-gray-light);
     padding-top: 20px;
 }

 .client-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--c-red);
     color: var(--c-white);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--f-heading);
     font-weight: bold;
     font-size: 1.2rem;
 }

 .client-details h4 {
     font-size: 1.1rem;
     margin-bottom: 2px;
 }

 .client-details p {
     font-size: 0.85rem;
     color: #888;
     margin: 0;
 }

 .swiper-pagination {
     position: relative;
     margin-top: 40px;
 }

 .swiper-pagination-bullet {
     width: 10px;
     height: 10px;
     background: #ccc;
     opacity: 1;
     transition: var(--transition);
 }

 .swiper-pagination-bullet-active {
     width: 25px;
     border-radius: 5px;
     background: var(--c-red);
 }


 /* --- CONTACT US SECTION --- */
 .contact-cta-section {
     padding: 100px 0;
     background-color: #fdfdfd;
     overflow: hidden;
     border-top: 1px solid var(--c-border);
 }

 .contact-cta-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0px;
     align-items: center;
 }

 .contact-mascot-wrapper {
     position: relative;
     text-align: center;
 }

 .contact-mascot-wrapper::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 450px;
     height: 450px;
     background: radial-gradient(circle, rgba(211, 0, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
     z-index: 0;
     border-radius: 50%;
 }

 .mascot-img {
     max-width: 100%;
     height: auto;
     position: relative;
     z-index: 1;
     animation: floatMascot 4s ease-in-out infinite;
     max-height: 100%;
     object-fit: contain;
 }

 @keyframes floatMascot {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .contact-form-content {
     background: var(--c-white);
     padding: 40px;
     border-radius: 12px;
     box-shadow: var(--shadow-lg);
     position: relative;
 }

 .contact-form-content::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--c-red);
     border-radius: 12px 12px 0 0;
 }

 .contact-form-content .subtitle {
     color: var(--c-red);
     font-weight: 700;
     display: block;
     margin-bottom: 10px;
     font-size: 1rem;
 }

 .contact-form-content h2 {
     font-size: 2.8rem;
     line-height: 1.2;
     margin-bottom: 5px;
     color: var(--c-black);
 }

 .contact-form-content h3 {
     font-size: 2.2rem;
     color: #777;
     font-weight: 400;
     margin-bottom: 35px;
     font-family: var(--f-body);
 }

 /* .custom-form {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 } */

 .custom-form .full-width {
     grid-column: span 2;
 }

 .form-control {
     width: 100%;
     padding: 16px 20px;
     border: 1px solid #333;
     border-radius: 4px;
     font-family: var(--f-body);
     font-size: 0.95rem;
     color: var(--c-black);
     transition: var(--transition);
     background-color: #fafafa;
     outline: none;
 }

 .form-control::placeholder {
     color: #aaa;
 }

 .form-control:focus {
     border-color: var(--c-red);
     background-color: var(--c-white);
     box-shadow: 0 0 0 3px rgba(211, 0, 0, 0.1);
 }

 select.form-control {
     appearance: none;
     background-image: url('data:image/svg+xml;utf8,<svg fill="%23555" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
     background-repeat: no-repeat;
     background-position-x: 95%;
     background-position-y: center;
     color: #777;
 }

 select.form-control:focus {
     color: var(--c-black);
 }

 textarea.form-control {
     resize: vertical;
     min-height: 150px;
 }

 .submit-btn-wrapper {
     grid-column: span 2;
     margin-top: 10px;
 }


 /* Footer */
 footer {
     background-color: var(--c-black);
     color: #888;
     padding: 80px 0 30px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
     gap: 40px;
     margin-bottom: 60px;
 }

 .footer-col h5 {
     color: var(--c-white);
     font-size: 1.2rem;
     margin-bottom: 24px;
     position: relative;
 }

 .footer-col h5::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -8px;
     width: 30px;
     height: 2px;
     background: var(--c-red);
 }

 .footer-logo {
     margin-bottom: 20px;
     align-items: flex-start;
 }

 .footer-logo .brand-text-1 {
     color: var(--c-white);
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a:hover {
     color: var(--c-red);
     padding-left: 5px;
 }

 .contact-info li {
     margin-bottom: 16px;
     display: flex;
     gap: 12px;
     align-items: flex-start;
 }

 .contact-info i {
     color: var(--c-red);
     margin-top: 5px;
 }

 .footer-bottom {
     border-top: 1px solid #222;
     padding-top: 30px;
     text-align: center;
     font-size: 0.9rem;
 }

 /* --- RESPONSIVE MOBILE ADJUSTMENTS --- */
 @media (max-width: 992px) {
     .top-header-container {
         flex-direction: column;
         gap: 10px;
     }

     .top-right {
         justify-content: center;
         flex-wrap: wrap;
     }

     .hero-grid {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 40px;
     }

     .hero-content {
         margin: 0 auto;
     }

     .hero-btns {
         justify-content: center;
     }

     .hero-image-wrapper {
         max-width: 80%;
         margin: 0 auto;
         margin-top: 30px;
     }

     .hero-badge {
         left: 50%;
         transform: translateX(-50%);
         bottom: -20px;
         width: max-content;
         animation: none;
     }

     .about-us-grid {
         grid-template-columns: 1fr;
     }

     .about-us-content {
         padding-right: 0;
     }

     .about-img {
         min-height: 400px;
     }

     .why-choose-grid {
         grid-template-columns: 1fr;
     }

     .why-content-side {
         padding-right: 0;
         order: -1;
     }

     .why-content-side h2 {
         font-size: 2.2rem;
     }

     .why-img-2 {
         min-height: auto;
         height: 600px;
     }

     /* Gallery Responsive */
     .product-gallery-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .trackless-grid {
         grid-template-columns: 1fr;
         padding-top: 20px;
     }

     .contact-cta-grid {
         grid-template-columns: 1fr;
     }

     .contact-mascot-wrapper {
         display: none;
     }

     .contact-form-content {
         padding: 30px 20px;
     }

     .contact-form-content h2 {
         font-size: 2.2rem;
     }

     .contact-form-content h3 {
         font-size: 1.6rem;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .nav-container {
         height: 80px;
         justify-content: flex-end;
     }

     .brand-logo {
         position: relative;
         left: 0;
         transform: none;
         flex-direction: row;
         margin-right: auto;
     }

     .brand-icon {
         font-size: 2rem;
     }

     .nav-menu {
         position: fixed;
         top: 80px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 80px);
         background-color: var(--c-white);
         flex-direction: column;
         justify-content: flex-start;
         padding-top: 20px;
         transition: var(--transition);
         align-items: flex-start;
         overflow-y: auto;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-links {
         flex-direction: column;
         gap: 0;
         flex: none;
         width: 100%;
         padding: 0 20px;
         align-items: flex-start;
     }

     .nav-links>li {
         width: 100%;
         border-bottom: 1px solid var(--c-border);
     }

     .nav-links>li>a {
         padding: 15px 0;
         width: 100%;
     }

     .nav-links>li>a::after {
         display: none;
     }

     .sub-menu {
         position: relative;
         top: 0;
         min-width: 100%;
         box-shadow: none;
         border-top: none;
         opacity: 1;
         visibility: visible;
         transform: none;
         display: none;
         padding: 0 0 10px 15px;
         border-left: 2px solid var(--c-red);
         margin-left: 10px;
     }

     .menu-item-has-children:hover .sub-menu {
         display: flex;
     }

     .mobile-menu-btn {
         display: block;
         z-index: 11;
         margin-left: 20px;
     }
 }

 @media (max-width: 768px) {


     .hero h1 {
         font-size: 2.5rem;
     }

     .hero-image-wrapper {
         max-width: 95%;
     }

     .hero-image-wrapper::before {
         top: -10px;
         right: -10px;
         border-width: 3px;
     }

     .hero-badge {
         padding: 15px 20px;
     }

     /* Gallery Responsive Mobile */
     .product-gallery-grid {
         grid-template-columns: 1fr;
     }

     .gallery-img-wrap {
         height: 300px;
     }

     .custom-form {
         grid-template-columns: 1fr;
     }

     .custom-form .full-width,
     .submit-btn-wrapper {
         grid-column: 1;
     }

     .feature-list {
         grid-template-columns: 1fr;
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }
 }

 .main-logo {
     max-width: 150px;

 }


 /* --- SWIPER 1: HERO SLIDER --- */
 .hero {
     height: 85vh;
     min-height: 700px;
     position: relative;
 }

 .hero h1 {
     font-family: var(--heading-font);
 }

 .hero-swiper {
     width: 100%;
     height: 100%;
 }

 .hero-slide {
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 .hero-slide img {
     position: absolute;
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: brightness(0.8);
     transform: scale(1.1);
     transition: transform 8s linear;
 }

 .swiper-slide-active img {
     transform: scale(1);
 }

 .hero-content-wrap {
     position: relative;
     z-index: 10;
     color: white;
     max-width: 850px;
 }

 .hero-content-wrap h1 {
     font-size: 4.5rem;
     color: white;
     line-height: 0.9;
     margin-bottom: 30px;
 }

 .hero-content-wrap h1 span {
     color: var(--primary);
     -webkit-text-stroke: 1px white;
     color: transparent;
 }

 .hero-content-wrap p {
     font-size: 1.3rem;
     opacity: 0.8;
     margin-bottom: 40px;
 }

 /* Custom Nav for Hero */
 .hero-nav {
     position: absolute;
     bottom: 50px;
     right: 40px;
     z-index: 100;
     display: flex;
     gap: 15px;
 }

 .h-prev,
 .h-next {
     width: 60px;
     height: 60px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     cursor: pointer;
     font-size: 1.2rem;
     transition: var(--transition);
 }

 .h-prev:hover,
 .h-next:hover {
     background: var(--primary);
     border-color: var(--primary);
 }

 /* --- SWIPER 2: PARTNER MARQUEE --- */
 .partner-section {
     padding: 40px 0;
     background: var(--black);
     border-bottom: 1px solid #222;
 }

 .partner-swiper .swiper-slide {
     width: auto;
     opacity: 0.4;
     transition: 0.3s;
     display: flex;
     align-items: center;
     gap: 10px;
     color: white;
     font-weight: 600;
     font-size: 1.5rem;
 }

 .partner-swiper .swiper-slide:hover {
     opacity: 1;
 }

 .partner-swiper .swiper-slide i {
     color: var(--primary);
     font-size: 1rem;
 }

 .btn-main {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 20px 45px;
     background: var(--primary);
     color: var(--white);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     border-radius: 0;
     position: relative;
     overflow: hidden;
     cursor: pointer;
     transition: var(--transition);
     border: none;
     z-index: 1;
 }

 .btn-main::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: var(--black);
     transition: var(--transition);
     z-index: -1;
 }

 .btn-main:hover::before {
     left: 0;
 }

 .btn-main:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(226, 27, 34, 0.25);
 }


 /* --- SWIPER 3: PRODUCT SOLUTIONS SLIDER --- */


 .showcase h2.showcase-title {
     font-size: 3rem;
 }

 .showcase-swiper {
     padding: 0px 0 100px;
 }

 .showcase-card {
     height: 550px;
     position: relative;
     overflow: hidden;
     border-radius: 4px;
 }

 .showcase-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.5;
     transition: 0.6s;
     border: 3px solid #bf0409;
 }

 .showcase-info {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 40px;
     background: linear-gradient(to top, var(--black), transparent);
     transform: translateY(20px);
     transition: 0.4s;
 }

 .showcase-card:hover img {
     opacity: 0.8;
     transform: scale(1.05);
 }

 .showcase-card:hover .showcase-info {
     transform: translateY(0);
 }

 .showcase-info h3 {
     color: white;
     font-size: 2rem;
     margin-bottom: 10px;
 }

 .showcase-info a {
     color: var(--primary);
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.8rem;
     letter-spacing: 2px;
 }

 .section-title {
     margin-bottom: 50px;
 }

 .section-title span {
     text-align: center;
 }

 .section-title h2 {
     text-align: center;
     font-size: 2.2rem;
 }


 .features-section {
     padding: 100px 0;
     background-color: var(--c-gray-light);
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background-color: var(--c-white);
     padding: 40px 30px;
     border-radius: 8px;
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
     border-bottom: 4px solid transparent;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-md);
     border-bottom-color: var(--c-red);
 }

 .feature-card i {
     font-size: 2.5rem;
     color: var(--c-red);
     margin-bottom: 24px;
 }

 .feature-card h4 {
     font-size: 1.3rem;
     margin-bottom: 12px;
 }

 .feature-card p {
     color: var(--c-gray-text);
     font-size: 0.95rem;
 }

 /* --- PROMO CTA --- */
 .promo-section {
     padding: 80px 0;
     /* background-color: var(--c-red); */
     background-image: linear-gradient(to right, rgb(0, 0, 0, .8), rgba(0, 0, 0, .9)), url(../image/slider/1.jpg);
     background-size: cover;
     background-position: center;
     color: var(--c-white);
     text-align: center;

 }

 .promo-content h2 {
     font-size: 2.5rem;
     margin-bottom: 16px;
 }

 .promo-content p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 .promo-section .btn-outline {
     border-color: var(--c-white);
     color: var(--c-white);
 }

 .promo-section .btn-outline:hover {
     background-color: var(--c-white);
     color: var(--c-red);
 }


 .portal-mascot {
     /* background: var(--black);
     border-radius: 30px; */
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .portal-mascot img {
     max-width: 100%;
     height: 100%;
     animation: float 5s infinite ease-in-out;
     object-fit: cover;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .f-logo {
     filter: brightness(0) invert(1);
 }

 .f-logo img {
     max-width: 200px;

 }


 /* --- VIDEO SECTION (UNIQUE DESIGN) --- */
 /* .video-showcase-section {
     padding: 100px 0;
     background-color: rgb(250, 250, 250);
 } */

 .video-wrapper {
     position: relative;
     width: 100%;
     height: 600px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .video-thumb-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .video-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: white;
     text-align: center;
     padding: 40px;
 }

 /* Pulsing Play Button */
 .play-btn-trigger {
     width: 100px;
     height: 100px;
     background: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     position: relative;
     transition: var(--transition);
     margin-bottom: 30px;
     z-index: 5;
 }

 .play-btn-trigger i {
     margin-left: 5px;
 }

 .play-btn-trigger::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     border: 2px solid var(--primary);
     border-radius: 50%;
     animation: pulse-red 2s infinite;
 }

 @keyframes pulse-red {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     100% {
         transform: scale(1.8);
         opacity: 0;
     }
 }

 .play-btn-trigger:hover {
     transform: scale(1.1);
     background: var(--black);
 }

 .video-wrapper:hover .video-thumb-img {
     transform: scale(1.05);
 }

 /* Magnific Popup Local Video Container Styling */
 .mfp-content video {
     width: 100%;
     max-width: 1000px;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
     background: #000;
 }

 .white-popup {
     position: relative;
     background: #FFF;
     padding: 20px;
     width: auto;
     max-width: 1000px;
     margin: 20px auto;
 }

 .mfp-close {
     width: 50px !important;
     height: 50px !important;
     line-height: 50px !important;
     background: var(--primary) !important;
     /* Brand Red Background */
     color: #fff !important;
     /* White X */
     opacity: 1 !important;
     font-size: 40px !important;
     top: 0 !important;
     right: 0 !important;
     text-align: center !important;
     padding: 0 !important;
 }

 .mfp-close:hover {
     background: var(--black) !important;
 }


 /* --- FULL SCREEN SPLIT CONTACT SECTION --- */
 .contact-cta-section {
     padding: 0;
     /* Remove standard section padding */
     background-color: var(--white);
     overflow: hidden;
     border-top: 1px solid var(--c-border);
 }

 /* .contact-cta-grid {
     display: flex;
     flex-wrap: wrap;
     width: 100%;
     min-height: 750px;
  } */

 /* Image Half (Left) */
 .portal-mascot {
     flex: 0 0 50%;
     position: relative;
     background-color: var(--c-black);
     /* Fallback color */
 }

 .portal-mascot img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Critical: makes image fill the half screen */
     display: block;
 }

 /* Form Half (Right) */
 .contact-form-content {
     /* max-width: 500px; */
     flex: 0 0 50%;
     padding: 80px 10% 80px 8%;
     /* Deep padding for a premium look */
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: var(--white);
     position: relative;
     height: 100%;
 }

 /* Red accent bar on the left of the form */
 .contact-form-content::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 6px;
     height: 100%;
     background: var(--c-red);
 }

 .contact-form-content .section-subtitle {
     margin-bottom: 5px;
 }

 /* Responsive: Stack on mobile */
 @media (max-width: 1024px) {

     .portal-mascot,
     .contact-form-content {
         flex: 0 0 100%;
     }

     .portal-mascot {
         height: 400px;
         /* Shorter image on mobile */
     }

     .contact-form-content {
         padding: 60px 40px;
     }

     .contact-form-content::before {
         width: 100%;
         height: 6px;
     }
 }

 .mt-100 {
     margin-top: 100px;
 }

 .text-justify {
     text-align: justify;
 }

 .custom-check-list li i {
     color: var(--c-red);
     font-size: 1.4rem;
     /* Made slightly larger to showcase unique icons */
     width: 30px;
     /* Ensures text aligns perfectly */
     text-align: center;
     margin-top: 3px;
 }

 .custom-check-list li strong {
     color: var(--c-black);
     font-weight: 700;
 }


 /* --- USP SECTION STYLES --- */
 .usp-section {
     padding: 100px 0;
     /* background-color: var(--black); */
     background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../image/bg/2.webp');
     color: #fff;
     position: relative;
     overflow: hidden;
     background-size: cover;
 }

 /*
 .usp-section::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 60px 60px;
     pointer-events: none;
 } */
 .usp-section {
     padding: 100px 0;
     /* background-color: var(--black); */
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 /* Subtle grid line background */
 /* .usp-section::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 60px 60px;
     pointer-events: none;
 } */

 .usp-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .usp-card {
     /* background: #111; */
     background: #250f0f;
     padding: 50px 30px;
     border-radius: 4px;
     border: 1px solid #222;
     position: relative;
     transition: var(--transition-smooth);
     z-index: 2;
 }

 .usp-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary);
     background: #161616;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
 }

 .usp-count {
     position: absolute;
     top: 20px;
     right: 20px;
     font-family: var(--font-head);
     font-size: 3rem;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.03);
     line-height: 1;
     transition: var(--transition-smooth);
 }

 .usp-card:hover .usp-count {
     color: rgba(211, 0, 0, 0.1);
 }

 .usp-icon-wrap {
     width: 60px;
     height: 60px;
     background: rgba(211, 0, 0, 0.1);
     color: var(--primary);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin-bottom: 25px;
     border-radius: 2px;
     transition: var(--transition-smooth);
 }

 .usp-card:hover .usp-icon-wrap {
     background: var(--primary);
     color: #fff;
     transform: rotateY(360deg);
 }

 .usp-card h4 {
     color: #fff;
     font-size: 1.15rem;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .usp-card p {
     font-size: 0.85rem;
     color: #888;
     margin: 0;
     line-height: 1.6;
 }

 .usp-section .section-header h2 {
     color: #fff;
 }

 /* Responsive USP */
 @media (max-width: 1200px) {
     .usp-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .usp-grid {
         grid-template-columns: 1fr;
     }

     .usp-card {
         padding: 40px 25px;
     }
 }

 /* --- SHOWCASE SECTION: WHITE THEME WITH GRID --- */
 /* .showcase {
     padding: 100px 0 0;
     background-color: #ffffff;
     position: relative;
     overflow: hidden;
     color: var(--black);
 }

 .showcase::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
     background-size: 60px 60px;
     pointer-events: none;
     z-index: 0;
 } */
 /* .line-bg {
     padding: 100px 0;
     background-color: #ffffff;
     position: relative;
     overflow: hidden;
     color: var(--black);
 }

 .line-bg::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
     background-size: 60px 60px;
     pointer-events: none;
     z-index: 0;
 } */

 .line-bg .container {
     position: relative;
     z-index: 2;
 }

 /* Ensure content stays above the lines */
 .showcase .container {
     position: relative;
     z-index: 2;
 }

 /* Update title for light background */
 .showcase-title {
     color: var(--black);
     font-size: 3.5rem;
     font-family: var(--font-head);
     /* text-transform: uppercase; */
     letter-spacing: -1px;
     line-height: 1;
 }

 /* Update Navigation Arrows for light background */
 .h-prev.s-prev,
 .h-next.s-next {
     background: #f4f4f4;
     /* Light gray background */
     border: 1px solid #ddd;
     color: var(--black);
     /* Dark icon color */
     cursor: pointer;
     transition: var(--transition-smooth);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .h-prev.s-prev:hover,
 .h-next.s-next:hover {
     background: var(--primary);
     border-color: var(--primary);
     color: #ffffff;
     /* White icon on red hover */
     transform: scale(1.1);
 }

 /* Ensure the card descriptions are still readable */
 .showcase-info h3 {
     color: #ffffff;
     /* Keeping titles inside cards white because they sit on dark image overlays */
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
 }

 .showcase {
     padding: 100px 0 0;

     color: #000;
 }



 /* --- ABOUT HERO --- */
 .page-hero {
     padding: 100px 0;
     /* background: var(--black); */
     background-image: url(../image/bg/2.webp);
     background-position: center;
     color: white;
     position: relative;
     overflow: hidden;
     margin-top: 100px;
 }

 .page-hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
 }

 /* --- MAIN STORY SECTION --- */
 .story-section {
     padding: 100px 0;
     background: #fff;
 }

 .story-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .story-img-wrap {
     position: relative;
 }

 .story-img-wrap img {
     width: 100%;
     border-radius: 4px;
     box-shadow: var(--shadow-lg);
 }

 .story-img-wrap::before {
     content: '';
     position: absolute;
     -top: 30px;
     -left: 30px;
     width: 100px;
     height: 100px;
     border-top: 5px solid var(--primary);
     border-left: 5px solid var(--primary);
     z-index: 2;
 }

 .story-content h2 {
     font-size: 3rem;
     margin-bottom: 30px;
     line-height: 1.1;
 }

 .story-content p {
     font-size: 1.1rem;
     color: #555;
     margin-bottom: 25px;
 }

 .story-content p strong {
     color: var(--black);
     font-weight: 700;
 }


 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
 }

 .hero-content h1 {
     font-size: clamp(2.5rem, 5vw, 4.5rem);
     line-height: 1;
     margin-bottom: 30px;
     color: #fff;
 }

 .hero-content h1 span {
     color: var(--primary);
 }

 .hero-content p {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.7);
 }


 /* --- WHATSAPP FLOATING BUTTON --- */
 .whatsapp-float {
     position: fixed;
     width: 60px;
     height: 60px;
     bottom: 40px;
     right: 40px;
     background-color: #25d366;
     color: #FFF;
     border-radius: 50px;
     text-align: center;
     font-size: 35px;
     box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 /* Pulse Animation */
 .whatsapp-float::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background-color: #25d366;
     opacity: 0.7;
     z-index: -1;
     animation: wa-pulse 2s infinite;
 }

 @keyframes wa-pulse {
     0% {
         transform: scale(1);
         opacity: 0.7;
     }

     100% {
         transform: scale(1.6);
         opacity: 0;
     }
 }

 .whatsapp-float:hover {
     background-color: #128c7e;
     transform: scale(1.1);
     color: #fff;
 }

 /* Tooltip on hover */
 .whatsapp-tooltip {
     position: absolute;
     right: 75px;
     background: #333;
     color: white;
     padding: 8px 15px;
     border-radius: 4px;
     font-size: 14px;
     font-family: var(--f-body);
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
 }

 .whatsapp-float:hover .whatsapp-tooltip {
     opacity: 1;
     visibility: visible;
 }

 /* Adjust for Mobile Devices */
 @media (max-width: 768px) {
     .whatsapp-float {
         width: 50px;
         height: 50px;
         bottom: 20px;
         right: 20px;
         font-size: 30px;
     }

     .whatsapp-tooltip {
         display: none;
         /* Hide tooltip on mobile to save space */
     }
 }

 /* --- TOP HEADER REFINED --- */
 .top-header {
     /* background-color: var(--c-black); */
     color: #fff;
     padding: 10px 0;
     font-size: 0.85rem;
     border-bottom: 1px solid #222;
 }

 .top-header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 /* Social Links Styling */
 .top-social-links {
     display: flex;
     gap: 18px;
     align-items: center;
 }

 .top-social-links a {
     color: #fff;
     font-size: 0.95rem;
     transition: var(--transition);
     display: flex;
     align-items: center;
     text-decoration: none;
 }

 .top-social-links a:hover {
     color: #fff;
     transform: translateY(-2px);
 }

 /* Contact Items Styling */
 .top-right {
     display: flex;
     gap: 25px;
     align-items: center;
 }

 .top-contact-item {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #fff;
     font-weight: 500;
     transition: var(--transition);
 }

 .top-contact-item i {
     color: #fff;
     font-size: 0.9rem;
 }

 .top-contact-item:hover {
     color: #fff;
 }

 /* Responsive Handling */
 @media (max-width: 768px) {
     .top-header-container {
         flex-direction: column;
         gap: 12px;
         text-align: center;
     }

     .top-social-links {
         justify-content: center;
     }

     .top-right {
         flex-direction: column;
         gap: 8px;
         display: none;
     }
 }

 .gradient-text,
 strong {
     font-family: 'Montserrat', sans-serif;
     /* Best on bold fonts */
     font-weight: 600 !important;
     /*font-size: 3rem; */
     background: linear-gradient(90deg, #d30000 0%, #7a0000 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: inline-block;
 }


 /* --- LUXURY TITLE ANIMATION --- */

 .animated-title-wrap {
     overflow: hidden;
     /* This creates the "mask" effect */
     display: block;
     padding-bottom: 5px;
 }

 .animated-title-wrap.text-center {
     display: flex;
     justify-content: center;
 }

 .gradient-title {
     display: inline-block;
     /* font-family: 'Space Grotesk', sans-serif; */
     font-weight: 600;
     font-size: 3rem;
     line-height: 1.1;
     margin-bottom: 10px;
     /* The Gradient Base */
     background: linear-gradient(to right,
             #d30000 0%,
             #ff4d4d 25%,
             #d30000 50%,
             #7a0000 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;

     /* Initial state for animation */
     transform: translateY(110%);
     transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
 }

 /* Trigger animation when 'active' class is added by JS */
 .reveal.active .gradient-title {
     transform: translateY(0);
     animation: shine-sweep 4s linear infinite;
     /* Optional: Continuous shine */
 }

 /* The light reflection effect */
 @keyframes shine-sweep {
     to {
         background-position: 200% center;
     }
 }

 /* Subtle Shadow to make the gradient pop on white backgrounds */
 .gradient-title {
     filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
 }


 /* --- SOCIAL LINKS WITH ORIGINAL BRAND COLORS --- */
 .footer-social-links {
     display: flex;
     gap: 15px;
     margin-top: 25px;
 }

 .s-link {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff !important;
     /* White icons */
     font-size: 1.2rem;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 }

 /* Individual Brand Colors */

 /* Facebook Blue */
 .s-link.fb {
     background-color: #1877F2;
 }

 /* Instagram Gradient */
 .s-link.ig {
     background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
 }

 /* YouTube Red */
 .s-link.yt {
     background-color: #FF0000;
 }

 /* Hover Effects */
 .s-link:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
     filter: brightness(1.1);
 }

 /* Optional: Subtle glow matching the brand color on hover */
 .s-link.fb:hover {
     box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
 }

 .s-link.ig:hover {
     box-shadow: 0 0 15px rgba(214, 36, 159, 0.5);
 }

 .s-link.yt:hover {
     box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
 }


 /* --- GALLERY SECTION DESIGN --- */
 .gallery-section {
     padding: 100px 0;
     background: #fff;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 50px;
 }

 .gallery-item {
     position: relative;
     height: 300px;
     overflow: hidden;
     border-radius: 4px;
     cursor: pointer;
     background: var(--black);
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 0.5s ease;
     opacity: 0.9;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
     opacity: 0.6;
 }

 .gallery-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: 0.4s ease;
     z-index: 5;
 }

 .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-icon {
     width: 60px;
     height: 60px;
     background: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
     box-shadow: 0 10px 20px rgba(211, 0, 0, 0.3);
 }

 .video-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: var(--primary);
     color: white;
     padding: 4px 10px;
     font-size: 0.65rem;
     font-weight: 800;
     text-transform: uppercase;
     border-radius: 2px;
     z-index: 6;
 }

 @media (max-width: 1100px) {
     .highlights-grid {
         grid-template-columns: 1fr 1fr;
     }

     .gallery-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 768px) {

     .highlights-grid,
     .gallery-grid {
         grid-template-columns: 1fr;
     }
 }


 /* --- UPDATED BRANCHES GRID (3 COLUMNS) --- */
 .branches-section {
     padding: 100px 0;
 }

 .branches-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     /* 3 columns for desktop */
     gap: 25px;
     position: relative;
     z-index: 1;
     margin-top: 40px;

 }

 .branch-card {
     background: #fff;
     padding: 40px 30px;
     border: 1px solid #eee;
     transition: var(--transition);
     position: relative;
     border-bottom: 4px solid eee;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .branch-card:hover {
     transform: translateY(-10px);
     border-bottom-color: var(--primary);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
 }

 .branch-card i {
     font-size: 2rem;
     color: var(--primary);
     margin-bottom: 20px;
 }

 .branch-card h5 {
     font-family: var(--font-head);
     font-size: 1.2rem;
     color: var(--black);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 15px;
 }

 .branch-card p {
     font-size: 0.9rem;
     color: #555;
     margin: 0;
     line-height: 1.7;
     font-weight: 500;
 }

 .branch-tag {
     position: absolute;
     top: 20px;
     right: 25px;
     font-size: 0.65rem;
     font-weight: 800;
     color: #ccc;
     text-transform: uppercase;
     letter-spacing: 1.5px;
 }

 @media (max-width: 1100px) {
     .branches-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     /* 2 columns for tablets */
 }

 @media (max-width: 768px) {
     .branches-grid {
         grid-template-columns: 1fr;
     }

     /* 1 column for mobile */
     .branch-card {
         padding: 30px 20px;
         text-align: center;
     }
 }


 @media (max-width: 992px) {
     .partner-showcase-card {
         margin-left: 0 !important;
         /* Remove the offset on tablets/mobile */
         padding: 30px 20px;
     }

     .franchise-container {
         grid-template-columns: 1fr;
     }
 }


 /* --- VERTICAL STACK FRANCHISE DESIGN --- */
 .franchise-modern-stack {
     padding: 100px 0;
     background-color: #fff;
     position: relative;
     overflow: hidden;
 }

 /* 1. Header Styles */
 .franchise-header {
     margin-bottom: 80px;
     text-align: center;
 }

 .description-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     margin-top: 30px;
     text-align: left;
     max-width: 1100px;
     margin-left: auto;
     margin-right: auto;
 }

 /* 2. Hub Terminal Cards */
 .franchise-grid-wrap {
     position: relative;
     padding: 20px 0;
 }

 /* Technical background line */
 .tech-trace-line {
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(to right, transparent, #eee, var(--primary), #eee, transparent);
     z-index: 0;
 }

 .hubs-grid-modern {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     position: relative;
     z-index: 2;
 }

 .hub-terminal-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 4px;
     display: flex;
     flex-direction: column;
     transition: var(--transition-smooth);
 }

 .hub-terminal-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
     border-color: var(--primary);
 }

 .terminal-header {
     padding: 15px 25px;
     background: var(--black);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .hub-id {
     color: #fff;
     font-family: var(--font-head);
     font-size: 0.65rem;
     letter-spacing: 2px;
     font-weight: 800;
 }

 .status-dot {
     width: 8px;
     height: 8px;
     background: #25d366;
     border-radius: 50%;
     box-shadow: 0 0 10px #25d366;
 }

 .terminal-body {
     padding: 40px 30px;
     flex-grow: 1;
 }

 .region-label {
     color: var(--primary);
     font-size: 0.7rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
     display: block;
     margin-bottom: 10px;
 }

 .hub-terminal-card h3 {
     font-size: 1.6rem;
     margin-bottom: 25px;
     color: var(--black);
 }

 .location-data,
 .contact-data {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
 }

 .location-data i,
 .contact-data i {
     color: var(--primary);
     font-size: 1rem;
     margin-top: 4px;
 }

 .location-data p,
 .contact-data p {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.6;
     margin: 0;
 }

 .terminal-footer {
     padding: 20px 30px;
     border-top: 1px solid #f5f5f5;
     background: var(--soft-gray);
 }

 .terminal-footer span {
     font-family: var(--font-head);
     font-weight: 800;
     font-size: 0.65rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #bbb;
 }

 /* 3. Apply Placeholder Style */
 .apply-placeholder {
     border: 2px dashed #ddd;
     background: var(--soft-gray);
     justify-content: center;
     align-items: center;
     text-align: center;
 }

 .apply-content i {
     font-size: 3rem;
     color: #ccc;
     margin-bottom: 20px;
 }

 .apply-content h4 {
     font-size: 1.4rem;
     margin-bottom: 5px;
 }

 .apply-content p {
     color: #999;
     font-size: 0.9rem;
     margin-bottom: 20px;
 }

 .btn-sm-red {
     display: inline-block;
     padding: 10px 25px;
     background: var(--primary);
     color: white;
     font-weight: 800;
     text-transform: uppercase;
     font-size: 0.7rem;
     letter-spacing: 1px;
     text-decoration: none;
 }

 .heading-second {
     font-size: 3.5rem;
     margin-top: 10px;
 }

 .showcase-heading {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 50px;
 }

 .breadcrumb-flex .tag-line {
     font-weight: 600;
     color: #ccc;
     font-size: 0.7rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .form-grid-textarea {
     grid-column: span 2;
     min-height: 150px;
 }

 @media (max-width: 1100px) {
     .hubs-grid-modern {
         grid-template-columns: 1fr 1fr;
     }

     .description-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .story-content p {
         font-size: 1rem;
     }

     .testimonial-section {
         padding: 50px 0;
     }

     .promo-content h2 {
         font-size: 1.8rem;
         margin-bottom: 16px;
     }

     .trackless-section {
         padding: 50px 0;
     }

     .trackless-content p {
         color: #cccccc;
         font-size: 1rem;
         margin-bottom: 30px;
     }

     .trackless-content h2 {
         font-size: 1.8rem;
     }

     .showcase-heading {
         display: flex;
         justify-content: space-between;
         align-items: center;
         flex-direction: column;
         margin-bottom: 50px;
     }

     .showcase-info h3 {
         font-size: 1.5rem;
     }

     .usp-section {
         padding: 50px 0;
     }

     .about-us-content p {
         color: var(--c-gray-text);
         font-size: 1rem;
         line-height: 1.7;
         margin-bottom: 20px;
     }

     .navbar {
         top: 38px;
     }

     .custom-check-list span {

         font-size: 1rem;
     }

     .hero-nav {
         right: 50%;
         transform: translate(-50%, -50%);
     }

     .about-us-grid {

         gap: 50px;
     }

     .play-btn-trigger {
         width: 50px;
         height: 50px;
     }

     .contact-form-content {
         padding: 50px 24px;
     }

     .showcase {
         padding: 50px 0 0;
         color: #000;
     }

     .heading-second {
         font-size: 1.8rem;
         margin-top: 10px;
     }

     .hubs-grid-modern {
         grid-template-columns: 1fr;
     }

     .tech-trace-line {
         display: none;
     }

     .top-social-links a {

         font-size: 0.7rem;
     }

     .main-logo {
         max-width: 110px;
     }

     .nav-container {

         flex-direction: row-reverse;
     }

     .hero-content-wrap h1 {
         font-size: 2.5rem;
         color: white;
         line-height: 0.9;
         margin-bottom: 30px;
     }

     .btn-main {

         padding: 10px 25px;
     }

     .h-prev,
     .h-next {
         width: 30px;
         height: 30px;

     }

     .hero-content-wrap p {
         font-size: 1.1rem;
     }

     .hero {
         /* padding: 60px 0 100px; */
         padding: 0;
         min-height: 610px;
     }

     .about-us-section {
         padding: 50px 0;
     }

     .gradient-title {

         font-size: 1.8rem !important;
     }

     .hero-content h1 {
         font-size: 2rem !important;
         line-height: 1.4 !important;
     }

     .story-section {
         padding: 50px 0;
         background: #fff;
     }

     .page-hero {

         margin-top: 80px;
     }

     .breadcrumb-nav {

         gap: 5px !important;
         font-size: 0.5rem !important;
         letter-spacing: 1px !important;
     }

     .breadcrumb-flex .tag-line {
         font-weight: 600;
         color: #ccc;
         font-size: 0.5rem;
         text-transform: uppercase;
         letter-spacing: 1px;
     }

     .story-grid {

         grid-template-columns: 1fr;
         gap: 0px;
     }

     .benefits-section {
         padding: 50px 0 !important;
     }

     footer {

         padding: 50px 0;
     }

     .franchise-modern-stack {
         padding: 50px 0;
     }

     .apply-placeholder {
         padding: 30px 0;
     }

     .franchise-header {
         margin-bottom: 30px;
     }

     .dealer-form-section {
         padding: 50px 0 !important;
     }

     .hub-terminal-card h3 {
         font-size: 1.4rem;
     }

     .reveal {
         margin-bottom: 20px;
     }

     .highlights-section {
         padding: 50px 0 !important;
     }

     .form-grid {
         display: grid;
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .form-grid-textarea {
         grid-column: auto;
         min-height: 150px;
     }

     .branches-section,
     .info-cards-section {
         padding: 50px 0 !important;
     }

     .media-section {
         padding: 50px 0 0 !important;
     }

     .mfp-close {
         width: 25px !important;
         height: 25px !important;
         line-height: 25px !important;

         font-size: 16px !important;

     }

     .features-section {
         padding: 50px 0 !important;
     }

     .defense-section {
         padding: 50px 0 !important;
     }

     .usage-section {
         padding-bottom: 50px !important;
     }

     .tech-focus {
         padding: 50px 0 !important;
     }

     .tech-grid {

         gap: 0 !important;
     }

     .material-section {
         padding: 0 0 50px 0 !important;
     }

     .material-grid {

         gap: 50px !important;
     }
 }