/* Root Variables */
:root {
    --orange-color: #ff6b35;
    --dark-bg: #2c3e50;
    --light-gray: #f8f9fa;
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('https://static.wixstatic.com/media/66d532_60386eaca6cc4f949cbca84d223aa673~mv2.jpg/v1/fill/w_1901,h_913,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/66d532_60386eaca6cc4f949cbca84d223aa673~mv2.jpg')
                no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}


/* Utility Classes */
.text-orange {
    color: var(--orange-color) !important;
}

.bg-orange {
    background-color: var(--orange-color) !important;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.btn-orange {
    background-color: #e55a2b;
    border-color: var(--orange-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-orange:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Navbar Styles */
.navbar-custom {
    background-color: rgba(58, 58, 58, 0.95);
    padding: 20px 0;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-custom.navbar-scrolled {
    background-color: rgba(45, 45, 45, 0.98);
    padding: 12px 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    background-color: #2d2d2d;
    border-radius: 50px;
    padding: 8px 30px;
    border: 2px solid #ff6200;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.navbar-scrolled .navbar-container {
    border-radius: 45px;
    padding: 6px 25px;
    background-color: rgba(45, 45, 45, 0.95);
    border-color: #ff6200;
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.2);
}

.navbar-brand {
    color: #ff6200 !important;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 0 !important;
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand {
    font-size: 1.1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6200, #ff8533);
    border-radius: 8px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.logo-icon:hover::before {
    left: 100%;
}

.navbar-scrolled .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    transform: rotate(360deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar-nav {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px !important;
    margin: 0 2px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6200, #ff8533);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 25px;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 98, 0, 0.4);
}

.nav-link.active {
    color: white !important;
    transform: scale(1.02);
}

.navbar-scrolled .nav-link {
    padding: 10px 16px !important;
    font-size: 0.85rem;
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: linear-gradient(135deg, #ff6200, #ff8533);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 98, 0, 0.4);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 98, 0, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(180deg);
}

.navbar-collapse {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure navbar container is full width on mobile */
@media (max-width: 991px) {
    .navbar-custom {
        padding: 15px 0;
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        border-radius: 25px;
        padding: 10px 20px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-right: auto;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-right: 0;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #555;
    }

    .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        width: 100%;
        padding: 10px 15px !important;
        margin: 2px 0;
        text-align: left;
    }
}


/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section4{
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-top-left,
.hero-bottom-right {
  position: absolute;
  z-index: 2;
}

.hero-top-left {
  top: 0;
  left: 0;
  padding: 10px;
}

.hero-bottom-right {
  bottom: 0;
  right: 0;
  padding: 10px;
}


.hero-bottom-right img {
  max-width: 250px; /* Adjust as needed */
  height: 130px;
}

.hero-top-left img {
  max-width: 350px; /* Adjust as needed */
  /* margin-top: 90px; */
  height: 150px;
}

 .hero-banner {
      /* background: linear-gradient(135deg, #e0e3e6 25%, #f5f5f5 100%); */
      border-top: 5px solid #333;
      padding: 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

   .hero-subtitle1 {
      display: flex;
      align-items: center;
      text-align: left;
      margin-right: 100px;
    }

    .orange-arrow {
      font-size: 40px;
      color: #f78e1e;
      margin-right: 15px;
    }

    .hero-subtitle1 h3 {
      margin: 0;
      font-size: 24px;
      font-weight: 600;
      color: #000;
    }

    .hero-subtitle1 h2 {
      margin: 0;
      font-size: 36px;
      font-weight: bold;
      color: #f78e1e;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
    }

    @media (max-width: 768px) {
      .hero-banner {
        justify-content: center;
        text-align: center;
      }

      .hero-subtitle1 {
        flex-direction: column;
        align-items: center;
      }

      .orange-arrow {
        margin-right: 0;
        margin-bottom: 10px;
      }
    }
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: center;
}

.col-lg-10 {
    max-width: 83.333333%;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    color: white;
    margin-top: 2rem;
}

.orange-arrow {
    font-size: 3rem;
    color: var(--orange-color);
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.hero-subtitle h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-subtitle h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--orange-color);
    margin: 1rem auto;
}

/* .hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
} */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle h2 {
        font-size: 1.8rem;
    }
    .hero-subtitle h3 {
        font-size: 1.2rem;
    }
    .orange-arrow {
        font-size: 2rem;
    }
    .col-lg-10 {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    .hero-subtitle h2 {
        font-size: 1.5rem;
    }
    .hero-subtitle h3 {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* Section Background with Linear Design and 3D Effect */
.section-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), transparent, rgba(255, 107, 53, 0.1));
    z-index: -1;
    animation: moveLines 15s linear infinite;
}

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="50" fill="rgba(255,107,53,0.2)" /%3E%3C/svg%3E');
    background-size: 200px;
    opacity: 0.3;
    animation: float3D 20s ease-in-out infinite;
    transform: perspective(1000px) rotateX(20deg) rotateY(20deg);
    z-index: -1;
}

/* Who We Are Section */
.who-we-are {
    padding: 50px 0;
}

.who-we-are h3 {
    color: white;
}

.who-we-are p {
    color: #ecf0f1;
}

.who-we-are-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    .who-we-are-img {
        height: 200px;
    }
}

/* Services Section */
.services-section {
    background: url('https://static.wixstatic.com/media/66d532_98bfd010ae9c4ef0abbc5ab33609f13a~mv2.png/v1/fill/w_1901,h_1021,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/66d532_98bfd010ae9c4ef0abbc5ab33609f13a~mv2.png')
                no-repeat center center/cover;
    color: white;
    padding: 60px 0;
    position: relative;
    height: auto;
}


.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--orange-color);
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--orange-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.service-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: rgba(255, 107, 53, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

/* Colors Section */
.colors-section {
    background: url('https://static.wixstatic.com/media/66d532_4419ab0e2f0748069e057f4e7cdc8b14~mv2.jpg/v1/fill/w_1901,h_795,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/66d532_4419ab0e2f0748069e057f4e7cdc8b14~mv2.jpg')
                no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    padding: 60px 0; /* optional spacing */
}


.color-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.color-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.color-sample {
    width: 80px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.color-card:hover .color-sample {
    border-color: var(--orange-color);
    transform: scale(1.1);
}

.color-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #ecf0f1;
}

/* Brands Section */
.brands-section {
    background: url('https://static.wixstatic.com/media/66d532_60386eaca6cc4f949cbca84d223aa673~mv2.jpg/v1/fill/w_1901,h_913,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/66d532_60386eaca6cc4f949cbca84d223aa673~mv2.jpg')
                no-repeat center center;
    background-size: cover;
    color: #333;
    position: relative;
    padding: 60px 0; /* optional spacing */
}


.brand-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    background: url('https://static.wixstatic.com/media/66d532_4419ab0e2f0748069e057f4e7cdc8b14~mv2.jpg/v1/fill/w_1901,h_1604,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/66d532_4419ab0e2f0748069e057f4e7cdc8b14~mv2.jpg')
                no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    padding: 60px 0; /* optional spacing */
}


.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    border-color: var(--orange-color);
}

.form-check-input:checked {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.zoom-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }
.delay-6 { transition-delay: 1.2s; }
.delay-7 { transition-delay: 1.4s; }
.delay-8 { transition-delay: 1.6s; }
.delay-9 { transition-delay: 1.8s; }
.delay-10 { transition-delay: 2.0s; }

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes moveLines {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

@keyframes float3D {
    0% { transform: perspective(1000px) rotateX(20deg) rotateY(20deg) translateZ(0); }
    50% { transform: perspective(1000px) rotateX(25deg) rotateY(25deg) translateZ(50px); }
    100% { transform: perspective(1000px) rotateX(20deg) rotateY(20deg) translateZ(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subtitle {
        flex-direction: column;
        gap: 10px;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .service-card, .color-card, .brand-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
}

/* Image Loading Animation */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Hover Effects */
.info-card, .service-card, .color-card, .brand-card {
    position: relative;
    overflow: hidden;
}

.info-card::before,
.service-card::before,
.color-card::before,
.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.info-card:hover::before,
.service-card:hover::before,
.color-card:hover::before,
.brand-card:hover::before {
    left: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--orange-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Accessibility Focus States */
.btn-orange:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
}

/* Print Styles */
@media print {
    .hero-section, .services-section, .colors-section, .contact-section {
        background: white !important;
        color: black !important;
    }
    .btn-orange {
        background: white !important;
        color: black !important;
        border: 2px solid black !important;
    }
}



/* Glassmorphism card effect */
.glass-card {
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
    padding: 24px 12px 18px 12px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.glass-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 12px 40px 0 #ff8000a0;
    border-color: #ff8000;
}
.specialty-img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}
.specialty-img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px #ff800055);
    transition: filter 0.2s;
}
.glass-card:hover .specialty-img {
    filter: drop-shadow(0 8px 24px #ff8000cc);
}
.specialty-title {
    font-weight: 700;
    color: #fcfaf7;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-shadow: 0 2px 8px #00000022;
}
@media (max-width: 991px) {
    .glass-card { min-height: 260px; }
}
@media (max-width: 767px) {
    .glass-card { min-height: 200px; padding: 16px 6px 12px 6px; }
    .specialty-title { font-size: 1rem; }
}