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



/* NAVBAR */
.navbar {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 4rem;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
      z-index: 1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
text-decoration:none;
font-size:20px;
font-weight:600;
}

.logo img{
height:40px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

.nav-links a:hover{
opacity:0.7;
}


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

    .video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.55);
      z-index: -1;
    }

    .hero-content {
      max-width: 800px;
      padding: 2rem;
      animation: fadeIn 1.5s ease forwards;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 1rem;
      color: white;
    }

    .hero-content span {
      color: #007bff;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #dcdcdc;
    }

    .cta-button {
      padding: 0.9rem 2.5rem;
      border: none;
      background: #007bff;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #0056cc;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }

/* RESPONSIVE NAVBAR */
/* =========================
   PREMIUM MOBILE NAVBAR
========================= */
@media (max-width:768px){

  
  .navbar{
    padding: 0.8rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo{
    margin-bottom: 10px;
  }

  /* SCROLL NAV */
  .nav-links{
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 12px;
    width: 100%;
    padding-bottom: 5px;
  }

  .nav-links::-webkit-scrollbar{
    display: none;
  }

  .nav-links a{
    flex: 0 0 auto;
    padding: 6px 12px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
  }
}
/* Tile Gallery */
.tile-gallery{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.tile{
    height:180px;
    width:100%;
    border-radius:10px;
}

.showroom-video-section{
    padding:100px 20px;
    text-align:center;
    background: linear-gradient(135deg, #f9f9f9, #f9f9f9, #f9f9f9);
}

.showroom-video-section h1{
    font-size:3rem;
    font-weight:700;
    letter-spacing:2px;
    color:#001b4d;
    margin-bottom:20px;
    text-transform:uppercase;
}

.showroom-video-section h1::after{
    content:"";
    display:block;
    width:60%;
    height:3px;
    background:linear-gradient(90deg,#001b4d,#001b4d);
    margin:10px auto 0;
    border-radius:3px;
}

.showroom-video-section h5{
    max-width:850px;
    margin:20px auto 40px;
    color:#001b4d;
    font-size:1.05rem;
    line-height:1.7;
}

.video-wrapper{
    max-width:1000px;
    margin:auto;
}

.video-wrapper video{
    width:100%;
    border-radius:10px;
}
    @media (max-width: 768px) {
      .emporium-section h1 {
        font-size: 2rem;
      }
      .emporium-video {
        width: 95%;
      }
    }

    /* TILE COLLECTION SECTION STYLE */
    .tile-showcase {
    background: #f9f9f9;
    color: #0a1a33;
    text-align: center;
    padding: 60px 50px; /* reduced top space */
  }

  .section-heading {
    max-width: 850px;
    margin: 0 auto 40px; /* slightly less margin */
  }

  .tagline {
    color: #3b82f6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .section-heading h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .section-heading h2 span {
    color: #3b82f6;
  }

  .divider {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: 20px auto;
    border-radius: 2px;
  }

  .section-heading p {
    font-size: 1.05rem;
    color: #1e3a8a;
    line-height: 1.7;
  }

  /* Grid Layout */
  .tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .tile-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tile-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
  }

  .tile-item:hover img {
    transform: scale(1.08);
    filter: brightness(60%);
  }

  .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #ffffff;
    padding: 20px;
    background: rgba(0, 15, 50, 0.4);
    text-align: center;
  }

  .tile-item:hover .overlay {
    opacity: 1;
  }

  .overlay-content {
    max-width: 90%;
  }

  .overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
  }

  .overlay p {
    font-size: 0.95rem;
    color: #e0e7ff;
    margin-bottom: 15px;
  }

  .overlay a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
  }

  .overlay a:hover {
    background: #2563eb;
  }

  @media (max-width: 768px) {
    .tile-showcase {
      padding: 50px 20px;
    }

    .section-heading h2 {
      font-size: 2rem;
    }

    .tile-item img {
      height: 200px;
    }
  }

  /*  Section Styling */
  .product-section {
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(135deg, #001b4d, #003d99, #002a70);
    color: white;
  }

  .product-section h2 {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .product-section p {
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #d0d9ff;
  }

  /*  Product Cards Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: 0.4s;;
    cursor: pointer;
    text-align: center;
  }

  .product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
  }

  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
  }

  .product-card:hover img {
    transform: scale(1.07);
    filter: brightness(90%);
  }

  .product-card h4 {
    color: #001b4d;
    margin: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
  }

  /* Lightbox (Popup Detail) */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox-content {
    background: #002b6a;
    color: white;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-align: center;
    animation: fadeIn 0.4s ease;
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
  }

  .lightbox-content img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .lightbox-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .lightbox-content p {
    color: #e0e7ff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .close-btn {
    margin-top: 20px;
    background: white;
    color: #00205b;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .close-btn:hover {
    background: #1d4ed8;
    color: white;
  }

  /* Section Styling */
.publications-section {
  padding: 70px 40px;
  background-color: #ffffff;
  color: #001b4d;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #002b80;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* 🔹 Grid Layout */
.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🔹 Card */
.pub-card {
  background: #f8f9ff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  border: 1px solid #e3e6f0;
}

.pub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0, 0, 80, 0.15);
}

/* 🔹 Image */
.pub-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pub-card:hover .pub-img {
  transform: scale(1.03);
}

/* 🔹 Text Content */
.pub-content {
  padding: 25px 20px 30px;
  text-align: left;
}

.pub-content h3 {
  font-size: 1.3rem;
  color: #002b80;
  margin-bottom: 10px;
}

.pub-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Button */
.pub-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0033cc, #0055ff);
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pub-btn:hover {
  background: white;
  color: #0033cc;
  border: 2px solid #0033cc;
}
/* 📱 Tablet */
@media (max-width: 992px) {

  .publications-section {
    padding: 60px 30px;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .publications-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .pub-img {
    height: 210px;
  }

}


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

  .publications-section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .publications-grid {
    grid-template-columns: 1fr;   /* single column */
    gap: 25px;
  }

  .pub-img {
    height: 200px;
  }

  .pub-content {
    padding: 20px 18px 25px;
  }

  .pub-content h3 {
    font-size: 1.15rem;
  }

  .pub-content p {
    font-size: 0.95rem;
  }

  .pub-btn {
    padding: 9px 20px;
    font-size: 0.9rem;
  }

}

/* Gradient Background */
.tools-section {
  background: linear-gradient(135deg, #001b4d, #003d99, #002a70);
  padding: 80px 50px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Title */
.title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 1rem;
  color: #dbe9ff;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Row Layout */
.tools-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

/* Card */
.tool-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 25px);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(50px);
}

/* Animation - when visible */
.tool-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effect */
.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.15);
}

/* Image Box */
.img-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid #66aaff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

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

/* Text Section */
.tool-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.tool-content p {
  font-size: 0.95rem;
  color: #dbe9ff;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.btn {
  display: inline-block;
  background: #ffffff;
  color: #0033cc;
  padding: 6px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #66aaff;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .tools-row {
    flex-wrap: wrap;
  }

  .tool-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .tool-card {
    flex: 1 1 100%;
  }
}

/* FOOTER STYLE */
.footer{
  text-align:center;
  padding:25px;
  background:#111;
  color:white;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px; /* reduced gap overall */
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-img{
    padding:20px;
}

.footer-logo {
  width: 100%;
  max-width:220px;
  height: 100%;
  /*border-radius: 50%;*/
  object-fit: cover;
  /*border: 2px solid rgba(255, 255, 255, 0.3);*/
}

.footer-left h3 {
  font-size: 1.9rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #ffffff;
}

.footer-left p {
  color: #dce8ff;
  line-height: 1.6;
  font-size: 0.96rem;
}

/* Center Section */
.footer-center {
  flex: 1.3;
  display: flex;
  justify-content: space-around;
  min-width: 280px;
  gap: 50px; /* 🔹 reduced the space between Quick Links & Products */
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  position: relative;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  opacity: 0.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dbe6ff;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

/* 🌈 COOL HOVER EFFECT */
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Right Section */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.social-links {
  display: flex;
  justify-content:center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  color: #ffffff;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width:40px;
  height:40px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
}

.social-icon:hover {
  background: #ffffff;
  color: #031a6b;
  transform: scale(1.15) rotate(6deg);
}

.shop-timing p {
  color: #dbe6ff;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #cbd5ff;
}


.tile-box:hover {
  transform: translateY(-5px);
}
.tile-slider-section{
padding:100px 0;
text-align:center;
}

.tile3D{
width:100%;
padding-top:50px;
padding-bottom:50px;
}

.tile3D .swiper-slide{
background:#fff;
border-radius:15px;
overflow:hidden;
width:300px;
box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

.tile3D .swiper-slide img{
width:100%;
height:320px;
object-fit:cover;
}

.tile3D h3{
padding:15px;
font-size:20px;
}

.brands-section{
padding:80px 0;
text-align:center;
background:#f9f9f9;
}

.brands-title{
font-size:36px;
margin-bottom:50px;
}

.brands-slider{
display:flex;
gap:40px;
overflow-x:auto;
padding:20px;
scroll-behavior:smooth;
}

.brands-slider::-webkit-scrollbar{
display:none;
}

.brand-item{
min-width:120px;
text-align:center;
}

.brand-item img{
width:90px;
height:90px;
object-fit:contain;
border-radius:50%;
background:white;
padding:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.brand-item p{
margin-top:10px;
font-weight:500;
font-size:14px;
}
.about-company{
padding:80px 10%;
background:#ffffff;
}

.company-header{
display:flex;
justify-content:space-between;
margin-bottom:60px;
}

.company-header h1{
font-size:40px;
font-weight:700;
color:#0d2b3e;
}

.company-header p{
max-width:500px;
color:#666;
line-height:1.6;
}

.company-cards{
display:flex;
gap:40px;
}

.company-card{
background:#e9e9e9;
padding:50px 35px;
text-align:center;
flex:1;
}

.icon-circle{
width:90px;
height:90px;
background:#2f5ab8;
color:white;
font-size:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 25px auto;
}

.company-card h3{
font-size:16px;
letter-spacing:1px;
margin-bottom:15px;
}

.company-card p{
color:#555;
font-size:14px;
line-height:1.6;
margin-bottom:25px;
}

.company-card a{
background:#7084f7;
color:white;
padding:12px 30px;
text-decoration:none;
font-size:13px;
font-weight:600;
}

.company-card:hover{
transform: translateY(-10px);
transition:0.4s;
}

/* TICK PULSE */

.tick-icon{
animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon{

0%{
transform: scale(1);
}

50%{
transform: scale(1.15);
}

100%{
transform: scale(1);
}

}



/* ROTATING HEXAGON */

.rotate-icon{
animation: rotateIcon 6s linear infinite;
}

@keyframes rotateIcon{

0%{
transform: rotate(0deg);
}

100%{
transform: rotate(360deg);
}

}



/* BOUNCING ARROW */

.arrow-icon{
animation: arrowBounce 1.5s infinite;
}

@keyframes arrowBounce{

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

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

}
/* =========================
   📱 FIX CARDS FOR MOBILE
========================= */
@media (max-width:768px){

  .about-company{
    padding: 50px 20px; /* reduce side spacing */
  }

  .company-header{
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .company-header h1{
    font-size: 26px;
  }

  .company-header p{
    max-width: 100%;
  }

  /* MAIN FIX */
  .company-cards{
    flex-direction: column;   /* ✅ STACK CARDS */
    gap: 20px;
  }

  .company-card{
    width: 100%;
    padding: 30px 20px;
  }

}
/* FLOATING CONTACT BUTTONS */

.floating-contact{
  position:fixed;
  right:20px;
  bottom:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

/* WHATSAPP */
.whatsapp-btn{
  background:#25D366;
  color:white;
  font-size:22px;
  /*padding:14px;*/
  border-radius:50%;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
  width:50px;
  height:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
}

/* CALL */
.call-btn{
  background:#0d2b3e;
  color:white;
  font-size:20px;
  padding:14px;
  border-radius:50%;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
  width:50px;
  height:50px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
}

.call-btn:hover{
  transform:scale(1.1);
}