/********** Template CSS **********/
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
    color: #15b5ff !important;
}

.fw-semi-bold-2 {
    font-weight: 500 !important;
    color: #fbdc89 !important;
}


/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    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;
}


.topbar-right {
    position: relative;
    background: #520013;
     /* background: linear-gradient(to right, rgb(100 47 0 / 10%) 0%, rgba(141, 108, 0, 0.2) 100%), url(../img/03.jpg) center center no-repeat;
    background-size: cover; */
    color: #ffffff !important;
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: #520013;
    /* border-right: 1px solid #ffffff; */
    /* border-left: 1px solid #ffffff; */
}


/*** Navbar ***/



.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 68px;
    height: 100px;
    display: flex;
    align-items: center;
    background: #520013;
    
}

@media (max-width: 768px) { /* Responsive breakpoint */
    .navbar .navbar-brand {
        padding-right: 33px;
        height: 77px !important;
       
    }
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(0deg);
    background-color: #ffffff;
}

@media (max-width: 768px) { /* Responsive breakpoint */
    .navbar .navbar-brand::after {
         transform: skewX(0deg);
         display: none !important;
        
    }
}

@media (max-width: 768px) { /* Responsive breakpoint */
    .toggle-adjust {
         padding-right: 1.2rem !important;
         background-color: #520014 !important;
        
    }
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

@media (max-width: 768px) { /* Responsive breakpoint */
   .navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #74191b;
}

@media (max-width: 768px) { /* Responsive breakpoint */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fbdd8f !important;
}
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        /* border-top: 1px solid #000000; */
    }
}

@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 ***/

@media (max-width: 768px) {
    .logo-align  {
       padding-left: 0rem !important;
       height: 50px !important;
}

.header-logo-size
{
    height: 66px !important;
    margin-left: 20px !important;
}
    }


.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(2, 36, 91, 0) 100%); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgb(14, 14, 14);
    border: 15px solid rgb(14, 14, 14);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
   .carousel-control-prev-icon,
   .carousel-control-next-icon {
    width: 1.3rem !important;
    height: 1.3rem !important;
    background-color: rgb(0, 0, 0);
    border: 5px solid rgb(0, 0, 0) !important;
    border-radius: 3.5rem;
    margin-top: 50px;
}
}

@media (min-width: 577px) and (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 120px; /* Tablet height */
    }

    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(2, 36, 91, 0) 100%),
    url(../img/breadcrumb/breadcrumb.png) center top  -88px no-repeat;

    background-size: cover;
}

@media (max-width: 768px) {
    .page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 0.0) 0%, rgba(2, 36, 91, 0) 100%),
    url(../img/breadcrumb/breadcrumb.png) center right 0px no-repeat;

        height: auto;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -40px;
}
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #520013;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: #520013;
}

@media (max-width: 768px) {
  .page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 12px;
    color: #520014;
}
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}









/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
    padding: 2px;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;

}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}




/*** Footer ***/
.footer {
    color: #B0B9AE;
    
}
.social-color
{
    background-color: #cc8812 !important;
}

.link-color
{
    color: #ffffff !important;
}

.company-footer
{
    color: #ffffff !important;
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer-icon
{
    color: #ffffff;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #ffffff;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 0.3px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hymac-subtitle
{
    font-size: 20px;
    font-weight: 600;
    margin-top: -20px;
}
.intro-para
{
    text-align: justify;
}

@media (max-width: 786px) {
    .intro-para {
        text-align: left;
    }
}
.establishment
{
    font-size: 30px;
    
}
.offer-heading
{
    font-size: 22px;
    margin-top: 100px;
}
.offer-para
{
    margin-top: 80px;
}

/* Commitments Section */
.commitments-section {
    position: relative;
    width: 100%;
    background-image: url('../img/background.webp'); /* Add your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Rubik', sans-serif;
    background-attachment: fixed; 
    margin-bottom: -50px;
}

.commitments-section .overlay {
    background: rgba(0,0,0,0.3);
    width: 100%;
    /* padding: 0px 0; */
}

/* Heading */
.commitments-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 10px;
}

.heading-line {
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    margin: 0 auto;
    border-radius: 2px;
}

/* Commitment Items */
.commitment-item {
    background: rgba(255, 255, 255, 0.07);
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* border: 1px solid #ffcc00; */
}

.commitment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.commitment-item .icon {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.commitment-item p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .commitments-heading {
        font-size: 2.5rem;
    }
    .commitment-item {
        padding: 30px 15px;
    }
}

.bg-dark-2
{
    background-color: #ffffff;
    margin-top: -40px !important;
}
.text-white-2
{
    color: #02245b;
}

.footer-logo-section {
    text-align: center; 
}
.footer-logo {
    /* margin-left: -15px; */
    max-width: 200px;  
    height: auto;      
    margin-bottom: 5px; 
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 6px;
}
@media (max-width: 768px) {
    .footer-logo-section {
        text-align: left;
    }

      .footer-logo {
        display: block;
        margin: 0 auto 10px auto;
        max-width: 190px;  
    }
}
.footer-para
{
    text-align: center;
    margin-top: 10px !important;
}
.leading
{
    font-size: 15.5px;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: #fff; /* White card */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Soft premium shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid orangered !important;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon circle */
.mission-vision-card .icon {
    width: 70px;
    height: 70px;
    background: #e9f2ff; /* Light primary circle */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
}

/* Card Heading */
.mission-vision-card h5 {
    font-size: 1.5rem;
}

/* Paragraph styling */
.mission-vision-card .intro-para {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

/* Responsive gap for smaller screens */
@media (max-width: 991px) {
    .mission-vision-card {
        margin: 0 auto;
    }
}


.bg-light-premium {
    background-color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Center Image */
.image-center {
    max-width: 300px;
    height: 250px;
    border-radius: 12px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* Move up */
    }
}


.image-center:hover {
    transform: scale(1.05);
}

/* Feature List */
.feature-item {
    gap: 1rem;
}

.feature-icon {
    color: #ff5e14;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.feature-divider {
    border: none;           /* Remove default border */
    height: 2px !important;            /* Line thickness */
    margin: 1rem 0;         /* Top & bottom spacing */
    background: linear-gradient(to right, #fc7100, #ffffff); /* Gray → White gradient */
}

@media (max-width: 991px) {
    .content-split-row {
        flex-direction: column !important;
    }

    .image-center {
        margin: 2rem auto;
        max-width: 200px;
    }

    .features-column {
        margin-bottom: 2rem;
    }
}

.sky-high
{
    color: #383838;
}



/* Card Styling */
.contact-card-modern {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px 20px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ff5e14;
}
.circle-background {
    background: linear-gradient(135deg, #00ccff, #0066ff) !important;
}

.contact-icon
{
    color: #ffffff !important;
    font-size: 25px !important;
}
.contact-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.15);
}

/* Icon */
.contact-icon {
    font-size: 38px;
    color: #ff5e14;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-card-modern:hover .contact-icon {
    color: #4dabf7;
    transform: scale(1.2);
}

/* Title */
.card-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: #0b5ed7;
    margin-bottom: 6px;
}

/* Text */
.card-text-modern {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

/* Buttons */
.contact-card-modern .btn {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 8px;
}

/* Responsive */
@media(max-width:991px){
    .contact-card-modern { min-height: auto; }
}

@media(max-width:575px){
    .contact-card-modern { text-align: center; }
}

/* Mobile & Tablet */
@media (max-width: 768px) {
    .about-img {
        margin-top: -30px; /* value adjust kar sakte ho */
    }
}

/* Tablet & Mobile */
@media (max-width: 786px) {
    .about-right {
        margin-top: -40px; /* value apne design ke hisaab se adjust karo */
    }
}
.footer {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url(../img/footer-background.jpg) top center no-repeat;
    background-size: cover;
    margin-top: -20px !important;
}
.copyright {
    background-color: #000000 !important;
}

/* gallery section start */

.gallery-section {
    margin-top: -20px;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 0.9rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.gallery-card {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}
/* gallery section end */



.header-top
{
    background-color: #c9984b !important;
}





/* ===== About Section New Design ===== */

.about-section-new {
    /* Background image */
    background-color: #ffffff;
    position: relative;
    /* margin-bottom: 50px; */
    margin-top: 10px;
}

 .about-section-new-2 {
    
    background-color: #ffffff;
    position: relative;
    /* margin-bottom: -50px !important; */
    margin-top: -30px !important;
}

@media(max-width:768px)
{
    .about-section-new-2 {
    
    background-color: #ffffff;
    position: relative;
    /* margin-bottom: -50px !important; */
    margin-top: -64px !important;
}
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* height: 600px; */
   
    
}



.image-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(45deg, rgba(0,0,0,0.2), transparent); */
    border-radius: 15px;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important; */
    
    
}

.about-content-new {
    padding-left: 10px;
}

.about-tagline {
    color: #9b6f09 !important;
    font-weight: 700 !important;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 24px !important;
}

.about-description {
    color: #2b2b2b !important;
    line-height: 1.7 !important;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-description {
        text-align: left;       
    }

    .about-tagline {
    color: #9b6f09 !important;
    font-weight: 700 !important;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px !important;
}
}

/* Highlight Box */
.about-highlight-box {
    display: flex;
    flex-wrap: wrap;          /* Wrap on smaller screens */
    gap: 30px;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 25px;
    background: #ffffff;
    padding: 20px 15px;       /* Proper padding */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgb(224, 224, 224);
}




.highlight-year {
    text-align: center;
    color: #ffffff;
    padding: 15px 20px;
    /* border-radius: 10px; */
    font-size: 1rem;
    font-weight: 600;
    /* border: 3px solid #ff651f; */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), url(../img/navy-blue.webp) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
}






.highlight-year h2 {
    font-size: 48px; /* Bigger number */
    margin: 0 0 10px 0;
    color: #ffffff !important;
}


.highlight-features p {
    margin-bottom: 8px;
    font-weight: 500;
}
.about-image-wrapper {
    transition: transform 0.4s ease;
}
.about-image-wrapper:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .about-highlight-box {
        flex-direction: column; /* Stack vertically */
        text-align: left !important;       /* Section text left */
    }

    .about-highlight-box .highlight-year
    {
         flex: unset;
        text-align: center !important;  
    }


    .about-highlight-box .highlight-features {
        flex: unset;
        text-align: left !important;       /* Left align */
    }

    .about-highlight-box .highlight-features p {
        justify-content: flex-start; /* Left align icons and text */
    }
}

.highlight-features i {
    color: #02245b;
    margin-right: 8px;
}

/* Contact */
.about-contact-row {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-box-new {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.contact-box-new:hover {
    transform: translateY(-5px);
}

.contact-box-new i {
    font-size: 20px;
    color: #0d6efd;
}
.we-are-ready
{
    font-size: 18px;
}

/* ===== Responsive ===== */



@media (max-width: 991px) {
    .about-highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .about-contact-row {
        flex-direction: column;
    }

    .about-content-new {
        padding-left: 0;
        margin-top: 30px;
    }
}





/* HYMAC Contact Section */
.hymac-contact-section {
    background: #f8f9fa;
    margin-top: 50px;
    /* padding-top: 100px !important; */
    margin-bottom: -50px;
}

/* Cards */
.hymac-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Equal height cards */
}

.hymac-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Icons */
.hymac-icon {
    font-size: 40px;
    color: #ff5e14;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hymac-card:hover .hymac-icon {
    color: #ff5e57;
    transform: scale(1.2);
}

/* Card Titles */
.hymac-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

/* Card Text */
.hymac-card p {
    color: #555;
    margin-bottom: 5px;
    font-size: 16px;
}

/* CTA Button */
.hymac-btn-primary {
    background: #ff5e14;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hymac-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hymac-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .hymac-card h5 {
        font-size: 18px;
    }

    .hymac-card p {
        font-size: 14px;
    }

    .hymac-icon {
        font-size: 35px;
    }
}


.smart-slide-image
{
    border-radius: 20px !important;
    margin-top: 50px !important;
}

@media (max-width: 768px) {
    .smart-slide-image {
        margin-top: 0px !important;
    }
}



/* ===============================
   commitment Section start
=================================*/

.commitment-bg-section {
    position: relative;
    background: url('../img/background.webp') center center/cover no-repeat;
    z-index: 1;
    padding-top: 100px;   /* Section ko thoda niche kiya */
    padding-bottom: 80px;
    background-attachment: fixed; 
    margin-bottom: -50px;
}

.commitment-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* ===============================
   Heading Style
=================================*/

.commitment-heading-light p {
    color: #0d6efd;
}

/* ===============================
   Thread Wrapper
=================================*/

.commitment-thread-wrapper-new {
    position: relative;
    max-width: 900px;
    margin: 0px auto 0;   /* heading ke niche gap */
}

/* ===============================
   Thread Item
=================================*/

.commitment-thread-item-new {
    position: relative;
    padding-left: 120px;
    margin-bottom: 50px;
}

/* ===============================
   Icon (Thread Center Point)
=================================*/

.commitment-thread-icon {
    position: absolute;
    left: 50px;
    transform: translateX(-50%);
    top: 0;
    width: 55px;
    height: 55px;
    background: #ecc412;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 0 50px #000000;
    z-index: 2;
    margin-top: 50px;
}



/* ===============================
   Thread Line (Connected to Icon)
=================================*/

.commitment-thread-item-new:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50px;
    transform: translateX(-50%);
    top: 110px;   /* exactly icon ke niche se start */
    width: 3px;
    height: calc(100% - 15px);
    background: linear-gradient(to bottom, #fdd10d, #ff9114);
}

@media (max-width: 768px) {
    .commitment-thread-item-new:not(:last-child)::after  {
        top: 120px; 
    }
}

/* ===============================
   Content Card
=================================*/

.commitment-thread-content-new {
    background: rgba(255, 255, 255, 0.144);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
    border: 1px solid yellow;
  
}

.commitment-thread-content-new h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.commitment-thread-content-new p {
    margin: 0;
    color: #ffffff;
}

.commitment-thread-content-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

/* ===============================
   Responsive
=================================*/

@media (max-width: 768px) {

    .commitment-thread-wrapper-new {
        margin-top: 40px;
    }

    .commitment-thread-item-new {
        padding-left: 80px;
        margin-bottom: 70px;
    }

    .commitment-thread-icon {
        left: 30px;
    }

    .commitment-thread-item-new:not(:last-child)::after {
        left: 30px;
    }
}


/* Mission & Vision Cards */

.mission-vision-section
{
    /* margin-bottom: 30px; */
    background-color: #f0f0f0;
    padding-bottom: 50px !important;
}
.mission-vision-wrapper .card-mv {
    position: relative;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
 
    border: 2px solid #ff0000;

}

/* Smooth top-bottom border using pseudo-element */
.card-mv::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    /* background: #ff5e14; */
    transition: all 0.5s ease;
    /* transform: translateX(-50%); */
    
}
.card-mv:hover::after {
    width: 100%;
}

/* Optional bottom border slide from left to right */
.card-mv::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    /* background: #ff5e14; */
    transition: all 0.5s ease;
    /* transform: translateX(-50%); */
}
.card-mv:hover::before {
    width: 100%;
}

/* Icon styling */
.icon-mv i {
    transition: transform 0.3s ease, color 0.3s ease;
}
.card-mv:hover .icon-mv i {
    transform: scale(1.2);
    color: #0a58ca;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-wrapper .card-mv {
        margin-bottom: 20px;
    }
}

.feature-icon-lg {
    font-size: 35px !important; /* ya jo size chahiye */
}

/* Custom HR with linear gradient */

.enquery-now
{
    margin-top: -40px;
    margin-bottom: -50px;
}
.form-fill
{
    margin-top: -20px;
}

.highlight-experience
{
    color: orangered;
    font-weight: 700 !important;
}

.gw-all-products-btn {
    display: inline-block;
    padding: 10px 36px !important;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #000000, #111111);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Soft Pulse Light */
/* ENERGY CORE BUTTON */
.gw-all-products-btn{
    position: relative;
    display: inline-block;
    padding: 8px 36px !important;
    background: #520013;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%), url(../img/enquiry.jpg) center center no-repeat;
    background-size: cover; */
    color: #fff;
    border-radius: 60px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.45s ease;
    z-index: 1;
}

/* Core Glow */
.gw-all-products-btn::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(10px);
    animation: energyPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes energyPulse{
    0%{
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    50%{
        width: 180px;
        height: 180px;
        opacity: 0.35;
    }
    100%{
        width: 350px;
        height: 350px;
        opacity: 0;
    }
}

.gw-all-products-btn:hover{
    /* letter-spacing: 1px; */
    /* transform: translateY(-4px); */
    background-color: #001261 !important;
    color: #ffffff;
}


.navbar-nav {
    align-items: center;
}



/* client logo slide section start */

.be-authorized-brands
{
     background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%), url(../img/4964059.jpg) top center no-repeat;
    background-size: cover;
}

/* Section Heading */
.be-authorized-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
 
/* Paragraph */
.para-we {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}
 
/* Marquee Container */
.brands-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
 
/* Marquee Track */
.brands-track {
  display: flex;
  width: max-content; /* Track width depends on content */
  gap: 30px;
  animation: scrollBrands 20s linear infinite;
}
 
/* Brand Images */
.brands-track img {
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}
 
/* Animation */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
 
/* Pause animation on hover (desktop) */
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
 
/* Responsive */
@media (max-width: 1024px) {
  .brands-track {
    gap: 25px;
    animation-duration: 15s;
  }
  .brands-track img {
    height: 80px;
  }
}
 
@media (max-width: 768px) {
  .brands-track {
    gap: 20px;
    animation-duration: 15s !important;
  }
  .brands-track img {
    height: 60px;
  }
}
 
@media (max-width: 480px) {
  .brands-track {
    gap: 15px;
    animation-duration: 10s;
  }
  .brands-track img {
    height: 50px;
  }
}
.main-heading-style
{
   
    font-family: 'Poppins', sans-serif;
    color: #0786cf !important;
    font-size: 46px !important;
}

@media (max-width: 768px) {
  .main-heading-style
{
   
    font-family: 'Poppins', sans-serif;
    color: #0786cf !important;
    font-size: 30px !important;
}
}
.main-heading-style-2
{
    /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    /* letter-spacing: 0.5px; */
    color: #0786cf !important;
    font-size: 40px;
}

@media (max-width: 768px) {
.main-heading-style-2
{
    /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    /* letter-spacing: 0.5px; */
    color: #0786cf !important;
    font-size: 30px;
}
}
.main-heading-style-3
{
       /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    /* letter-spacing: 0.5px; */
    color: #ffffff !important;
    font-size: 40px;
}
.side-heading-style
{
    /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    color: #144784 !important;
    font-size: 30px;
}
.side-heading-style-2{
      /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    color: #0e3c74 !important;
    font-size: 40px;
}

@media (max-width: 768px) {
.side-heading-style-2{
      /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    color: #0e3c74 !important;
    font-size: 30px;
}
}

.side-heading-style-3{
      /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    color: #e60000 !important;
    font-size: 42px;
}

@media (max-width: 768px) {
.side-heading-style-3{
      /* font-family: "Cinzel", serif; */
    font-family: 'Poppins', sans-serif;
    /* font-weight: 900 !important; */
    color: #e60000 !important;
    font-size: 34px;
}
}
.upper-heading
{
    color: #9b6f09 !important;
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 700 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 24px !important;
}
.strong-font
{
    
    color: #00095a;
    font-weight: 700;
}
.white-heading
{
    font-family: "Cinzel", serif !important;
    font-size: 45px !important;
}

@media (max-width: 768px) {
.white-heading
{
    font-size: 35px !important;
}
.upper-heading
{
    color: #9b6f09 !important;
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 700 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px !important;
}
}
/* ========================================= */
/* new enquiry page start */





/* enquiry page start */



.enquiry-form {
  border: 1px solid #b97a6b;
  padding: 34px;
  border-radius: 10px;
  background-color: rgb(248, 248, 248);
  margin-top: -30px;
  margin-bottom: 50px;
}

.enquiry-image img {
  max-width: 90%;
}

.captcha-img {
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* 📱 Mobile Responsive */
@media (max-width: 991px) {
  .enquiry-image {
    margin-top: 30px;
  }
}




/* image slide start */
.hproductsitem{
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s ease;
    height: 400px !important;
}
.hproductsitem:hover{
    transform: translateY(-10px);
}
.hproductsitem img {
    margin-bottom: 12px;
    border-radius: 10px;
}
.hproductsitem h3{
    font-size: 16px;
    color: #001a36;
    font-weight: 600;
    text-align: center;
    height: 25px;
    margin-top: 10px;
}
.hproductsitem p{
    color: #000;
    text-align: center;
    font-size: 14px;
    height: 90px;
}
.hproductsitem .btn-primary i{
    margin-left: 6px;
}
.hproductsitem .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
    justify-content: center;
    display: flex;
    width: 48%;
    margin: 18px auto;
    border-radius: 4px;
    color: #ff7202;
    border: none;
    padding:5px 0;
}
.hproductsitem .btn-primary:hover {
    background: #ff7202;
    color: #fff;
}
.hoffercardmain{
    padding: 30px 0 10px;
    /* background-color: #07305d; */
   background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%), url(../img/product-background.webp) center center no-repeat;
    background-size: cover;
    
}



.card-enquiry
{
    background: #5a2e15 !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}
.sig
{
    color: #fff;
    font-size: 50px;
}
/* image slide section end */

/* how we work section start */



.we-work-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.we-work-subtitle {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.we-work-title {
    font-size: 48px;
    font-weight: 800;
    color: #0b1c39;
    margin-bottom: 20px;
}

.we-work-description {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
}

.we-work-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 102, 255, 0.12);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(90deg, rgb(255, 20, 20), #ffffff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.we-work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.07), transparent);
    transition: 0.7s;
}

.we-work-card:hover::before {
    left: 100%;
}

.we-work-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.2);
}

.we-work-number {
    min-width: 110px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgb(255, 20, 20);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.we-work-card:hover .we-work-number {
    opacity: 1;
    transform: scale(1.05);
}

.we-work-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 10px;
}

.we-work-content p {
    margin: 0;
    color: #545a5f;
    font-size: 16px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .we-work-title {
        font-size: 40px;
    }

    .we-work-card {
        padding: 30px 25px;
    }

    .we-work-number {
        min-width: 90px;
        font-size: 60px;
    }

    .we-work-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .we-work-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 35px 20px;
    }

    .we-work-number {
        min-width: auto;
        font-size: 60px;
    }

    .we-work-title {
        font-size: 34px;
    }

    .we-work-content h4 {
        font-size: 22px;
    }

    .we-work-description {
        font-size: 16px;
    }
}
.ins-head
{
    color: #0784cc  !important;
}




/* user layout */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* icon */
.user-icon {
    width: 90px;
    height: 90px;
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 2px solid #eaeaea; */
}

/* name */
.user-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

/* stars */
.stars {
    font-size: 22px;
    color: #0593ca;
    letter-spacing: 2px;
    margin-top: 3px;
}

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

    .testimonial-title h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .user-icon {
        width: 60px;
        height: 60px;
    }

    .user-text h4 {
        font-size: 18px;
    }

    .stars {
        font-size: 16px;
    }
}
/* testimonial section end */



.mission-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: inline-block;
}


/* ================================
SMART VALUE SECTION START
================================ */

.smart-value-section{
    width:100%;
    padding:100px 20px;
    background:#f7f8fc;
    position:relative;
    overflow:hidden;
}

.smart-value-container{
    max-width:1200px;
    margin:auto;
}

.smart-value-heading{
    text-align:center;
    margin-bottom:60px;
}

.smart-value-subtitle{
    display:inline-block;
    background:#9e0000;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.smart-value-heading h2{
    font-size:42px;
    color:#0e3c74;
    margin-bottom:18px;
    font-weight:700;
}

.smart-value-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* CARD WRAPPER */

.smart-value-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.smart-value-card{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    text-align:center;
    position:relative;
    transition:0.4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    overflow:hidden;
}

.smart-value-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#9e0000,#ff4d4d);
}

.smart-value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ICON */

.smart-value-icon{
    width:90px;
    height:90px;
    /* background:linear-gradient(135deg,#9e0000,#d10000); */
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 15px rgba(158,0,0,0.2);
    border: 1px solid rgb(194, 194, 194);
}

.smart-value-icon img{
    width:60px;
    height:60px;
    object-fit:contain;
    /* filter:brightness(0) invert(1); */
}

/* TEXT */

.smart-value-card h3{
    font-size:28px;
    margin-bottom:18px;
    color:#111;
    font-weight:700;
}

.smart-value-card p{
    color:#666;
    font-size:16px;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .smart-value-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .smart-value-section{
        padding:70px 15px;
    }

    .smart-value-heading h2{
        font-size:32px;
    }

    .smart-value-wrapper{
        grid-template-columns:1fr;
    }

    .smart-value-card{
        padding:35px 25px;
    }

    .smart-value-card h3{
        font-size:24px;
    }

    .smart-value-heading p{
        font-size:15px;
    }

}

.mission-color
{
    color: rgb(233, 0, 0);
}

/* ================================
SMART VALUE SECTION END
================================ */


/* our product page start */

/* =========================
PRODUCT SECTION
========================= */

.smart-product-section{
    width:100%;
    padding:80px 5%;
    background:#f5f7fb;
    font-family:Arial, sans-serif;
    overflow:hidden;
    margin-top: -50px;
}

.smart-product-container{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* =========================
LEFT SIDEBAR
========================= */

.smart-product-sidebar{
    width:280px;
    min-width:280px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    position:sticky;
    top:20px;
}

.smart-product-category{
    width:100%;
    padding:18px 20px;
    border-radius:14px;
    background:#f2f2f2;
    margin-bottom:15px;
    cursor:pointer;
    font-weight:600;
    transition:0.4s;
    font-size:16px;
    position:relative;
    color:#111;
    line-height:1.4;
}

.smart-product-category:hover{
    background:#9e0000;
    color:#fff;
}

.smart-product-category.active{
    background:#d40000;
    color:#fff;
}

/* =========================
RIGHT CONTENT
========================= */

.smart-product-content{
    flex:1;
    width:100%;
}

.smart-product-tab{
    display:none;
    width:100%;
}

.smart-product-tab.active{
    display:block;
}

/* =========================
IMAGE SLIDER
========================= */

.smart-slider{
    width:100%;
    /* border-radius:25px; */
    overflow:hidden;
    position:relative;
    margin-bottom:30px;
    background:#fff;
    height:auto;
     border:none !important;
    outline:none !important;
    box-shadow:none !important;
}

.smart-slide{
    width:100%;
    height:auto;
    display:none;
    position:relative;
}

.smart-slide.active{
    display:block;
}

.smart-slide img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;

    border:none !important;
    outline:none !important;
    box-shadow:none !important;
}




/* enquiry page start */
.submit-color
{
    background-color: rgb(116 25 27) !important;
}

.submit-color:hover
{
    background-color: rgb(136, 40, 42) !important;
    color: #ffffff;
    border: none !important;
    outline: none !important;
}

.get-touch
{
    color: #000000 !important;
    font-size: 34px !important;
}
@media(max-width:768px)
{
    .get-touch
{
    color: #000000 !important;
    font-size: 28px !important;
}
}

.back-to-top
{
    background-color: #520013 !important;
}

/* ================================================ */


/* beauty counter start */

.beauty-counter-section{
  background:#000;
  padding:26px 20px;
  color:#fff;
}

/* CONTAINER */
.beauty-counter-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
  flex-wrap:wrap;
}

/* BOX */
.beauty-counter-box{
  flex:1;
  text-align:center;
  min-width:200px;
  padding:6px;
}

/* COUNTER NUMBER */
.beauty-counter-box .counter{
  font-size:34px;
  font-weight:100 !important;
  color:#ffc05f; /* pink */
  margin:0;
}

@media(max-width:768px)
{
  .beauty-counter-box .counter{
  font-size:24px;
  font-weight:100 !important;
  color:#ffc05f; 
  margin:0;
}
}

/* TEXT */
.beauty-counter-box p{
  color:#fff;
  margin-top:10px;
  font-size:16px;
  letter-spacing:0.5px;
}

/* DIVIDER */
.beauty-divider{
  width:1px;
  height:60px;
  background:#7e7e7e;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .beauty-counter-container{
    flex-direction:column;
  }

  .beauty-divider{
    width:80%;
    height:1px;
    margin:0px auto;
  }

  .beauty-counter-box{
    padding:12px 0;
  }
}

/*  */

.beauty-welcome-head
{
    font-family: "Cinzel", serif;
    font-size: 36px !important;
    color: #520013;
}
/*  */



.beauty-collection {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%), url(../img/beauty-collection-back.jpg) top center no-repeat;
  overflow: hidden;
}

/* background overlay */
.beauty-collection__overlay-bg {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.4); */
}

/* container */
.beauty-collection__container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
}

/* heading */
.beauty-collection__title {
  text-align: center;
  font-size: 38px;
  color: #fff;
  margin-bottom: 50px;
}

/* wrapper */
.beauty-collection__cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* card */
.beauty-collection__card {
  position: relative;
  width: calc(20% - 16px);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* image */
.beauty-collection__card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* bottom name label */
.beauty-collection__card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 15px;
  background: rgb(255 118 195 / 40%);
  backdrop-filter: blur(5px);
}

/* hover overlay */
.beauty-collection__card-hover {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  transition: all 0.4s ease;
}

/* hover effects */
.beauty-collection__card:hover .beauty-collection__card-hover {
  bottom: 0;
}

.beauty-collection__card:hover img {
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* tablet */
@media (max-width: 992px) {
  .beauty-collection__card {
    width: calc(50% - 10px);
  }
}

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

  .beauty-collection__title {
    font-size: 28px;
  }

  .beauty-collection__cards-wrapper {
    justify-content: center;
  }

  /* ONE CARD PER ROW */
  .beauty-collection__card {
    width: 100%;
  }

  .beauty-collection__card img {
    height: 430px;
  }
}

/*  */


/*  */



.beauty-mini-card{
    background:#fdf8f2;
    padding:16px 25px;
    border-radius:18px;
    border:1px solid #d5af88;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.location-cards-row{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-card{
    flex: 1;
    min-width: 180px;
    height: 120px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.location-card:hover{
    transform: translateY(-5px);
}

.location-overlay{
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.55); */
}

.location-content{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 10px;
}

.location-content img{
    width: 22px;
    margin-bottom: 10px;
}

.location-text h6{
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff !important;
}

.location-text p{
    font-size: 14px;
    margin: 2px 0 0;
    line-height: 1.3;
    opacity: 0.9;
}

/* Hours Row */
.store-hours-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    /* padding-bottom:14px; */
    /* margin-bottom:14px; */
    /* border-bottom:1px solid #e8dccb; */
}

/* Open Daily */
.store-status{
    display:flex;
    align-items:center;
    gap:10px;
    color:#2f2f2f;
    font-size:16px;
    font-weight:600;
}

.store-status img{
    width:36px;
    height:36px;
    object-fit:contain;
}

/* Highlight Time */
.store-time{
    background:#460415;
    color:#fff;
    padding:5px 18px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    white-space:nowrap;
}

/* Address */
.store-address{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#555;
    font-size:15px;
    line-height:1.7;
}

.store-address img{
    width:30px;
    height:30px;
    object-fit:contain;
    margin-top:2px;
    flex-shrink:0;
}

.store-address span{
    color:#000000;
}

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

  .beauty-mini-card{
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal center */
    justify-content: center; /* vertical center */
    text-align: center;     /* text bhi center */
}

    .store-time{
    background:#a15408;
    color:#fff;
    padding:6px 18px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

    .store-hours-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .store-time{
        font-size:16px;
    }

    .store-address{
        font-size:14px;
    }
}

.fas.fa-bullseye{
    margin-right: 5px;
    color: #b15836;
    font-size: 16px;
    vertical-align: middle;
}

/* ================================================= */

/* about page start */


.breadcrumb-head {
    color: #cf8c24 !important;
    /* text-shadow: 1px 1px 4px #ffffff !important; */
    font-weight: 300 !important;
}

@media (max-width: 768px) {
    .breadcrumb-head {
    color: #cf8c24 !important;
    /* text-shadow: 2px 2px 4px #000 !important; */
    font-weight: 300 !important;
    font-size: 28px !important;
}
}


/* about section start */

.beauty-about-content-wrapper {
    padding: 60px 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%), url(../img/white-background.webp) bottom center no-repeat;
    background-size: cover;
}

.beauty-about-content-text {
    line-height: 1.7;
    color: #444;
    /* text-align: justify; */
}

.beauty-about-content-img-wrap {
    text-align: center;
}

.beauty-about-img {
    max-width: 100%;
    height: auto;
    transition: 0.3s ease;
    border-radius: 20px !important;
}

.beauty-about-img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .beauty-about-content-wrapper {
        padding: 0px 15px;
    }

    .beauty-about-content-sec {
        margin-bottom: 25px;
    }

    .beauty-about-content-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .beauty-about-content-image {
        text-align: center;
    }

    .beauty-about-img {
        max-width: 100%;
        margin-top: 10px;
    }
}

/*  */




/* beauty mission vision section start */

.beauty-mission-vision{
    padding: 40px 20px;
    background: #f2f2f2;
    margin-bottom: 20px;
}
@media (max-width: 768px){
    .beauty-mission-vision{
    padding: 40px 20px;
    background: #f2f2f2;
}
}

/* HEADER */
.beauty-mission-vision-header{
    text-align: center;
    margin-bottom: 45px;

}

.beauty-mission-vision-header h2{
    font-size: 28px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.5px;
    font-family: "Cormorant Garamond", serif;

}

/* CONTAINER */
.beauty-mission-vision-container{
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* COMMON CARD STYLE */
.beauty-mission-box,
.beauty-vision-box{
    flex: 1;
    padding: 35px;
    border-radius: 18px;

    background: #ffffff;
    border: 1px solid rgba(201, 161, 74, 0.25);

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
    border-top: 4px solid #6b0b04;
}

/* GOLD TOP LINE EFFECT */
.beauty-mission-box::before,
.beauty-vision-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    /* background: linear-gradient(90deg, #c9a14a, #e6c77a); */
}

/* HOVER EFFECT */
.beauty-mission-box:hover,
.beauty-vision-box:hover{
    /* transform: translateY(-8px); */
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    /* border-color: #c9a14a; */
}

/* TITLE */
.beauty-mission-box h3,
.beauty-vision-box h3{
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #111;
}

/* TEXT */
.beauty-mission-box p,
.beauty-vision-box p{
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .beauty-mission-vision-container{
        flex-direction: column;
    }

    .beauty-mission-box,
    .beauty-vision-box{
        width: 100%;
        padding: 28px;
    }

    .beauty-mission-vision-header h2{
        font-size: 24px;
    }
}
/*  */

/* collection page start */

.beauty-lock-coll-wrapper{
    display:flex;
    gap:30px;
    padding:40px 20px;
    margin-bottom: 30px;
}

/* tabs */
.beauty-lock-coll-tabs{
    flex:0 0 25%;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.beauty-lock-coll-tab{
    padding:15px;
    border:1px solid #e0a55171;
    border-radius:10px;
    cursor:pointer;
    background:#f5f5f5;
    font-weight:600;
}

.beauty-lock-coll-tab.active{
    background: linear-gradient(90deg, #885245 0%, #b97a6b 100%);
    color:#fff;
    border: none !important;
    outline: none !important;
}

/* content */
.beauty-lock-coll-content{
    flex:1;
}

.beauty-lock-coll-box{
    display:none;
    border:1px solid #eee;
    border-radius:14px;
    padding:20px;
}

.beauty-lock-coll-box.active{
    display:block;
}

/* image card */
.beauty-img-card{
    width:100%;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:15px;
}

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

/* accordion */
.beauty-lock-coll-accordion{
    display:none;
    padding:0 15px;
    padding-bottom: 50px;
}

.acc-item{
    border:1px solid #ddd;
    margin-bottom:10px;
    border-radius:10px;
}

.acc-title{
    padding:15px;
    background:#f5f5f5;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    border-radius: 10px;
    color: #2c2c2c !important;
}

.acc-content{
    display:none;
    padding:15px;
}

.acc-item.active .acc-content{
    display:block;
}
.coll-icon{
    display: flex;
    align-items: center;
    gap: 10px;
}

.coll-icon .icon-bullet{
    font-size: 20px;   /* icon size control */
    color: #8c4200;    /* theme color */
    line-height: 1;
}

.coll-icon h2{
    margin: 0;
    font-size: 28px;
    margin-top: 10px;
    color: #000 !important;
}

.beauty-product-head
{
    font-weight: 700 !important;
    color:  #000 !important;
}
.beauty-product-side-head
{
    color: #8c4200;
}
@media (max-width: 768px){
    .coll-icon h2{
        font-size: 22px;
    }

    .coll-icon .icon-bullet{
        font-size: 8px;
    }
}

/* responsive */
@media(max-width:768px){
    .beauty-lock-coll-wrapper{display:none;}
    .beauty-lock-coll-accordion{display:block;}
}

@media (max-width: 768px){
    .beauty-lock-coll-accordion .acc-content img{
        height: auto;
        width: 100%;
        object-fit: cover;
    }
}
/*  */

/* footer column divider */

.mob-accor-head
{
    margin-top: 20px !important;
}

.collection-links{
    display: flex;
    flex-wrap: wrap;
}

/* each link width */
.collection-links a{
    width: 100%;
}

/* mobile only: 2 columns */
@media (max-width: 768px){
    .collection-links a{
        width: 50%;
    }
}
/*  */
.quick-links{
    display: flex;
    flex-wrap: wrap;
}

/* default desktop */
.quick-links a{
    width: 100%;
}

/* mobile 2-column */
@media (max-width: 768px){
    .quick-links a{
        width: 50%;
    }
}
/* ==================================== */

/* beauty product page start */

.beauty-new-product-section {
    padding: 30px 0;
}

.beauty-new-product-category {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
}

.beauty-new-product-category h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.beauty-new-product-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beauty-new-product-category ul li {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.beauty-new-product-category ul li:hover,
.beauty-new-product-category ul li.active {
    background: #ff4da6;
    color: #fff;
}

/* Product Card */
.beauty-new-product-card {
    border: 1px solid #f700ff3f;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
    margin-bottom: 20px;
    padding: 10px;
}

.beauty-new-product-card:hover {
    transform: translateY(-5px);
}

.beauty-new-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    
}

.beauty-new-product-body {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e2e2e2;
}

.beauty-new-product-title {
    font-weight: 600;
}

.beauty-new-product-brand {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
}

.beauty-new-product-btn {
    background: linear-gradient(135deg, #be2b9f 0%, #ec0960 100%);
    color: #fff;
    border: none;
    padding: 4px 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .beauty-new-product-category {
        margin-bottom: 15px;
    }
    .beauty-new-product-btn {
    background: linear-gradient(135deg, #be2b9f 0%, #ec0960 100%);
    color: #fff;
    border: none;
    padding: 3px 15px;
    border-radius: 6px;
    font-size: 13px;
}
.beauty-new-product-body {
    padding: 6px;
    text-align: center;
    border-top: 1px solid #e2e2e2;
}

}

@media (max-width: 768px) {
    .beauty-new-product-card {
        height: auto;          /* auto ya fixed small height */
        padding: 8px;
    }

    .beauty-new-product-card img {
        height: 146px;         /* image height reduce */
        object-fit: cover;
    }
    .beauty-new-product-title 
    {
    font-weight: 600;
    font-size: 14px !important;

}

.beauty-new-product-brand {
    font-size: 13px;
    color: gray;
    margin-bottom: 10px;
}
}
#beauty-new-product-menu {
    list-style: none;
    padding: 0;
    margin: 0;

    overflow: hidden;
    max-height: 500px; /* OPEN by default */
    transition: max-height 0.4s ease;
}

/* CLOSED state */
#beauty-new-product-menu.closed {
    max-height: 0;
}

/* items */
#beauty-new-product-menu li {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

#beauty-new-product-menu li:hover {
    background: #ffe8e7;
    color: #000;
}

#beauty-new-product-menu li.active {
    background: #ffe8e7;
    color: #000000;
}

.cate-drop
{
    color: #95584c !important;
}
.discount-banner
{
    border-radius: 10px !important;
}
/*  */

/* kerala portfolio section start */


.kerala-portfolio {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #fff2d5;
}

.kerala-portfolio-wrapper {
  display: flex;
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

/* Left Side Big Image */
.kerala-portfolio-left {
  flex: 1;
}

.kerala-portfolio-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Right Side */
.kerala-portfolio-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kerala-portfolio-right-top,
.kerala-portfolio-right-bottom {
  flex: 1;
}

.kerala-portfolio-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .kerala-portfolio-wrapper {
    flex-direction: column;
  }

  .kerala-portfolio-left,
  .kerala-portfolio-right {
    flex: unset;
    width: 100%;
  }

  .kerala-portfolio-right {
    flex-direction: column;
  }
}


/* kerala collection section start */

.kerala-collection-section{
    width:100%;
    margin:auto;
    padding:60px 5%;
    background-color: #ffffff;
    
}

.kerala-collection-section-2{
    width:100%;
    margin:auto;
    padding:60px 5%;
    background-color: #ffffff;
    margin-top: -50px;
    
}

.kerala-collection-heading{
    text-align:center;
    font-size:28px;
    font-weight: 700 !important;
    margin-bottom:20px;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
}

.kerala-collection-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.kerala-collection-card{
    background:#fff;
    /* border-radius:10px; */
    overflow:hidden;
    /* box-shadow:0 2px 8px rgba(0,0,0,0.2); */
    transition:.3s;
     min-height:350px !important;
     margin-top: 20px;
     border: 1px solid #eeeeee;
    
}

.kerala-collection-card:hover{
    transform:translateY(-4px);
}

.kerala-collection-card img{
    width:100%;
    display:block;
    height:370px;      /* increased height */
    object-fit:cover; /* maintains design */
}

.kerala-collection-name{
    padding:12px 12px;
    text-align:left;
    font-size:15px;
    font-weight:600;
    color: #000 !important;
}

.kerala-collection-name i{
  /* font-size: 20px; */
}

.kerala-collection-banner{
    border-radius:10px;
    overflow:hidden;
}

.kerala-collection-banner img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    min-height:180px !important;
}

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

    .kerala-collection-grid{
        grid-template-columns:repeat(2,1fr);
    }

      .kerala-collection-card{
        min-height:250px !important;
    }

    .kerala-collection-card img{
        height:200px;   /* reduced height */
    }
    .kerala-collection-name
    {
    padding:12px 8px;
    text-align:left;
    font-size:14px;
    font-weight:600;
    color: #000 !important;
}

.kerala-collection-section{
    width:100%;
    margin:auto;
    padding:34px 5%;
    background-color: #ffffff;
    
}

.kerala-collection-section-2{
    width:100%;
    margin:auto;
    padding:34px 5%;
    background-color: #ffffff;
    margin-top: -80px;
    
}

.kerala-collection-banner img
{
    width:100%;
    height:85%;
    display:block;
    object-fit:cover;
    min-height:100px !important;
    margin-top: 30px;
}

.kerala-collection-heading
{
    text-align:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    color: #000;
}
}



/* kerala assurance section */

.kerala-assurance{
    width:100%;
    background:#fff9ef;
    padding:40px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.assurance-left{
    flex:1;
    text-align:center;
}

.assurance-left h2{
    font-size:78px;
    font-family:"Times New Roman", serif;
    font-weight:500;
    color:#000;
    line-height:1;
    margin-bottom:15px;
}

.assurance-left p{
    font-size:40px;
    color:#7a7a7a;
    font-family:"Times New Roman", serif;
    margin:0;
}

.assurance-divider{
    width:1px;
    height:250px;
    background:#d8d8d8;
}

.assurance-right{
    flex:1;
    display:flex;
    justify-content:space-around;
    align-items:flex-start;
    gap:30px;
}

.assurance-item{
    text-align:center;
}

.assurance-item img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:20px;
}

.assurance-item h4{
    color:#4b1f1f;
    font-size:24px;
    font-family:"Times New Roman", serif;
    font-weight:400;
    line-height:1.3;
    margin:0;
}

/* =======================
   Mobile Responsive
======================= */

.kerala-assurance{
    width:100%;
    background:#fff9ef;
    padding:40px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.assurance-left{
    flex:1;
    text-align:center;
}

.assurance-left h2{
    font-size:78px;
    font-family:"Times New Roman", serif;
    font-weight:500;
    color:#000;
    line-height:1;
    margin-bottom:15px;
}

.assurance-left p{
    font-size:40px;
    color:#7a7a7a;
    font-family:"Times New Roman", serif;
    margin:0;
}

.assurance-divider{
    width:1px;
    height:250px;
    background:#d8d8d8;
}

.assurance-right{
    flex:1;
    display:flex;
    justify-content:space-around;
    align-items:flex-start;
    gap:30px;
}

.assurance-item{
    text-align:center;
}

.assurance-item img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:20px;
}

.assurance-item h4{
    color:#4b1f1f;
    font-size:24px;
    font-family:"Times New Roman", serif;
    font-weight:400;
    line-height:1.3;
    margin:0;
}

/* =======================
   Mobile Responsive
======================= */

@media (max-width:768px){

    .kerala-assurance{
        flex-direction:column;
        padding:40px 20px;
        gap:30px;
    }

    .assurance-left h2{
        font-size:40px;
    }

    .assurance-left p{
        font-size:22px;
    }

    .assurance-divider{
        width:100%;
        height:1px;
    }

     .assurance-right{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
        width: 100%;
    }

    .assurance-item{
        width: auto;
        text-align: center;
    }


    .assurance-item img{
        width:65px;
        height:65px;
    }

   .assurance-item h4{
    font-size:16px;

}
}

.shine
{
    color: #73001b !important;
}

/*  */

/* kerla banner image section start  */

/* Kerala Banner */
.kerala-banner-section {
    width: 100%;
}

.kerala-banner-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/bann.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

/* INNER PADDING FRAME (REAL WORKING EFFECT) */
.kerala-banner-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;

    border: 2px solid rgba(255,255,255,0.4); /* optional stylish frame */
    pointer-events: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .kerala-banner-image {
        height: 850px;
        background-image: url('../img/bann-res.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .kerala-banner-inner {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}
/*  */

/* kerala view more button */

.kerala-view-more{
    text-align: center;
    margin-top: 50px;
}

.kerala-btn{
    display: inline-block;
    padding: 8px 30px;
    /* background: #a15408; */
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    /* border-radius: 30px; */
    transition: 0.3s ease;
    border: 1px solid #000;
}

.kerala-btn:hover{
    /* background: #d4af37; */
    color: #000;
    /* transform: translateY(-2px); */
}

/*  */

.footer-i-color
{
    color: #000;
}

.side-color-head
{
    color: #6b0b04 !important;
}
.side-color-head-2
{
    color: #000000 !important;
    font-size: 40px;
    margin-top: 10px !important;
}
@media (max-width: 768px){

    .side-color-head-2
{
    color: #6b0b04 !important;
    font-size: 30px;
}
}
/*  */

/* about page start */

/* CARD - COMPACT HEIGHT */
.kerala-left-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;   /* 🔥 reduced padding */
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border: 1px solid #ffe0ad;
}

/* IMAGE WRAPPER - FIX HEIGHT */
.image-col {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 120px;   /* 🔥 fixed compact height */
}

@media(max-width:768px)
{
    .image-col {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100px !important;   /* 🔥 fixed compact height */
}
}
.kerala-contact-color
{
    color: #000 !important;
}

/* IMAGE FIT */
.image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 🔥 important for alignment */
    display: block;
    border-radius: 10px;
}

/* CENTER TEXT */
.image-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    pointer-events: none;
}

/* BIG NUMBER */
.big-number {
    font-size: 44px;   /* 🔥 reduced from 60px */
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

/* SMALL TEXT */
.small-text {
    font-size: 14px;   /* 🔥 smaller */
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 1px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

/* RIGHT CONTENT */
.kerala-left-content {
    padding: 5px 10px;   /* 🔥 reduced padding */
    text-align: center;
}

/* TITLE */
.contact-title {
    font-size: 18px;   /* 🔥 reduced */
    font-weight: 700;
    margin-bottom: 10px;
}

/* PHONE NUMBER */
.call-number {
    font-size: 22px;   /* 🔥 balanced size */
    font-weight: 700;
    color: #cf6603;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.call-number:hover {
    color: #d94f00;
}

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

    .image-col {
        height: 200px;
    }

    .big-number {
        font-size: 36px;
    }

    .small-text {
        font-size: 12px;
    }

    .contact-title {
        font-size: 16px;
    }

    .call-number {
        font-size: 18px;
    }

    .kerala-left-content {
        margin-top: 10px;
    }
}
/*  */

/* kerala purpose section start */

.kerala-purpose-section {
  position: relative;
  padding: 40px 20px;
  background-image: url('../img/gift.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 500px; */
}

/* DARK OVERLAY */
.kerala-purpose-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
}

/* CONTAINER CENTER */
.kerala-purpose-container {
  position: relative;
  max-width: 950px;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENT BOX */
.kerala-purpose-content {
  text-align: center;
  padding: 20px;
}

/* TITLE */
.kerala-purpose-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  font-family: "Cormorant Garamond", serif;
}

/* TEXT */
.kerala-purpose-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kerala-purpose-section {
    padding: 40px 15px;
    min-height: auto;
  }

  .kerala-purpose-title {
    font-size: 24px;
  }

  .kerala-purpose-text {
    font-size: 15px;
  }

  .kerala-purpose-content {
    padding: 10px;
  }
}

/* ============================== */
/* kerala contact page */

.kerala-jewels-contact-section{
    padding:70px 0;
    background:#fff;
}

@media(max-width:768px)
{
   .kerala-jewels-contact-section{
    padding:0px 0;
    background:#fff;
    margin-bottom: 80px;
}
}

/* =========================
   ROW GAP CONTROL (DESKTOP)
========================= */
.kerala-address-row{
    margin-top:50px;
}

/* =========================
   CARD DESIGN
========================= */
.kerala-jewels-card{
    position:relative;
    background:linear-gradient(135deg,#ffffff,#faf7f9);
    border-radius:18px;
    padding:45px 20px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
    border:1px solid rgb(255 195 102 / 64%);
    overflow:visible;
}

.kerala-jewels-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(139,30,63,0.18);
}



/* =========================
   ICON DESIGN (FANCY)
========================= */
.kerala-jewels-icon{
    position:absolute;
    top:-25px;
    left:20px;

    width:54px;
    height:54px;
    border-radius:50%;

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

    font-size:20px;
    color:#fff;

    background:linear-gradient(135deg, #f5ac2b, #cf9630);

    box-shadow:
        0 12px 30px rgba(139, 30, 63, 0.35), 0 0 0 6px rgb(240 186 57 / 29%), inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

/* =========================
   CONTENT
========================= */
.kerala-jewels-content{
    margin-top:10px;
}

.kerala-jewels-content h4{
    font-size:18px;
    margin-bottom:6px;
    color:#222;
}

.kerala-jewels-content a,
.kerala-jewels-content p{
    color:#555;
    text-decoration:none;
    font-weight:500;
}

/* BUTTON */
.kerala-jewels-btn{
    display:inline-block;
    margin-top:10px;
    padding:8px 16px;
    border-radius:25px;
    background:#bc852e;
    color:#fff !important;
    font-size:13px;
    transition:0.3s;
}

.kerala-jewels-btn:hover{
    background:#5c142c;
    transform:scale(1.05);
}

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

    /* Row gap increase for stacked cards */
    .kerala-address-row{
        margin-top:40px;
    }

    /* space between stacked cards */
    .kerala-jewels-card{
        margin-bottom:25px;
    }

    /* extra breathing space for top section cards */
    .kerala-jewels-contact-section .row{
        row-gap:20px;
    }

    /* slightly reduce icon size on mobile */
    .kerala-jewels-icon{
        width:52px;
        height:52px;
        top:-22px;
    }
}

/* =========================
   SMALL MOBILE (extra fix)
========================= */
@media (max-width: 480px){

    .kerala-address-row{
        margin-top:35px;
    }

    .kerala-jewels-card{
        padding:40px 18px 22px;
    }
}


/* ============================== */

/* kerala warranty section start */

.kerala-warranty-section{
  font-family: Arial, sans-serif;
}

/* HEADER */
.kerala-warranty-header{
  text-align: center;
  padding: 60px 20px 30px;
  margin-top: -40px;
}

.kerala-warranty-header h2{
  font-size: 28px;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  color: #000;

}

.kerala-warranty-header p{
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* FEATURES */
.kerala-warranty-features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 40px 60px;
}

.kerala-warranty-feature-card{
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.kerala-warranty-feature-card:hover{
  transform: translateY(-5px);
}

.kerala-warranty-feature-card img{
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.kerala-warranty-feature-card h3{
  color: #b26505;
  font-size: 18px;
  margin-bottom: 8px;
}

/* WARRANTY BLACK SECTION */
.kerala-warranty-black{
  /* background: #0d0d0d; */
   background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(../img/tir10.jpg) bottom center no-repeat;
    background-size: cover;
  padding: 70px 20px;
}

.kerala-warranty-box{
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.kerala-warranty-left{
  flex: 1;
  color: #fff;
}

.kerala-warranty-left h3{
  font-size: 26px;
  color: #ffd27a;
  margin-bottom: 15px;
}

.kerala-warranty-left ul{
  list-style: none;
  padding: 0;
}

.kerala-warranty-left ul li{
  padding: 8px 0;
  /* border-bottom: 1px solid rgba(255,255,255,0.1); */
  font-size: 15px;
}

/* 🔥 HIGHLIGHT WARNING BOX */
.kerala-warranty-warning{
  margin-top: 15px;
  padding: 8px 15px;
  background: #ffd27a;
  color: #000000;
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  /* box-shadow: 0 5px 15px rgba(255, 0, 0, 0.25); */
}

/* NOTE */
.kerala-warranty-note{
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* RIGHT IMAGE */
.kerala-warranty-right{
  flex: 1;
  text-align: center;
}

.kerala-warranty-right img{
  max-width: 100%;
  border-radius: 12px;
}

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

  .kerala-warranty-features{
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .kerala-warranty-header h2{
  font-size: 24px;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  margin-top: -30px;

}

  .kerala-warranty-box{
    flex-direction: column;
  }

  .kerala-warranty-feature-card img{
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.kerala-warranty-header{
  text-align: center;
  padding: 60px 20px 30px;
  margin-top: -80px;
}

  /* Left Content */
  .kerala-warranty-left{
    width: 100%;
    text-align: left;
  }

  .kerala-warranty-left h3{
    text-align: left;
  }

  .kerala-warranty-left ul{
    text-align: left;
    padding-left: 0;
  }

  .kerala-warranty-left ul li{
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .check-mark{
    flex-shrink: 0;
    margin-top: 2px;
  }

  .kerala-warranty-warning{
    display: block;
    width: 100%;
    text-align: center;
  }

  .kerala-warranty-right{
    text-align: center;
  }
}
.check-mark
{
    color: #ffd27a;
    /* font-size: 20px; */
}

/* precaution page start */

.kerala-precaution-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff 0%, #fffaf3 100%);
  font-family: 'Arial', sans-serif;
  margin-top: -50px;
}

/* Container */
.kerala-precaution-container{
  max-width: 1100px;
  margin: auto;
}

/* Header */
.kerala-precaution-header{
  text-align: center;
  margin-bottom: 50px;
}

.kerala-precaution-header h2{
  font-size: 28px;
  font-weight: 700;
  color: #2b2b2b;
  position: relative;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
}

/* .kerala-precaution-header h2::after{
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c9a227, #f1d36b);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
} */

.kerala-precaution-header p{
  color: #666;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
}

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

/* Card */
.kerala-precaution-card{
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.kerala-precaution-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Gold top line */
.kerala-precaution-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #c9a227, #f1d36b);
}

/* Titles */
.kerala-precaution-card h3{
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
}

/* Lists */
.kerala-precaution-card ul{
  padding-left: 18px;
}

.kerala-precaution-card ul li{
  margin-bottom: 12px;
  color: #444;
  line-height: 1.5;
  position: relative;
}

/* Color themes */
.kerala-precaution-card.danger h3{
  color: #74191b;
}

.kerala-precaution-card.safe h3{
  color: #74191b;
}

/* Footer */
.kerala-precaution-footer{
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .kerala-precaution-header h2{
    font-size: 24px;
  }

  .kerala-precaution-section{
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff 0%, #fffaf3 100%);
  font-family: 'Arial', sans-serif;
  margin-top: -80px;
}

  .kerala-precaution-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kerala-precaution-card{
    padding: 22px;
  }
}

/*  */

/* kerala gallery page start */

/* gallery page start */

.media-section {
  padding: 20px 20px;
  background: #ffffff;
  font-family: 'Arial', sans-serif;
  margin-bottom: 50px;
}

.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 6px 30px;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  background: #e0e0e0;
  color: #333;
  font-size: 16px;
  border-radius: 30px;
  transition: 0.3s;
  margin-bottom: 20px;
}

.tab-btn.active,
.tab-btn:hover {
  background: #6b0b04;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.photo-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  height: 300px; /* fixed card height */
}

.photo-card img {
  width: 100%;
  height: 240px; /* fixed image height */
  object-fit: cover; /* ensures image fills without distortion */
  display: block;
}

.photo-card h4 {
  padding: 20px;
  font-size: 14px;
  color: #333;
  margin: 0;
}

.photo-card:hover {
  transform: scale(1.05);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  height: 300px; /* same fixed height */
  display: flex;
  flex-direction: column;
}

.video-card iframe {
  flex: 1; /* iframe fills remaining space */
  width: 100%;
  object-fit: cover;
}

.video-card h4 {
  padding: 10px;
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Hover effect */
.photo-card:hover, .video-card:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .video-card iframe {
    height: 180px;
  }
  .photo-card {
    height: 280px;
  }
}
/* ============================================= */

/* home page center image slide section start  */

.actress-slider-section{
    width:100%;
    background:#f4f4f4;
    padding:50px 0;
    overflow:hidden;
}

/*=========================
        HEADING
==========================*/

.actress-section-heading{
    width:100%;
    text-align:center;
    margin-bottom:45px;
}

.actress-section-heading h2{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#222;
    letter-spacing:1px;
    line-height:1.2;
    font-family: 'Cormorant Garamond', serif;
}


/*=========================
        SLIDER
==========================*/

.actress-slide-swiper{
    width:100%;
    height:650px;
    position:relative;
}

.actress-slide-item{
    position:relative;
    overflow:hidden;
}

.actress-slide-item img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

/*=========================
      BOTTOM SHADOW
==========================*/

.actress-slide-item::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:18%;

    background:linear-gradient(
        to top,
        rgba(101,67,33,0.60) 0%,   /* deep brown */
        rgba(139,94,60,0.50) 35%,  /* medium brown */
        rgba(160,110,70,0.35) 70%, /* light brown fade */
        rgba(160,110,70,0) 100%    /* transparent top */
    );

    pointer-events:none;
    z-index:1;
}

/*=========================
      IMAGE TITLE
==========================*/

.actress-slide-title{
    position:absolute;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    width:90%;
    text-align:center;

    color:#fff;
    font-size:20px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

    z-index:2;

    text-shadow:
        0 2px 5px rgba(0,0,0,.6),
        0 4px 12px rgba(0,0,0,.5);
}

/*=========================
        ARROWS
==========================*/

.actress-slide-prev,
.actress-slide-next{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;

    position:absolute;
    top:50%;
    transform:translateY(-50%);

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

    cursor:pointer;
    z-index:99;

    box-shadow:0 15px 30px rgba(0,0,0,.20);
}

.actress-slide-prev{
    left:25px;
}

.actress-slide-next{
    right:25px;
}

.actress-slide-prev i,
.actress-slide-next i{
    font-size:20px;
    color:#000;
}

.swiper-slide-active{
    transform:scale(1.04);
}

/*=========================
        TABLET
==========================*/

@media(max-width:992px){

    .actress-section-heading{
        margin-bottom:35px;
    }

    .actress-section-heading h2{
        font-size:40px;
    }

    .actress-slide-swiper{
        height:500px;
    }

    .actress-slide-item img{
        height:500px;
    }

    .actress-slide-title{
        font-size:17px;
    }
}

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

@media(max-width:768px){

    .actress-slider-section{
        padding:50px 0;
    }

    .actress-section-heading{
        margin-bottom:25px;
    }

    .actress-section-heading h2{
        font-size:22px;
    }

    .actress-slide-swiper{
        height:420px;
    }

    .actress-slide-item img{
        height:420px;
    }

    .actress-slide-title{
        font-size:14px;
        letter-spacing:2px;
        bottom:16px;
    }

    .actress-slide-prev,
    .actress-slide-next{
        width:45px;
        height:45px;
    }

    .actress-slide-prev,
.actress-slide-next{
    width:40px !important;
    height:40px !important;
    border-radius:50%;
    background:#ffffff4d;

    position:absolute;
    top:50%;
    transform:translateY(-50%);

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

    cursor:pointer;
    z-index:99;

    box-shadow:0 15px 30px rgba(0,0,0,.20);
}
}
/*  */

/* kerala craft image section start */

.kerala-craft-image-section{
  width: 100%;
  padding: 10px;   /* proper outer padding */
  box-sizing: border-box;
  padding-bottom: 50px;
}

.kerala-craft-img{
  width: 100%;
  height: 250px;
  background-image: url(../img/craft.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  
}

/* MOBILE */
@media (max-width: 768px){
  .kerala-craft-img{
    min-height: 900px;
    background-image: url(../img/craft-vertical.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/*  */

/* kerala shop address section start */

.kerala-shop-address{
    padding: 60px 20px;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 92%,
        #f5f5f5 97%,
        #ececec 100%
    );
    text-align: center;
}

.kerala-shop-address__title{
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700 !important;
  color: #000 !important;
  font-family: 'Cormorant Garamond', serif !important;
}

.kerala-shop-address__wrapper{
  max-width: 1100px;
  margin: auto;
}

.kerala-shop-address__slider{
  overflow: hidden;
}

/* SLIDES */
.kerala-shop-address__slide{
  display: none;
}

.kerala-shop-address__slide.active{
  display: block;
  animation: fade 0.8s ease;
}

/* 🔥 FIXED SINGLE DIRECTION LAYOUT */
.kerala-shop-address__card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* controlled gap */
}

/* IMAGE ALWAYS LEFT */
.kerala-shop-address__image{
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.kerala-shop-address__image img{
  width: 500px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  animation: fadeInDown 0.8s ease;
}

/* TEXT ALWAYS RIGHT */
.kerala-shop-address__content{
  flex: 1;
  text-align: left;
}

.kerala-shop-address__content h3{
  font-size: 26px;
  margin-bottom: 8px;
  color: #000 !important;
}

/* TEXT ANIMATION */
.kerala-shop-address__text{
  color: #000000;
  opacity: 0;
  transform: translateY(15px);
  animation: textFade 0.8s ease forwards;
}

/* DOTS */
.kerala-shop-address__dots{
  margin-top: 20px;
}

.kerala-shop-address__dots .dot{
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.kerala-shop-address__dots .dot.active{
  background: #000;
}

/* ANIMATIONS */
@keyframes fade{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes fadeInDown{
  0%{
    opacity:0;
    transform: translateY(-20px);
  }
  100%{
    opacity:1;
    transform: translateY(0);
  }
}

@keyframes textFade{
  0%{
    opacity:0;
    transform: translateY(15px);
  }
  100%{
    opacity:1;
    transform: translateY(0);
  }
}

/* 🔥 MOBILE FIX (FULL IMAGE SHOW) */
@media(max-width:768px){
  .kerala-shop-address__card{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .kerala-shop-address__content h3{
  font-size: 20px;
  margin-bottom: 8px;
  color: #000 !important;
}

  .kerala-shop-address{
  padding: 30px 20px;
  background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 92%,
        #f5f5f5 97%,
        #ececec 100%
    );
  text-align: center;
}

  .kerala-shop-address__image{
    justify-content: center;
  }

  .kerala-shop-address__image img{
    width: 95%;
    max-width: 100%;
  }

  .kerala-shop-address__content{
    text-align: center;
  }
}

/* kerala testimonial section start */


.drolia-new-testimonial-section{
    width:100%;
    padding:40px 20px;
    background:#ffffff;
    overflow:hidden;
}

@media(max-width:768px)
{
    .drolia-new-testimonial-section{
        width:100%;
        padding:20px 20px 100px 20px !important;
        background:#ffffff;
        overflow:hidden;
    }
}

.drolia-new-testimonial-container{
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:80px;
}

/* LEFT */
.drolia-new-testimonial-left{
    flex:0.8;
}

.drolia-new-testimonial-image{
    width:100%;
    max-width:500px;
    height:520px;
    object-fit:cover;
    border-radius:40px;
    display:block;
    margin:auto;
}

/* RIGHT */
.drolia-new-testimonial-right{
    flex:1;
}

.drolia-new-testimonial-mini-title{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ffffff;
    color:#000000;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
    border: 1px solid #000;
}

@media (max-width: 768px){
  .drolia-new-testimonial-mini-title{
    display: block;
    width: fit-content;
    margin: 0 auto 25px auto; /* center + bottom spacing */
    text-align: center;
  }
}

.drolia-new-testimonial-main-title{
    font-size:36px;
    line-height:1.1;
    color:#111827;
    margin-bottom:50px;
    font-weight:800;
    font-family: 'Cormorant Garamond', serif !important;
}

/* SLIDER */
.drolia-new-testimonial-slider{
    position:relative;
    min-height:320px;
}

.drolia-new-testimonial-item{
    position:absolute;
    width:100%;
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
    pointer-events:none;
}

.drolia-new-testimonial-item.active{
    opacity:1;
    transform:translateY(0);
    position:relative;
    pointer-events:auto;
}

.drolia-new-testimonial-text{
    font-size:16px;
    line-height:2;
    color:#4b5563;
    margin-bottom:20px;
    margin-top: -20px;
}

/* USER */
.drolia-new-testimonial-user{
    display:flex;
    align-items:center;
    gap:18px;
}

/* NAME */
.drolia-new-testimonial-name{
    font-size:24px;
    color:#111827;
    margin-bottom:4px;
}

/* ⭐ STARS BELOW NAME */
.drolia-new-testimonial-stars-inline{
    font-size:20px;
    color:#eb8500;
    letter-spacing:2px;
    margin:2px 0 6px 0;
}

/* ROLE */
.drolia-new-testimonial-role{
    color:#6b7280;
    font-size:16px;
}

/* DOTS */
.drolia-new-testimonial-dots{
    display:flex;
    gap:12px;
    margin-top:-50px;
    
}

.drolia-new-testimonial-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#d1d5db;
    transition:0.4s;
    cursor:pointer;
}

.drolia-new-testimonial-dot.active{
    width:40px;
    border-radius:20px;
    background:#cba87a;
}

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

    .drolia-new-testimonial-container{
        flex-direction:column;
        gap:50px;
    }

    .drolia-new-testimonial-dots{
    display:flex;
    gap:12px;
    margin-top:20px;
    
}

    .drolia-new-testimonial-image{
        height:360px;
    }

    .drolia-new-testimonial-main-title{
        font-size:28px;
        text-align:center;
    }

    .drolia-new-testimonial-text{
        font-size:18px;
        text-align:center;
        line-height:1.8;
    }

    .drolia-new-testimonial-user{
        justify-content:center;
    }

    .drolia-new-testimonial-dots{
        justify-content:center;
    }
}

.drolia-new-testimonial-user-image{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-top:10px;
}

.drolia-new-testimonial-user-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.drolia-new-testimonial-user-image i{
    font-size:22px;
    color:#555;
}

.happy-clients
{
    color: #74191b;
}
/* =========================================== */

.actress-section-heading
{
    
}

/* ===================================== */

.mobile-banner-img {
    display: none;
}

/* Mobile view */
@media (max-width: 768px) {
    .desktop-banner-img {
        display: none;
    }

    .mobile-banner-img {
        display: block;
    }
}


/*  */
/* ================================== */

/* collection page start */

/* ============================
   Kerala Collection Range
============================ */

.kerala-collection-range-section{
     width:100%;
    margin:auto;
    padding:60px 5%;
    background-color: #ffffff;
    margin-top: -50px;
}

/* .kerala-collection-range-container{
    max-width:1400px;
    margin:auto;
} */

/* ============================
   4 Cards Per Row
============================ */

.kerala-collection-range-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* ============================
   Card
============================ */

.kerala-collection-range-card{
    background:#fff;
    border:1px solid #cfcfcf;
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
    transition:.3s ease;
    padding: 4px;
}

.kerala-collection-range-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ============================
   Image
============================ */

.kerala-collection-range-img{
    width:100%;
    height:320px;
    overflow:hidden;
    background:#f8f8f8;
}

.kerala-collection-range-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.kerala-collection-range-card:hover .kerala-collection-range-img img{
    transform:scale(1.05);
}

/* ============================
   Content
============================ */

.kerala-collection-range-content{
    min-height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:left;
    padding:15px;
    font-size:14px;
    line-height:1.6;
    color:#444;
}

/* ============================
   Price
============================ */

.kerala-collection-range-price-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px 15px;
}

.kerala-collection-range-price-left{
    display:flex;
    align-items:center;
    gap:8px;
}

.kerala-collection-range-price{
    font-size:20px;
    font-weight:700;
    color:#111;
}

.kerala-collection-range-old-price{
    font-size:14px;
    color:#888;
    text-decoration:line-through;
}

.kerala-collection-range-offer{
    color:#17a34a;
    font-size:15px;
    font-weight:700;
}

/* ============================
   Button
============================ */

.kerala-collection-range-btn-box{
    padding:0 15px 15px;
    margin-top:auto;
}

.kerala-collection-range-btn{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#57031b;
    color:#fff;
    padding:10px;
    border-radius:5px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.kerala-collection-range-btn:hover{
    background:#760624;
    color: #ffffff;
}

/* ============================
   Tablet
============================ */

@media (max-width:991px){

    .kerala-collection-range-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .kerala-collection-range-img{
        height:260px;
    }

}

/* ============================
   Mobile
============================ */

@media (max-width:768px){

    .kerala-collection-range-section{
        padding:40px 10px;
        margin-top:-80px;
    }



    .kerala-collection-range-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .kerala-collection-range-img{
        height:190px;
    }

    .kerala-collection-range-content{
        min-height:60px;
        font-size:12px;
        padding:6px;
        text-align: left;
    }

    .kerala-collection-range-price-box{
        padding:0 10px 10px;
    }

    .kerala-collection-range-price{
        font-size:16px;
    }

    .kerala-collection-range-old-price{
        font-size:11px;
    }

    .kerala-collection-range-offer{
        font-size:11px;
    }

    .kerala-collection-range-btn-box{
        padding:0 10px 12px;
    }

    .kerala-collection-range-btn{
        font-size:12px;
        padding:8px;
    }

}


/* ======================================= */

/* him/her section start */

.kerala-recipient-section {
  padding: 50px 80px;
  background: #fff;
}

.kerala-recipient-heading {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 30px;
}

.kerala-recipient-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD */
.kerala-recipient-card {
  width: 580px;
  height: 580px;
  background: #f5f3f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* IMAGE FULL AREA (NO PADDING) */
.kerala-recipient-img {
  flex: 1;
  width: 100%;
  height: calc(100% - 60px);
  padding: 0;              /* ✅ important */
  margin: 0;
  overflow: hidden;
}

/* IMAGE EDGE TO EDGE COVER */
.kerala-recipient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ✅ full cover */
  display: block;
}

/* TEXT */
.kerala-recipient-text {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 100;
  background: #fff1da;
  margin: 0;
  color: #000 !important;
}

.kerala-recipient-text span {
  margin-left: 6px;
}
.her
{
    color: #000;
    font-weight: 900 !important;
    
}


/* RESPONSIVE */
/* Anchor ko bhi flex item bana do */
.kerala-recipient-row > a{
    width: calc(50% - 8px);
    text-decoration: none;
    display: block;
}

@media (max-width:768px){

    .kerala-recipient-section{
        padding:40px 15px;
    }

    .kerala-recipient-row{
        display:flex;
        flex-wrap:wrap;
        justify-content:space-between;
        gap:16px;
    }

    .kerala-recipient-row > a{
        width:calc(50% - 8px);
    }

      .kerala-recipient-card{
        width:100%;
        height:250px;   /* 200px ki jagah 260px ya 280px */
        aspect-ratio:auto;
    }

    .kerala-recipient-img{
        height:215px;
    }

    .kerala-recipient-text{
        height:45px;
        font-size:12px;
        text-align:center;
    }
}
/* ================================== */


/* face deserve section start */
.face-deserve-section{
  padding:90px 20px;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(../img/model.jpg) center/cover no-repeat;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* WRAPPER */
.face-deserve-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* LEFT SIDE (PURE VISUAL BALANCE) */
.face-deserve-left{
  flex:1;
}

/* RIGHT SIDE */
.face-deserve-right{
  flex:1.6;
  display:flex;
  flex-direction:column;
  gap:18px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding:35px;
  border-radius:20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* NEW HEADING BOX */
.face-deserve-heading-box{
  margin-bottom:10px;
}

.face-deserve-main-title{
  font-size:28px;
  font-weight:800;
  color:#ffcd9b;
  line-height:1.2;
  letter-spacing:0.5px;
  text-shadow:0 10px 30px rgba(0,0,0,0.5);
  font-family: 'Cormorant Garamond', serif;
  margin-left: 20px;
}

/* .face-deserve-line{
  width:90px;
  height:4px;
  background: linear-gradient(90deg,#ff4d6d,#c2185b);
  margin-top:14px;
  border-radius:10px;
} */

/* CARDS */
.face-deserve-card{
  
  padding:10px 22px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  font-size:14px;
  color:#e2e2e2;
  line-height:1.7;
  transition:0.3s ease;
  border-left:4px solid transparent;
}

.face-deserve-card:hover{
  transform:translateY(-6px);
  /* border-left:4px solid #ffd581; */
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* .face-deserve-card b{
  color:#c2185b;
} */

/* HIGHLIGHT CARD */
.face-deserve-card.highlight{
  background: #000;
  font-weight:600;
  font-size:16px;
  border-left:4px solid #ffd581;
}

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

  .face-deserve-wrapper{
    flex-direction:column;
  }
  .face-deserve-main-title{
  font-size:22px !important;
  font-weight:800;
  color:#ffd581;
  line-height:1.2;
  letter-spacing:0.5px;
  text-shadow:0 10px 30px rgba(0,0,0,0.5);
  font-family: 'Cormorant Garamond', serif;
  margin-top: 20px;
}

  .face-deserve-left{
    display:none;
  }

  .face-deserve-right{
    padding:8px;
  }

  .face-deserve-main-title{
    font-size:26px;
    text-align:center;
  }

  .face-deserve-card{
    font-size:14px;
  }
}
/* ============================================ */

/* chairman message section start */

.chairman-fancy-wrap {
  padding: 70px 15px;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top, #fff7ec, #f5f7ff);
  font-family: "Segoe UI", sans-serif;
}

.chairman-fancy-container {
  width: 100%;
  max-width: 1000px;
}

.chairman-fancy-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 30px 30px;
  border: 1px solid rgba(197, 157, 95, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* gold glow effect */
/* .chairman-fancy-card::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197,157,95,0.25), transparent);
  border-radius: 50%;
} */

.chairman-fancy-header h2 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 3px;
  color: #222;
  font-weight: 700;
}

.chairman-fancy-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c59d5f, transparent);
  margin: 10px auto 20px;
}

/* Quote */
.chairman-fancy-quote {
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fffaf3, #fff);
  border: 1px solid rgba(197,157,95,0.3);
  color: #000;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Content */
.chairman-fancy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin-bottom: 14px;
}

/* Signature */
.chairman-fancy-sign {
  margin-top: 25px;
  text-align: right;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.chairman-fancy-sign h3 {
  margin: 5px 0;
  font-size: 20px;
  color: #d09438;
  letter-spacing: 1px;
}

.chairman-fancy-sign p {
  margin: 3px 0;
  font-size: 16px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .chairman-fancy-card {
    padding: 20px 16px;
  }

  .chairman-fancy-header h2 {
    font-size: 18px;
  }

  .chairman-fancy-content p {
    font-size: 14px;
  }
}
/*  */

/* =========================
   kerala FAQ SECTION WRAPPER
========================= */

.kerala-new-faq{
    padding: 70px 20px;
    background: linear-gradient(135deg, #fff7e4, #ffffff);
    font-family: Arial, sans-serif;
}

/* FLEX LAYOUT */
.kerala-faq-wrapper{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE STICKY HEADING */
.kerala-faq-left{
    flex: 1;
    position: sticky;
    top: 140px; /* 👈 THODA NICHE SARKAYA HAI */
    height: fit-content;
}

.kerala-faq-left h2{
    font-size: 36px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.3;
    font-family: "Cormorant Garamond", serif;
}

/* .kerala-faq-left h2::after{
    content:"";
    width: 80px;
    height: 3px;
    background:#d18aa5;
    display:block;
    margin-top:10px;
    border-radius:5px;
} */

/* RIGHT SIDE */
.kerala-faq-right{
    flex: 2;
}

/* ACCORDION STYLE */
.kerala-new-faq .accordion-item{
    border: none;
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    background: #fff;
    border: 1px solid #ffe4aa;
}

.kerala-new-faq .accordion-button{
    font-weight: 600;
    font-size: 16px;
    padding: 18px;
    background: #ab8552;
    box-shadow: none !important;
    color: #fff !important;
}

.kerala-new-faq .accordion-button:not(.collapsed){
    background: #ab8552;
}

.kerala-new-faq .accordion-body{
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

    .kerala-faq-wrapper{
        flex-direction: column;
    }

    .kerala-faq-left{
        position: relative;
        top: auto;
    }

    .kerala-faq-left h2{
        font-size: 24px;
        text-align: center;
    }
}

/*  */

/* ===========================
   H STRIP WRAPPER
=========================== */
 
.h-strip-wrapper{
    position: absolute;
    top: 630px !important;
    left: 0;
    width: 100%;
    z-index: 999;
    overflow: hidden;
}

/* Hide strip on tablets and mobile */
@media (max-width: 768px) {
    .h-strip-wrapper {
        display: none !important;
    }
}
 
/* ===========================
   COMMON STRIP STYLE
=========================== */
 
.h-strip{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
 
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
 
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
 
    padding: 12px 0;
}
 
/* ===========================
   TRACK
=========================== */
 
.h-strip-track{
    display: flex;
    align-items: center;
    width: max-content;
    gap: 50px;
}
 
/* ===========================
   TEXT STYLE
=========================== */
 
.h-strip-track span{
    display: inline-flex;
    align-items: center;
 
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}
 
/* ===========================
   TOP STRIP
=========================== */
 
.h-strip-top{
    background: rgb(47 0 11);
}
 
.h-strip-top .h-strip-track{
    animation: hStripLeft 25s linear infinite;
}
 
/* ===========================
   BOTTOM STRIP
=========================== */
 
.h-strip-bottom{
    background: rgb(82 0 19);
}
 
.h-strip-bottom .h-strip-track{
    animation: hStripRight 25s linear infinite;
}
 
/* ===========================
   LEFT ANIMATION
=========================== */
 
@keyframes hStripLeft{
 
    0%{
        transform: translateX(0);
    }
 
    100%{
        transform: translateX(-50%);
    }
 
}
 
/* ===========================
   RIGHT ANIMATION
=========================== */
 
@keyframes hStripRight{
 
    0%{
        transform: translateX(-50%);
    }
 
    100%{
        transform: translateX(0);
    }
 
}
 
/* ===========================
   HOVER PAUSE
=========================== */
 
.h-strip:hover .h-strip-track{
    animation-play-state: paused;
}
 
/* ===========================
   TABLET
=========================== */
 
@media (max-width:991px){
 
    .h-strip{
        padding: 10px 0;
    }
 
    .h-strip-track{
        gap: 35px;
    }
 
    .h-strip-track span{
        font-size: 12px;
        letter-spacing: 1.5px;
    }
 
}
 
/* ===========================
   MOBILE
=========================== */
 
@media (max-width:767px){
 
    .h-strip{
        padding: 8px 0;
    }
 
    .h-strip-track{
        gap: 25px;
    }
 
    .h-strip-track span{
        font-size: 10px;
        letter-spacing: 1px;
    }

    .h-strip-wrapper{
    position: absolute;
    top: 420px !important;
    left: 0;
    width: 100%;
    z-index: 999;
    overflow: hidden;
}
 
}
 
/* ===========================
   SMALL MOBILE
=========================== */
 
@media (max-width:480px){
 
    .h-strip-track{
        gap: 20px;
    }
 
    .h-strip-track span{
        font-size: 9px;
    }
 
}
/*  */

/* kerala craft section start */

.kerala-craft-section{
    position: relative;
    width: 100%;
    min-height: 500px;
    background-image: url('../img/gold-craft.jpg'); /* Add your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 40px;
}

/* WHITE CARD */
.kerala-craft-card{
    background: #fff;
    max-width: 420px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
}

/* HEADING */
.kerala-craft-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    font-family: 'Cormorant Garamond', serif !important;
}

/* TEXT */
.kerala-craft-text{
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .kerala-craft-section{
        padding: 20px;
        justify-content: center;
        align-items: flex-end;
    }

    .kerala-craft-card{
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }

    .kerala-craft-title{
        font-size: 18px;
    }

    .kerala-craft-text{
        font-size: 13px;
    }
}
/*  */

/* kerala bridal section start */

.kerala-bridal-section {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.kerala-bridal-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.kerala-bridal-content {
  flex: 1;
  text-align: center; /* ✅ CENTER ALIGN ADDED */
}

.kerala-bridal-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #111;
  font-family: 'Cormorant Garamond', serif !important;
}

.kerala-bridal-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

/* Right Image */
.kerala-bridal-image {
  flex: 1;
  text-align: center;
}

.kerala-bridal-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .kerala-bridal-container {
    flex-direction: column;
    text-align: center;
  }

  .kerala-bridal-content h2 {
    font-size: 22px;
  }
}
/*  */
/* kerala new gift section start */

.kerala-new-gift-section{
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('../img/ribbon.jpg'); /* Add your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.kerala-new-gift-section::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.25); */
}

.kerala-new-gift-section .container{
    position: relative;
    z-index: 2;
}

.kerala-new-gift-content{
    max-width: 520px;
    margin-left: auto;
    text-align: center;
    color: #fff;
}

.kerala-new-gift-content h2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif !important;
    color: #fff !important;
}

.kerala-new-gift-content p{
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #f5f5f5;
}

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

    .kerala-new-gift-section{
        min-height: 550px;
        background-position: center;
    }

    .kerala-new-gift-content{
        max-width: 100%;
        margin: 0 auto;
    }

    .kerala-new-gift-content h2{
        font-size: 38px;
    }

    .kerala-new-gift-content p{
        font-size: 17px;
    }

}

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

    .kerala-new-gift-section{
        min-height: 500px;
        padding: 70px 20px;
        background-image: url('../img/ribbon.jpg'); /* Add your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }

    .kerala-new-gift-content{
        text-align: center;
        max-width: 100%;
    }

    .kerala-new-gift-content h2{
        font-size: 30px;
    }

    .kerala-new-gift-content p{
        font-size: 16px;
        line-height: 1.8;
    }

}
/*  */


/* SECTION */
.kerala-facilities-section{
    width:100%;
    padding:40px 6%;
    background:#ffffff;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.kerala-facilities-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT */
.kerala-facilities-content{
    flex:1;
}

.kerala-facilities-subtitle{
    font-size:14px;
    font-weight:700;
    color:#b8860b;
    letter-spacing:2px;
    text-transform:uppercase;
}

.kerala-facilities-content h2{
    font-size:30px;
    font-weight:800;
    margin:15px 0;
    color:#222;
    font-family: 'Cormorant Garamond', serif !important;
}

.kerala-facilities-desc{
    font-size:15px;
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

/* LIST */
.kerala-facilities-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* ITEM */
.kerala-facilities-item{
    padding:14px 18px;
    background:#fff;
    border-left:3px solid #ffccee;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    color:#333;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    position:relative;
    padding-left:25px;
    transition:0.3s;
}

/* CHECK ICON */
/* .kerala-facilities-item::before{
    content:"✔";
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#d4af37;
    font-weight:900;
} */

/* HOVER */
.kerala-facilities-item:hover{
    transform:translateX(8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* RIGHT IMAGE */
.kerala-facilities-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.kerala-facilities-image img{
    width:100%;
    max-width:520px;
    border-radius:18px;
    object-fit:cover;
    /* box-shadow:0 18px 45px rgba(0,0,0,0.15); */
}

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

    .kerala-facilities-section{
        padding:60px 20px;
    }

    .kerala-facilities-container{
        flex-direction:column;
        gap:35px;
    }

    .kerala-facilities-content{
        text-align:center;
    }

    .kerala-facilities-content h2{
        font-size:24px;
    }

    .kerala-facilities-item{
        text-align:left;
    }

    .kerala-facilities-image img{
        max-width:100%;
    }
}
/* =============================================== */

/* kerala exclusive desk section start */

.kerala-exclusive-desk-section{
    padding:60px 20px;
    background:#fff;
}

.kerala-exclusive-desk-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.kerala-exclusive-desk-card{
    border:2px solid #991130;
    border-top-right-radius:0px;
    border-bottom-left-radius:0px;
    border-top-left-radius:40px;
    border-bottom-right-radius:40px;
    padding:18px 20px;
    text-align:center;
    background:#fff;
    transition:0.35s ease;
    /* cursor:pointer; */
}

.kerala-exclusive-desk-card:hover{
    /* transform:translateY(-8px); */
    /* box-shadow:0 12px 30px rgba(0,0,0,0.12); */
}

.kerala-exclusive-desk-icon{
    width:100px;
    height:100px;
    object-fit:contain;
    margin-bottom:4px;
}

.kerala-exclusive-desk-title{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#222;
    line-height:1.5;
    text-transform:uppercase;
}

/* Tablet */
@media (max-width:991px){
    .kerala-exclusive-desk-container{
        gap:20px;
    }

    .kerala-exclusive-desk-title{
        font-size:16px;
    }
}

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

    .kerala-exclusive-desk-section{
        padding:40px 15px;
    }

    .kerala-exclusive-desk-container{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .kerala-exclusive-desk-card{
        padding:18px 15px;
        border-top-right-radius:0px;
        border-bottom-left-radius:0px;
    }

    .kerala-exclusive-desk-icon{
        width:64px;
        height:64px;
        margin-bottom:12px;
    }

    .kerala-exclusive-desk-title{
        font-size:14px;
        line-height:1.4;
    }
}
/* ========================================== */

/* product description section start */

/*=========================================
PRODUCT DESCRIPTION SECTION
=========================================*/

.product-description-section{
    width:100%;
    padding:60px 5%;
    background:#fff;
}

.product-description-section .container-fluid{
    max-width:1400px;
    margin:auto;
}


/*=========================================
GALLERY WRAPPER
=========================================*/

.kerala-jewel-description-gallery-wrapper{
    display:flex;
    gap:20px;
    align-items:flex-start;
}


/*=========================================
THUMBNAILS
=========================================*/

.kerala-jewel-description-thumbnail-wrapper{
    width:82px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.kerala-jewel-description-thumbnail{
    width:75px;
    height:95px;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    cursor:pointer;
    background:#fff;
    transition:.3s;
}

.kerala-jewel-description-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.kerala-jewel-description-thumbnail:hover{
    border-color:#000;
}

.kerala-jewel-description-thumbnail.active{
    border:2px solid #000;
}


/*=========================================
MAIN IMAGE
=========================================*/

.kerala-jewel-description-main-image-wrapper{

    position:relative;

    flex:1;

    height:680px;

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.kerala-jewel-description-main-image-box{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

}

.kerala-jewel-description-main-image{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

    user-select:none;

}


/*=========================================
BADGE
=========================================*/

.kerala-jewel-description-offer-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#ffe8ea;

    color:#d1002d;

    padding:10px 20px;

    font-size:13px;

    font-weight:600;

    border-radius:30px;

    z-index:20;

}


/*=========================================
ARROWS
=========================================*/

.kerala-jewel-description-prev,
.kerala-jewel-description-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background:#ffffff7a;

    color:#222;

    cursor:pointer;

    box-shadow:0 4px 12px rgba(0,0,0,.18);

    transition:.3s;

    z-index:30;

}

.kerala-jewel-description-prev{

    left:18px;

}

.kerala-jewel-description-next{

    right:18px;

}

.kerala-jewel-description-prev:hover,
.kerala-jewel-description-next:hover{

    background:#000;

    color:#fff;

}

.kerala-jewel-description-prev i,
.kerala-jewel-description-next i{

    font-size:16px;

}


/*=========================================
POPUP
=========================================*/

.kerala-jewel-description-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.kerala-jewel-description-popup.active{

    display:flex;

}

.kerala-jewel-description-popup img{

    width:90%;

    max-width:850px;

    max-height:90vh;

    object-fit:contain;

}

.kerala-jewel-description-popup-close{

    position:absolute;

    top:25px;

    right:40px;

    font-size:45px;

    color:#fff;

    cursor:pointer;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.product-description-section{

    padding:30px 15px;
    margin-top: -80px !important;

}

.kerala-jewel-description-gallery-wrapper{

    flex-direction:column-reverse;

}

.kerala-jewel-description-thumbnail-wrapper{

    width:100%;

    flex-direction:row;

    overflow-x:auto;

    gap:10px;

    padding-top:12px;

}

.kerala-jewel-description-thumbnail{

    min-width:70px;

}

.kerala-jewel-description-main-image-wrapper{

    height:420px;

}

.kerala-jewel-description-main-image{

    width:100%;

    height:100%;

}

.kerala-jewel-description-prev,
.kerala-jewel-description-next{

    width:38px;

    height:38px;

}

}

/*=====================================================
RIGHT SIDE WRAPPER
=====================================================*/

.kerala-jewel-description-right-side-wrapper{
    width:100%;
    padding-left:45px;
}


/*=====================================================
TITLE
=====================================================*/

.kerala-jewel-description-right-side-title{
    font-size:28px;
    font-weight:100 !important;
    color:#111;
    line-height:1.4;
    margin-bottom:18px;
}


/*=====================================================
RATING
=====================================================*/

.kerala-jewel-description-right-side-rating{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:25px;
}

.kerala-jewel-description-right-side-rating-value{
    font-size:16px;
    font-weight:600;
}

.kerala-jewel-description-right-side-rating img{
    width:18px;
    height:18px;
}

.kerala-jewel-description-right-side-rating-count{
    color:#777;
    font-size:15px;
}


/*=====================================================
PRICE
=====================================================*/

.kerala-jewel-description-right-side-price-wrapper{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.kerala-jewel-description-right-side-current-price{
    font-size:24px;
    font-weight:100 !important;
    color:#000;
}

.kerala-jewel-description-right-side-old-price{
    font-size:18px;
    color:#999;
    text-decoration:line-through;
}

.kerala-jewel-description-right-side-discount{
    color:#0aaf32;
    font-size:17px;
    font-weight:700;
}


/*=====================================================
TAX
=====================================================*/

.kerala-jewel-description-right-side-tax{
    margin-top:8px;
    margin-bottom:35px;
    color:#555;
    font-size:17px;
}


/*=====================================================
QUOTE BUTTON
=====================================================*/

.kerala-jewel-description-right-side-quote-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:260px;
    height:50px;
    border:2px solid #000;
    border-radius:8px;
    color:#000;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.kerala-jewel-description-right-side-quote-btn:hover{
    background:#000;
    color:#fff;
}


/*=====================================================
OFFER HEADING
=====================================================*/

.kerala-jewel-description-right-side-offer-heading{
    font-size:20px;
    margin-top:45px;
    margin-bottom:30px;
    color:#111;
    font-weight:100 !important;
}


/*=====================================================
OFFER GRID
=====================================================*/

.kerala-jewel-description-right-side-offer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px 25px;
    margin-bottom:50px;
}

.kerala-jewel-description-right-side-offer-item{
    text-align:center;
}

.kerala-jewel-description-right-side-offer-item img{
    width:50px;
    height:50px;
    object-fit:contain;
    margin-bottom:14px;
}

.kerala-jewel-description-right-side-offer-item h6{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#111 !important;
}

.kerala-jewel-description-right-side-offer-item p{
    margin:3px 0 0;
    color:#555;
    font-size:15px;
}


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

.kerala-jewel-description-right-side-accordion{
    border-top:1px solid #ddd;
}

.kerala-jewel-description-right-side-accordion-item{
    border-bottom:1px solid #ddd;
}

.kerala-jewel-description-right-side-accordion-btn{
    width:100%;
    padding:18px 0;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    color:#111;
}

.kerala-jewel-description-right-side-accordion-icon{
    font-size:22px;
    transition:.3s;
}


/*=====================================================
ACCORDION CONTENT
=====================================================*/

.kerala-jewel-description-right-side-accordion-content{
    display:none;
    padding:0 0 25px;
}

.kerala-jewel-description-right-side-accordion-content ul{
    padding-left:20px;
    margin:0;
}

.kerala-jewel-description-right-side-accordion-content ul li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
    font-size:15px;
}

.kerala-jewel-description-right-side-accordion-content p{
    color:#555;
    line-height:1.9;
    font-size:15px;
    margin:0;
}

.kerala-jewel-description-right-side-accordion-item.active
.kerala-jewel-description-right-side-accordion-content{
    display:block;
}

.kerala-jewel-description-right-side-accordion-item.active
.kerala-jewel-description-right-side-accordion-icon{
    transform:rotate(45deg);
}


/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:768px){

.kerala-jewel-description-right-side-wrapper{
    padding-left:0;
    margin-top:35px;
}

.kerala-jewel-description-right-side-title{
    font-size:22px;
}

.kerala-jewel-description-right-side-rating{
    margin-bottom:20px;
}

.kerala-jewel-description-right-side-current-price{
    font-size:22px;
}

.kerala-jewel-description-right-side-old-price{
    font-size:18px;
}

.kerala-jewel-description-right-side-discount{
    font-size:18px;
}

.kerala-jewel-description-right-side-tax{
    font-size:15px;
    margin-bottom:25px;
}

.kerala-jewel-description-right-side-quote-btn{
    width:100%;
    height:48px;
    font-size:17px;
}

.kerala-jewel-description-right-side-offer-heading{
    font-size:22px;
    margin-top:35px;
}

.kerala-jewel-description-right-side-offer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.kerala-jewel-description-right-side-offer-item img{
    width:42px;
    height:42px;
}

.kerala-jewel-description-right-side-offer-item h6{
    font-size:16px;
}

.kerala-jewel-description-right-side-offer-item p{
    font-size:14px;
}

.kerala-jewel-description-right-side-accordion-btn{
    font-size:16px;
    padding:18px 0;
}

.kerala-jewel-description-right-side-accordion-icon{
    font-size:24px;
}

}

.pair-it-with {
    width: 100%;
    margin-bottom: 25px;
    text-align: left;
}
.our-best-seller{
    text-align: center;
    margin-bottom: 25px;
    
}

.our-best-seller-font
{
font-family: 'Cormorant Garamond', serif !important;
font-size: 28px !important;
margin-bottom: 50px !important;
color: #000 !important;
}

.pair-it-with h2 {
    font-size: 24px;
    font-weight: 100 !important;
    color: #222;
    margin: 0;
    /* line-height: 1.2; */
}

@media (max-width: 768px) {
    .pair-it-with {
        margin-bottom: 20px;
    }
    .kerala-collection-range-section
    {
        margin-top: 4px;
        padding: 10px 10px;
        margin-bottom: 40px;
    }

    .pair-it-with h2 {
        font-size: 20px;
    }
}

/* ======================================== */

/* Card */
.kerala-collection-range-card{
    position:relative;
    overflow:hidden;
}

/*==============================
 Premium Vertical Ribbon
===============================*/

.kerala-card-ribbon{

    position:absolute;
    top:0;
    right:18px;

    width:34px;
    height:175px;

    background:linear-gradient(180deg, #ff5f7e8c 0%, #d81b6091 50%, #8f0034ad 100%);
    

    border-left:2px solid #FFD86A;
    border-right:2px solid #FFD86A;

    border-radius:0 0 3px 3px;

    display:flex;
    flex-direction:column;
    align-items:center;

    z-index:99;

    overflow:hidden;

    box-shadow:
        0 8px 18px rgba(0,0,0,.30),
        inset 0 2px 3px rgba(255,255,255,.45),
        inset 0 -4px 8px rgba(0,0,0,.25);
}

/* Gold Stitch */

.kerala-card-ribbon::before{

    content:"";

    position:absolute;

    left:6px;
    right:6px;
    top:6px;
    bottom:18px;

    /* border-left:2px dotted rgba(255,215,0,.8); */
    /* border-right:2px dotted rgba(255,215,0,.8); */

}

/* Shine */

.kerala-card-ribbon::after{

    content:"";

    position:absolute;

    top:-60px;
    left:-25px;

    width:110px;
    height:35px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.95),
        transparent
    );

    transform:rotate(-30deg);

    animation:keralaRibbonShine 2.5s linear infinite;
}

/* Crown */

.kerala-card-ribbon i{

    color:#FFD700;

    font-size:20px;

    margin-top:10px;
    margin-bottom:10px;

    position:relative;
    z-index:2;
    margin-top: 10px;

}

/* Text */

.kerala-card-ribbon span{

    position:relative;

    z-index:2;

    color:#fff;

    font-size:12px;

    font-weight:700;

    line-height:14px;

    text-align:center;

    letter-spacing:1px;

    text-shadow:0 2px 3px rgba(0,0,0,.35);
    margin-top: 10px;

}

/* Bottom Zig Zag */

.kerala-card-ribbon .zigzag{

    display:none;

}

/* .kerala-card-ribbon{
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,

        87.5% 85%,
        75% 100%,

        62.5% 85%,
        50% 100%,

        37.5% 85%,
        25% 100%,

        12.5% 85%,
        0 100%
    );
} */

/* Shine Animation */

@keyframes keralaRibbonShine{

    0%{

        top:-60px;

    }

    100%{

        top:220px;

    }

}

/* Hover */

.kerala-collection-range-card:hover .kerala-card-ribbon{

    transform:translateY(4px);

    transition:.35s;

    box-shadow:
        0 12px 25px rgba(0,0,0,.35),
        0 0 18px rgba(255,215,0,.5);

}
@media(max-width:768px)
{
    .kerala-card-ribbon{

    position:absolute;
    top:0;
    right:13px;

    width:24px;
    height:132px;

    background:linear-gradient(
        180deg,
        #ff5f7e 0%,
        #d81b60 50%,
        #8f0034 100%
    );

    border-left:2px solid #FFD86A;
    border-right:2px solid #FFD86A;

    border-radius:0 0 3px 3px;

    display:flex;
    flex-direction:column;
    align-items:center;

    z-index:99;

    overflow:hidden;

    box-shadow:
        0 8px 18px rgba(0,0,0,.30),
        inset 0 2px 3px rgba(255,255,255,.45),
        inset 0 -4px 8px rgba(0,0,0,.25);
}

.kerala-card-ribbon span{

    position:relative;

    z-index:2;

    color:#fff;

    font-size:8px;

    font-weight:700;

    line-height:10px;

    text-align:center;

    letter-spacing:1px;

    text-shadow:0 2px 3px rgba(0,0,0,.35);
    margin-top: 10px;

}

.kerala-card-ribbon::before
{

    display: none !important;

}


}

/* ========================================== */


/*=========================================
Discover New Arrivals
=========================================*/

.kerala-update-arrivals-section{
    padding:40px 0;
    background:#f6f8fc;
    overflow:hidden;
}

.kerala-update-arrivals-heading{
    text-align:center;
    margin-bottom:45px;
}

.kerala-update-arrivals-heading h2{
    font-size:28px;
    font-weight:800;
    color:#1d2d50;
    margin-bottom:10px;
    font-family: 'Cormorant Garamond', serif;
}

.kerala-update-arrivals-heading p{
    font-size:16px;
    color:#666;
}

/*=========================================
Cards
=========================================*/

.kerala-update-arrivals-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:stretch;
}

.kerala-update-arrivals-card{
    position:relative;
    background:#fff;
    /* border-radius:18px; */
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:380px;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
    transition:.4s ease;
}

.kerala-update-arrivals-card:hover{
    /* transform:translateY(-8px); */
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.kerala-update-arrivals-img{
    width:100%;
    height:300px;
    overflow:hidden;
}

.kerala-update-arrivals-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.kerala-update-arrivals-card:hover .kerala-update-arrivals-img img{
    /* transform:scale(1.08); */
}

/*=========================================
Title
=========================================*/

.kerala-update-arrivals-card h4{
    font-size:17px;
    font-weight:100 !important;
    color:#222;
    line-height:28px;
    text-align:center;
    padding:18px 15px 8px;
    margin:0;
}

/*=========================================
Button
=========================================*/

.kerala-update-arrivals-btn{
    display:block;
    margin:8px 20px 20px;
    padding:8px 20px;
    text-align:center;
    text-decoration:none;
    border-radius:5px;
    font-size:15px;
    font-weight:700;
    color:#fff;
    background:#57031b;
    transition:.35s;
    /* box-shadow:0 10px 22px rgba(255,102,0,.30); */
}

.kerala-update-arrivals-btn:hover{
    color:#fff;
    text-decoration:none;
    /* transform:translateY(-3px); */
    /* box-shadow:0 18px 35px rgba(255,102,0,.45); */
}

/*=========================================
Premium Thin Ribbon
=========================================*/

.kerala-update-arrivals-ribbon{
    position:absolute;
    top:18px;
    right:-52px;
    width:170px;
    transform:rotate(45deg);
    text-align:center;
    overflow:hidden;
    z-index:99;
}

.kerala-update-arrivals-ribbon span{
    display:block;
    padding:8px 0;
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
    color:#fff;
    text-transform:uppercase;
    position:relative;

    background:linear-gradient(180deg, #ff5f7e8c 0%, #d81b6091 50%, #8f0034ad 100%);

    border-top:1px solid rgba(255,255,255,.5);
    border-bottom:1px solid rgba(0,0,0,.2);

    box-shadow:
    0 8px 18px rgba(0,0,0,.25),
    inset 0 2px 3px rgba(255,255,255,.45),
    inset 0 -2px 3px rgba(0,0,0,.2);

    animation:keralaRibbonGlow 1.8s ease-in-out infinite alternate;
}

/* Shine */

.kerala-update-arrivals-ribbon span::before{
    content:'';
    position:absolute;
    top:0;
    left:-140%;
    width:45%;
    height:100%;
    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.9),
    transparent);

    transform:skewX(-25deg);
    animation:keralaRibbonShine2 2.5s linear infinite;
}

/* Ribbon Ends */

.kerala-update-arrivals-ribbon::before,
.kerala-update-arrivals-ribbon::after{
    content:'';
    position:absolute;
    bottom:-5px;
    width:10px;
    height:10px;
    background:#a94d00;
    z-index:-1;
}

.kerala-update-arrivals-ribbon::before{
    left:18px;
    transform:skewY(40deg);
}

.kerala-update-arrivals-ribbon::after{
    right:18px;
    transform:skewY(-40deg);
}

/*=========================================
Animation
=========================================*/

@keyframes keralaRibbonGlow{

0%{

box-shadow:
0 0 8px rgba(255,180,0,.4),
0 0 18px rgba(255,145,0,.3),
0 8px 18px rgba(0,0,0,.25);

}

100%{

box-shadow:
0 0 18px rgba(255,180,0,.9),
0 0 35px rgba(255,145,0,.7),
0 0 55px rgba(255,120,0,.4),
0 8px 18px rgba(0,0,0,.25);

}

}

@keyframes keralaRibbonShine2{

0%{
left:-140%;
}

100%{
left:180%;
}

}

/*=========================================
Responsive
=========================================*/

@media(max-width:768px){

.kerala-update-arrivals-section{
    padding:40px 15px;
}

.kerala-update-arrivals-row{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.kerala-update-arrivals-heading h2{
    font-size:22px;
}

.kerala-update-arrivals-card{
    min-height:260px;
}

.kerala-update-arrivals-img{
    height:180px;
}

.kerala-update-arrivals-card h4{
    font-size:12px;
    line-height:26px;
    padding:4px 12px 6px;
}

.kerala-update-arrivals-btn{
    margin:2px 15px 15px;
    padding:8px;
    font-size:10px;
}

.kerala-update-arrivals-ribbon{
    width:150px;
    right:-45px;
}

.kerala-update-arrivals-ribbon span{
    font-size:8px;
    padding:5px 0;
}

}


