/* UTILITIES */

.gold-text {
  color: var(--gold);
}

/* TOP HEADER */
.top-header {
 background: linear-gradient(to right, #d0a83d, #8b7521);
  color: var(--white);
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-info {
  display: flex;
  align-items: center;
}
.header-info span a,
.header-info span {
  margin-right: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  background-color: #dbc793;
  padding: 2px;
    border-radius: 5px;
}
.header-info span a:hover {
}
.header-info span svg {
  font-size: 20px;
  margin-right: -2px;
  height: 19px;
  width: 30px;
  text-shadow: 2px 2px #000000;
}

.btn-quote {
display: flex;
    align-items: center;
    background: #082033;
    color: white;
    border: none;
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-quote svg {
  height: 18px;
  margin-right: 2px;
}
.btn-quote:hover {
  box-shadow: 0 0 15px rgba(205, 179, 71, 0.5);
  transform: translateY(-2px);
}

/* MARQUEE */
.marquee-container {
  background: var(--dark-navy);
  overflow: hidden;
  padding: 9px 0;
    border-bottom: 3px solid rgb(202 173 63);
    border-top: 3px solid #caad3f;
}
/* 1. Hide the menu by default and set up the animation starting point */
.mega-menu {
  position: absolute;
  top: 100%; /* Sits right below the nav link */
  left: 0;
  background: var(--white);
  min-width: 267px;
  padding: 15px 0;
  border-radius: 8px;
  border-top: 4px solid var(--gold); /* Premium accent border */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

  /* Hiding logic */
  display: block; /* We use block but hide it visually for smoother transitions */
  opacity: 0;
  visibility: hidden;
  transform: translateY(
    10px
  ); /* Starts slightly lower for a "slide up" effect */
  transition: all 0.3s ease;
  z-index: 100;
}

/* 2. Show the menu when the parent <li> is hovered */
.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Slides up to its natural position */
}

/* 3. Style the links inside the mega-menu */
.mega-menu .mega-menu-link {
  color: #0a1f33 !important;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  border-bottom: none !important; /* Remove the nav hover underline */
  transition: var(--transition);
}

/* 4. Hover effect for individual links */
.mega-menu a:hover {
  background: var(--gray-bg);
  color: var(--gold) !important;
  padding-left: 25px; /* Subtle movement on hover */
}

/* Ensure the parent <li> is positioned relatively so the menu aligns to it */
.dropdown {
  position: relative;
  padding-bottom: 20px; /* Bridge the gap between nav and menu to prevent flicker */
  margin-bottom: -20px;
}
/* CATEGORY WRAPPER */

.mega-category-wrapper{
position:relative;
}

/* PRODUCT LIST RIGHT SIDE */

.mega-product-list{
position:absolute;
top:0;
left:100%;
background:#fff;
min-width:240px;
padding:10px 0;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
/* hidden */
opacity:0;
visibility:hidden;
transform:translateX(10px);
transition:0.3s;
}
.mega-product-list a{
    color: black !important;
}
/* SHOW ON HOVER */

.mega-category-wrapper:hover .mega-product-list{
opacity:1;
visibility:visible;
transform:translateX(0);
}

/* PRODUCT LINKS */



.mega-product-link:hover{
background:var(--gray-bg);
color:var(--gold);
padding-left:25px;
}
.marquee-content {
  white-space: nowrap;
  display: inline-block;
  color: var(--white);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: marquee 30s linear infinite;
}
.marquee-content span{
    margin-right: 22px;
}
.marquee-content span i{
color: #cdac3e;
font-size:24px;
}
.mobile-toggle {
  display: none;
  color: white;
}
@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* NAV */
.main-nav {
 /* background: linear-gradient(to right, #183559, #061928); */
  backdrop-filter: blur(10px);
padding: 10px 0px 4px 0px;
  display: flex;
    justify-content: space-evenly;
  align-items: center;
  /* position: sticky; */
  top: 0;
  z-index: 1000;
      background-color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  max-width: 246px;
}
.logo img {
  width: 91px;
  background-color: red;
}
.logo-icon {
  background: var(--gold);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  color: var(--deep-blue);
}

.nav-links {
padding: 14px 38px;
    list-style: none;
    display: flex;
    gap: 17px;
   
    border-radius: 50px;
}

.nav-links a {
    color: #000000 !important;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 500;
    padding-bottom: 5px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    font-family: "Cantarell", Sans-serif;
    padding: 0px 3px 0px 12px;
}
/* .nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
} */
.mega-product-link{
display:block;
padding:8px 20px;
font-size:15px;
color:black !important;
text-decoration:none;
transition:.25s;
}
/* HERO */
.hero {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80")
    center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 60, 93, 0.95),
    rgba(11, 60, 93, 0.3)
  );
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 25px 0 40px;
  font-size: 18px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-gold {
  background: var(--gold);
  color: var(--deep-blue);
  border: none;
  padding: 15px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-outline {
    display: block;
    background: linear-gradient(to right, #0c1e33, #3b5d85);
    color: white;
    border: 2px solid var(--gold);
    padding: 10px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
        text-align: center;
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(205, 179, 71, 0.3);
}

/* PRODUCTS SECTION */
.products-section {
  padding: 64px 0;
      /* background-color: #ffffff; */
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
    color: #DF0315;
    font-family: "DM Serif Display", Sans-serif !important;
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
}
.section-title p {

    font-size: 14px;
    color: black;
    font-weight: inherit;
    font-style: inherit;

}
.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 15px auto;
}

/* COMMON IMAGE */
.service-img img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* ================= CARD V1 ================= */
.service-card-v1 {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s ease;
}

/* Hover shadow like your image */
.service-card-v1:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.service-card-v1 h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #c40000;
  margin: 15px 0;
}

/* ================= CARD V2 ================= */
.service-card-v2 {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s ease;
}

.service-card-v2:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.service-card-v2 h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #c40000;
  margin: 15px 0;
}

/* ================= BUTTON ================= */
.btn-red {
  /*display: inline-block;*/
  padding: 10px 18px;
  background: #e60000;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  display: block !important;
  margin-top: 20px!important;
}

.btn-red:hover {
  background: #c40000;
  color: #fff;
}

/* FOOTER */
footer {
background: linear-gradient(to right, #183559, #061928);
  color: var(--white);
  padding: 80px 5% 20px;
  border-top: 5px solid var(--gold);
}

.footer-v1 {
  background: #000;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-v1 h4 {
  color: #ff0000;
  margin-bottom: 15px;
  font-family: 'DM Serif Display', serif;
}

.footer-v1 p {
  font-size: 11px !important;
  line-height: 1.7;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 11px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
}

.footer-links a:hover {
  color: #ff0000;
}

/* ICON */
.footer-v1 i {
  color: #ff0000;
  margin-right: 8px;
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 14px;
}
/* LEFT CALL */
.float-call-wrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
}

.float-call-icon {
  width: 50px;
  height: 50px;
  background: #008c0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.float-call-text {
  background: #555;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
}

/* RIGHT WHATSAPP */
.float-whatsapp {
 position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #47fc7c;
    border-radius: 31%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    z-index: 999;
    text-decoration: none;
}
.fa-brands{
      font-size: 40px;
}
/* HOVER */
.float-call-icon:hover,
.float-whatsapp:hover {
  transform: scale(1.08);
}
/* SEARCH CONTAINER */
.search-container {
  display: flex;
  align-items: center;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(205, 179, 71, 0.3);
  border-radius: 50px;
  padding: 4px 6px 4px 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 291px;
  margin-left: 20px;
  border: 1px solid #8f8f8f;
}

/* SEARCH INPUT FIELD */
.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 13px;
  width: 100%;
  padding: 8px 0;
}

.search-input::placeholder {
  color: rgb(63, 63, 63);
  font-size: 15px;
}

/* SEARCH BUTTON/ICON */
.search-btn {
  background: #103a5c;
  border: none;
  color: white;
  width: 36px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn i {
  width: 14px;
  height: 16px;
}

/* INTERACTIVE STATES */
.search-container:focus-within {
  background: rgb(246 246 246);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(205, 179, 71, 0.4);
  max-width: 320px; /* Expands slightly when clicking to type */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
  .search-container {
    display: none; /* Hide on small tablets/mobile to keep nav clean */
  }
}
/* SECTION */
.about-v4-section {
  padding: 80px 0;
  background: url('../img/Rectangle-17.png') repeat;
  background-position: center center;
    background-size: cover;
}

/* CONTENT LEFT */
.about-v4-content {
  max-width: 650px;   /* important for same look */
}

/* TITLE */
.about-v4-title {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: #d40000;
  margin-bottom: 20px;
}

/* TEXT */
.about-v4-text {
  font-family: 'Cantarell', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.about-v4-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #e60000;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.about-v4-btn:hover {
  background: #c40000;
  transform: translateY(-2px);
}
/* ===== Unique Animated Section ===== */
.unique-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* Background Image */
.unique-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://blog.authenticjourneys.info/wp-content/uploads/2016/10/gd-group-discussion-tips.jpg")
                no-repeat center center/cover;
    animation: uniqueZoomEffect 18s ease-in-out infinite alternate;
    z-index: -2;
}

/* Dark Overlay */
.unique-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
       background: rgb(0 0 0 / 75%);
    z-index: -1;
}

/* Content Wrapper */
.unique-hero-content {
    max-width: 750px;
    padding: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: uniqueFadeUp 1.2s ease forwards;
}

.unique-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.unique-hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Button Group */
.unique-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.unique-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Primary Button */
.unique-btn-primary {
    background: #0e273f;
    color: #fff;
}

.unique-btn-primary:hover {
    background: transparent;
    border: 2px solid #ffffff;
}

/* Secondary Button */
.unique-btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.unique-btn-secondary:hover {
    background: #ffffff;
    color: #000;
}

/* Animations */
@keyframes uniqueFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uniqueZoomEffect {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .unique-hero-title {
        font-size: 2.2rem;
    }

    .unique-hero-description {
        font-size: 1rem;
    }
}
.wk-social-wrapper {
    text-align: center;
        margin-right: 29px;
}

.wk-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.wk-social-item {
    display: inline-block;
}

.wk-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
       width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Unique hover colors */
.wk-facebook {
    background: #1877f2;
    color: #fff;
}

.wk-instagram {
    background: #e4405f;
    color: #fff;
}

.wk-twitter {
    background: #000;
    color: #fff;
}

.wk-linkedin {
    background: #0a66c2;
    color: #fff;
}

.wk-youtube {
    background: #ff0000;
    color: #fff;
}
.certifcate-section img{
    height: 133px;
}
.certificate-section{
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.certificate-section .inner-box{
    display:flex; align-items:center; gap:35px;
}
@media (max-width: 768px) {
 .certificate-section{
     flex-direction:column;
 }  
 .certificate-section .inner-box{
      flex-direction:column;
 }
}
/* HERO SECTION */
.about-hero-v1 {
  width: 100%;
  height: 400px;
  background: url('../img/about-us-banner-1-2.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: -1;
}
.about-hero-v2 {
  width: 100%;
  height: 400px;
  background: url('../img/about-us-banner-2.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
   z-index: -1;
}
.about-hero-v3 {
  width: 100%;
  height: 400px;
  background: url('../img/portfolio-.webp') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
   z-index: -1;
}
.about-hero-v4 {
  width: 100%;
  height: 400px;
  background: url('../img/contact-us.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
   z-index: -1;
}
@media (max-width: 576px) {

  .about-hero-v1 {
    height: auto;             
    padding: 60px 15px;       
  }

}
@media (max-width: 576px) {
  .about-hero-v1 {
    background-size: contain;   
    background-color: #f5f5f5;  
  }
}
@media (max-width: 576px) {

  .about-hero-v2 {
    height: auto;             
    padding: 60px 15px;       
  }

}
@media (max-width: 576px) {
  .about-hero-v2 {
    background-size: contain;   
    background-color: #f5f5f5;  
  }
}
@media (max-width: 576px) {

  .about-hero-v3 {
    height: auto;             
    padding: 60px 15px;       
  }

}
@media (max-width: 576px) {
  .about-hero-v3 {
    background-size: contain;   
    background-color: #f5f5f5;  
  }
}
@media (max-width: 576px) {

  .about-hero-v4 {
    height: auto;             
    padding: 60px 15px;       
  }

}
@media (max-width: 576px) {
  .about-hero-v4 {
    background-size: contain;   
    background-color: #f5f5f5;  
  }
}
/* LIGHT OVERLAY (optional for readability) */
.about-hero-v1::before {
  content: "";
  position: absolute;
  inset: 0;
 
}
.contact-v1 {
  padding: 60px 0;
  background: #f9f9f9;
}

/* FORM BOX */
.contact-v1-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #d40000;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  outline: none;
}

/* BUTTON */
.contact-v1-btn {
  width: 100%;
  background: #e60000;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: bold;
}

/* RIGHT SIDE */
.contact-v1-info h2 {
  font-family: 'DM Serif Display', serif;
  color: #d40000;
  font-size: 36px;
}

.contact-v1-info p {
  font-size: 14px;
  line-height: 1.8;
}

/* DETAILS */
.contact-v1-details {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.contact-v1-details p {
  margin-bottom: 10px;
}

.contact-v1-details i {
  color: #e60000;
  margin-right: 8px;
}

/* MAP */
/*  */

.contact-v1-map {
    width: 69%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    margin-left: 315px;

}
@media (max-width: 768px) {
  .contact-v1-map iframe {
    width: 100%;
  }
}
.contact-v1-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  margin-top: 40px;
}
/* TEXT CENTER */
.about-hero-v1-overlay {
  position: relative;
  text-align: center;
}

.about-hero-v1-overlay h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 60px;
  color: #000;
  font-weight: 500;
}
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    body {

      font-family: 'Cantarell', sans-serif;
    }
 
    /* ── Main wrapper ── */
    .products-section {
      max-width: 1068px  !important;
      margin: 0 auto;
      padding: 60px 20px;
    }
 
    /* ── Each product row ── */
    .product-row {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 80px;
    }
    .product-row:last-child {
      margin-bottom: 0;
    }
 
    /* Image left, text right */
    .product-row.img-left .product-img  { order: 1; }
    .product-row.img-left .product-text { order: 2; }
 
    /* Text left, image right */
    .product-row.img-right .product-text { order: 1; }
    .product-row.img-right .product-img  { order: 2; }
 
    /* ── Image block ── */
    .product-img {
      flex: 0 0 48%;
      max-width: 48%;
    }
    .product-img img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }
 
    /* ── Text block ── */
    .product-text {
      flex: 1;
    }
 
    /* ── Headings ── */
    .product-text h2 {
      font-family: 'DM Serif Display', sans-serif;
      font-size: 30px;
      font-weight: 600;
      color: #c0272d;
      margin-bottom: 14px;
    }
    .product-text h3 {
      font-family: 'DM Serif Display', sans-serif;
      font-size: 22px;
      font-weight: 600;
      color: #c0272d;
      margin: 18px 0 10px;
    }
 
    /* ── Paragraphs ── */
    .product-text p {
      font-family: 'Cantarell', sans-serif;
      font-size: 16px;
      color: #222;
      line-height: 1.75;
    }
 
    /* ── Tick list ── */
    .tick-list {
      list-style: none;
      margin: 14px 0 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .tick-list li {
      font-family: 'Cantarell', sans-serif;
      font-size: 16px;
      color: #222;
      line-height: 1.7;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .tick-list li .tick-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: #c0272d;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 3px;
    }
    .tick-list li .tick-icon svg {
      width: 11px;
      height: 11px;
      fill: none;
      stroke: #fff;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .tick-list li strong {
      font-weight: 700;
      color: #222;
    }
 
    /* ── Button ── */
    .btn-contact {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #c0272d;
      color: #fff;
      font-family: 'Cantarell', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 10px 22px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      margin-top: 6px;
    }
    .btn-contact:hover { background: #a01f24; }
 
    /* ── Responsive ── */
    @media (max-width: 768px) {
      .product-row {
        flex-direction: column;
      }
      .product-img,
      .product-row.img-left .product-img,
      .product-row.img-right .product-img {
        order: 1;
        flex: unset;
        max-width: 100%;
        width: 100%;
      }
      .product-row.img-left .product-text,
      .product-row.img-right .product-text {
        order: 2;
      }
    }
/* Quote */
.quote{
    font-size:18px;
    font-style:italic;
    color:#a78d32;
    font-weight:500;
    line-height:1.6;
}

/* Paragraph */
.founder-text p{
    margin-bottom:15px;
    line-height:1.7;
    color:#333;
}

/* Signature */
.founder-sign{
    margin-top:20px;
}

.founder-name{
    font-weight:bold;
    font-size:18px;
}

.founder-title{
    color:#666;
}

/* Responsive */
@media(max-width:768px){
.founder-container{
    padding: 13px;
}
    .founder-top{
        flex-direction:column;
        text-align:center;
    }

    .founder-image img{
        width:100%;
    }

    .quote{
        font-size:16px;
                text-align: start;
    }
    .founder-heading{
        text-align: start;
    }

}

    body {
      background:#ffffff;
      font-family: 'Cantarell', sans-serif;
    }
 .gallery-v1 {
  padding: 60px 0;
  background: #f9f9f9;
}

/* FILTER */
.gallery-v1-tabs {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.gallery-v1-tabs button {
  border: none;
  background: transparent;
  padding: 0px 0px !important;
  margin: 5px;
  color: #d40000;
  cursor: pointer;
}

.gallery-v1-tabs .active {
  background: #e60000;
  color: #fff;
padding: 10px 16px !important;
}

/* GRID */
.gallery-v1-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-left: 131px;
}

.gallery-v1-item img {
  /* width: 100%;
  height: 250px; */
  object-fit: cover;
  cursor: pointer;
}

/* LIGHTBOX */
.lb-wrap {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.lb-inner {
  position: relative;
  width: 500px;
  margin: 80px auto;
  text-align: center;
}

.lb-img-wrap img {
  width: 100%;
}

.lb-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  background: none;
  border: none;
}

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.lb-prev { left: -681px; }
.lb-next { right: -681px; }

.lb-counter {
  color: #fff;
  font-size: 14px;
}
    /* ── Section wrapper ── */
    .about-section {
      max-width: 980px;
      margin: 0 auto;
      padding: 32px 20px;

    }
 
    /* ── Block spacing ── */
    .about-block {
      margin-bottom: 48px;
    }
    .about-block:last-child {
      margin-bottom: 0;
    }
 
    /* ── Headings ── */
    .about-block h2 {
      font-family: 'DM Serif Display', sans-serif;
      font-size: 30px;
      font-weight: 600;
      color: #c0272d;
      margin-bottom: 18px;
    }
 
    /* ── Paragraphs ── */
    .about-block p {
      font-family: 'Cantarell', sans-serif;
      font-size: 16px;
      color: #222;
      line-height: 1.75;
      text-align: justify;
    }
 
    /* ── Bullet list (•) ── */
    .bullet-list {
      list-style: none;
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .bullet-list li {
      font-family: 'Cantarell', sans-serif;
      font-size: 16px;
      color: #222;
      line-height: 1.75;
      text-align: justify;
      padding-left: 18px;
      
    }
    .bullet-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      top: 0;
      color: #222;
      font-size: 18px;
      line-height: 1.65;
    }
 
    /* ── Tick / checkmark list (✔) ── */
    .tick-list {
      list-style: none;
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .tick-list li {
      font-family: 'Cantarell', sans-serif;
      font-size: 16px;
      color: #222;
      line-height: 1.7;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .tick-list li .tick-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: #c0272d;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    .tick-list li .tick-icon svg {
      width: 13px;
      height: 13px;
      fill: none;
      stroke: #fff;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .tick-list li strong {
      font-weight: 700;
      color: #222;
    }
.ppt-content-wrap {
    width: 100%;
    padding: 1px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.ppt-content-box {
    max-width: 1140px;
    text-align: center;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
    transition: all 0.3s ease;
}

.ppt-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ppt-description {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.ppt-highlight {
    color: #132845;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .ppt-content-wrap {
        padding: 60px 15px;
    }

    .ppt-title {
        font-size: 24px;
    }

    .ppt-description {
        font-size: 15px;
    }

    .ppt-content-box {
        padding: 30px 20px;
    }
}
.page-title{
    font-size: 30px;
    text-align: center;
    margin-bottom: 81px;
    font-family: sans-serif;
    font-weight: 600;
    color: #484848;
}

/* SECTION */
.ux-blog-section {
  background: #f8f9fc;
}

/* TITLE */
.ux-blog-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.ux-blog-subtitle {
  color: #6c757d;
  font-size: 1rem;
}

/* CARD */
.ux-blog-card {
background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(0 0 0 / 13%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ux-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* IMAGE */
.ux-blog-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.ux-blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.ux-blog-content p{
      display: -webkit-box;
  -webkit-line-clamp: 2;       /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ux-blog-tag {
  font-size: 0.75rem;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ux-blog-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.ux-blog-text {
  font-size: 0.9rem;
  color: #6c757d;
  flex-grow: 1;
}

/* BUTTON */
.ux-blog-btn {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.ux-blog-btn:hover {
  color: #007bff;
}

/* SECTION */
.uxd-blog-detail-section {
  background: #f9fafc;
}

/* TITLE */
.uxd-blog-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.uxd-blog-meta {
  color: #6c757d;
  font-size: 0.9rem;
}

/* IMAGES */
.uxd-blog-main-img,
.uxd-blog-sub-img {
    border-radius: 12px;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}

/* TEXT */
.uxd-blog-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SUBTITLE */
.uxd-blog-subtitle {
  font-weight: 600;
  margin-top: 20px;
}

/* QUOTE */
.uxd-blog-quote {
  background: #eef4ff;
  padding: 15px 20px;
  border-left: 4px solid #007bff;
  font-style: italic;
  border-radius: 8px;
}

/* SIDEBAR */
.uxd-related-box,
.uxd-contact-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid #d1d1d1;
}

.uxd-sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* RELATED BLOGS */
.uxd-related-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
  cursor: pointer;
}

.uxd-related-item img {
     border-radius: 6px;
    width: 98px;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}

.uxd-related-item h6 {
  font-size: 0.9rem;
  margin: 0;
}

.uxd-related-item span {
  font-size: 0.75rem;
  color: #6c757d;
}

/* FORM */
.uxd-input {
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 10px;
}

.uxd-submit-btn {
  background: #007bff;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.uxd-submit-btn:hover {
  background: #0056b3;
}
/* STICKY CONTACT FORM */
.uxd-contact-sticky {
  position: sticky;
  top: 100px; /* space from top */
  z-index: 10;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .uxd-blog-title {
    font-size: 1.8rem;
  }
}
/* FORM WRAPPER */
.uxd-form-wrapper {
  display: flex;
  flex-direction: column;
}

/* GROUP */
.uxd-form-group {
  margin-bottom: 15px;
}
.uxd-form-group .input-group-text{
    height:46px;
}
.uxd-form-group input{
    margin:0;
}
/* LABEL */
.uxd-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.uxd-label span {
  color: red;
}

/* INPUT */
.uxd-input {
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
}

/* ERROR */
.uxd-error {
  color: red;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* COUNTRY SELECT */
.uxd-country-select {
  border: 1px solid #ced4da;
  border-radius: 8px 0 0 8px;
  padding: 5px;
}

/* CAPTCHA */
.uxd-captcha-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.uxd-captcha-img {
  width: 100%;
  max-width: 120px;
  border-radius: 6px;
}

/* BUTTON */
.uxd-submit-btn {
  background: #0c1e33;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

/* STICKY */
.uxd-contact-sticky {
    position: sticky;
    top: 100px;
    border: 1px solid #cfcfcf;
}

/* MOBILE */
@media (max-width: 991px) {
  .uxd-contact-sticky {
    position: static;
  }
}
/* SECTION */
/* ===== DIFF V2 SECTION ===== */
.diff-v2-section {
  background-color: #f0eeee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M10 10 Q50 0 90 10 Q100 50 90 90 Q50 100 10 90 Q0 50 10 10Z' fill='none' stroke='%23ccc' stroke-width='0.5' opacity='0.4'/%3E%3C/svg%3E");
  padding: 60px 0;
}

.diff-v2-section .container-fluid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== ROW ===== */
.diff-v2-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
      margin-right: -214px;
}

/* ===== LEFT ===== */
.diff-v2-left {
  flex: 1.2;
      margin-left: -270px;
}

.diff-v2-left h2 {
  font-size: 38px;
  font-weight: 900;
  color: #cc0000;
  line-height: 1.15;
  margin: 0 0 28px 0;
  font-style: italic;
}

.diff-v2-left ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-v2-left ul li {
  /* display: flex; */
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.diff-v2-left ul li i {
  color: #cc0000;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.diff-v2-left ul li span {
  display: inline;
}

.diff-v2-left ul li b {
  font-weight: 700;
  color: #111;
  display: inline;
  margin-right: 3px;
}

/* ===== BUTTON ===== */
.diff-v2-btn {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s ease;
}

.diff-v2-btn:hover {
  background-color: #a80000;
}

/* ===== RIGHT - STATS ===== */
.diff-v2-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

 .diff-v2-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 6px !important;
    }

.diff-v2-box h3 {
  font-size: 69px;
  font-weight: 900;
  color: #cc0000;
  margin: 0 0 8px 0;
  line-height: 1;
  font-style: italic;
}

    .diff-v2-box:hover {
        width: 100%;
      
        transform: none;
        border-radius: 6px !important;
    }

}


.diff-v2-box p {
  font-size: 13.5px;
  color: #444;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ===== MOBILE (max 767px) ===== */
@media (max-width: 767px) {

  .diff-v2-section {
    padding: 40px 0;
  }

  .diff-v2-section .container-fluid {
    padding: 0 18px;
  }

  /* Stack into single column */
  .diff-v2-row {
    flex-direction: column;
    gap: 10px;
  }

  .diff-v2-left {
    width: 100%;
  }

  .diff-v2-left h2 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .diff-v2-left ul {
    gap: 16px;
    margin-bottom: 26px;
  }

  .diff-v2-left ul li {
    font-size: 14px;
  }

  /* Mobile stats — single column, centered, no grid */
  .diff-v2-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .diff-v2-box {
    padding: 20px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
  }

  .diff-v2-box:last-child {
    border-bottom: none;
  }

  .diff-v2-box h3 {
    font-size: 52px;
  }

  .diff-v2-box p {
    font-size: 13px;
    color: #555;
  }
}

/* ===== TABLET (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {

  .diff-v2-section .container-fluid {
    padding: 0 24px;
  }

  .diff-v2-row {
    flex-direction: column;
    gap: 30px;
  }

  .diff-v2-left h2 {
    font-size: 34px;
  }

  .diff-v2-right {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .diff-v2-box h3 {
    font-size: 42px;
  }
}       
/* SECTION */
.why-v2-section {
  padding: 80px 0;
  background: #f9f9f9;
}
.row{
  margin-top: 20px;
}
/* HEADING */
.why-v2-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: #d40000;
}

.why-v2-head p {
      max-width: 600px;
    margin: auto;
    font-size: 14px!important;
    color: #403e3e;
}

/* CARD */
.why-v2-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 6px;
  transition: 0.3s ease;
  position: relative;

}

/* 🔥 RED GLOW BORDER HOVER */
.why-v2-card:hover {
  border-color: #e60000;
  box-shadow: 0 0 25px rgba(230, 0, 0, 0.25);
  transform: translateY(-5px);
}

/* ICON */
.why-v2-icon {
  margin-bottom: 15px;
}

.why-v2-icon i {
  font-size: 28px; /* 👈 chota kiya */
  color: #e60000;
  transition: 0.3s;
}

/* 🔥 ICON HOVER */
.why-v2-card:hover .why-v2-icon i {
  transform: scale(1.2);
  color: #b80000;
}

/* TITLE */
.why-v2-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #d40000;
  margin-bottom: 10px;
}

/* TEXT */
.why-v2-card p {
    color: #1C1C1C;
    font-family: "Cantarell", Sans-serif;
    font-size: 15px !important;
    font-weight: 400;
}
/* SECTION */
.latest-v2-section {
  padding: 80px 0;
  text-align: center;
  background: #f9f9f9;
}

/* TITLE */
.latest-v2-title {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: #d40000;
}

/* SUBTEXT */
.latest-v2-sub {
  
  margin: 10px auto 30px;
  font-size: 13px;
  color: #555;
}

/* TABS */
.latest-v2-tabs {
  margin-bottom: 40px;
}

.latest-v2-tabs button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  margin: 5px;
  font-size: 14px;
  cursor: pointer;
  color: #d40000;
  transition: 0.3s;
}

/* ACTIVE TAB */
.latest-v2-tabs button.active {
  background: #e60000;
  color: #fff;
  border-radius: 3px;
}

/* GRID */
.latest-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ITEM */
.latest-v2-item {
    overflow: hidden;
    position: relative;
    display: grid !important;
    gap: 20px;
}

/* IMAGE */
.latest-v2-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.4s;
}
/* dark overlay feel improve */
.fancybox__container {
  backdrop-filter: blur(3px);
}

/* arrows bigger */
.fancybox__nav .f-button {
  background: rgba(0,0,0,0.5);
}

/* close button */
.fancybox__button--close {
  color: #fff;
}
/* HOVER EFFECT */
.latest-v2-item:hover img {
  transform: scale(1.1);
}

/* HIDE */
.hide {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .latest-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* SECTION */
.trusted-v1-section {
  padding: 60px 0 30px;
  background: #f9f9f9;
}

/* HEADING */
.trusted-v1-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: #d40000;
  margin-bottom: 10px;
}
.container-fluid{
      width: 65%;
}
.container{
              max-width: 1041px;
}
.containerr{
  max-width: 1855px;
}
.gallery-v1-item img{
  position: relative;
}


.gallery-v1-item img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: 0.3s;
}
.trusted-v1-head p {
  max-width: 650px;
  margin: auto;
  font-size: 11px!important;
  color: #000000 !important;
  line-height: 1.7;
}

/* SLIDER */
.trusted-v1-slider {
  margin-top: 30px;
  position: relative;
}

/* LOGO */
.trusted-v1-slider img {
  height: 100px;
  object-fit: contain;

  opacity: 0.7;
  /* transition: 0.3s; */
}

/* HOVER */


/* SLIDE CENTER */
.trusted-v1-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ARROWS */
.trusted-v1-prev,
.trusted-v1-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: red;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.trusted-v1-prev { left: 10px; }
.trusted-v1-next { right: 10px; }

/* dropdown hidden by default */
.mega-product-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  padding: 15px;
  display: none;              /* 🔴 hidden */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
}

/* hover pe show */
.dropdown:hover .mega-product-list {
  display: block;             /* 🟢 show */
}

/* links styling */
.mega-product-link {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color: #333;
}

.mega-product-link:hover {
  background: #f5f5f5;
}
/* responsive*/
@media (max-width: 768px) {

  .diff-v2-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap !important; 

  }

  /* LEFT */
  .diff-v2-left {
    /* text-align: center; */
    padding: 0 20px;
    margin-left: -210px;
  }

  .diff-v2-left h2 {
    font-size: 28px;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 15px;
  }

  .diff-v2-left ul {
    padding: 0;
    list-style: none;
  }

  .diff-v2-left ul li {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    /* margin-bottom: 12px; */
    position: relative;
    padding-left: 20px;
    /* display: none !important; hide all by default */
  }

  .diff-v2-left ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: red;
  }

  .diff-v2-btn {
    display: inline-block;
    margin-top: 15px;
    background: #e60000;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
  }

  /* RIGHT */
  .diff-v2-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
            margin-right: 220px!important;
  }
.diff-v2-box{
    background: none !IMPORTANT;
backdrop-filter: blur(0px) !IMPORTANT;
}
  .diff-v2-box {
    text-align: center;
  }

  .diff-v2-box h3 {
    font-size: 69px;
    font-weight: 700;
    color: #e60000;
    margin: 0;
  }

  /* Add + automatically */
  .diff-v2-box h3::after {
    /* content: "+";
     */
  }

  .diff-v2-box p {
    font-size: 14px;
    margin-top: 5px;
    color: #333;
  }
}
/* =========================================
   TRUSTED CLIENTS - MOBILE ONLY
========================================= */

@media (max-width: 768px) {

    .trusted-v1-head h2 {
        font-size: 26px;
    }

    .trusted-v1-head p {
        font-size: 14px;
        padding: 0 15px;
    }

     .trusted-v1-slider {
        width: 100%;
        overflow: hidden;
    }

    .trusted-v1-slider .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    /* IMPORTANT */
   .trusted-v1-slider .swiper-slide {
        width: 50% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
      .trusted-v1-slider .swiper-slide img {
        width: 90%;
        max-width: 140px;
        height: 80px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    /* ARROWS MOBILE */
    .trusted-v1-prev,
    .trusted-v1-next {
        display: flex !important;

        position: absolute;

        top: 50%;
        transform: translateY(-50%);

        z-index: 50;

        width: 28px;
        height: 28px;

        align-items: center;
        justify-content: center;

        font-size: 25px;
        line-height: 1;

        color: #e60012;

        cursor: pointer;
    }

    .trusted-v1-prev {
        left: 3px;
    }

    .trusted-v1-next {
        right: 3px;
    }

}
.latest-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .latest-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (Important part) */
@media (max-width: 576px) {
  .latest-v2-grid {
    grid-template-columns: 1fr; /* 👈 ek hi box per row */
  }
}
/* IMAGE */
.trusted-v1-slider img {
  width: 100%;
  /* height: auto; */
  object-fit: contain;
}

/* ARROWS */
.trusted-v1-prev,
.trusted-v1-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.trusted-v1-prev { left: 10px; }
.trusted-v1-next { right: 10px; }

/* TABLET */
@media (max-width: 992px) {
  .trusted-v1-head h2 {
    font-size: 26px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .trusted-v1-head h2 {
    font-size: 40px;
  }

  .trusted-v1-head p {
    font-size: 15px;
  }

  .trusted-v1-prev,
  .trusted-v1-next {
    font-size: 18px;
  }
}
/* GRID DEFAULT (DESKTOP) */
.gallery-v1-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* TABLET */
@media (max-width: 992px) {
  .gallery-v1-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {

  /* TABS VERTICAL */
  .gallery-v1-tabs {
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    /* gap: 12px; */
  }

  .gallery-v1-tabs button {
    background: #02010100;
    border: none;
    color: #E31E24;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .gallery-v1-tabs button.active {
    background: red;
    color: #fff;
    padding: 6px 14px !Important;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
  }

  /* GRID 1 COLUMN */
  .gallery-v1-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  /* IMAGE FULL WIDTH */
  .gallery-v1-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* ITEM CENTER */
.gallery-v1-item {
  display: flex;
  justify-content: center;
}

/* IMAGE SIZE CONTROL */
.gallery-v1-item img {
  width: 100%;        /* 👈 thoda chhota karo */
  max-width: 350px;  /* optional limit */
  height: auto;
  display: block;
  margin-left:-127px;
}
/* DETAILS SIDE BY SIDE (DESKTOP) */
.contact-v1-details {
  display: flex;
  gap: 40px;
}

/* TABLET */
@media (max-width: 992px) {
  .contact-v1-details {
    flex-direction: column;
    gap: 20px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .contact-v1-info h2 {
    font-size: 22px;
  }

  .contact-v1-info p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-v1-details {
    flex-direction: column;
    gap: 15px;
  }

  .contact-v1-left p,
  .contact-v1-right p {
    font-size: 14px;
  }

  /* MAP FIX */
  .contact-v1-map iframe {
    width: 100%;
    height: 250px;   /* 👈 perfect mobile height */
    border: 0;
  }
}

/* DESKTOP MAP */
.contact-v1-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
@media (max-width: 576px) {
  .contact-v1-map iframe {
    height: 250px;
  }
}
/* ===== CONTACT MAP - MOBILE ===== */
@media (max-width: 767px) {

  .contact-v1-map {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .contact-v1-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
  }

}
/* ===== MAIN NAV - MOBILE ===== */
@media (max-width: 767px) {

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .main-nav .logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
  }

  /* Nav links — desktop pe hide, sidebar se handle */
  .main-nav .nav-links {
    display: none;
  }

  /* Hamburger button */
.mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
      width: 48px!important;
        height: 43px!important;
        border: 2px solid #c91818;
        border-radius: 4px;
        cursor: pointer;
        color: #bb2121;
        font-size: 31px;
        border-style: solid;
    }

  /* Mega dropdown — hide on mobile */
  .mega-product-list {
    display: none !important;
  }
}

/* ===== SIDEBAR - MOBILE ===== */
@media (max-width: 767px) {

  .pptech-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transition: left 0.35s cubic-bezier(.77,0,.18,1);
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .pptech-sidebar.active {
    left: 0;
        background-color: white;
    height: 100%;
    width: 80%;
  }

  /* Overlay */
  .pptech-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 9998;
  }

  .pptech-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Inner padding */
  .pptech-sidebar-inner {
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Sidebar header — logo + close btn */
  .pptech-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
  }

  .pptech-sidebar-header img {
    max-width: 150px;
    height: auto;
  }

  /* Close button — red X like image */
  .pptech-close-btn {
    background: #cc0000;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* Nav links */
  .pptech-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pptech-nav li {
    border-bottom: 1px solid #f0f0f0;
  }

  .pptech-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .pptech-nav a:hover,
  .pptech-nav a:active {
    color: #cc0000;
    padding-left: 8px;
  }

  .pptech-arrow {
    font-size: 16px;
    color: #cc0000;
    font-weight: 600;
  }

  /* Dropdown sub-menu */
  .pptech-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 14px;
    list-style: none;
  }

  .pptech-has-dropdown.active .pptech-dropdown-menu {
    max-height: 400px;
  }

  .pptech-dropdown-menu li {
    border-bottom: none;
  }

  .pptech-dropdown-menu a {
    font-size: 14px;
    color: #555;
    padding: 10px 4px;
  }

  /* Contact box at bottom */
  .pptech-contact-box {
    margin-top: auto;
    padding-top: 24px;
    display: none; /* hidden by default, show on click of contact link */
    border-top: 1px solid #eee;
  }

  .pptech-contact-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #cc0000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pptech-contact-box p {
    font-size: 13px;
    color: #555;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pptech-contact-box i {
    color: #cc0000;
    width: 14px;
  }
}

/* ===== FLOAT BUTTONS - MOBILE ===== */
@media (max-width: 767px) {

  /* Call button - left */
  .float-call-wrap {
    position: fixed;
    bottom: 95px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9997;
  }

  .float-call-icon {
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .float-call-text {
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
  }

  /* WhatsApp button - right */
  .float-whatsapp {
    position: fixed;
    bottom: 95px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 9997;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
}

/* ===== BOTTOM NAV BAR - MOBILE ===== */
@media (max-width: 767px) {

  .mbi-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 9996;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  }

  .mbi-footer-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
  }

  .mbi-menu-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #555;
    font-size: 11px;
    transition: color 0.2s ease;
  }

  .mbi-menu-list a:hover,
  .mbi-menu-list a:active {
    color: #cc0000;
  }

  .mbi-menu-list i {
    font-size: 18px;
  }

  .mbi-menu-list p {
    margin: 0;
    font-size: 10px;
    font-weight: 500;
  }

  /* Body ko bottom nav ki height ka padding do */
  body {
    padding-bottom: 62px;
  }
}

/* ===== DESKTOP PE SIDEBAR & BOTTOM NAV HIDE ===== */
@media (min-width: 768px) {
  .pptech-sidebar,
  .pptech-sidebar-overlay,
  .mbi-footer,
  .float-call-wrap,
  .float-whatsapp {
    display: none !important;
  }

  .mobile-toggle {
    display: none;
  }
}
.pptech-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 51, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
  }

  /* Sidebar */
  .pptech-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: calc(100vh - 62px);
    background: #0a1f33;
    color: #fff;
    z-index: 99999;
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
  }

  .pptech-sidebar.active {
    left: 0;
  }

  .pptech-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Inner */
  .pptech-sidebar-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Header */
  .pptech-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }

  .pptech-brand {
    font-weight: 400;
    letter-spacing: 1px;
    color: #cbb54c;
  }

  .pptech-close-btn {
    background: none;
    border: none;
    font-size: 40px;
    color: red;
    cursor: pointer;
    border: 1px solid black;
  }

  /* Navigation */
  .pptech-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pptech-nav li {
    margin-bottom: 18px;
  }

  /* .pptech-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  } */

  .pptech-nav a:hover {
    color: #cbb54c;
    padding-left: 6px;
  }

  /* Dropdown */
  .pptech-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-left: 15px;
  }

  .pptech-dropdown-menu li {
    margin: 12px 0;
  }

  .pptech-dropdown-menu a {
    font-size: 14px;
    color: #bfc8d6;
  }

  .pptech-has-dropdown.active .pptech-dropdown-menu {
    max-height: 300px;
  }

  .pptech-arrow {
    font-size: 14px;
    color: #cbb54c;
  }

  /* Contact Box */
  .pptech-contact-box {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(203, 181, 76, 0.3);
  }

  .pptech-contact-box h4 {
    color: #cbb54c;
    font-weight: 400;
    margin-bottom: 15px;
  }

  .pptech-contact-box p {
    font-size: 13px;
    color: #bfc8d6;
    margin: 6px 0;
  }
  /* =========================
   DROPDOWN PARENT
========================= */
.svc-dropdown-parent {
  position: relative;
}

/* =========================
   DROPDOWN BOX
========================= */
.svc-dropdown-box {
  position: absolute;
  top: 98%;
  left: 0;
  width: 270px;
  background: #f2f2f2;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 12px 0;
  display: none;
  z-index: 999999;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* SHOW */
.svc-dropdown-parent:hover .svc-dropdown-box {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TOP ARROW
========================= */
.svc-up-arrow {
  position: absolute;
  top: -8px;
  left: 25px;
  width: 15px;
  height: 15px;
  background: #f2f2f2;
  transform: rotate(45deg);
}

/* =========================
   LIST
========================= */
.svc-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;

}

/* SCROLLBAR */
.svc-dropdown-list::-webkit-scrollbar {
  width: 5px;
}
.svc-dropdown-list::-webkit-scrollbar-thumb {
  background: #f4a300;
  border-radius: 10px;
}

/* =========================
   ITEM
========================= */
.svc-dropdown-list li {
  padding: 10px 22px;
}

/* LINKS */
.svc-dropdown-list li a {
  text-decoration: none;
  color: #1c1c1c;
  font-size: 14px;
  display: block;
  position: relative;
  padding-left: 16px;
  transition: all 0.3s ease;
}

/* ORANGE ARROW */
.svc-dropdown-list li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f4a300;
  font-weight: bold;
}

/* HOVER */
.svc-dropdown-list li:hover {
  background: #ffffff;
}

.svc-dropdown-list li a:hover {
  color: #f4a300;
  transform: translateX(4px);
}

/* =========================
   FIX CUT ISSUE
========================= */
header {
  position: relative;
  z-index: 9999;
}

.navbar,
.container,
.row {
  overflow: visible !important;
}

/* .about-hero-v2 {
  position: relative;
  z-index: 1;
} */
.swiper{
      margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /*z-index: -1 !Important;*/
    display: block;
}
.swiperr{
      margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 999999 !Important;
    display: block;
}
/* =========================
   FOOTER BOTTOM UNIQUE STYLE
========================= */
.apk-footer-bottom {

  color: #ccc;
  text-align: center;            /* center all text */
  padding: 20px 10px;
  font-size: 14px;
  border-top: 1px solid #222;
}

/* PARAGRAPH */
.apk-footer-bottom p {
  margin: 5px 0;
  /*line-height: 1.6 !Important;*/
}

/* LINK STYLE */
.apk-footer-bottom a {
  color: #f4a300;                /* orange highlight */
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
.apk-footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}
.service-content p{
  color: #1C1C1C;
    font-family: "Cantarell", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}
}
