/********** Template CSS **********/
:root {
    --primary: #0573BE;
    --secondary: #000000;
    --light: #F2F2F2;
    --dark: #111111;
}
body {
font-family: 'Cormorant Garamond', serif;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif !important;
}
.fw-medium {
    font-weight: 600 !important;
}
.phone-font {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 15px !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}
.btn-custom {
    background-color: #044893;
    color: #fff;
    border: none;
}

.btn-custom:hover {
    background-color: #041e3a;
    color: #fff;
}
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}
.carousel-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-text-overlay {
    opacity: 0;
    transition: opacity 0.8s ease;
    position: absolute;
    z-index: 3;
}

.hero-text-overlay.active {
    opacity: 1;
}

/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(150, 150, 150, 0.9), rgba(129, 129, 129, 0.9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}















































































.navbar-logo {
    max-height: 40px;   /* better balanced size */
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover (optional subtle polish) */
.navbar-logo:hover {
    transform: scale(1.03);
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-logo {
        max-height: 30px;
    }
}
.ns-footer-logo {
    height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    object-fit: contain !important;
    display: inline-block !important;
}

/* optional hover effect */
.ns-footer-logo:hover {
    transform: scale(1.03);
}

/* mobile */
@media (max-width: 768px) {
    .ns-footer-logo {
        max-height: 45px;
    }
}
















/* Typography and Clean Header Style */
.aman-main-title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.5px;
   font-family: 'Cormorant Garamond', serif;
}

.aman-header-line {
    border: none;
    border-top: 1px solid #b0b0b0;
    opacity: 1; /* Overrides Bootstrap's default faded hr opacity */
    width: 100%;
}

/* 2x2 Grid Layout - Cleaned up to stretch 100% inside the Bootstrap Container */
.aman-grid-lock {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Exact 50% split */
    grid-gap: 4px; /* Tiny minimalist gray line divider */
    background-color: #ededed; /* Background fill acting as lines */
    padding: 4px; /* Optional outer border matching the inner lines */
    width: 100%;
}

/* Image Wrapper for Capsule Positioning */
.aman-image-container {
    position: relative; /* Allows absolute positioning of the capsule tags */
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces perfectly square grid items like the screenshot */
    overflow: hidden;
    background-color: #ffffff; /* Ensures seamless white background for png images */
}

.aman-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Images neatly fill their square quadrants */
    display: block;
}

/* Product Capsule Labels */
.aman-capsule-tag {
    
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #d8d8d8; /* Distinct muted grey capsule background */
    color: #1a1a1a;
    padding: 8px 24px;
   font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
  
    border-radius: 0px; /* Kept completely rectangular like the design screenshot */
    letter-spacing: 0.5px;
    pointer-events: none; /* Keeps image clicks unobstructed */
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
    .aman-grid-lock {
        grid-template-columns: 1fr; /* Stacks to a seamless single column on mobile */
        grid-gap: 15px; 
        background-color: transparent; /* Removes background line frame on stack */
        padding: 0;
    }
    
    .aman-main-title {
        font-size: 1.6rem;
    }
    
    .aman-capsule-tag {
        bottom: 15px;
        left: 15px;
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}





/* Stats Section - Updated for Container Alignment */
.stats-wrapper {
  padding: 40px 0; /* Reduced horizontal padding, container handles the sides */
font-family: 'Cormorant Garamond', serif;
  background-color: #fff;
}

/* Header Styling */
.stats-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  align-items: flex-start;
}

.stats-title h2 {
  font-size: 2.8rem;
  color: #001a3d; 
  margin: 0;
  letter-spacing: -1px;
  font-weight: 700;
}

.stats-description p {
  max-width: 550px;
  color: #5d6d7e; 
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Stats Grid - 3 Vertical Lines */
.stats-grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.stat-item {
  flex: 1;
  padding: 10px 0 10px 40px; /* Padding on the left of the line */
  border-left: 1px solid #ddd; 
}

.stat-item:first-child {
  border-left: none; 
  padding-left: 0;
}

/* Red Stats & Black Labels */
.stat-number {
  font-size: clamp(3rem, 5vw, 5rem); /* Responsive sizing */
  font-weight: 800;
  color: #69B0E2; 
  margin-bottom: 5px;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #000; 
  font-weight: 500;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .stats-header { 
    flex-direction: column; 
    gap: 20px;
  }
  .stats-title h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .stats-grid { 
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile */
    gap: 30px;
  }
  .stat-item { 
    border-left: none; 
    padding: 0; 
  }
  .stat-number { font-size: 3.5rem; }
}





/* Boxed Split Styling - Updated for Alignment */
.boxed-split-container {
  display: flex;
  width: 100%;
  height: 400px; /* Kept sleek, but slightly adjusted for alignment */
  background-color: #0573BE; /* Your Western Star Red */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
  overflow: hidden; 
  border-radius: 2px; /* Matches your CTA cards */
}

/* Image Side */
.split-image {
  flex: 1;
  width: 50%;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-image {
    position: relative;
}

.split-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}
/* Content Side */
.split-content {
  flex: 1;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px; 
}

.content-inner {
  max-width: 420px;
  text-align: center;
}

/* Typography - Updated to White for Visibility */
.big-heading {
   font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.8rem;
  font-weight: 400;
  color: #ffffff !important;
  margin-bottom: 15px;
  line-height: 1.1;
}

.description {
   font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff !important;
  margin-bottom: 25px;
  opacity: 0.9;
}

.discover-link {
     font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.discover-link:hover {
  opacity: 0.8;
}

/* Responsive: Stacks on mobile */
@media (max-width: 850px) {
  .boxed-split-container {
    flex-direction: column;
    height: auto; 
  }
  .split-image, .split-content {
    width: 100%;
  }
  .split-image {
    height: 300px; /* Better height for mobile view */
  }
  .split-content {
    padding: 50px 20px;
  }
  .big-heading {
    font-size: 2rem;
  }
}




/* Updated to match Bootstrap container alignment */
.cta-grid-section {
  display: flex;
  gap: 30px; 
 font-family: 'Cormorant Garamond', serif;
  box-sizing: border-box;
  width: 100%; /* Take full width of the Bootstrap container */
  padding: 0;   /* Remove custom padding as Container handles it */
}

/* Base Card Styling */
.cta-card {
  flex: 1; 
  display: flex;
  flex-direction: column; 
  
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* Content Block */
.card-content {
  padding: 40px; /* Aligned with standard Bootstrap-style spacing */
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff; 
}

.card-ash { background-color: #b0bec5; }
.card-red { background-color: #69B0E2; }

/* Image container */
.card-image-box {
  margin: 0;
  width: 100%;
  height: 350px; 
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

/* Typography */
.card-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
  color: #ffffff; 
}

.card-description {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 25px 0;
  color: #ffffff;
}

.card-link {
  font-weight: 600;
  text-decoration: none;
  color: #ffffff; 
  display: inline-block;
  border-bottom: 1.5px solid #ffffff; 
  padding-bottom: 3px;
  width: max-content;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .cta-grid-section {
    flex-direction: column; 
  }
  .card-image-box {
    height: 300px;
  }
}



.portfolio-header {
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  box-sizing: border-box;
}

/* 1. Carousel Hero Setup */
.header-hero {
  position: relative;
  width: 100%;
  height: 90vh; 
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
}

.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeCarousel 15s infinite; /* 15s total for 3 images */
}


/* BLACK OVERLAY - Guaranteed Visible */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

.hero-text-overlay {
  position: relative;
  padding: 0 10%;
  z-index: 3;
  color: #ffffff;
  width: 100%;
}

.sub-heading {
     font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #ffffff;
}

.main-heading {
     font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

/* 2. Red Details Bar Layout */
.project-details-bar {
  width: 100%;
  background-color: #044893;
  color: #ffffff;
  padding: 80px 0; /* More padding for the new layout */
  min-height: 300px;
  display: flex;
  align-items: center;
}

.details-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
}

.full-width-details-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  width: 100%; /* Spans the full width of the container */
  line-height: 1.2;
  color: #ffffff;
}

.para-container {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Moves child to the right */
}

.right-aligned-para {
  max-width: 550px; /* Limits width so it stays on the right */
  text-align: left; /* Text itself remains left-aligned for readability */
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
}
.hero-subtext{
  max-width: 700px;
  margin-top: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
    font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 768px){

  .hero-subtext{
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }

}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .header-hero { height: 70vh; }
  .full-width-details-heading { font-size: 1.8rem; }
  .para-container { justify-content: flex-start; } /* Stack normally on mobile */
  .right-aligned-para { max-width: 100%; }
}
.slide-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.8s ease-in-out;
  z-index: 3;
}

.slide-text.active {
  opacity: 1;
}

/* Better spacing for overlay text */
.hero-text-overlay {
  padding-top: 40px;
}













/* ==========================================
   OUR BRANDS
========================================== */

.brands-section{
    width:100%;
    background:#ffffff;
    padding:120px 0;
    box-sizing:border-box;
}

.brands-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 10%;
    display:grid;
    grid-template-columns: 1fr 1px 2fr;
    gap:60px;
    align-items:stretch;
}

.brands-heading{
    display:flex;
    align-items:center;
}

.brands-heading h2{
     font-family: 'Cormorant Garamond', serif;
    font-size:clamp(2.2rem,4vw,4rem);
    font-weight:400;
    line-height:1.1;
    color:#111;
    margin:0;
}

.brands-divider{
    width:1px;
    background:#e6e6e6;
    height:100%;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.brand-item{
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-bottom:1px solid #f1f1f1;
}

/* Remove bottom border from last row */
.brand-item:nth-child(4),
.brand-item:nth-child(5),
.brand-item:nth-child(6){
    border-bottom:none;
}

.brand-item img{
    max-width:160px;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:all 0.3s ease;
}

/* Priority brands */
.brand-item:nth-child(1) img,
.brand-item:nth-child(2) img{
    max-width:190px;
    max-height:70px;
}

.brand-item:hover img{
    transform:scale(1.05);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:992px){

    .brands-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .brands-divider{
        display:none;
    }

    .brands-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .brands-section{
        padding:80px 0;
    }

    .brands-heading h2{
        font-size:2.2rem;
    }

    .brand-item{
        height:110px;
    }

    .brand-item img{
        max-width:130px;
    }

}

@media (max-width:480px){

    .brands-grid{
        grid-template-columns:1fr;
    }

}


















/* Apply Baskervville font to all text elements in the About section */
.container-xxl.py-5, 
.container-xxl.py-5 h1, 
.container-xxl.py-5 h4, 
.container-xxl.py-5 h6, 
.container-xxl.py-5 p, 
.container-xxl.py-5 span, 
.container-xxl.py-5 h6,
.container-xxl.py-5 .btn {
    font-family: 'Cormorant Garamond', serif;
}

/* Optional: Ensuring the numbers (01, 02, 03) also use the font */
.container-xxl.py-5 .fw-bold.text-secondary {
    font-family: 'Cormorant Garamond', serif;
}

/* Target the About section specifically */
.container-xxl.py-5, 
.container-xxl.py-5 h1:not(.text-primary), 
.container-xxl.py-5 h4, 
.container-xxl.py-5 h6:not(.text-primary), 
.container-xxl.py-5 p, 
.container-xxl.py-5 span:not(.text-primary),
.container-xxl.py-5 div {
    font-family: 'Cormorant Garamond', serif;
    color: #000000 !important; /* Forces all text to Black */
}

/* Protection Rule: Ensure elements with .text-primary keep their theme color */
.container-xxl.py-5 .text-primary {
    color: #044893 !important; /* Replace this Hex code with your actual Primary Red/Blue color */
}

/* Keep the Experience box text white so it stays readable on the dark background */
.container-xxl.py-5 .text-white {
    color: #ffffff !important;
}




/* Apply Baskervville to the entire Feature section */
.feature-item,
.feature-item h5,
.feature-item p,
.container-xxl h1,
.container-xxl h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* Ensure the main headings in this section also use the font */
.container-xxl .text-center h6,
.container-xxl .text-center h1 {
    font-family: 'Cormorant Garamond', serif;
}

/* Making sure the feature titles are specifically covered */
.feature-text-box h5 {
    font-family: 'Cormorant Garamond', serif;
}




/* Custom Features Styling with PNG Icons */
.feature-item {
    background: #f8f9fa; /* Light grey background */
    text-align: center;
    padding: 45px 30px;
    height: 100%;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid transparent;
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.feature-png {
    width: 50px; /* Adjust size of your PNG icon here */
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.feature-text-box h5 {
    color: #1a1a1a;
    font-size: 1.25rem;
    transition: all 0.4s ease;
}

.feature-text-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hover State */
.feature-item:hover {
    background: #ffffff;
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #044893; /* Replace with your primary color */
}

.feature-item:hover .feature-icon-box {
    background: #044893; /* Icon circle turns red on hover */
}

.feature-item:hover .feature-png {
    filter: brightness(0) invert(1); /* Optional: This turns a dark PNG icon into White on hover */
}

.feature-item:hover h5 {
    color: #044893;
}







/* Unique Footer Styles */
.ns-footer {
    background-color: #111111; /* Deep dark background */
    color: #b0b0b0;
    font-family: 'Cormorant Garamond', serif;
}

.ns-footer-title {
     font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
}

/* Accent line under titles */
.ns-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #69B0E2; /* Your primary brand color */
}

.ns-footer-logo {
    max-height: 100px;
    width: auto;
}

.ns-brand-para {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Social Buttons Customization */
.ns-social-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
    border-color: rgba(255,255,255,0.2);
}

.ns-social-btn:hover {
    background-color: #69B0E2;
    border-color: #044893;
    color: #fff;
}
.phone-number {
    font-family: 'Nanum Myeongjo', serif;
}
.number-font {
  font-family: 'Nanum Myeongjo', serif;
  letter-spacing: 0.5px;
}
/* Service Links */
.ns-footer-link {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.ns-footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Copyright Bar */
.ns-copyright {
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #0a0a0a;
    font-size: 0.9rem;
}

.ns-ninetysix-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: 0.3s;
}

.ns-ninetysix-link:hover {
    color: #044893;
}











/* About Section Styles - Perfectly Aligned */
.about-section {
  background-color: #ffffff !important;
  /* Reduced vertical padding since container-xxl usually has py-5 */
  padding: 40px 0; 
  width: 100%;
}

.about-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; /* Matches the clean, modern look */
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: left;
}

.about-section .section-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* Ensure font consistency for Bootstrap templates */
.about-section h2, 
.about-section p {
  font-family: 'Cormorant Garamond', serif;
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .about-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 0;
  }
  .about-section .section-title {
    font-size: 1.5rem;
  }
}





/* Full Width Banner Section Styles */
.seating-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Maintains a clean, wide banner shape based on typical wide-screen content. Adjust as needed. */
  background-image: url('/img/cargo.jpg'); /* Replace 'images/about-us.jpg' with the actual path to your image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; /* Essential to position the text over the image */
  display: flex;
  justify-content: flex-start; /* Aligns content block horizontally to the left */
  align-items: flex-start; /* Aligns content block vertically to the top */
  padding: 60px; /* Controls how far the text is from the corner edges */
  box-sizing: border-box; /* Ensures padding is included in width and height */
}

/* Fallback for the background color/gradient if image fails to load */
.seating-banner {
  background-color: #f5f5f5; /* Light fallback color */
}

.seating-banner .banner-content {
  /* No special layout needed here as .seating-banner handles the position */
}

.seating-banner .banner-heading {
 font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; /* Adjust based on preference; slightly larger than the reference but maintains minimal feel */
  font-weight: 300; /* Lighter weight for a minimal, clean look */
  color: #ffffff; /* Dark text color for contrast against a light image area */
  letter-spacing: 0.05em; /* Optional subtle spacing for better legibility and 'clean' look */
  text-transform: uppercase; /* Makes text all caps like the reference */
  margin: 0; /* Clear default margins */
  line-height: 1.2;
}

/* Optional: Mobile adjustment for heading size */
@media (max-width: 767px) {
  .seating-banner {
    padding: 30px; /* Reduced corner padding on mobile */
  }
  .seating-banner .banner-heading {
    font-size: 0.9rem; /* Slightly smaller text for mobile */
  }
}




/* Narrow CTA Section Styles - Perfectly Aligned */
.cta-narrow-section {
  background-color: #ffffff;
  padding: 40px 0; /* Reduced because container-xxl has py-5 */
  width: 100%;
}

.cta-narrow-section .cta-content-block {
  max-width: 600px; /* Limits the text width for that "narrow" look */
  text-align: left;
}

.cta-narrow-section .cta-title {
   font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; 
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.cta-narrow-section .cta-description {
 font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Updated Button to match the "Get in Touch" style */
.cta-narrow-section .cta-button {
  display: inline-block;
   font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  text-decoration: none;
  padding: 15px 40px;
  border: 1px solid #1a1a1a;
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-narrow-section .cta-button:hover {
  background-color: #044893;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cta-narrow-section .cta-title {
    font-size: 2rem;
  }
}





/* Product Grid Section Styles - Perfectly Aligned */
.product-grid-section {
  background-color: #ffffff;
  padding: 20px 0; /* Reduced to match site-wide vertical spacing */
  width: 100%;
}

.product-item {
  margin-bottom: 30px;
}

.product-item .image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5; /* Matches the tall vertical look in your screenshot */
  overflow: hidden;
  margin-bottom: 18px;
}

.product-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Link and Arrow Styles */
.product-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  width: fit-content;
}

.product-link .link-text {
     font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid #1a1a1a; /* Exact underline style from image */
  padding-bottom: 2px;
  margin-right: 10px;
  transition: opacity 0.3s ease;
}

.product-link .arrow-icon {
  transition: transform 0.3s ease;
  color: #1a1a1a;
}

/* Hover Effects */
.product-link:hover .link-text {
  opacity: 0.6;
}

.product-link:hover .arrow-icon {
  transform: translate(3px, -3px); /* Arrow moves up/right on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .product-grid-section {
    padding: 10px 0;
  }
}








/* Zero Hover / Flat Style Trust Section - Perfectly Aligned */
.trust-features-section {
  background-color: #ffffff !important;
  /* Reduced padding because the container-xxl wrapper adds its own */
  padding: 40px 0; 
  width: 100%;
}

.trust-features-section .feature-item {
  text-align: center;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  pointer-events: none;
}

.trust-features-section .icon-wrapper {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px; 
}

.trust-features-section .icon-wrapper img {
  max-height: 70px;
  width: auto;
  display: block;
  /* Keeps the icons clean and simple */
  filter: grayscale(0); 
}

.trust-features-section .feature-text {
   font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none !important;
}

/* Hard reset to ensure no Bootstrap template styles add hover effects */
.trust-features-section .feature-item:hover,
.trust-features-section .feature-item:hover img,
.trust-features-section .feature-item:active {
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .trust-features-section .feature-text {
    font-size: 1rem;
  }
  .trust-features-section .icon-wrapper {
    height: 60px;
    margin-bottom: 15px;
  }
}







.expanding-services-section {
    width: 100%;
    background-color: #ffffff;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 7; /* Adjust this for image "thinness" on desktop */
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px; /* Increased padding for premium feel */
    background: rgba(0,0,0,0.15);
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 1px;
}

.read-more-btn, .read-less-btn {
    background: none;
    border: none;
    color: #ffffff;
     font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.read-more-btn { align-self: flex-end; }

/* The Reveal Panel */
.service-details-panel {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-box.active .service-details-panel {
    max-height: 800px; /* Adjust based on text length */
}

.details-content {
    padding: 80px 0; /* Vertical padding only; Horizontal is handled by container */
    font-family: 'Nanum Myeongjo', serif !important;
    max-width: 800px; /* Limits text width within the XXL container */
}

.details-title {
     font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.details-content p {
     font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444444;
}

.read-less-btn { 
    color: #1a1a1a; 
    margin-top: 40px; 
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 5px;
}

@media (max-width: 992px) {
    .service-image-container { aspect-ratio: 16 / 9; }
    .image-overlay { padding: 30px; }
    .details-content { padding: 50px 0; }
}










/* Sticky Layout Logic */
.ws-contact-wrapper {
    display: flex;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .ws-sticky-col {
        position: -webkit-sticky;
        position: sticky;
        top: 30px; /* Distance from top when it sticks */
        z-index: 10;
    }
    
    .ws-sticky-image-container {
        width: 100%;
        height: 750px; /* Matches the length of the form on the right */
        overflow: hidden;
       
    }
}

.ws-sticky-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Content Styling */
.ws-contact-content {
    padding-left: 60px;
}

.ws-main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 45px;
    color: #1a1a1a;
}

.ws-sub-label {
     font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 700;
    display: block;
}

.ws-info-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Form Styling */
.ws-enquiry-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.ws-input {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    padding: 15px 0 !important;
    background: transparent !important;
     font-family: 'Baskervville', serif;
}

.ws-submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 18px;
     font-family: 'Cormorant Garamond', serif;
    letter-spacing: 3px;
    margin-top: 20px;
    transition: 0.3s;
}

/* Map Section - NO MORE THIN BOXES */
.ws-map-full-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.ws-map-tall {
    height: 550px; /* Taller height as requested */
    min-height: 450px;
    display: block;
}

.ws-location-title {
     font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #000;
}

.ws-map-link {
    text-decoration: none;
    color: #1a1a1a;
     font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .ws-contact-content { padding-left: 0; }
    .ws-map-tall { height: 350px; }
}




















/* Core Structural and Font Rules */
.aman-showcase-card, .aman-showcase-footer {
    font-family: 'Cormorant Garamond', serif;
}

/* Rounded Long Image Container */
.aman-showcase-card {
    position: relative;
    width: 100%;
    background-color: #f8f8f8; /* Light muted gray card panel backdrop */
     /* Rounded corner finish matching the screenshot layout */
    padding: 50px;
    min-height: 480px;
    display: flex;
    align-items: flex-end; /* Keeps the inner content baseline aligned */
    overflow: hidden; /* Clips the background graphics to the corners nicely */
    box-sizing: border-box;
}

/* Dyson Logo Top Right Alignment */
.aman-brand-logo-wrap {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 3;
}

.aman-brand-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Right Aligned Background Model Feature */
.aman-banner-image-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 55%; /* Covers the right segment of the card */
    z-index: 1;
}

.aman-banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

/* Left Side Product Structure */
.aman-product-info-box {
    position: relative;
    z-index: 2; /* Ensures content overlays seamlessly over backgrounds */
    max-width: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.aman-product-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Left Column Square Image Frame Box */
.aman-product-square-img {
    width: 180px;
    flex-shrink: 0;
}

.aman-product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
    
}

.aman-product-square-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #ffffff; /* Gives the white floating card container contrast */
    padding: 10px;
    display: block;
}

/* Product Narrative Description Box */
.aman-product-desc-text {
    padding-top: 32px; /* Margins down to line up next to the square graphics text baseline */
}

.aman-product-desc-text p {
    font-size: 1rem;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    max-width: 260px;
    word-wrap: break-word;
}

/* Clean Muted Rectangular CTA Link Button */
.aman-btn-inquiry {
    display: inline-block;
    width: fit-content;
    background-color: #044893; /* Muted flat light grey background */
    color: #ffffff;
    padding: 12px 64px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    
    transition: background 0.2s ease-in-out;
    text-align: center;
}

.aman-btn-inquiry:hover {
    background-color: #69B0E2;
    color: #000000;
}

/* Bottom Split Text Footer Layout */
.aman-showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 35px;
    gap: 40px;
    padding: 0 10px;
}

.aman-footer-left {
    width: 30%;
}

.aman-footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
}

.aman-footer-right {
    width: 65%;
}

.aman-footer-para {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    text-align: left; /* Kept text cleanly left-aligned inside the right-aligned layout framework */
}

/* Responsive Adaptive Mobile/Tablet Adjustments */
@media (max-width: 992px) {
    .aman-showcase-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        min-height: auto;
    }
    
    .aman-brand-logo-wrap {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
    }
    
    .aman-banner-image-wrap {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
        order: 3;
    }
    
    .aman-product-info-box {
        max-width: 100%;
        order: 2;
    }

    .aman-showcase-footer {
        flex-direction: column;
        gap: 15px;
    }

    .aman-footer-left, .aman-footer-right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .aman-product-layout {
        flex-direction: column;
        gap: 15px;
    }
    .aman-product-desc-text {
        padding-top: 0;
    }
    .aman-btn-inquiry {
        width: 100%;
    }
}







/* Main Section Heading */
.aman-featured-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Everything inside cards */
.aman-dyson-item {
   font-family: 'Cormorant Garamond', serif;
}

/* Header */
.aman-featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Main Background Card */
.aman-dyson-grid-card {
    background: #f8f8f8;
   
    padding: 40px 30px;
    width: 100%;
}

/* Product Card */
.aman-dyson-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aman-item-name {
   font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
}


/* Image Box */
.aman-item-white-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
   
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
}

.aman-item-white-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Product Description */
.aman-item-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    text-align: left;
    margin-bottom: 12px;
}

/* CTA Button */
.aman-item-btn {
      font-family: 'Cormorant Garamond', serif !important;
    margin-top: auto;
    display: block;
    width: 100%;
    background: #044893;
    color: #fff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
   
    transition: all 0.3s ease;
}

.aman-item-btn:hover {
    background: #69B0E2;
    color: #fff;
}

/* Tablet */
@media (max-width: 1200px) {

    .aman-dyson-grid-card {
        padding: 30px 20px;
    }

    .aman-item-name {
        font-size: 1.1rem;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .aman-dyson-grid-card {
        padding: 25px 15px;
    }

    .aman-featured-title {
        font-size: 1.5rem;
    }

    .aman-item-white-box {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

}
.aman-item-name,
.aman-item-desc {
   font-family: 'Cormorant Garamond', serif;
}

.aman-item-btn {
    font-family: 'Cormorant Garamond', serif !important;
}

.aman-featured-title {
    font-family: 'Cormorant Garamond', serif !important;
}


/* Typography */
.aman-brand-banner-card,
.aman-products-split-row {
    font-family: 'Cormorant Garamond', serif;
}

/* FULL WIDTH XIAOMI BANNER */
.aman-brand-banner-card {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f7f7f7;
}

.aman-banner-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Xiaomi Logo */
.aman-brand-logo-overlay {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 5;
}

.aman-xiaomi-logo {
    width: 80px;
    height: auto;
    display: block;
}

/* Products Row */
.aman-products-split-row {
    width: 100%;
}

/* Product Cards */
.aman-product-square-card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
}

.aman-product-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.aman-product-square-card:hover .aman-product-bg-img {
    transform: scale(1.03);
}

/* Overlay Content */
.aman-card-overlay-content {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aman-card-product-title {
   font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.aman-arrow-icon-wrap {
    align-self: flex-end;
    width: 28px;
    height: 28px;
    color: #000;
    opacity: .7;
    transition: .3s ease;
}

.aman-product-square-card:hover .aman-arrow-icon-wrap {
    opacity: 1;
    transform: translate(3px,-3px);
}

.aman-arrow-svg {
    width: 100%;
    height: 100%;
}

/* Mobile */
@media (max-width:768px){

    .aman-brand-banner-card{
        height:220px;
    }

    .aman-xiaomi-logo{
        width:55px;
    }

    .aman-brand-logo-overlay{
        bottom:20px;
        right:20px;
    }

    .aman-card-product-title{
        font-size:1.1rem;
    }

    .aman-card-overlay-content{
        padding:18px;
    }
}






/* Typography Integration */
.aman-brands-header, .aman-brand-product-card {
     font-family: 'Cormorant Garamond', serif !important;
}

/* Section Header Style */
.aman-brands-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
  
    letter-spacing: 0.5px;
    margin: 0;
}

/* Product Card Wrapper */
.aman-brand-product-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5; /* Clean subtle border layout border */
    
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.aman-brand-product-card:hover {
    transform: translateY(-4px); /* Clean elevation effect on hover layout */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Image Core Container */
.aman-brand-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 4;
}

.aman-brand-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Typography Content Blocks */
.aman-brand-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes button smoothly to the bottom baseline */
}

.aman-brand-product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
}

.aman-brand-product-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555555;
    margin: 0 0 20px 0;
    text-transform: lowercase; /* Formats lowercase text description strings */
}

/* Minimalist Flat Rectangular CTA Button Link */
.aman-brand-btn-more {
    display: block;
    width: 100%;
    background-color: #044893; /* Muted corporate light gray link bar background */
    color: #ffffff;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
   
    text-align: center;
    margin-top: auto; /* Aligns buttons across all cards in the row */
    transition: background-color 0.2s ease-in-out;
}

.aman-brand-btn-more:hover {
    background-color: #69B0E2;
    color: #c3c3c3;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .aman-brands-main-title {
        font-size: 1.6rem;
    }
    .aman-brand-card-body {
        padding: 15px;
    }
}