/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.transparent {
   background-color: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
}

.site-header.sticky {
   background-color: rgba(255, 255, 255, 0.6); /* White with 60% opacity */

  color: #fff;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo-wrap img {
  height: 50px;
}

.logo-dark { display: none; }
.site-header.sticky .logo-dark { display: block; }
.site-header.sticky .logo-light { display: none; }

/* ================= MENU ================= */
.main-nav {
  display: flex;
  gap: 34px;
}

.nav-item {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 6px;
}

.site-header.transparent .nav-item { color: #fff; }
.site-header.sticky .nav-item { color: #3F5E67; }

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3F5E67, #6a67ce);
  transition: width .35s ease;
}

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

/* ================= HERO VIDEO ================= */
.hero-video {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  margin-top: 14px;
  opacity: .9;
}

/* ================= EDITORIAL ================= */
.editorial-section {
  padding: 120px 0;
  background: #fff;
}

.editorial-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.editorial-text h2 {
 
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
}

.editorial-text h2 span { font-style: italic; }

.editorial-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.editorial-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

/* ================= CAESARSTONE STICKY SLIDER ================= */
.cs-slider {
  position: relative;
}

/* EACH SLIDE TAKES 1 SCREEN */
.cs-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND */
.cs-stone-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* CONTENT */
.cs-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  padding: 0 80px;
}

/* TEXT */
.cs-text .tag {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cs-text h2 {
 
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin: 24px 0 36px;
}

.cs-text h2 small {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.counter {
  margin-top: 50px;
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
}

/* APPLICATION IMAGE */
.cs-image {
  height: 70vh;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}

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


/* ================= CRAFTED SECTION ================= */
.crafted-section {
  padding: 160px 0;
}

.crafted-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
}

.crafted-left h2 {
 
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
}

.crafted-left h2 span { font-style: italic; }

.crafted-right p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 50px;
}

.crafted-btn {
  padding: 18px 40px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.crafted-btn:hover {
  background: #000;
  color: #fff;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #3F5E67;
  color: #fff;
  padding: 80px 0 0;
}

.site-footer .container {
  max-width: 1400px;
}

.footer-logo {
  height: 52px;
  margin-bottom: 22px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #e6e6ff;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #3F5E67;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 26px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 14px;
}

.footer-menu a {
  color: #e6e6ff;
  text-decoration: none;
}

.footer-contact {
  font-size: 16px;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 70px;
  padding: 22px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .editorial-container,
  .crafted-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cs-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: 30px;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}

/* ================= PRODUCT SLIDER ================= */
.product-slider {
  overflow: visible;
}

/* HEADER */
.product-slider-header {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.product-slider-header h2 {
  font-size: 48px;
  font-weight: 400;
  color: #000;
}

/* ARROWS */
.slider-arrows {
 position: absolute;
  right: 20px;
  top: 10px;
  display: flex !important;
  gap: 10px;
  z-index: 9999;
}

.product-slider-header {
  position: relative;
}

.arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #000;
  color: #fff;
}

/* ================= SWIPER FIX ================= */
.productSwiper {
  padding: 0 40px;
}

.productSwiper .swiper-slide {
  height: auto;
}

/* ================= CARD ================= */
.product-card {
  width: 100%;
}

/* IMAGE WRAPPER */
.product-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

/* IMAGE */
.product-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ZOOM ON HOVER */
.product-card:hover img {
  transform: scale(1.08);
}

/* HOVER OVERLAY */
.product-actions {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

/* ICON BUTTONS */
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.icon-btn:hover {
  transform: scale(1.15);
}

.icon-btn.whatsapp {
  color: #25D366;
}

/* INFO */
.product-info {
  padding-top: 14px;
}

.product-info h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #111;
}

/* TAGS */
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  background: #f2f2f2;
  color: #222;
}

.tag.gray {
  background: #dcdcdc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .product-slider-header {
    padding: 0 20px 30px;
  }

  .productSwiper {
    padding: 0 20px;
  }

  .product-image-wrap img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .product-image-wrap img {
    height: 220px;
  }
}

/* ================= SECTION ================= */
.imagination-section {
    background-color: #f5f3f1;
}

/* Remove bootstrap gutter */
.imagination-section .row {
    --bs-gutter-x: 0;
}

/* ================= IMAGE ================= */
/* ================= IMAGE ANIMATION ================= */
.imagination-section .image-wrapper {
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}

.imagination-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* Animation initial state */
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.imagination-section .image-wrapper img.active {
    opacity: 1;
    transform: scale(1);
}
/* ================= CONTENT ================= */
.imagination-section .content-wrapper {
    padding: 90px 50px;
    max-width: 650px;
}

.imagination-section .main-heading {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
}

.imagination-section .sub-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* ================= ACCORDION ================= */
.imagination-section .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
}

.imagination-section .accordion-button {
    background: transparent;
    padding: 22px 0;
    font-size: 20px;
    font-weight: 500;
    box-shadow: none;
    border: none;
}

.imagination-section .accordion-button::after {
    background-size: 18px;
    transform: scale(0.8);
}

.imagination-section .accordion-button:not(.collapsed) {
    color: #000;
    background: transparent;
    box-shadow: none;
}

.imagination-section .accordion-body {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
}

/* ================= BUTTON ================= */
 .creative-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border: 1.5px solid #000;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

 .creative-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

 .creative-btn span {
    position: relative;
    z-index: 2;
}

.creative-btn:hover::before {
    left: 0;
}

.creative-btn:hover {
    color: #fff;}
.creative-btn:active {
    transform: scale(0.97);
}

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

    .imagination-section .image-wrapper {
        min-height: 450px;
    }

    .imagination-section .content-wrapper {
        padding: 70px 30px;
    }

    .imagination-section .main-heading {
        font-size: 34px;
    }
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #3F5E67;
  transition: all 0.3s ease;
}

/* MOBILE STYLE */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-item {
    color: #3F5E67 !important;
    font-size: 18px;
  }

}

/* Investors */


/* ================= SECTION TITLES ================= */
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.address-block{    
    border: 1px solid #3F5E67;
    padding: 1rem;
    border-radius: 5px;
   
  }

.section-title.purple {
  color: #3F5E67;
}

.section-desc {
  
  color: #555;
  margin-bottom: 30px;
}

/* ================= REPORT BOX ================= */
.report-box {
  background: #f3f3f6;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
}

.report-box:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.report-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

/* ================= FILE LINKS ================= */
.report-files {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #3F5E67;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.pdf-link i {
  color: #d32f2f;
  font-size: 18px;
}

.pdf-link:hover {
  color: #1f1c70;
  transform: translateX(4px);
  text-decoration: underline;
}

/* ================= VIEW ALL BUTTON ================= */
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #3F5E67, #6a67ce, #3F5E67);
  background-size: 200% 100%;
  background-position: left;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-position .5s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-view span {
  transition: transform .3s ease;
}

.btn-view:hover {
  background-position: right;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45,42,140,0.4);
}

.btn-view:hover span {
  transform: translateX(6px);
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 60px 0;
}

/* icon + text row */
.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e0f3;
}

.contact-box:last-child {
  border-bottom: none;
}

/* ICON */
.contact-box i {
  font-size: 22px;
  color: #6a67ce;
  min-width: 26px;
  margin-top: 4px;
}

/* TEXT STACK */
.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text h5 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.contact-text p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.contact-image img {
  max-width: 100%;
  border-radius: 12px;
}
.address-card {
    border-radius: 14px;
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #f3f6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3F5E67;
    font-size: 16px;
}

.section-heading {
    font-weight: 600;
    font-size: 32px;
}

/* ================= PREMIUM ACCORDION ================= */

.custom-accordion {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 16px;
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;

    /* Soft layered shadow */
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.03);

    transition: all 0.3s ease;
    background: #ffffff;
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(45,42,140,0.08),
        0 4px 10px rgba(0,0,0,0.05);
}

/* BUTTON */
.custom-accordion .accordion-button {
    background: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 22px;
    transition: all 0.3s ease;
    color: #3F5E67;
}

/* ACTIVE STATE */
.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #3F5E67, #5a32a3);
    color: #ffffff;
    box-shadow: inset 0 -2px 0 rgba(255,255,255,0.2);
}

/* Remove bootstrap focus ring */
.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

/* BODY */
.custom-accordion .accordion-body {
    background: #f6f7ff;
    padding: 22px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ICON ANIMATION */
.custom-accordion .accordion-button::after {
    transform: scale(1.1);
    transition: transform .3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) scale(1.1);
}

.hero-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
}

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

/* Product Section */
/* ===== TITLE ===== */
.product-title{
   
    font-size:56px;
    font-weight:500;
    letter-spacing:0.5px;
  
}

/* ===== WRAPPER ===== */
.product-section{
    background:#ffffff;
    padding:80px;
}

/* ===== LEFT TABS ===== */
.left-panel{
    border-right:1px solid #e6e3dc;
    padding-right:40px;
}

.nav-pills .nav-link{
    background:transparent;
    color:#777;
    border-radius:0;
    padding:22px 0;
    font-size:17px;
    font-weight:400;
    border-bottom:1px solid #efede7;
    text-align:left;
    position:relative;
    transition:0.3s ease;
}

.nav-pills .nav-link:hover{
    color:#000;
}

.nav-pills .nav-link.active{
    color:#000;
    font-weight:500;
    background:transparent;
}

.nav-pills .nav-link.active::after{
    content:"";
    position:absolute;
    right:-41px;
    top:0;
    height:100%;
    width:2px;
    background:#b89b5e; /* luxury gold accent */
}

/* ===== RIGHT CONTENT ===== */
.tab-pane{
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
}

.info-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#9b9b9b;
    margin-bottom:12px;
}

.info-value{
    font-size:20px;
    font-weight:500;
    margin-bottom:8px;
}

.size-text{
    font-weight:500;
    line-height:1.6;
}

/* ===== BUTTONS ===== */
.custom-btn{
    padding:16px 36px;
    border:1px solid #000;
    background:transparent;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:all 0.35s ease;
}

.custom-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-3px);
}

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

    .product-section{
        padding:40px;
    }

    .left-panel{
        border-right:none;
        border-bottom:1px solid #eee;
        margin-bottom:40px;
        padding-right:0;
    }

    .nav-pills .nav-link.active::after{
        display:none;
    }
}


.luxury-slider-section {
    background: #f8f7f4;
}

.big-image,
.small-image {
    height: 650px;
}

.big-image img,
.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    color: #000;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    .big-image,
    .small-image {
        height: 400px;
    }
}


.similar-section {
    background: #f6f5f2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.similar-heading {
    
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
}

.similar-card {
    background: #fff;
    transition: all 0.4s ease;
}

.similar-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h5 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-content p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

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

/* Responsive */
@media (max-width: 991px) {
    .similar-heading {
        font-size: 38px;
    }
}


/* Section Background */
.asi-related-section {
    background: #f8f7f4;
    padding: 120px 0;
}

/* Heading */
.asi-related-heading {
  
    font-size: 54px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

/* Subtle Gold Accent */
.asi-accent-line {
    display: block;
    width: 60px;
    height: 2px;
    background: #b89b5e;
}

/* Card Link Reset */
.asi-article-card {
    text-decoration: none;
    color: #222;
    display: block;
}

/* Image Container */
.asi-article-img {
    aspect-ratio: 3 / 4;   /* Elegant vertical ratio */
    overflow: hidden;
}

.asi-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Title */
.asi-article-card h5 {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* Subtle Hover (Luxury Slow Zoom) */
.asi-article-card:hover img {
    transform: scale(1.04);
}

.asi-article-card:hover h5 {
    color: #000;
}

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

    .asi-related-heading {
        font-size: 40px;
    }

    .asi-article-img img {
        height: 360px;
    }

    .asi-related-section {
        padding: 80px 0;
    }
}


/* Section Background */
.asi-cta-section {
    background: #efede8;   /* Warmer stone tone */
    padding: 140px 0;
}

/* Heading */
.asi-cta-heading {
    
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
}

.asi-cta-heading em {
    font-style: italic;
    color: #b89b5e;
}

/* Icon Layout */
.asi-cta-icons {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* Icon Card */
.asi-icon-card {
    text-decoration: none;
    color: #222;
    text-align: center;
}

/* Icon Container */
.asi-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 22px;
    position: relative;
}

/* SVG */
.asi-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #999;
    stroke-width: 2;
    transition: all 0.4s ease;
}

/* Hover Effect */
.asi-icon-card:hover svg {
    stroke: #b89b5e;
}

/* Continuous Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

/* Subtle Gold Pulse */
@keyframes goldPulse {
    0% { stroke: #999; }
    50% { stroke: #b89b5e; }
    100% { stroke: #999; }
}

.asi-icon-card:hover svg {
    animation: goldPulse 2s infinite;
}

/* Text */
.asi-icon-card span {
    font-size: 16px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .asi-cta-icons {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .asi-cta-heading {
        font-size: 40px;
        text-align: center;
    }
}

.asi-gallery-item {
    cursor: pointer;
}

.asi-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.asi-gallery-item:hover img {
    transform: scale(1.05);
}

.asi-gallery-title {
   margin-top: 15px;
    font-size: 14px;
    text-align: center;
}


.asi-gallery-modal .modal-content {
    position: relative;
}

.asi-modal-close {
    position: absolute;
    top: 0px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 40px;
    font-weight: 300;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.asi-modal-close:hover {
    color: #b89b5e; /* ASI gold */
    transform: rotate(90deg);
}



/* Dropdown wrapper */
.dropdown-wrapper {
  position: relative;
}

/* Main nav hover style consistency */
.dropdown-wrapper > .nav-item {
  display: inline-block;
}

/* Dropdown menu */
.dropdown-wrapper .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-radius: 6px;
}

/* Dropdown item */
.dropdown-wrapper .dropdown-item {
  display: block;
  padding: 8px 20px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

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

/* Show dropdown */
.dropdown-wrapper:hover .dropdown-menu {
  display: block;
}

.asi-tile img{
border:2px solid transparent;
transition:0.2s;
}

.asi-tile img:hover{
border-color:#999;
}

.asi-tile img.active{
border-color:#000;
}


/* ================= BANNER ================= */
.contact-banner {
    height: 320px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
}

.banner-sub {
    font-size: 18px;
    opacity: 0.9;
}

/* ================= MAP ================= */
.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ================= CONTACT SECTION ================= */


/* CARD */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

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

/* ================= FORM ================= */
.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #d0d7da;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #3F5E67;
    box-shadow: 0 0 0 3px rgba(63,94,103,0.15);
}

.form-control:hover {
    border-color: #3F5E67;
}

/* ================= BUTTON ================= */
.btn-modern {
    background: linear-gradient(135deg, #3F5E67, #5f7f89);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.btn-modern::after {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
}

.btn-modern:hover::after {
    left: 120%;
    transition: 0.6s;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63,94,103,0.3);
}

/* ================= PREMIUM ADDRESS ================= */

.office-card {
    padding: 18px 20px;
    border-radius: 15px;
    margin-bottom: 15px;

    background: linear-gradient(135deg, #ffffff, #f4f7f8);
    border: 1px solid #e2e8ea;

    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle gradient glow line */
.office-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(#3F5E67, #6f8f98);
    border-radius: 10px 0 0 10px;
}

/* hover effect */
.office-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* heading */
.office-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e42;
}

/* info row */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 6px 0;
    font-size: 14px;
    color: #5b6b70;

    transition: 0.3s;
}

/* icon styling */
.info-item i {
    width: 32px;
    height: 32px;

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

    background: rgba(63,94,103,0.1);
    color: #3F5E67;

    border-radius: 8px;
    font-size: 14px;

    transition: 0.3s;
}

/* hover effect */
.office-card:hover .info-item i {
    background: #3F5E67;
    color: #fff;
}

.info-item:hover {
    transform: translateX(5px);
    color: #3F5E67;
}


/* =================  About BANNER ================= */
.about-banner {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-title {
    font-size: 46px;
    font-weight: 700;
}

.about-sub {
    opacity: 0.9;
}

/* ================= SECTION ================= */
.about-full {
    overflow: hidden;
}

.about-full.alt {
    background: #f4f7f8;
}



/* ================= IMAGE ================= */
.image-curtain {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* image */
.image-curtain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* curtain layer */
.image-curtain::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #3F5E67;
    z-index: 2;

    transform: translateX(0%);
    transition: transform 1.2s ease;
}

/* animate when active */
.image-curtain.active::before {
    transform: translateX(100%);
}

/* ================= CONTENT ================= */
.about-content {
    padding: 30px;
}

.about-content h2 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e42;
}

.about-content p {
    color: #5b6b70;
}

.about-content ul {
    list-style: none;
    padding: 0;
}
.about-content li::before {
    content: "✔";
 
    padding-right: 1rem;
    color: green;
}
.about-content li {
    margin-bottom: 8px;
    color: #3F5E67;
}

.about-content li i {
    margin-right: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .about-content {
        padding: 30px;
    }
}

/* Section */

/* Section */
.investor-section {
  
    margin: auto;
}

/* Heading */
.investor-heading .badge {
    font-size: 11px;
    background: #eef2ff;
    color: #3F5E67;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.investor-heading h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.investor-heading p {
    font-size: 14px;
    color: #6b7280;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Card */
.contact-card-new {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    transition: 0.25s;
}

.contact-card-new:hover {
    border-color: #dbeafe;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* Avatar */
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3F5E67 0%, #4f8fa3 100%);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Content */
.contact-content {
    flex: 1;
}

/* Text */
.name {
    font-size: 15px;
    font-weight: 600;
}

.designation {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* Row */
.contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.contact-item i {
    color: #3F5E67;
    min-width: 14px;
}

/* Links */
.contact-item a {
    color: #374151;
    text-decoration: none;
}

.contact-item a:hover {
    color: #3F5E67;
}

/* Copy Button */
.contact-item button {
    margin-left: auto;
    border: none;
    background: #f3f4f6;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.contact-item button:hover {
    background: #3F5E67;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* Card base (important for glow positioning) */
.contact-card-new {
    position: relative;
    overflow: hidden;
}

/* Glow Layer */
.contact-card-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--x, 50%) var(--y, 50%),
        rgba(99, 102, 241, 0.15),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show glow on hover */
.contact-card-new:hover::before {
    opacity: 1;
}

/* Slight border glow */
.contact-card-new:hover {
    border-color: rgba(99, 102, 241, 0.4);
}


.footer-address-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-address-card {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-address-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(63,94,103,0.9), rgba(124,58,237,0.7));
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.footer-address-card .icon {
  font-size: 20px;
  color: #7c3aed;
  min-width: 30px;
}

.footer-address-card .content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-address-card .content p {
  margin: 4px 0;
  font-size: 13px;
  color: #ccc;
}

.footer-address-card .content span {
  font-size: 12px;
  color: #aaa;
}
.product-info a{
    color:#222;
    transition:0.3s ease;
    text-decoration:none;
    
}
.product-info a:hover{
    color:#3F5E67;
}
.similar-card a{
    color:#222;
    transition:0.3s ease;
    text-decoration:none;
}




