body{
	font-family: "Rubik", sans-serif;
}

:root{
--primary: #3498db;
--txtWht:#fff;
--bg-2: #1d1e81;
}
.txtClr{
	color:var(--primary);
}
.searchBtn{
    background-color: var(--primary);
}

/*Start Auto PopUp Modal*/
#popUpSendBtn {
    background-color: var(--bg-2);
}
  #customModal {
      
    display: none;
    position: fixed;
    z-index: 999999999;
    left: 0;
    top: -110px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
  }

  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 550px;
    text-align: center;
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  #popUpSendBtn{
      background-color:var(--bg-2);
  }
/*End Auto PopUp Modal*/



/* Start Product List Section Styling */
.product-section .section-title h2 {
    font-size: 34px;
    color: #222;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Image */
.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    transition: 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.12);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc3545;
    padding: 5px 12px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

/* Content */
.product-content {
    padding: 18px;
    text-align: center;
}

.product-content .title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 6px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #198754;
}

/* Button */
.btn-product {
    padding: 10px 22px;
    background: #0d6efd;
    color: #fff;
    display: inline-block;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.btn-product:hover {
    background: #0948b3;
    transform: translateY(-2px);
}





/*Start About Section CSS*/

.about-section {
    background: linear-gradient(135deg, #f8faff, #e7f3ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Sub Title */
.about-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
}

/* Typing Title */
.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    min-height: 70px;
}

/* Description */
.about-desc {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Points */
.about-points {
    padding: 0;
    list-style: none;
    margin-top: 15px;
}

.about-points li {
    font-size: 16px;
    margin: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-points li i {
    color: #3498db;
    font-size: 18px;
}

/* Button */
.fancy-btn {
    background: #3498db;
    color: #fff;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 17px;
    transition: 0.4s;
    display: inline-block;
    box-shadow: 0px 10px 20px rgba(52, 152, 219, 0.35);
}

.fancy-btn:hover {
    background: #217dbb;
    transform: translateY(-3px);
}

/* Image Box */
.about-img-box {
    
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: floatImg 4s ease-in-out infinite;
}

.about-img {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    height: auto;
}

/* Floating Animation */
@keyframes floatImg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}





/*Start Hero Section CSS*/
/* HERO SECTION */
.hero-section {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3498db, #2980b9);
    overflow: hidden;
    color: #fff;
    padding: 40px 0;
}

/* Floating Circles */
.hero-shapes::before,
.hero-shapes::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(4px);
    animation: float 6s infinite ease-in-out;
}

.hero-shapes::before { top: -60px; right: -80px; }
.hero-shapes::after  { bottom: -60px; left: -50px; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(25px); }
    100% { transform: translateY(0); }
}

/* Glass Effect Box */
.hero-content {
    max-width: 650px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
}

.hero-title span {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.hero-subtitle {
    font-size: 26px;
    margin: 15px 0 10px;
    font-weight: 600;
    color: #fff;
}

/* Typing Cursor Animation */
.cursor {
    display: inline-block;
    width: 3px;
    background: #fff;
    animation: blink 0.7s infinite alternate;
}
@keyframes blink { from {opacity: 1;} to {opacity: 0;} }

.hero-desc {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-buttons .hero-btn {
    padding: 12px 28px;
    margin-right: 10px;
    font-size: 17px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-primary.hero-btn {
    background: #fff;
    color: #3498db;
    border: none;
}
.btn-primary.hero-btn:hover {
    background: #e8e8e8;
}

.btn-outline-light.hero-btn:hover {
    background: #fff;
    color: #3498db;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 20px; }
}

/* HERO IMAGE FLOAT ANIMATION */
.hero-img {
    max-width: 100%;
    animation: imageFloat 5s ease-in-out infinite;
    position: relative;
}

@keyframes imageFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/*Start  Service Section CSS*/
.services-section { background:#fff; padding:48px 0; }
.service-card { background: linear-gradient(180deg,#fff,#fbfdff); border-radius:12px; border:1px solid #e9f0fb; transition:all .35s ease; }
.service-card:hover { transform:translateY(-10px); box-shadow:0 20px 40px rgba(52,152,219,0.08); }
.service-icon { display:inline-flex; align-items:center; justify-content:center; width:74px; height:74px; border-radius:50%; background:linear-gradient(135deg,#a7d8ff,#e6f5ff); color:#0b2340; font-size:28px; }
.service-card h5 { color:#0b2340; font-weight:700; }
.service-card p { color:#556b7b; }



/*Start Counter Section*/
/* ACHIEVEMENT SECTION */
.achievements-section {
    position: relative;
    padding: 100px 0;
    background: url('https://goldenmetal.co.in/assets/img/bg/counter-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.achievements-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(52,152,219,0.35);
    backdrop-filter: blur(4px);
}

/* Floating BG Icons */
.ach-icon {
    position: absolute;
    width: 80px;
    opacity: 0.22;
    animation: floatIcon 7s infinite ease-in-out;
}

.ach-icon.i1 { top: 10%; left: 6%; }
.ach-icon.i2 { top: 45%; right: 8%; animation-delay: 2s; }
.ach-icon.i3 { bottom: 12%; left: 40%; animation-delay: 4s; }

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* Counter Box */
.counter-box {
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,0.15);
    padding: 40px 25px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    text-align: center;
    color: #fff;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.2);
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Counter Top Icon */
.counter-icon {
    width: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
    animation: iconPop 1.2s ease;
}

@keyframes iconPop {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: 1; transform: scale(1); }
}

.counter-number {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.counter-title {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .counter-number { font-size: 38px; }
    .counter-icon { width: 45px; }
}



/*Start Testimonial CSS*/

:root{
  --blue:#3498db;
  --bg:#e7f3ff;
  --glass-bg: rgba(255,255,255,0.85);
}

/* section bg */
.fancy-testimonials {
  position: relative;
  background: linear-gradient(135deg,#f8faff,var(--bg));
  padding: 60px 0;
  overflow: visible;
}

/* floating background shapes */
.bg-shape {
  position: absolute;
  opacity: 0.14;
  filter: blur(6px);
  transform-origin: center;
  pointer-events:none;
}
.shape-1 { width:220px; top:-30px; left:-40px; transform: rotate(-10deg); animation: floatS 8s ease-in-out infinite; }
.shape-2 { width:110px; top: 20%; right: 6%; animation: floatS 9s ease-in-out infinite; animation-delay: 1s; }
.shape-3 { width:140px; bottom:-20px; left: 10%; animation: floatS 11s ease-in-out infinite; animation-delay: 2s; }

@keyframes floatS { 0%{transform:translateY(0)}50%{transform:translateY(-16px)}100%{transform:translateY(0)} }

/* header */
.section-title { font-weight:800; color:#0b2340; font-size:36px; }

/* layout */
.testimonial-wrap { display:flex; gap:24px; align-items:flex-start; }

/* profile column */
.profile-col { width:92px; }
.profile-col .nav-btn { background:transparent; border:1px solid rgba(11,35,64,0.06); width:44px; height:44px; border-radius:10px; color:var(--blue); margin:6px 0; display:inline-flex; align-items:center; justify-content:center; }
.profiles { display:flex; flex-direction:column; gap:12px; padding:8px 0; align-items:center; }

/* profile item */
.profile-item {
  width:64px; height:64px; border-radius:50%; overflow:hidden; border:3px solid rgba(255,255,255,0.6);
  box-shadow: 0 6px 20px rgba(11,35,64,0.04);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
  background:linear-gradient(180deg,#fff,#f3f7ff);
  display:flex; align-items:center; justify-content:center;
}
.profile-item img { width:100%; height:100%; object-fit:cover; display:block; }
.profile-item.active { transform: scale(1.12); box-shadow: 0 18px 40px rgba(52,152,219,0.18); border-color:var(--blue); }

/* slider column */
.slider-col { flex:1; }

/* vertical slider window */
.vertical-slider {
  height: 470px;               /* visible window height */
  overflow: hidden;
  position: relative;
}

/* each card — speech bubble + glass */
.t-card {
  height: 150px;              /* each card height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
  transform-origin: center;
  transition: transform .5s cubic-bezier(.2,.9,.3,1), opacity .5s;
  position: relative;
}

/* inner card styling - glass + 3D */
.t-card-inner {
  width: 100%;
  max-width:840px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,251,255,0.9));
  border-radius: 18px;
  padding:18px 22px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  box-shadow: 0 10px 30px rgba(11,35,64,0.06);
  transform: translateZ(0);
  transition: transform .45s cubic-bezier(.2,.9,.3,1), box-shadow .45s;
  perspective: 1200px;
  border:1px solid rgba(11,35,64,0.04);
  position: relative;
  overflow: visible;
}

/* speech bubble tail */
.t-card-inner::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -18px;
  width: 34px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,251,255,0.9));
  transform: rotate(25deg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(11,35,64,0.04);
}

/* meta / avatar */
.meta { display:flex; align-items:center; gap:12px; width:45%; min-width:260px; }
.avatar { width:72px; height:72px; border-radius:12px; object-fit:cover; border:3px solid #fff; box-shadow: 0 6px 18px rgba(11,35,64,0.06); }
.meta-info h5 { margin:0; font-size:16px; color:#0b2340; font-weight:700; }
.meta-info small { color:#556b7b; }

/* bubble text */
.bubble { padding:8px 12px; background: transparent; color:#133148; font-size:15px; line-height:1.5; width:55%; }
.rating { margin-left:auto; color: #f1c40f; font-weight:700; }

/* active/middle card styling */
.t-card.active { transform: scale(1.03) translateY(-8px); opacity:1; z-index:5; }
.t-card.prev, .t-card.next { opacity:0.95; z-index:3; transform: scale(0.99); filter: blur(0.2px); }
.t-card.hidden { opacity:0; transform: translateY(40px) scale(0.94); z-index:1; }

/* 3D parallax transform when mouse moves over active card */
.t-card-inner.parallax {
  transition: transform 0.12s linear;
}

/* glass reflection on hover */
.t-card-inner:hover {
  box-shadow: 0 26px 50px rgba(11,35,64,0.12);
}
.t-card-inner::before {
  content: "";
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  pointer-events:none;
  mix-blend-mode: overlay;
  opacity:0.9;
  transition: opacity .4s;
}
.t-card-inner:hover::before { opacity:1; transform: translateX(10px); }

/* vertical controls */
.vertical-controls { display:flex; gap:12px; justify-content:center; align-items:center; }
.v-btn { width:56px; height:56px; border-radius:12px; background:#fff; border:none; color:var(--blue); box-shadow:0 10px 24px rgba(11,35,64,0.06); transition:transform .25s; }
.v-btn:hover { transform: translateY(-4px); }

/* responsive tweaks */
@media (max-width: 991px) {
  .testimonial-wrap { flex-direction:column; }
  .profile-col { display:none; }
  .vertical-slider { height: auto; }
  .t-card { height:auto; padding:12px 0; }
  .t-card-inner::after { display:none; }
  .bubble { width:100%; }
}


/* Show only 1 testimonial at a time */
.vertical-slider {
  position: relative;
  height: 350px;               /* Adjust for perfect center */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card positioning */
.t-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.t-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.t-card.inactive {
  opacity: 0;
  transform: translate(-50%, -60%) scale(0.95);
}

/*Start Footer*/

.fancy-footer {
  position: relative;
  padding: 70px 20px 20px;
  background: url('https://goldenmetal.co.in/assets/img/bg/counter-bg.jpg')
      center/cover no-repeat;
  color: #fff;
}

.footer-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  
  /* Your requested glass effect */
  background: rgba(52,152,219,0.35);
  backdrop-filter: blur(4px);

  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.footer-box h3 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-box p,
.footer-box li,
.footer-box a {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #d6ecff;
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  transition: 0.4s;
  backdrop-filter: blur(6px);
}

.footer-social a:hover {
  background: #fff;
  color: #3498db;
  box-shadow: 0 0 15px #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 18px 0 0;
  margin-top: 40px;
  border-top: 1px solid #ffffff55;
  position: relative;
  z-index: 2;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/*Start Sidebar Button*/
/*Start Scroll to Top and Side Buttons*/
 #scrollTopBtn {
      position: fixed;
      bottom: 70px;
      right: 30px;
      z-index: 1000;
      display: none;
      background-color: var(--primary);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      text-align: center;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: opacity 0.3s ease;
    }
    #scrollTopBtn:hover {
      opacity: 0.8;
    }
/* --- Sidebar Buttons --- */
.sidebar-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999999;
}

/* --- Button Style --- */
.sidebar-buttons a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* --- Text and Icon --- */
.sidebar-buttons a span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sidebar-buttons a i {
  font-size: 20px;
}

.sidebar-buttons a:hover {
  opacity: 0.85;
  transform: translateX(-5px);
}

/* --- Individual Colors --- */
.enquiry-btn { background-color: var(--primary); }
.whatsapp-btn { background-color: #25d366; }
.call-btn { background-color: var(--primary); }

/* --- Mobile: Horizontal at Bottom --- */
@media (max-width: 768px) {
    
    #scrollTopBtn i{
        margin-left:14px;
    }
  .sidebar-buttons {
    top: auto;
    bottom: 0px;
    left: 10px;
    right: 30px;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .sidebar-buttons a {
    flex-direction: row;
    width: 130px;
    height: auto;
    padding: 10px 15px;
    border-radius: 50px;
    gap: 5px; /* âœ… 5px gap between icon and text */
  }

  .sidebar-buttons a span {
    writing-mode: horizontal-tb;
    transform: none;
  }
}



  /*Start Sidebar*/
  .cat-title{
    font-size:15px;
    font-weight: 500;
    color: #FFF;
    background-color: #3ba6ca;
    padding: 8px 0 8px 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Oswald", Sans-serif;
    letter-spacing: 3px;
    position: relative;
}
.cat-title:before {
    content: '\f0c9';
    font-family: "FontAwesome";
    color: #FFF;
    padding-right: 6px;
}

.widget {
    padding-top: 5px;
}

.widget> ul {
    list-style: none;
    margin-top: 0px;
}

.widget li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 30px;
    color: #fff;
    position: relative;
    list-style-type: none;
    line-height: 26px;
}
.widget li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px;
    color: #ff5e15;
}


#sidebar .cat-list li {
    padding: 4px 0px;
    margin-bottom:3px;
    border-bottom: 1px solid #ededed;
}
#sidebar .cat-list li a {
    text-decoration: none;
    margin-left: 15px;
    color: #656363;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

#sidebar .cat-list li a:before {
    content: "\f101";
    font-family: "FontAwesome";
    color: #656363;
    padding-right: 12px;
}


#sidebar .cat-list li i {
    color: var(--primary);
    margin-top: 3px;
}


/*End Sidebar*/
  
  
  
  
/* Start Product page */
/*Start CSS product Image on product.php page*/ 
 .product-box{
     background-color:#f2f2f2;
     padding:15px;
 }
 .prodTxMaintBox{
    background-color:#fff;
    border:1px solid #cccccc;
    border-radius:3px;
 }
 #prodRgtBox{
    overflow:hidden; 
    
 }
 .prodRightMainRow{
   height:448px;
  overflow:auto;
  margin:0px -20px 0px -15px;
  padding-right:0px; /* Samakan dengan besar margin negatif */
  overflow-x: hidden;
  
 }




.wrapToCenterProdImg, .prodVdoBox, .prod-img-tab, .prod-vdo-tab, .prodMdlImgBox, .prodMdlVdoBox {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border:1px solid #d9d9d9;
    border-radius:5px;
    padding:3px;
}

.wrapToCenterProdImg * ,.prodVdoBox *, .prod-img-tab *, .prod-vdo-tab *, .prodMdlImgBox *, .prodMdlVdoBox *{
  vertical-align: middle;
}

.prodMainCtrImg, #vdoIframe, .img-tab, .vdo-img, .modalimgtab, #modalvdotab {
  max-width: 100%;
  max-height: 100%;
}
/*Main Img And Video Box*/
.wrapToCenterProdImg{
    width:570px;
    height:570px;
    background-color:#fff;
}

.prodVdoBox{
    width:570px;
    height:570px;
    background-color:#fff;
    display:none; 
}

#vdoIframe{
    margin-top:18.5%;
    height:350px;
}
/*Tab Img And Video Box*/
.prod-img-tab, .prod-vdo-tab{
   width:150px;
    height:80px;
    background-color:#fff;
    margin:5px;
}

.prodMdlImgBox{
   width:250px;
   height:200px;
   background-color:#fff;
   margin:5px;
}

.prodMdlVdoBox{
   display:none; 
   width:240px; 
   height:200px;
}

#modalvdotab{
    margin-top:8.3%;
}


.ask-price{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:32px;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    line-height: 1.1;
    text-transform: capitalize;
   
}
.ask-price span{
    padding:5px 10px 0px 20px;
    margin-left:-15px;
    background:lightgrey;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}
.ask-price span > button{
    background-color:transparent;
    border:none;
    color:#000C58;
}
#ask-price a{
    color:#000;
    
}

.rupay-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #fff; 
    padding:3px;
     z-index:1;
}


.prodTxtBox{
    padding:15px;
}
.prodCatTitle{
    margin-top:5px;
    
}
.prodCatTitle > h1{
    color: #000;
    font-size: 14px;
    font-weight:600;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    text-align: left;
    padding-left:5px;
}
.prodCatTitle > h1> a:hover{
    color: #2f9fd5;
}
/* Product Page*/
.prod-title{
    margin-right:24px;
    overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
    font-weight: normal;
    font-size: 32px;
    color: var(--bg-2);
    margin-bottom: 15px;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    line-height: 1.1;
}

.get-lprice{
    border:1px solid #000C58;
    background:#000C58;
    border-radius:5px;
    color:#fff;
}

.get-lprice:hover{
    background:#ff5e15;
    color:#fff;
}
.pdf-download a {
    font-size:16px;
    color:#6e6e6e;
}
.pdf-download>a img{
    width:45px;
}
.call-back{
    width:90px;
    height:75px;
    text-shadow: 1px 1px #000;
    right: 0px;
    top: 0;
    margin-top: -115px;
    position:relative;
    cursor: pointer;
    z-index:10;
    
    
}
.call-back-txt{
    background: #ff5e15;
    border:none;
    padding: 10px 6px;
    color: #fff;
    text-align:center;
    font-size:18px;
    font-family: 'Roboto Condensed',Arial,Helvetica,sans-serif;
    z-index:1000;
    margin-left:14.5px;
}
.call-back-txt strong{
    font-size:19px;
}

.call-back::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 22px;
    top: 0;
    left: -9px;
    background-color: #000;
    transform: skew(-39deg);
    z-index:-1;
    margin-left:14.5px;
}


.get-quote-btn{
    margin:5px 0px 10px 10px;
    padding:10px 35px;
    background:red;
    color:#fff;
    text-align: center;
    font-size:23px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color:#fff;
}

.get-quote-btn:hover{
    background:var(--bg-2);
    color:#fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}



/*Start Popup Modal CSS*/

.prodModalbody{
    margin-top:-22px;
    padding-top:0px;
    padding-bottom:0px;
    z-index:9999999;
}
.prodModalbody > .row{
    margin-top:0px;
    margin-bottom:0px;
}

.mdlTxtVal{
    border:0px solid #0b2239;
    
}
.modal-left-content{
    margin-top:8px;
}

.modal-left-content p{
    font-size:11px;
    text-align:justify;
}

.mdlRightBox{
    margin-top:5%;
    font-size:20px;
}

.mdlRightBox >p> strong{
    color:#ff5e15;
}
.mdlRightBoxFrm> p{
    font-size:12px;
    margin-top:-10px;
    padding-top:-50px;
    padding-left:0px;
    margin-left:-10px;
    color:#ff9900;
}
.main-input-box{
    padding:5px auto;
    margin-bottom:15px;
    border:1px solid #ff5e15;
}
.main-input-box i{
    font-size:18px;
}
.main-input-box > select, .main-input-box > label{
    padding-top:4px;
    padding-bottom:4px;
    margin:4px;
    background:lightgrey;
    border:0px;
    font-size:13px;
}

.frm-inpt{
   border:0px; 
   font-size:13px;
}

#prod-mdl-btn{
    margin-top:0px;
    cursor:pointer;
}

.mdl-sbmt-btn{
    
    background:#0b2239;
    padding:8px 48px;
    color:#fff;
}

.mdl-sbmt-btn:hover{
    background:#ec1317;
    color:#fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btnForOpenMdl{
    cursor:pointer;
}


/* Start About Us page */
.main-page-breadcrumb{height: 100px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
    position: relative;
}



.page-main-title {
    font-size: 30px;
    color: #00173c;
    font-weight: 400;
    margin-top:10px;
}

.page-main-para {
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    text-align: justify;
    padding-top: 0px;
}

.page-main-para > a {
    color: #00aaff;
    text-decoration:underline;
}

.page-main-para > strong{
    color:#000;
}
#prodRgtBox h2 strong{
    font-size:18px;
    color:#000;
    text-align:justify;
}
#prodRgtBox h3 strong{
    font-size:16px;
    color:#000;
}
#prodRgtBox h4 strong{
    font-size:14px;
    color:#000;
}
#prodRgtBox ul{
    margin-left:30px;
}
#prodRgtBox ul li{
    
    font-size:13.5px;
    color:#000;
}
.table, table{
    width:100%;
    margin:20px 0px;
   
}
.prod-range p strong{
   
   color:#000;
}
.prod-range h2 strong{
   font-size:20px;
   color:#000;
}
.prod-range h3 strong{
  font-size:18px;
  color:var(--bg-2);
}
.prod-range h4 strong{
   font-size:16px;
   color:#0A66C2;
}
.table > table{
    margin-top:-10px;
}
.table > table > tbody > tr, th,td{
    
    padding:5px;
    border: 1px solid #e6e6e6;
}
/* Start Contact Page*/
.conctPgBox> h1{
    color: #1d1e81;
    padding:5px 0px;
    text-transform: uppercase;
    font-family: "Oswald", Sans-serif;
}
.conctPgBox  a{
    color:#1d1e81;
    font-weight:bold;
}

.conctPgBox > .row > .contBox  i, .contForm i{
    color:#1d1e81;
}
.contForm{
    background-color: #e9ecef;
    padding:16px 0px;
}

.contForm> h1{
    color: #1d1e81;
    text-align:center;
    padding:5px 0px;
    text-transform: uppercase;
    font-family: "Oswald", Sans-serif;
}

#sndEmailData{
    background-color: var(--bg-2);
}

