

/* ---- CSS Variables ---- */
:root {
  --black:       #000000;
  --dark-1:      #111111;
  --dark-2:      #1b1b1b;
  --red:         #ff0000;
  --red-dark:    #cc0000;
  --white:       #ffffff;
  --gray-light:  #f0f0f0;
  --gray-mid:    #555555;
  --container:   1320px;
  --radius:      10px;
  --radius-btn:  5px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark-1);
  color: var(--white);
  overflow-x: hidden;
    max-width: 100%;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ---- Utility ---- */
.container-xl { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section-pad {
    padding: 49px 0 60px;
    background: #ebebeb;
}

.whyus{padding: 49px 0 15px;
    background: #ffffff;
position: relative;}

.bg-dark-2 { background: var(--dark-2); }

.section-header { margin-bottom: 10px; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
    font-size: 31px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 14px;
    line-height: 1.15;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.section-sub { color: #aaa; margin-top: 8px; }

.title-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 0;
margin: 0px auto;
}

/* Buttons */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 13px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--red);
  transition: var(--transition);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-outline-red {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--red);
  transition: var(--transition);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: rgb(0 0 0 / 38%);
  height: 40px;
  display: flex;
  align-items: center;
  
  position: relative;
  z-index: 200;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgb(255 255 255);
}

.topbar-left i { color: var(--red); }
.topbar-right i { color: var(--red); }
.topbar-right a { color: rgb(255 255 255); transition: var(--transition); }
.topbar-right a:hover { color: var(--red); }

/* =============================================
   NAVBAR
   ============================================= */
.urja-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #00000094;
    transition: var(--transition);
    padding: 0px 0;
    backdrop-filter: blur(0px);
}

/* Mobile Menu */
@media (max-width: 991px) {

    .navbar-collapse {
        width: 100%;
        overflow-x: hidden;
    }

    .nav-links {
        width: 100%;
        margin: 0;
        padding: 15px 0;
    }

    .nav-links .nav-item {
        width: 100%;
    }

    .nav-links .nav-link {
        padding: 12px 15px;
    }

    /* Mega Menu Fix */
    .urja-mega-drop {
        width: 100% !important;
        min-width: 100% !important;
        position: static !important;
        transform: none !important;
        box-sizing: border-box;
    }

    .submenu {
        position: static !important;
        width: 100%;
        min-width: 100%;
        left: 0 !important;
        box-shadow: none;
    }

    .dropdown-submenu {
        width: 100%;
    }

    .dropdown-item {
        white-space: normal;
        word-break: break-word;
    }

    /* Logo Fix */
    .logo-block img {
        max-width: 90px;
        height: auto;
    }

    /* Toggler Fix */
    .navbar-toggler {
        padding: 5px 10px;
        border: none;
        box-shadow: none !important;
    }
}


.urja-nav.scrolled {
  background: rgba(0,0,0,0.97);
  top: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  padding: 0px 0;
}

/* Logo */
.navbar-brand { display: flex; align-items: center; gap: 12px; padding: 0; }

.logo-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  border-left: 3px solid var(--red);
  padding-left: 12px;
}
.logo-block img.img-fluid {
    width: 111px;
}

.logo-urja {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links { gap: 4px; }

.nav-links .nav-link {
    color: rgb(255 255 255) !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
        text-transform: uppercase;
}

.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--white) !important;
}

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

/* Hamburger icon */
.nav-menu-icon {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}
.nav-menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-menu-icon:hover { border-color: var(--red); }
.nav-menu-icon:hover span { background: var(--red); }

.navbar-toggler { border: none; box-shadow: none; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(17,17,17,0.85) 100%
  );
}

/* Earth glow */
.earth-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,120,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Transformer image */
.hero-transformer {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  z-index: 2;
  pointer-events: none;
}

.hero-transformer img {
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 40px rgba(0,80,200,0.35)) brightness(0.9);
  transition: transform 1.2s ease;
  animation: heroImgZoom 8s ease-out forwards;
}

@keyframes heroImgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}





.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-para {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Hero button */
.btn-hero {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-hero:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* Floating tag */
.floating-tag {
  position: absolute;
  bottom: 115px;
  left: 0;
  z-index: 4;
  background: rgba(0,0,0,0.88);
  width: 160px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.floating-tag span {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255,255,255,0.4);
  letter-spacing: -0.5px;
}

/* News strip */
.news-strip {
  position: absolute;
  bottom: 60px;
  left: 160px;
  right: 0;
  z-index: 4;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 14px 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.news-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.news-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
  font-style: italic;
  white-space: nowrap;
}

.news-text {
  font-size: 15px;
  color: #111;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.news-red {
  color: var(--red);
  font-weight: 800;
  font-style: normal;
}

/* Social icons */
.hero-social {
  position: absolute;
  bottom: 8px;
  right: 120px;
  z-index: 4;
  display: flex;
  gap: 4px;
}

.hero-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.hero-social a:hover { color: var(--red); }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 18px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 6px;
}

.dot {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: rgba(255,255,255,0.3); }

/* =============================================
   FEATURE CARDS
   ============================================= */
.features-section { background: var(--dark-1); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feat-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  transition: var(--transition);
}

.feat-card:hover { transform: translateY(-6px); }

.feat-dark  { background: #000c22; border-top: 3px solid var(--red); }
.feat-light { background: var(--gray-light); }
.feat-red   { background: var(--red); }

.feat-inner {
  position: relative;
  z-index: 2;
  padding: 60px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Watermark */
.watermark-text {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-size: 130px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -4px;
  pointer-events: none;
  z-index: 1;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  line-height: 1;
}

.feat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 28px;
  transition: var(--transition);
}

.feat-card:hover .feat-icon { transform: scale(1.1); }

.feat-icon-red {
  background: rgba(255,0,0,0.12);
  color: var(--red);
}

.feat-title {
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 700;
    /* letter-spacing: 1px; */
    color: var(--white);
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.feat-title-red { color: var(--red); }

.feat-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgb(255 255 255);
  flex: 1;
}

.feat-desc-dark { color: #000; }

.feat-link {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.feat-link:hover { gap: 10px; }
.feat-link-red { color: var(--red); }

/* =============================================
   PRODUCTS
   ============================================= */
.product-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(255,0,0,0.3); }

.product-img {
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span { color: white; font-weight: 700; font-size: 15px; letter-spacing: 1px; }

.product-body {
    padding: 16px;
    text-align: center;
}
.product-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
.product-body p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 18px; }

/* =============================================
   EXPORT SECTION
   ============================================= */
.export-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/bg-2.jpg') center/cover no-repeat;
}

.export-overlay {
  position: absolute;
  inset: 0;
    background: rgb(1 13 20 / 84%); 
    background-size: cover;
}

.export-para {
    color: rgb(255 255 255);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 16px;
}

.export-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  border-top: 3px solid var(--red);
}
.stat-box:hover { background: rgba(255,0,0,0.08); }

.stat-num {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}
.stat-unit {
    font-size: 42px;
    font-weight: 600;
    color: var(--red);
}
.stat-box p {
    font-size: 15px;
    color: rgb(255 255 255);
    margin-top: 8px;
    font-weight: 500;
}

/* =============================================
   QUALITY
   ============================================= */
.quality-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid rgba(255,0,0,0.2);
}

.quality-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 30px;
}

.quality-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.q-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--red);
}

.quality-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.quality-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* =============================================
   CLIENTS
   ============================================= */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.client-logo {
  padding: 20px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.client-logo:hover { background: rgba(255,0,0,0.08); border-color: var(--red); color: var(--white); }

/* =============================================
   AWARDS
   ============================================= */
.award-card {
    background: rgb(255 255 255);
    border: 1px solid rgb(221 21 21 / 53%);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--red);
}   
.award-card:hover { background: rgba(255,0,0,0.06); transform: translateY(-6px); }

.award-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,0,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--red);
  margin: 0 auto 20px;
}

.award-card h5 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff0000;
    font-family: "Montserrat", sans-serif;
}
.award-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-info { display: flex; flex-direction: column; gap: 10px; }

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid #e3c1c1;
    border-radius: 10px;
    background: #f1e7e77d;
}

.contact-item i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,0,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
}

.contact-item h6 {
    font-size: 17px;
    letter-spacing: 0px;
    color: var(--red);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.contact-item p { font-size: 16px; color: #000; }

.form-input {
    width: 100%;
    background: rgb(247 247 247);
    border: 1px solid rgb(225 17 17);
    border-radius: 26px;
    padding: 14px 18px;
    font-size: 14px;
    color: #2c2727;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
    resize: vertical;
    border-bottom: 5px solid #ff0000;
}
.form-input::placeholder { color: #000; }
.form-input:focus { border-color: var(--red); background: rgba(255,0,0,0.04); }

/* =============================================
   FEEDBACK / SWIPER
   ============================================= */
.feedback-swiper { max-width: 700px; margin: 0 auto; }

.feedback-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 50px 40px 40px;
  position: relative;
}

.fb-quote {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.feedback-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.feedback-card h6 { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--red); }

.swiper-pagination-bullet { background: var(--red); opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
    background-image: url(../images/footer-bg.jpg);
    background-size: cover;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin-bottom: 16px;
}

.footer-logo img.img-fluid {
    width: 62%;
}

.footer-about { font-size: 16px; color: #fff; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-heading {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(255 5 5 / 58%);
    font-family: "Montserrat", sans-serif;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-left: 0px;}
.footer-links a {
    font-size: 14px;
    color: rgb(255 255 255);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--red); }
.footer-links a:hover { color: var(--red); padding-left: 4px; }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { font-size: 13px; color: rgba(255,255,255,0.5); display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p {
    font-size: 15px;
    color: rgb(255 255 255);
        margin-bottom: 0px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,0,0,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-content { margin-right: 3%; max-width: 420px; }
  .hero-transformer { width: 55%; }
}

@media (max-width: 992px) {
  .topbar { display: none; }
  .urja-nav { top: 0; }
  .hero-section { height: auto; padding: 160px 24px 200px; flex-direction: column; align-items: flex-start; }
  .hero-transformer { position: relative; left: auto; top: auto; transform: none; width: 100%; max-width: 100%; margin-bottom: 30px; order: -1; }
  .hero-content { margin: 0; max-width: 100%; }
  .floating-tag { display: none; }
  .news-strip { position: relative; bottom: auto; left: auto; right: auto; margin-top: 20px; }
  .hero-social { position: relative; bottom: auto; right: auto; margin-top: 20px; }
  .slider-dots { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { min-height: auto; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .export-stats { grid-template-columns: 1fr 1fr; }
  .clients-logos { gap: 10px; }
  .client-logo { padding: 14px 24px; font-size: 14px; }
  .feedback-card { padding: 36px 24px 28px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 46px; }
  .export-stats { grid-template-columns: 1fr; }
  .stat-num { font-size: 36px; }
  .footer-social { gap: 8px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   PRODUCTS DROPDOWN
   ============================================= */
/* ---- Products Mega Dropdown — HOVER OPEN ---- */
.urja-products-menu { position: relative !important; }

.urja-products-menu .dropdown-toggle { cursor: pointer; }
.urja-products-menu .dropdown-toggle::after { display: none; } /* hide BS caret */

.dd-arrow {
  font-size: 9px;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.6);
}
.urja-products-menu:hover .dd-arrow { transform: rotate(180deg); color: var(--red); }

/* The dropdown panel */
.urja-mega-drop {
  display: block !important;           /* always in DOM flow */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;

  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  min-width: 300px !important;
  width: 310px !important;

  background: #111 !important;
  border: none !important;
  border-top: 3px solid var(--red) !important;
  border-radius: 0 0 12px 12px !important;
  padding: 0 !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.05) !important;
  z-index: 99999 !important;
}

/* Show on hover */
.urja-products-menu:hover .urja-mega-drop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) !important;
}

/* Mega header */
.mega-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
}
.mega-header i { font-size: 13px; }

/* List reset */
.mega-list { list-style: none; padding: 6px 0; margin: 0; }

/* Each item */
.mega-list .dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 9px 18px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.75) !important;
  font-family: var(--font) !important;
  border-left: 3px solid transparent;
  transition: all 0.2s ease !important;
        font-size: 12px;
}
.mega-list .dropdown-item:hover {
  background: rgba(255,0,0,0.09) !important;
  color: #fff !important;
  border-left-color: var(--red);
  padding-left: 22px !important;
}

/* Icon circle */
.di-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255,0,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--red);
  transition: background 0.2s ease;
}
.mega-list .dropdown-item:hover .di-icon { background: var(--red); color: #fff; }


/* =========subdrop down==========*/
/* Desktop */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    list-style: none;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .dropdown-submenu:hover > .submenu {
        display: block;
    }
}

/* Mobile */
@media (max-width: 991px) {

    .dropdown-submenu .submenu {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
        background: #111;
    }

    .dropdown-submenu .submenu .dropdown-item {
        padding: 10px 15px;
    }

}

.dropdown-submenu:hover .submenu {
    display: block;
}

.submenu .dropdown-item {
    padding: 10px 20px;
    white-space: nowrap;
}

.submenu .dropdown-item:hover {
    background: #f5f5f5;
}

/*==============sub dropdown====================*/



/* Text stack */
.di-text { display: flex; flex-direction: column; line-height: 1.3; }
.di-text strong { font-size: 13px; font-weight: 600; }
.di-text small { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.mega-list .dropdown-item:hover .di-text small { color: rgba(255,255,255,0.6); }

/* Footer CTA */
.mega-footer {
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mega-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: var(--red);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s ease;
  font-family: var(--font);
}
.mega-view-all:hover { background: #cc0000; color: #fff !important; }

/* Divider (keep for fallback) */
.urja-divider { border-color: rgba(255,255,255,0.07) !important; margin: 4px 0 !important; }

/* Dropdown caret arrow on toggle */
.nav-links .dropdown-toggle::after { display: none; }

/* =============================================
   OFFCANVAS SIDEBAR
   ============================================= */
.urja-offcanvas {
  background: #0a0a0a;
  border-left: 1px solid rgba(255,0,0,0.2);
  width: 360px !important;
  color: var(--white);
}

.offcanvas-header {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-close {
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.3);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.offcanvas-close:hover { background: var(--red); border-color: var(--red); }

.offcanvas-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}

.oc-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Contact block */
.oc-contact-block { }
.oc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.oc-contact-item i { color: var(--red); width: 14px; margin-top: 2px; flex-shrink: 0; }
.oc-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.oc-contact-item a:hover { color: var(--red); }

/* Nav links */
.oc-nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.oc-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: var(--transition);
}
.oc-nav li a i { color: var(--red); width: 16px; text-align: center; font-size: 12px; flex-shrink: 0; }
.oc-nav li a:hover { background: rgba(255,0,0,0.08); color: var(--white); padding-left: 18px; }

/* Product list */
.oc-product-list { display: flex; flex-direction: column; gap: 8px; }
.oc-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.oc-product-item i { color: var(--red); width: 16px; text-align: center; font-size: 14px; flex-shrink: 0; }
.oc-product-item:hover { background: rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.25); color: var(--white); }

/* Social */
.oc-social { display: flex; gap: 10px; }
.oc-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.oc-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Backdrop tint */
.offcanvas-backdrop { background: rgba(0,0,0,0.75) !important; }





/*-------banner slider-------------*/
.slider-wrap { position: relative; width: 100%; overflow: hidden; top: 0px; font-family: var(--font-sans); }
  .slides { display: flex; transition: transform 0.7s cubic-bezier(0.77,0,0.175,1); }
  .slide { min-width: 100%; position: relative; height: 702px; display: flex; align-items: center; overflow: hidden; }
  .slide-bg{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
  .slide-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
  .slide-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgb(2 2 2 / 21%) 40%, rgb(22 22 22 / 40%) 100%); }
  .slide-content { position: relative; z-index: 2; padding: 0 48px; max-width: 560px; }
  .slide-category { font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #f59e0b; margin-bottom: 8px; opacity: 0; transform: translateY(-18px); transition: all 0.5s ease 0.2s; }
  .slide-title { font-size: 36px; font-weight: 500; color: #fff; line-height: 1.15; margin: 0 0 12px; opacity: 0; transform: translateY(18px); transition: all 0.55s ease 0.35s; }
  .slide-sub { font-size: 15px; color: rgba(255,255,255,0.72); margin: 0 0 24px; opacity: 0; transform: translateY(14px); transition: all 0.5s ease 0.5s; }
  .slide-btn { display: inline-block; padding: 10px 26px; border: 1.5px solid rgba(255,255,255,0.6); color: #fff; font-size: 14px; font-weight: 500; border-radius: 4px; cursor: pointer; background: transparent; transition: background 0.2s, border-color 0.2s; text-decoration: none; opacity: 0; transform: translateY(14px); transition: all 0.5s ease 0.65s, background 0.2s, border-color 0.2s; }
  .slide-btn:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
  .slide.active .slide-category,
  .slide.active .slide-title,
  .slide.active .slide-sub,
  .slide.active .slide-btn { opacity: 1; transform: translateY(0); }
  .slide-accent { position: absolute; right: 0; top: 0; bottom: 0; width: 5px; background: #f59e0b; border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0; }
  .slide-border-deco { position: absolute; right: 48px; top: 50%; transform: translateY(-50%); width: 160px; height: 200px; border: 1.5px solid rgba(245,158,11,0.3); border-radius: 8px; pointer-events: none; }

  .slider-nav { position: absolute; bottom: 22px; left: 48px; display: flex; gap: 8px; z-index: 10; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s, width 0.3s; }
  .dot.active { background: #f59e0b; width: 24px; border-radius: 4px; }

  .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.25); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
  .slider-arrow:hover { background: rgba(245,158,11,0.5); }
  .arrow-prev { left: 14px; }
  .arrow-next { right: 14px; }

  .slide-icon { font-size: 48px; color: rgba(245,158,11,0.2); margin-bottom: 10px; display: block; }

  .social-strip { display: flex; align-items: center; gap: 12px; padding: 10px 48px; background: rgb(0 12 34); border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); }
  .social-strip span { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
  .social-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; text-decoration: none; }
  .social-icon:hover { background: rgba(245,158,11,0.3); color: #fff; }

/*-----------banner slider end--------------------*/



/*---------about us----------*/
.about-section{
    padding:80px 0;
    overflow:hidden;
    background: #fff;
}


/* Btn Style Three */
.btn-three-outer {
    position: relative;
    padding-left: 7px;
    padding-bottom: 3px;
    padding-right: 3px;
    padding-top: 6px;
    z-index: 1;
    display: inline-block;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}
.btn-three-outer:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 2px;
    width: 44px;
    height: 44px;
    z-index: -1;
    border-left: 2px solid #ff0000;
    border-bottom: 2px solid #ff0000;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}
.btn-three-outer:after {
    position: absolute;
    content: "";
    right: 3px;
    top: 9px;
    width: 44px;
    height: 44px;
    opacity: 0;
    z-index: -1;
    border-right: 2px solid #ff0000;
    border-top: 2px solid #ff0000;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}
.btn-style-three {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #222222;
    padding: 10px 36px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 0px;
    text-transform: capitalize;
    border: 1px solid #121212;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    /* text-transform: uppercase; */
}

.btn-style-three-1 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    padding: 10px 36px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 0px;
    text-transform: capitalize;
    border: 1px solid #fff;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    /* text-transform: uppercase; */
}

.btn-style-three .txt {
    position: relative;
    z-index: 1;
}
.btn-style-three:hover {
    color: #ffffff;
    border-color: #ff0000;
}
.btn-style-three:before {
    position: absolute;
    content: "";
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: -50px;
    border-bottom: 55px solid #ff0000;
    border-right: 30px solid transparent;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.btn-style-three:after {
    position: absolute;
    content: "";
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: -50px;
    border-left: 30px solid transparent;
    border-bottom: 55px solid #ff0000;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.btn-style-three:hover::before {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
}
.btn-style-three:hover::after {
    -webkit-transform: translateX(40%);
    transform: translateX(40%);
}
.btn-three-outer:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}
.btn-three-outer:hover::before {
    opacity: 0;
}
.btn-three-outer:hover .btn-style-three {
    color: #ffffff;
    transform: translate(-7px, 10px);
}

.company-name{
        display: block;
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 31px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0px;
}

.main-title span{
    display:block;
}

.product-list{
    font-size:20px;
    font-weight:600;
    color:#ff0000;
    line-height:1.8;
    margin-bottom:45px;
}

.info-box{
    margin-bottom:20px;
}

.info-box h3{
    font-size:36px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.info-box p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 0;
}

.info-box a{
    color:#ff0000;
    font-weight:700;
    text-decoration:none;
}

.info-box a:hover{
    color:#000;
}

/*==========================
        IMAGE SIDE
===========================*/

.image-bg{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-bg::before{

    content:"";
    position:absolute;

    width:520px;
    height:420px;

    background:#cceff1;

    clip-path:polygon(18% 0%,75% 0%,95% 12%,100% 38%,86% 70%,100% 100%,20% 100%,0% 70%,5% 30%);

    z-index:0;

}

.transformer-img{
    position:relative;
    z-index:2;
    max-width:100%;
    height:auto;
}

/*==========================
      REQUEST BUTTON
===========================*/

.quote-btn{

    position:absolute;

    left:30px;
    bottom:40px;

    width:150px;
    height:150px;

    border-radius:50%;

    background:linear-gradient(135deg,#8c5a00,#d6a847,#ffd56b,#9d6a00);

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:10;
}

.quote-btn a {
    width: 148px;
    height: 148px;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: .3s;
}

.quote-btn a:hover{

    background:#ff0000;
    color:#fff;

}

/*==========================
        RESPONSIVE
===========================*/

@media only screen and (min-width: 1440px) {
    .slide {
    height: 780px;
}
}




@media(max-width:1199px){

    .main-title{
        font-size:44px;
    }

    .image-bg::before{
        width:450px;
        height:360px;
    }

}

@media(max-width:991px){

    .about-section{
        padding:60px 0;
    }

    .main-title{
        font-size:38px;
    }

    .product-list{
        font-size:18px;
    }

    .info-box h3{
        font-size:28px;
    }

    .info-box p{
        font-size:16px;
    }

    .image-bg{
        margin-top:50px;
    }

    .quote-btn{

        position:relative;

        left:auto;
        bottom:auto;

        margin:25px auto 0;
    }

}

@media(max-width:767px){

    .company-name{
        font-size:16px;
    }

    .main-title{
        font-size:30px;
    }

    .product-list{
        font-size:16px;
        line-height:1.6;
    }

    .info-box h3{
        font-size:24px;
    }

    .info-box p{
        font-size:15px;
        line-height:1.7;
    }

    .image-bg::before{

        width:320px;
        height:260px;

    }

    .quote-btn{

        width:120px;
        height:120px;

    }

    .quote-btn a{

        width:95px;
        height:95px;

        font-size:16px;

    }
    
    .slide {
    height: 189px;
}
    .urja-nav {
    position: relative;
}

}


.quote-btn {
    position: absolute;
    left: 29px;
    bottom: 40px;
    width: 167px;
    height: 167px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f11520, #ff0000, #cf5b5b, #f1161f);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    z-index: 10;
    animation: moveTopBottom 3s ease-in-out infinite;
}

@keyframes moveTopBottom {

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(35px);
    }

    100%{
        transform: translateY(0px);
    }

}
/*-----------about us end--------------------*/

.whyus .side-text {
    position: absolute;
    left: -28px;
    bottom: 0px;
    font-size: 89px;
    color: #04040400;
    font-weight: 700;
    transform: rotate(-90deg);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #e1e1e1;
    text-transform: uppercase;
    transform-origin: 9% 30%;
}

.cntpage{border: 1px solid #edbdbd;
    padding: 40px;
    border-radius: 35px;
    box-shadow: inset 0px 0px 94px #d5acac;
background-image: url(../images/bg-4.jpg); }

.gettch{
    padding: 49px 0 60px;
    background: #ffffff;
}

.float {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 17%;
    right: 26px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    z-index: 100;
    padding: 3px;
    margin: 0px;
}

/*-----------------call popup-------------------*/
.call-btn {
    position: fixed;
    margin: 0;
    padding: 0px;
    left: 0;
    bottom: 70px;
    background: #fff;
    background-color: transparent;
    cursor: pointer;
    font-size: 0;
    width: 110px;
    height: 110px;
    z-index: 1000;
}

.call-btn .tada {
    background: #ff9002;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation-name: tada;
    animation-duration: 1.9s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.call-btn .tada a:before {
    font-family: FontAwesome;
    content: "\f095";
    font-size: 19px;
    
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
}


@keyframes tada {
    from {
        transform: rotate(-20deg);
    }
    to {
        transform: rotate(20deg);
    }
}

.call-btn .pulse {
    width: 60px;
    height: 60px;
    background: rgba(255, 144, 2, 0.39);
    ;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    animation-name: pulse;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes pulse {
    from {
        width: 55px;
        height: 55px;
        margin-top: -27.5px;
        margin-left: -27.5px;
    }
    to {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
    }
}

.call-btn .zoomIn {
    width: 80px;
    height: 80px;
    border: 2px solid #ff9002;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    animation-name: zoomIn;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

@keyframes zoomIn {
    from {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        margin-left: -20px;
    }
    to {
        width: 80px;
        height: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }
}

@media screen and (max-width: 549px) {
    .call-btn {
        width: 80px;
        height: 80px;
    }
}

.float {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 17%;
    right: 26px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    z-index: 100;
    padding: 3px;
    margin: 0px;
}
/*----------------call popu end----------------*/


/*=====abouts us page=======================*/
/* ===== PAGE BANNER ===== */
.page-banner{
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.breadcrumb{
    background: transparent;
}

.breadcrumb-item,
.breadcrumb-item a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}

.breadcrumb-item.active{
    color: #ffc107;
}

@media (max-width:768px){

    .page-banner{
        height: 250px;
    }

    .banner-content h1{
        font-size: 36px;
    }

}

/*=========================================
  MIZORAM PROJECT SECTION
=========================================*/

.mizoram-project-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:linear-gradient(rgb(0 8 20 / 38%), rgb(0 8 20 / 26%)), url(../images/bg-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
h2.mizoram-main-title {
    font-size: 31px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.15;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

h3.mizoram-project-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 28px;
}
.mizoram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.mizoram-project-section .container {
    position: relative;
    z-index: 2;
}


/*=========================================
  LEFT CONTENT
=========================================*/

.mizoram-subtitle {
    display: inline-block;
    color: #ff2b2b;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mizoram-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.mizoram-line {
    width: 80px;
    height: 4px;
    background: #ff2b2b;
    margin: 20px 0 30px;
    border-radius: 50px;
}

.mizoram-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}


/*=========================================
  FEATURE LIST
=========================================*/

.mizoram-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mizoram-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mizoram-feature-icon {
    min-width: 24px;
}

.mizoram-feature-icon i {
    color: #ff2b2b;
    font-size: 20px;
}

.mizoram-feature-item h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.mizoram-feature-list-1 .mizoram-feature-item h5 {
    color: #121010;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 600;
    color: #121010;
}

.feature-list li i {
    color: #ff2b2b;
    font-size: 20px;
    flex-shrink: 0;
}

/*=========================================
  RIGHT SIDE CARDS
=========================================*/

.mizoram-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mizoram-info-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 43, 43, 0.4);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mizoram-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transition: 0.8s;
}

.mizoram-info-card:hover::before {
    left: 120%;
}

.mizoram-info-card:hover {
    transform: translateY(-8px);
    border-color: #ff2b2b;
}

.mizoram-info-card h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mizoram-info-card h4 i {
    color: #ff2b2b;
    font-size: 22px;
}

.mizoram-info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mizoram-info-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.7;
}

.mizoram-info-card ul li:last-child {
    margin-bottom: 0;
}

.mizoram-info-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff2b2b;
}


/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 991px) {

    .mizoram-project-section {
        padding: 80px 0;
    }

    .mizoram-title {
        font-size: 32px;
    }

    .mizoram-feature-item h5 {
        font-size: 18px;
    }

    .mizoram-card-wrapper {
        margin-top: 40px;
    }

    .mizoram-info-card {
        padding: 28px;
    }

    .mizoram-info-card h4 {
        font-size: 21px;
    }

}

@media (max-width: 767px) {

    .mizoram-project-section {
        padding: 60px 0;
    }

    .mizoram-title {
        font-size: 28px;
    }

    .mizoram-description {
        font-size: 15px;
    }

    .mizoram-feature-item {
        align-items: flex-start;
    }

    .mizoram-feature-item h5 {
        font-size: 16px;
    }

    .mizoram-info-card {
        padding: 22px;
        border-radius: 15px;
    }

    .mizoram-info-card h4 {
        font-size: 18px;
        line-height: 1.5;
    }

    .mizoram-info-card ul li {
        font-size: 15px;
    }
.page-banner {
        height: 153px;
    }
    .banner-content h1 {
        font-size: 27px;
    }
    .breadcrumb-item, .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}
    .pcc span {
    font-size: 28px! important;
}
    .pcc h2 {
    margin-top: 54px! important;
    font-size: 22px! important;
}
    
    .contact-item p {
    font-size: 11px;
}
    .contact-item h6 {
    font-size: 13px;
}
    
    .section-title {
    font-size: 20px;
}
    .cntpage {
    padding: 13px;
}
}

.whyus-1 {
    padding: 49px 0 60px;
    background: #ffffff;
    position: relative;
}

.award-card-1 {
    background: rgb(255 255 255);
    border: 1px solid rgb(221 21 21 / 53%);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--red);
    height: 380px;
}
/*========abouts us page end=================*/


/*---------certificate------*/
.award-card-certi .award-icon {
    width: 100%;
     height: 100%; 
    background: rgba(255, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--red);
    margin: 0 auto 0px;
}

.award-card-certi {
    background: rgb(255 255 255);
    border: 1px solid rgb(221 21 21 / 53%);
    border-radius: var(--radius);
    padding: 10px;
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--red);
    /* height: 357px; */
}

.award-card-certi:hover {
    background: rgba(255, 0, 0, 0.06);
    transform: translateY(-6px);
}
.award-card-certi img {
    width: 100%;
}
/*----------certificate------------------*/


/*------------product page css--------------*/
.main-ftr {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0px;
}
table.table {
    width: 100%;
}
.thead-dark tr th {
    background-color: #fe0001;
    border: 2px solid #ffffff;
    color: #ffffff;
    width: 50%;
}
.border-t-body tr td {
    border: 1px solid #000000;
    font-size: 14px;
}

.image-bg-1 img.img-fluid.transformer-img {
    border-radius: 30px;
    border: 1px solid #ed424a;
    padding: 12px;
    box-shadow: 8px 7px 0px #f7e3e3;
}
/*--------------------------*/


/*-------------start----------------*/
.services-section-four {
    position: relative;
    padding: 30px 0 20px;
        background: #fff;
}

.services-section-four .content-column {
    position: relative;
    margin-bottom: 10px;
}
.services-section-four .content-column .inner-column {
    position: relative;
    margin-top: 17px;
}
.pcc {
    position: relative;
    text-align: center;
    padding: 0px 54px;
    background: #fff;
}
.pcc::before {
    content: "";
    position: absolute;
    top: 3%;
    right: 8%;
    left: 0%;
    width: 100%;
    height: 690px;
    border: 1px solid #e11f28;
    /* border-bottom: 0px; */
    border-radius: 60px;
    z-index: 0;
}

.trnfrm::before {
    content: "";
    position: absolute;
    top: 9%;
    right: 8%;
    left: 0%;
    width: 100%;
    height: 360px;
    border: 1px solid #e11f28;
    border-radius: 60px;
    z-index: 0;
}

.trnfrm-1::before {
    content: "";
    position: absolute;
    top: 5%;
    right: 8%;
    left: 0%;
    width: 100%;
    height: 360px;
    border: 1px solid #e11f28;
    border-radius: 60px;
    z-index: 0;
}
.pcc span {
    font-size: 73px;
    font-weight: 700;
    color: #e1e1e1;
    background: #fff;
    z-index: 2;
    position: relative;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
.pcc h2 {
    text-align: center;
    margin-top: 0px;
    z-index: 999;
    display: block;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
hr.hr-1 {
    width: 137px;
    border: 1px solid #e11f28;
    margin-top: 8px;
    margin: 0px auto;
}
.trans {
    border: 1px solid #c9c8c8;
    border-radius: 20px;
    box-shadow: 0px 0px 7px #b3afaf;
    margin-bottom: 25px;
    z-index: 0;
    position: relative;
}
.trans img.img-fluid {
    border-radius: 18px 18px 0px 0px;
    background: linear-gradient(46deg, rgb(230 235 239) 0%, rgb(248 247 247) 100%);
}
.trans p {
    font-size: 19px;
    background: #e11f28;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    padding: 8px;
    border-radius: 0px 0px 20px 20px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}
/*-------------end-------============*/


/*--------client css-------------*/
.client-section{
    padding:80px 0;
    background:#f8f8f8;
}
.client-section-home {
    padding: 53px 0 16px;
    background: #f8f8f8;
}

.client-list{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.client-list li{
    width:calc(16.66% - 20px);
    background:#fff;
    padding:20px;
    border:1px solid #523b3b;
    border-radius:10px;
    text-align:center;
    transition:.3s ease;
}

.client-list li:hover{
    transform:translateY(-5px);
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.client-list li img{
    width:100%;
    transition:.3s ease;
}

.client-list li:hover img{
    filter:grayscale(0);
}

@media(max-width:991px){
    .client-list li{
        width:calc(33.33% - 20px);
    }
}

@media(max-width:767px){
    .client-list li{
        width:calc(50% - 20px);
    }
}

@media(max-width:480px){
    .client-list li{
        width:100%;
    }
}
/*-----------client css end-----------------*/



