* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    height: 2000px;
  
}

.main-header {
    position: static;
    top: auto;
    left: 0;
    width: 100%;
    height: 20px;
    padding:  60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: red;
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.4s ease;
  overflow: visible;
  position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
  align-items: center;
    gap: 35px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: black;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: black;
}

.nav-item {
    position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 260px;

    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    z-index: 999;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;

    color: #111;
    text-decoration: none;

    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #ff3c00, #ff7a00);
    color: #ffffff;
}

.header-btn {
    padding: 12px 26px;
    background: black;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 60, 0, 0.45);
}
.top-bar {
    width: 100%;
    height: 40px;
    background-color: #f7f7f7;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #333333;
}
.top-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-left .verified {
    background-color: #28a745;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.top-right {
   
    display: flex;
    gap: 14px;
}

.top-right a {
    text-decoration: none;
    font-size: 14px;
    color: #333333;
    transition: all 0.3s ease;
}

.top-right a:hover {
    color: #ff3c00;
    transform: translateY(-2px);
}

.marquee-section {
    width: 100%;
    height: 60px;
    background-color: #51B7DB;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 00px; 
}

.marquee {
    display: flex;
    width: max-content;
    animation: marqueeMove 5s linear infinite;
}

.marquee span {
    font-size: 22px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    padding-right: 80px;
    letter-spacing: 3px;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.slider-hero {
    width: 100%;
    height: 60vh;
    margin-top: 00px;
    background-color: #000000;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}


.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background-color: #ff3c00;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}


.footer-new {
    background: #000000;
    color: #ffffff;
    margin-top: 20px;
}

.footer-brand-strip {
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.footer-brand-strip h2 {
    font-size: 34px;
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-brand-strip h2 span {
    color: #ff8c00;
}

.footer-brand-strip p {
    font-size: 14px;
    letter-spacing: 2px;
    color: #bfbfbf;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 90px;
}

.footer-card {
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    padding: 35px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.footer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.footer-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-card p {
    font-size: 14px;
    line-height: 24px;
    color: #ffe5d6;
}

.footer-card ul {
    list-style: none;
    padding: 0;
}

.footer-card ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffe5d6;
}

.footer-contact {
    margin-top: 15px;
}

/* HIGHLIGHT CARD (CENTER ONE) */
.footer-card.highlight {
    background: linear-gradient(135deg, #ff3c00, #ff9800);
    color: #ffffff;
}

.footer-card.highlight h3 {
    color: #ffffff;
}

.footer-enquiry-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ff8c00;
    transition: all 0.3s ease;
}

.footer-enquiry-btn:hover {
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    color: #ffffff;
}

.footer-bottom-new {
    border-top: 1px solid #2a2a2a;
    padding: 25px 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-new p {
    font-size: 13px;
    color: #bfbfbf;
}

.footer-bottom-new span {
    color: #ff8c00;
}

.footer-social-new {
    display: flex;
    gap: 12px;
}

.footer-social-new a {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social-new a:hover {
    transform: translateY(-4px);
}

.about-intro {
    padding: 120px 90px;
    background: linear-gradient(180deg, #ffffff, #f6f6f6);
}

.about-intro-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 54px;
    color: #111111;
}

.about-intro-text h2 span {
    color: #ff3c00;
}

.about-intro-text p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 30px;
    color: #444444;
}

.about-highlights {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.about-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ff3c00, #ff7a00);
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(255,60,0,0.4);
}

.about-intro-visual {
    position: relative;
    height: 420px;
}

.about-visual {
    position: relative;
    width: 520px;
    height: 420px;
}

.visual-box {
    position: absolute;
    width: 300px;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-dark {
    top: 0;
    left: 0;
}

.visual-orange {
    bottom: 0;
    right: 0;
}

.visual-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 26, 26, 0.35),
        rgba(255, 140, 0, 0.35)
    );
    transition: opacity 0.4s ease;
}

.visual-box:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

.visual-box:hover::after {
    opacity: 0.4;
}

.visual-box:active {
    transform: scale(1.08);
}


.services-section {
    padding: 120px 90px;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #ff3c00;
}

.section-heading span {
    color: #ff3c00;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, #ffd1a9, #ff8c42);
    padding: 50px 35px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff3c00, #ff7a00);
    color: #ffffff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 25px;
}


.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.service-card.highlight {
    background: linear-gradient(135deg, #ff6b6b, #ffd6a5);
);
    color: #ffffff;
}

.service-card.highlight h3,
.service-card.highlight p {
    color: #ffffff;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease;
}


.products-section {
    padding: 120px 90px;
    background: linear-gradient(135deg, #fff5f0, #fff0e6);
}

.products-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #b30000;
}

.products-heading span {
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    background: #ffffff;
}

.product-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.product-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.product-card.show:nth-child(odd) {
    transition-delay: 0.1s;
}

.product-card.show:nth-child(even) {
    transition-delay: 0.2s;
}


.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.enquiry-modal.active {
    opacity: 1;
    visibility: visible;
}

.enquiry-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);

    width: 420px;
    max-width: 90%;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;

    transition: transform 0.35s ease;
}

.enquiry-modal.active .enquiry-modal-box {
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #ff1a1a;
}

.enquiry-modal-box h2 {
    margin-bottom: 25px;
    font-size: 26px;
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.enquiry-form input {
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.enquiry-form input:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 2px rgba(255,140,0,0.2);
}

.enquiry-form button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enquiry-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 26, 26, 0.4);
}

.call-text {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}

.call-text span {
    color: #ff1a1a;
    font-weight: 600;
}


.video-section {
    padding: 100px 90px;
    background: #ffffff;
}

.video-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(135deg, #ff1a1a, #ff8c00);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}


.video-wrapper {
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.video-content {
    padding: 25px 20px 15px;
    text-align: center;
}

.video-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.video-content p {
    font-size: 15px;
    color: #ffe9d6;
    line-height: 26px;
}


.clients-full {
    width: 100%;
    background: #ffffff;
}


.clients-heading {
    background: #fff6ee;
    padding: 35px 20px;
    text-align: center;
}

.clients-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color:  linear-gradient(135deg, #ff1a1a, #ff8c00); 
    letter-spacing: 1px;
}

.clients-image {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.clients-image img {
    width: 100%;
    height: auto;
    display: block;

  
  
