:root {
    --primary-color: #e6b913;
    --secondary-color: #116530;
    --accent-color: #ff6b6b;
    --light-color: #f8f9f2;
    --dark-color: #243c2e;
    --text-color: #2d3436;
    --white: #ffffff;
    --black: #000000;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    --transition: all .4s cubic-bezier(.165, .84, .44, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-color);
    background-color: var(--white)
}

/* util css by me  */
.w-233 {
    width: 233px;
}

/* util css by me end */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease
}

.preloader.hide {
    opacity: 0;
    pointer-events: none
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(230, 185, 19, .2);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

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

/* background-color: transparent !important; */

/* floating icon start */
/*a{*/
/*  text-decoration:none;*/
/*}*/
/*.floating_btn {*/
/*  position: fixed;*/
/*  bottom: 30px;*/
/*  right: 30px;*/
/*  width: 100px;*/
/*  height: 100px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items:center;*/
/*  justify-content:center;*/
/*  z-index: 1000;*/
/*}*/
/*.floating_btn {*/
/*    position: fixed;*/
/*    bottom: 88px;*/
/*    right: 9px;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    display: flex*/
/*;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    z-index: 1000;*/
/*}*/

/*@keyframes pulsing {*/
/*  to {*/
/*    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);*/
/*  }*/
/*}*/

/*.contact_icon {*/
/*  background-color: #42db87;*/
/*  color: #fff;*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  font-size:30px;*/
/*  border-radius: 50px;*/
/*  text-align: center;*/
/*  box-shadow: 2px 2px 3px #999;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transform: translatey(0px);*/
/*  animation: pulse 1.5s infinite;*/
/*  box-shadow: 0 0 0 0 #42db87;*/
/*  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);*/
/*  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);*/
/*  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);*/
/*  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);*/
/*  font-weight: normal;*/
/*  font-family: sans-serif;*/
/*  text-decoration: none !important;*/
/*  transition: all 300ms ease-in-out;*/
/*}*/


/*.text_icon {*/
/*  margin-top: 8px;*/
/*  color: #707070;*/
/*  font-size: 13px;*/
/*}*/

/* new floating whatsapp icon below */
a{
  text-decoration:none;
}
.wa-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wa-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: wa-pulse 2s infinite;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.wa-float-btn i {
    transition: transform 0.3s ease;
}

.wa-float-btn:hover i {
    transform: scale(1.2);
}

/* Chat Dialogue */
.wa-chat-dialogue {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wa-chat-widget:hover .wa-chat-dialogue {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-chat-header {
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wa-chat-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.wa-chat-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: wa-blink 1.5s infinite;
}

.wa-chat-body {
    padding: 20px;
}

.wa-chat-message {
    background: #f1f5f9;
    padding: 14px 16px;
    border-radius: 18px 18px 18px 4px;
    margin-bottom: 16px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

.wa-chat-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid #f1f5f9;
    border-bottom: 8px solid #f1f5f9;
    transform: rotate(45deg);
}

.wa-typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 16px;
}

.wa-typing-dots {
    display: flex;
    gap: 3px;
}

.wa-typing-dot {
    width: 6px;
    height: 6px;
    background: #64748b;
    border-radius: 50%;
    animation: wa-typing-dots 1.4s infinite ease-in-out;
}

.wa-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.wa-typing-dot:nth-child(2) { animation-delay: -0.16s; }

.wa-chat-actions {
    display: flex;
    gap: 8px;
}

.wa-chat-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.wa-chat-btn-primary {
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: white;
}

.wa-chat-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.wa-chat-btn-secondary {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.wa-chat-btn-secondary:hover {
    background: #f1f5f9;
    color: #475569;
}

.wa-notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wa-bounce 1s infinite;
}

/* Animations */
@keyframes wa-pulse {
    0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.3); }
    100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
}

@keyframes wa-blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes wa-typing-dots {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes wa-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wa-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-chat-dialogue {
        width: 260px;
        right: -10px;
    }
}

/* floating icon end */


/* navbar end  */
/* ----------------------------------- hero section start ------------------------------------ */
/* ===============================
   MAA-LAXMI HERO SECTION CSS
   =============================== */

/* Hero Section Styles */
.maa-laxmi-hero-section {
    margin-top: 3rem;
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: #333;
}

.maa-laxmi-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.maa-laxmi-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.maa-laxmi-hero-content-wrapper {
    position: relative;
    z-index: 3;
    color: white;
}

.maa-laxmi-hero-slide {
    display: none;
}

.maa-laxmi-hero-slide.active {
    display: block;
    animation: maa-laxmi-fadeIn 0.8s ease-in-out;
}

.maa-laxmi-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.maa-laxmi-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.maa-laxmi-highlight {
    color: #e6b913;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.maa-laxmi-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.maa-laxmi-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e6b913;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maa-laxmi-hero-btn:hover {
    background: #f0cb47;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 185, 19, 0.3);
    color: #333;
    text-decoration: none;
}

/* Navigation Dots */
.maa-laxmi-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.maa-laxmi-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.maa-laxmi-dot.active {
    background: #e6b913;
    transform: scale(1.2);
}

.maa-laxmi-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Simple Fade Animation */
@keyframes maa-laxmi-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .maa-laxmi-hero-section {
        height: 80vh;
        min-height: 400px;
    }
    
    .maa-laxmi-hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .maa-laxmi-hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .maa-laxmi-hero-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .maa-laxmi-slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .maa-laxmi-hero-section {
        margin-top: 4rem;
        padding: 0 15px;
    }
    
    .maa-laxmi-hero-title {
        margin-bottom: 1rem;
    }
}
/* ----------------------------------- hero section start ------------------------------------ */

/* hero section end */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .9rem;
    box-shadow: 0 8px 25px rgba(230, 185, 19, .3);
    transition: var(--transition)
}

.btn-primary:hover {
    background-color: var(--dark-color);
    box-shadow: 0 8px 25px rgba(36, 60, 46, .3);
    transform: translateY(-5px)
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 13px 35px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .9rem;
    transition: var(--transition)
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-5px)
}

.btn-secondary {
    background-color: var(--dark-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .9rem;
    box-shadow: 0 8px 25px rgba(36, 60, 46, .3);
    transition: var(--transition)
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(230, 185, 19, .3);
    transform: translateY(-5px)
}

.hero-image {
    position: relative;
    z-index: 10
}

.hero-image img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite
}

@keyframes float {

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

    50% {
        transform: translateY(-20px)
    }
}

.hero-stats {
    position: relative;
    z-index: 10;
    margin-top: 50px
}

.stats-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    transition: var(--transition)
}

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

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px
}

.stats-number {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-color)
}

.stats-text {
    font-size: .9rem;
    color: var(--text-color);
    opacity: .8
}

.section {
    padding: 120px 0;
    position: relative
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .05;
    z-index: 0
}

.section-title-container {
    margin-bottom: 80px
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 50px
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color)
}

.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark-color);
    position: relative;
    margin-bottom: 30px
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: .8
}

.features-container {
    position: relative;
    z-index: 10
}

.feature-card {
    padding: 40px 30px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    overflow: hidden
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    border-bottom: 4px solid var(--primary-color)
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(230, 185, 19, .1);
    border-radius: 50%;
    top: -15px;
    left: -15px;
    z-index: -1
}

.feature-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color)
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: .8
}

.products {
    background-color: var(--light-color)
}

.product-card {
    height: 95%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    background-color: var(--white)
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.product-card:hover .product-image img {
    transform: scale(1.1)
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: .8rem;
    z-index: 10
}

.product-body {
    padding: 30px;
    position: relative
}

.product-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition)
}

.product-title:hover {
    color: var(--primary-color)
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: .8
}

.product-btn {
    display: inline-block;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none
}

.product-btn:hover {
    background-color: var(--primary-color);
    color: var(--white)
}

.about {
    position: relative;
    overflow: hidden
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow)
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: .2;
    z-index: 1
}

.about-image-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: .2;
    z-index: 1
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition)
}

.about-image:hover {
    transform: scale(1.03)
}

.about-content {
    padding: 30px
}

.about-years {
    display: inline-block;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 30px
}

.about-years span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    position: absolute;
    right: -15px;
    bottom: 5px
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: .9
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

.about-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem
}

.about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0
}

.process {
    background-color: var(--light-color)
}

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

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--card-shadow);
    z-index: 10
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 90px;
    width: 2px;
    height: calc(100% - 40px);
    background-color: rgba(230, 185, 19, .3);
    z-index: 1
}

.process-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition)
}

.process-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.process-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color)
}

.process-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: .8
}

.testimonials {
    position: relative;
    overflow: hidden
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin: 15px;
    position: relative;
    z-index: 10;
    height: calc(100% - 30px);
    transition: var(--transition)
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 4rem;
    color: rgba(230, 185, 19, .1);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1
}

.testimonial-rating {
    margin-bottom: 20px
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 5px
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 10
}

.client-info {
    display: flex;
    align-items: center
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px
}

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

.client-details {
    flex: 1
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px
}

.client-position {
    font-size: .9rem;
    color: var(--primary-color)
}

.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/500');
    background-size: cover;
    opacity: .1;
    z-index: 1
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center
}

.cta-title {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 30px
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    margin-top: 40px
}

.cta-input {
    width: 100%;
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition)
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, .6)
}

.cta-input:focus {
    background-color: rgba(255, 255, 255, .2);
    border-color: var(--primary-color)
}

.cta-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition)
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--dark-color)
}


/* Certification Styles */
.certification-logos {
    margin-top: 20px;
}

.certification-logo {
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.certification-logo:hover {
    transform: translateY(-5px);
}

.certification-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.copyright {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright-text {
    opacity: 0.7;
    font-size: 0.9rem;
}




.footer {
    background-color: var(--white);
    position: relative;
    padding-top: 100px;
    padding-bottom: 30px;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 1;
}

.footer-logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-color);
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.footer-links li {
    margin-bottom: 10px;
    flex: 0 0 calc(50% - 30px);
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Certification Styles end*/
.certification-logos {
    margin-top: 20px;
}

.certification-logo {
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.certification-logo:hover {
    transform: translateY(-5px);
}

.certification-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.copyright {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright-text {
    opacity: 0.7;
    font-size: 0.9rem;
}

.contact-info {
    list-style: none;
    padding: 0
}

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0
}

.contact-text {
    flex: 1;
    font-size: 1rem
}

.contact-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition)
}

.contact-text a:hover {
    color: var(--primary-color)
}

.copyright {
    background-color: var(--light-color);
    padding: 30px 0;
    text-align: center;
    margin-top: 80px
}

.copyright-text {
    margin-bottom: 0;
    font-size: .9rem
}



.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.back-to-top.active {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    background-color: var(--dark-color);
    transform: translateY(-5px)
}

.counter-box {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f0c330 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition)
}

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

.counter-box::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1)
}

.counter-box::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1)
}

.counter-number {
    font-weight: 800;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 15px
}

.counter-text {
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center
}

.counter-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: .2
}

.products-slider .product-card {
    margin: 15px
}

.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition)
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition)
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-text {
    color: var(--white)
}

.gallery-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px
}

.gallery-category {
    font-size: .9rem;
    color: var(--primary-color)
}

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

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    filter: grayscale(100%)
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    filter: grayscale(0%)
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow)
}

.faq-header {
    background-color: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition)
}

.faq-header:hover {
    background-color: var(--light-color)
}

.faq-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition)
}

.faq-icon.active {
    transform: rotate(180deg)
}

.faq-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition)
}

.faq-body-inner {
    padding: 20px 0
}

.faq-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: .8
}

@media(max-width:1199px) {
    .hero-title {
        font-size: 3.5rem
    }

    .about-years {
        font-size: 3rem
    }

    .about-years span {
        font-size: 1rem
    }
}

@media(max-width:991px) {
    /* .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
        margin-top: 15px
    } */

    /* .nav-link {
        margin: 5px 0
    } */

    .hero-title {
        font-size: 3rem
    }

    .section {
        padding: 80px 0
    }

    .about-content {
        margin-top: 50px
    }

    .process-item {
        padding-left: 100px
    }
}

@media(max-width:767px) {
    .hero {
        padding: 120px 0 80px
    }

    .hero-title {
        font-size: 2.5rem
    }

    .hero-image {
        margin-top: 50px
    }

    .about-years {
        font-size: 2.5rem
    }

    .process-item {
        padding-left: 0;
        padding-top: 100px
    }

    .process-number {
        left: 50%;
        transform: translateX(-50%)
    }

    .process-item:not(:last-child)::after {
        left: 50%;
        top: 80px;
        width: 2px;
        height: calc(100% - 130px);
        transform: translateX(-50%)
    }

    .cta-title {
        font-size: 2.5rem
    }
}

@media(max-width:575px) {
    .hero-title {
        font-size: 2rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .feature-card,
    .testimonial-card,
    .product-card {
        padding: 30px 20px
    }

    .about-years {
        font-size: 2.2rem
    }

    .counter-number {
        font-size: 3rem
    }

    .cta-button {
        position: static;
        width: 100%;
        margin-top: 10px;
        border-radius: 50px
    }

    .cta-input {
        text-align: center
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(230, 185, 19, .2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s infinite ease-in-out
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

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


.additional-certifications {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.additional-certifications:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.additional-certifications h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.additional-certifications h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.quality-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: var(--white);
    border-radius: 50px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.quality-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    background-color: var(--dark-color);
}

.quality-badge:hover i,
.quality-badge:hover span {
    color: var(--white);
}

.quality-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: var(--transition);
}

.quality-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

@media(max-width: 767px) {
    .certification-card {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .quality-badge {
        margin-bottom: 15px;
    }
}


.certification-slider-section {
    padding: 80px 0;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.certification-slider-container {
    position: relative;
    padding: 0 50px;
    margin-top: 30px;
}

.certification-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    gap: 20px;
    padding: 20px 0;
}

.certification-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.certification-slide {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
}

.certificate-img {
    margin: 15px auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.certification-card {
    background-color: var(--white, #ffffff);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.certification-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color, #e6b913);
}

.certification-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(230, 185, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.certification-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color, #e6b913);
    animation: rotate 15s linear infinite;
}

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

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

.certification-icon i {
    font-size: 2rem;
    color: var(--primary-color, #e6b913);
}

.certification-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color, #333);
}

.certification-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
}

.certification-badge {
    display: inline-block;
    background-color: rgba(230, 185, 19, 0.1);
    padding: 7px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color, #e6b913);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white, #ffffff);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color, #e6b913);
    transform: scale(1.1);
}

.slider-prev:hover i,
.slider-next:hover i {
    color: var(--white, #ffffff);
}

.slider-prev i,
.slider-next i {
    font-size: 1rem;
    color: var(--dark-color, #333);
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
    position: absolute;
}

.slider-next {
    right: 10px;
    position: absolute;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .certification-slide {
        width: 280px;
    }
}

@media (max-width: 767px) {
    .certification-slider-section {
        padding: 60px 0;
    }

    .certification-slider-container {
        padding: 0 40px;
    }

    .certification-slide {
        width: 250px;
    }

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

@media (max-width: 576px) {
    .certification-slider-container {
        padding: 0 30px;
    }

    .certification-slide {
        width: 220px;
    }

    .certification-card {
        padding: 25px 15px;
    }

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

    .certification-icon i {
        font-size: 1.7rem;
    }

    .certification-title {
        font-size: 1.2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}

/* certificate section end */
/* Mahalaxmi Contact Section Styles start */
/* Mahalaxmi Contact Section Styles */
.mahalaxmi-contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.mahalaxmi-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.mahalaxmi-section-divider {
    height: 3px;
    width: 80px;
    background-color: #e6b913;
    margin: 0 auto 20px;
}

.mahalaxmi-section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.mahalaxmi-card {
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.mahalaxmi-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #e6b913;
}

.mahalaxmi-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(230, 185, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.mahalaxmi-card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #e6b913;
    animation: rotate 15s linear infinite;
}

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

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

.mahalaxmi-card-icon i {
    font-size: 2.5rem;
    color: #e6b913;
}

.mahalaxmi-card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

/* Form Styles */
.mahalaxmi-contact-form {
    text-align: left;
}

.mahalaxmi-form-group {
    position: relative;
    margin-bottom: 10px;
}

.mahalaxmi-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}

.mahalaxmi-form-group label i {
    color: #e6b913;
    margin-right: 5px;
}

.mahalaxmi-form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mahalaxmi-form-control:focus {
    border-color: #e6b913;
    box-shadow: 0 0 10px rgba(230, 185, 19, 0.2);
    outline: none;
    background-color: #fff;
}

.mahalaxmi-submit-btn {
    background-color: #e6b913;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(230, 185, 19, 0.3);
    cursor: pointer;
}

.mahalaxmi-submit-btn:hover {
    background-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Details Styles */
.mahalaxmi-contact-details {
    margin-bottom: 25px;
}

.mahalaxmi-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

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

.mahalaxmi-contact-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(230, 185, 19, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.mahalaxmi-contact-icon i {
    font-size: 1.3rem;
    color: #e6b913;
}

.mahalaxmi-contact-text {
    flex: 1;
}

.mahalaxmi-contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.mahalaxmi-contact-text a,
.mahalaxmi-contact-text p {
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.mahalaxmi-contact-text a:hover {
    color: #e6b913;
}

/* Social Media Styles */
.mahalaxmi-social-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.mahalaxmi-social-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e6b913;
}

.mahalaxmi-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mahalaxmi-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mahalaxmi-social-link:nth-child(1) {
    background-color: #3b5998;
    /* Facebook */
}

.mahalaxmi-social-link:nth-child(2) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    /* Instagram */
}

.mahalaxmi-social-link:nth-child(3) {
    background-color: #0077b5;
    /* LinkedIn */
}

.mahalaxmi-social-link:nth-child(4) {
    background-color: #1da1f2;
    /* Twitter */
}

.mahalaxmi-social-link:nth-child(5) {
    background-color: #ff0000;
    /* YouTube */
}

.mahalaxmi-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mahalaxmi-social-link i {
    font-size: 1.2rem;
}

/* Map Container Styles */
.mahalaxmi-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media(max-width: 991px) {
    .mahalaxmi-card {
        margin-bottom: 30px;
    }
}

@media(max-width: 767px) {
    .mahalaxmi-card {
        padding: 30px 15px;
    }

    .mahalaxmi-section-title {
        font-size: 2rem;
    }

    .mahalaxmi-contact-item {
        flex-direction: column;
    }

    .mahalaxmi-contact-icon {
        margin-bottom: 10px;
    }
}

/* Mahalaxmi Contact Section Styles end */

/* Mahalaxmi Hero Section Styles */

.mahalaxmi-hero-section {
    position: relative;
    height: 600px;
    /* Changed from 100vh to fixed height */
    min-height: 500px;
    /* Reduced from 650px */
    overflow: hidden;
}

/* Slide Styles */
.mahalaxmi-hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mahalaxmi-hero-slide.active {
    display: block;
    opacity: 1;
}

/* Background Styles */
.mahalaxmi-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    z-index: -2;
}

/* Background Image Changes via JavaScript */
.mahalaxmi-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

/* Hero Content Styles */
.mahalaxmi-hero-content {
    color: #fff;
    max-width: 600px;
    padding-top: 20px;
    /* Added to ensure content stays within bounds */
}

/* Badge Tag Style */
.mahalaxmi-hero-badge-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e6b913 0%, #d9a212 100%);
    color: #fff;
    padding: 8px 20px;
    /* Reduced padding */
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    /* Slightly reduced */
    margin-bottom: 15px;
    /* Reduced from 20px */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mahalaxmi-hero-badge-tag:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #d9a212;
}

/* Title Styles */
.mahalaxmi-hero-title {
    font-size: 3rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    /* Reduced from 20px */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mahalaxmi-hero-title span {
    color: #e6b913;
}

/* Subtitle Styles */
.mahalaxmi-hero-subtitle {
    font-size: 1.1rem;
    /* Reduced from 1.2rem */
    margin-bottom: 20px;
    /* Reduced from 30px */
    opacity: 0.9;
    line-height: 1.6;
    /* Reduced from 1.8 */
}

/* Button Styles */
.mahalaxmi-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    /* Reduced from 40px */
}

.mahalaxmi-primary-btn {
    display: inline-block;
    background-color: #e6b913;
    color: #fff;
    padding: 12px 25px;
    /* Reduced from 14px 30px */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(230, 185, 19, 0.3);
}

.mahalaxmi-primary-btn:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.3);
}

/* Highlights Styles */
.mahalaxmi-hero-highlights {
    display: flex;
    gap: 25px;
    /* Reduced from 30px */
}

.mahalaxmi-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced from 15px */
}

.mahalaxmi-highlight-icon {
    width: 45px;
    /* Reduced from 50px */
    height: 45px;
    /* Reduced from 50px */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    /* Reduced from 1.3rem */
    color: #e6b913;
}

.mahalaxmi-highlight-text h4 {
    font-size: 1rem;
    /* Reduced from 1.1rem */
    margin-bottom: 3px;
    /* Reduced from 5px */
    font-weight: 600;
}

.mahalaxmi-highlight-text p {
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    opacity: 0.8;
    margin: 0;
}

/* Product Image Styles */
.mahalaxmi-hero-product {
    position: relative;
}

@keyframes productFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.mahalaxmi-hero-product-image {
    max-width: 350px;
    /* Reduced from 400px */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Slide Navigation Dots */
.mahalaxmi-slide-dots {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Reduced from 15px */
    z-index: 10;
}

.mahalaxmi-dot {
    width: 10px;
    /* Reduced from 12px */
    height: 10px;
    /* Reduced from 12px */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mahalaxmi-dot.active {
    height: 25px;
    /* Reduced from 30px */
    border-radius: 10px;
    background-color: #e6b913;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .mahalaxmi-hero-title {
        font-size: 2.8rem;
        /* Reduced from 3rem */
    }
}

@media (max-width: 991px) {
    .mahalaxmi-hero-section {
        height: auto;
        padding: 80px 0 60px;
        /* Reduced from 100px 0 80px */
    }

    .mahalaxmi-hero-content {
        margin-bottom: 40px;
        /* Reduced from 50px */
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .mahalaxmi-hero-highlights {
        justify-content: center;
    }

    .mahalaxmi-hero-product {
        margin: 0 auto;
    }

    .mahalaxmi-slide-dots {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .mahalaxmi-hero-title {
        font-size: 2.3rem;
        /* Reduced from 2.5rem */
    }

    .mahalaxmi-hero-subtitle {
        font-size: 1rem;
        /* Reduced from 1.1rem */
    }

    .mahalaxmi-hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .mahalaxmi-hero-highlights {
        flex-direction: column;
        gap: 15px;
        /* Reduced from 20px */
    }

    .mahalaxmi-highlight {
        justify-content: center;
    }

    .mahalaxmi-hero-product-image {
        max-width: 280px;
        /* Reduced from 300px */
    }

    .mahalaxmi-slide-dots {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .mahalaxmi-hero-section {
        margin-top: 4rem;
        min-height: 450px;

    }

    .mahalaxmi-hero-title {
        font-size: 1.8rem;
        /* Reduced from 2rem */
    }

    .mahalaxmi-hero-subtitle {
        font-size: 0.95rem;
        /* Reduced from 1rem */
    }

    .mahalaxmi-hero-product-image {
        max-width: 220px;
        /* Reduced from 250px */
    }
}



/* ------------------product details page start------------------------------ */


/* Product Hero Section */
.mahalaxmi-product-hero-section {
    margin-top: 100px !important;
    padding: 70px 0;
    background-color: var(--light-color);
}

.mahalaxmi-product-image-container {
    position: relative;
}

.mahalaxmi-product-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    padding: 20px;
}

.mahalaxmi-product-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mahalaxmi-thumbnail {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: var(--transition);
}

.mahalaxmi-thumbnail.active {
    border-color: var(--primary-color);
}

.mahalaxmi-thumbnail:hover {
    transform: translateY(-5px);
}

.mahalaxmi-product-info {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.mahalaxmi-product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mahalaxmi-product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mahalaxmi-product-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.mahalaxmi-product-rating {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mahalaxmi-product-rating i {
    margin-right: 2px;
}

.mahalaxmi-product-rating span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-left: 10px;
}

.mahalaxmi-product-meta {
    margin-bottom: 25px;
}

.mahalaxmi-meta-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.mahalaxmi-meta-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mahalaxmi-meta-label {
    flex: 0 0 120px;
    font-weight: 600;
    color: var(--dark-color);
}

.mahalaxmi-meta-value {
    flex: 1;
    color: var(--text-color);
}

.mahalaxmi-product-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

.mahalaxmi-product-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mahalaxmi-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mahalaxmi-btn-view {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.mahalaxmi-btn-view:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.mahalaxmi-btn-call {
    background-color: var(--secondary-color);
    color: var(--white);
}

.mahalaxmi-btn-call:hover {
    background-color: var(--dark-color);
}

.mahalaxmi-btn-enquiry {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.mahalaxmi-btn-enquiry:hover {
    background-color: #d4a911;
}

/* Product Details Section */
.mahalaxmi-product-details-section {
    padding: 70px 0;
    background-color: var(--white);
}

.mahalaxmi-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.mahalaxmi-card-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mahalaxmi-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mahalaxmi-section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mahalaxmi-card-body {
    padding: 30px;
}

.mahalaxmi-details-table {
    display: flex;
    flex-direction: column;
}

.mahalaxmi-details-row {
    display: flex;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.mahalaxmi-details-row:last-child {
    border-bottom: none;
}

.mahalaxmi-details-label {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--dark-color);
}

.mahalaxmi-details-value {
    flex: 1;
    color: var(--text-color);
}

.mahalaxmi-product-certification {
    background-color: rgba(17, 101, 48, 0.05);
    border-left: 3px solid var(--secondary-color);
    padding: 15px;
    border-radius: 5px;
}

.mahalaxmi-product-certification p {
    margin: 0;
    line-height: 1.7;
}

.mahalaxmi-product-highlights {
    margin-top: 25px;
}

.mahalaxmi-highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mahalaxmi-highlight-item:last-child {
    margin-bottom: 0;
}

.mahalaxmi-highlight-icon {
    flex: 0 0 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.mahalaxmi-highlight-text {
    flex: 1;
    padding-left: 10px;
}

.mahalaxmi-btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 30px;
    font-size: 1.1rem;
}

.mahalaxmi-btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Enhanced Responsive Styles */
@media (max-width: 1199px) {
    .mahalaxmi-card-body {
        padding: 25px;
    }
    
    .mahalaxmi-details-label {
        flex: 0 0 140px;
    }
}

@media (max-width: 991px) {
    .mahalaxmi-product-info {
        margin-top: 30px;
    }

    .mahalaxmi-product-cta {
        flex-direction: column;
    }

    .mahalaxmi-btn {
        width: 100%;
    }
    
    .mahalaxmi-card-body {
        padding: 20px;
    }
    
    .mahalaxmi-card-header {
        padding: 15px 20px;
    }
    
    .mahalaxmi-section-title {
        font-size: 1.6rem;
    }
    
    /* Stack columns on tablet */
    .mahalaxmi-product-highlights {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .mahalaxmi-meta-item,
    .mahalaxmi-details-row {
        flex-direction: column;
        padding: 8px 0;
    }

    .mahalaxmi-meta-label,
    .mahalaxmi-details-label {
        margin-bottom: 4px;
        flex: none;
        font-size: 0.95rem;
    }
    
    .mahalaxmi-details-value {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .mahalaxmi-card-body {
        padding: 15px;
    }
    
    .mahalaxmi-card-header {
        padding: 12px 15px;
    }
    
    .mahalaxmi-section-title {
        font-size: 1.4rem;
    }
    
    .mahalaxmi-product-certification {
        padding: 12px;
        margin-bottom: 25px;
    }
    
    .mahalaxmi-product-certification p {
        font-size: 0.9rem;
    }
    
    .mahalaxmi-product-highlights {
        margin-top: 25px;
    }
    
    .mahalaxmi-highlight-item {
        background-color: #f8f9fa;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .mahalaxmi-highlight-text {
        font-size: 0.9rem;
    }
    
    .mahalaxmi-btn-primary {
        width: 100% !important;
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .mahalaxmi-product-details-section {
        padding: 40px 0;
    }
    
    .mahalaxmi-card-body {
        padding: 12px;
    }
    
    .mahalaxmi-card-header {
        padding: 10px 12px;
    }
    
    .mahalaxmi-section-title {
        font-size: 1.2rem;
    }
    
    .mahalaxmi-details-row {
        padding: 6px 0;
    }
    
    .mahalaxmi-details-label {
        margin-bottom: 3px;
        font-size: 0.85rem;
    }
    
    .mahalaxmi-details-value {
        font-size: 0.85rem;
    }
    
    .mahalaxmi-highlight-item {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .mahalaxmi-highlight-text,
    .mahalaxmi-product-certification p {
        font-size: 0.85rem;
    }
}
/* ------------------product details page end------------------------------ */

/* ----------------- product page start ---------------------------------- */
/* Product Categories Section */
.mahalaxmi-categories-section {
    margin-top: 100px;
    padding: 70px 0;
    background-color: var(--light-color);
}

.mahalaxmi-section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.8;
}

.mahalaxmi-category-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.mahalaxmi-category-card:hover {
    transform: translateY(-10px);
}

.mahalaxmi-category-image {
    position: relative;
    overflow: hidden;
}

.mahalaxmi-category-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.mahalaxmi-category-card:hover .mahalaxmi-category-image img {
    transform: scale(1.05);
}

.mahalaxmi-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 15px;
    z-index: 2;
}

.mahalaxmi-category-content {
    padding: 25px;
}

.mahalaxmi-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.mahalaxmi-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.mahalaxmi-category-description {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.mahalaxmi-category-meta {
    margin-bottom: 20px;
}

.mahalaxmi-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mahalaxmi-meta-icon {
    margin-right: 10px;
    color: var(--secondary-color);
}

.mahalaxmi-meta-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

.mahalaxmi-category-actions {
    display: flex;
    gap: 10px;
}

/* Featured Products Section */
.mahalaxmi-featured-section {
    padding: 70px 0;
    background-color: var(--white);
}

.mahalaxmi-product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.mahalaxmi-product-card:hover {
    transform: translateY(-7px);
}

.mahalaxmi-product-image {
    position: relative;
    overflow: hidden;
}

.mahalaxmi-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.mahalaxmi-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.mahalaxmi-product-card:hover .mahalaxmi-product-overlay {
    opacity: 1;
}

.mahalaxmi-overlay-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
    transform: translateY(20px);
}

.mahalaxmi-product-card:hover .mahalaxmi-overlay-btn {
    transform: translateY(0);
}

.mahalaxmi-overlay-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.mahalaxmi-product-content {
    padding: 20px;
}

.mahalaxmi-product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mahalaxmi-product-footer {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* CTA Section */
.mahalaxmi-cta-section {
    padding: 70px 0;
    background-color: var(--light-color);
}

.mahalaxmi-cta-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
}

.mahalaxmi-cta-content {
    padding: 40px;
    text-align: center;
}

.mahalaxmi-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.mahalaxmi-cta-description {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.mahalaxmi-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

    .mahalaxmi-category-card,
    .mahalaxmi-product-card {
        margin-bottom: 30px;
    }

    .mahalaxmi-cta-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .mahalaxmi-section-title {
        font-size: 1.5rem;
    }

    .mahalaxmi-category-title {
        font-size: 1.3rem;
    }

    .mahalaxmi-cta-title {
        font-size: 1.5rem;
    }

    .mahalaxmi-cta-buttons {
        flex-direction: column;
    }
}

/* Helper Classes */
.mr-2 {
    margin-right: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------- product page end ---------------------------------- */

/* -------------- product details page start ----------------------- */

/* Product Hero Section */
.mahalaxmi-product-hero-section {
    margin-top: 100px !important;
    padding: 70px 0;
    background-color: var(--light-color);
}

.mahalaxmi-product-image-container {
    position: relative;
}

/*.mahalaxmi-product-main-image {*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    box-shadow: var(--card-shadow);*/
/*    background-color: var(--white);*/
/*    padding: 20px;*/
/*}*/

.mahalaxmi-product-main-image {  
overflow: hidden !important;
height: 500px;
/* border-radius: 10px; */
overflow: hidden;
box-shadow: var(--card-shadow);
/* background-color: var(--white); */
padding: 20px;
}
/*.mahalaxmi-product-main-image img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    object-fit: contain;*/
/*}*/

.mahalaxmi-product-main-image img { 
width: 100%;
height: 100%;
object-fit: cover;
}

/*.mahalaxmi-thumbnail {*/
/*    background-color: var(--white);*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    cursor: pointer;*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
/*    border: 2px solid transparent;*/
/*    transition: var(--transition);*/
/*}*/


.mahalaxmi-thumbnail { 
height: 150px;
background-color: var(--white);
border-radius: 8px;
overflow: hidden;
cursor: pointer;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
border: 2px solid transparent;
transition: var(--transition);
}

.mahalaxmi-thumbnail.active {
    border-color: var(--primary-color);
}

.mahalaxmi-thumbnail:hover {
    transform: translateY(-5px);
}

.mahalaxmi-product-info {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.mahalaxmi-product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mahalaxmi-product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mahalaxmi-product-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.mahalaxmi-product-rating {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mahalaxmi-product-rating i {
    margin-right: 2px;
}

.mahalaxmi-product-rating span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-left: 10px;
}

.mahalaxmi-product-meta {
    margin-bottom: 25px;
}

.mahalaxmi-meta-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.mahalaxmi-meta-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mahalaxmi-meta-label {
    flex: 0 0 120px;
    font-weight: 600;
    color: var(--dark-color);
}

.mahalaxmi-meta-value {
    flex: 1;
    color: var(--text-color);
}

.mahalaxmi-product-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

.mahalaxmi-product-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mahalaxmi-btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mahalaxmi-btn-view {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.mahalaxmi-btn-view:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.mahalaxmi-btn-call {
    background-color: var(--secondary-color);
    color: var(--white);
}

.mahalaxmi-btn-call:hover {
    background-color: var(--dark-color);
}

/* .mahalaxmi-btn-enquiry {
    background-color: var(--primary-color);
    color: var(--dark-color);
} */

.mahalaxmi-btn-enquiry:hover {
    background-color: #d4a911;
}

/* Product Details Section */
.mahalaxmi-product-details-section {
    padding: 70px 0;
    background-color: var(--white);
}

.mahalaxmi-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.mahalaxmi-card-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mahalaxmi-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mahalaxmi-section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mahalaxmi-card-body {
    padding: 30px;
}

.mahalaxmi-details-table {
    display: flex;
    flex-direction: column;
}

.mahalaxmi-details-row {
    display: flex;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.mahalaxmi-details-row:last-child {
    border-bottom: none;
}

.mahalaxmi-details-label {
    flex: 0 0 150px;
    font-weight: 600;
    color: var(--dark-color);
}

.mahalaxmi-details-value {
    flex: 1;
    color: var(--text-color);
}

.mahalaxmi-product-certification {
    background-color: rgba(17, 101, 48, 0.05);
    border-left: 3px solid var(--secondary-color);
    padding: 15px;
    border-radius: 5px;
}

.mahalaxmi-product-certification p {
    margin: 0;
    line-height: 1.7;
}

.mahalaxmi-product-highlights {
    margin-top: 25px;
}

.mahalaxmi-highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mahalaxmi-highlight-item:last-child {
    margin-bottom: 0;
}

.mahalaxmi-highlight-icon {
    flex: 0 0 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.mahalaxmi-highlight-text {
    flex: 1;
    padding-left: 10px;
}

.mahalaxmi-btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 30px;
    font-size: 1.1rem;
}

.mahalaxmi-btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Modal Styles */
.mahalaxmi-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.mahalaxmi-modal .modal-header {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-bottom: none;
    padding: 20px 30px;
}

.mahalaxmi-modal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.mahalaxmi-modal .modal-body {
    padding: 30px;
}

.mahalaxmi-modal .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.mahalaxmi-modal .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.mahalaxmi-modal .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.mahalaxmi-modal .modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mahalaxmi-modal-product-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.mahalaxmi-modal-product-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.mahalaxmi-modal-form-container {
    height: 100%;
}

@media (max-width: 991px) {
    .mahalaxmi-product-info {
        margin-top: 30px;
    }

    .mahalaxmi-product-cta {
        flex-direction: column;
    }

    .mahalaxmi-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .mahalaxmi-meta-item,
    .mahalaxmi-details-row {
        flex-direction: row;
        /* flex-direction: column; */
    }

    .mahalaxmi-meta-label,
    .mahalaxmi-details-label {
        margin-bottom: 5px;
    }
}

/* -------------- product details page end ------------------------- */

/* --------------- About us page start ---------------- */

/* About Us Section */
.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

.about-content {
    padding-left: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* .feature-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 185, 19, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 20px;
    font-size: 20px;
} */

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Values Section */
.values-section {
    background-color: var(--light-color);
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(17, 101, 48, 0.1);
    color: var(--secondary-color);
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
}

/* Team Section */
.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

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

.team-content {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(17, 101, 48, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    position: relative;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.author-role {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }

    .experience-badge {
        right: 0;
    }
}

/* --------------- About us page end ------------------ */
/* Air Cool Footer Styles */
/* Air Cool Footer Styles */
.air-cool-footer {
    background: linear-gradient(to bottom, var(--white) 0%, #fcf9e8 100%);
    position: relative;
    padding-top: 100px;
    padding-bottom: 30px;
    overflow: hidden;
}

.air-cool-footer__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f3d675 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 1;
}

.air-cool-footer__logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.air-cool-footer__logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #f3d675);
    transition: width 0.3s ease;
}

.air-cool-footer__logo:hover::after {
    width: 100%;
}

.air-cool-footer__logo span {
    color: var(--primary-color);
}

/* Contact Styles */
.air-cool-footer__contact {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.air-cool-footer__contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.air-cool-footer__contact-item:hover {
    transform: translateX(5px);
}

.air-cool-footer__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f3d675 100%);
    color: var(--white);
    border-radius: 10px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(230, 185, 19, 0.2);
}

.air-cool-footer__info {
    display: flex;
    flex-direction: column;
}

.air-cool-footer__label {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.air-cool-footer__text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Social Links */
.air-cool-footer__social {
    display: flex;
    margin-bottom: 30px;
}

.air-cool-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fcf8e8;
    color: var(--primary-color);
    border-radius: 10px;
    margin-right: 12px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.air-cool-footer__social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f3d675 100%);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 185, 19, 0.25);
}

/* Titles */
.air-cool-footer__title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.air-cool-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #f3d675);
}

/* Links */
.air-cool-footer__links {
    list-style: none;
    padding: 0;
}

.air-cool-footer__links li {
    margin-bottom: 12px;
}

.air-cool-footer__link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

.air-cool-footer__link::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.air-cool-footer__link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.air-cool-footer__link:hover::before {
    transform: translateX(3px);
}

/* Business Hours */
.air-cool-footer__hours {
    list-style: none;
    padding: 0;
}

.air-cool-footer__hours-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(36, 60, 46, 0.1);
}

.air-cool-footer__hours-item:last-child {
    border-bottom: none;
}

.air-cool-footer__day {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.air-cool-footer__time {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Divider and Copyright */
.air-cool-footer__divider {
    margin: 30px 0 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(36, 60, 46, 0.08), transparent);
}

.air-cool-footer__bottom {
    text-align: center;
}

.air-cool-footer__copyright {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .air-cool-footer {
        padding-top: 80px;
    }

    .air-cool-footer__shape {
        height: 80px;
    }

    .air-cool-footer__title {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .air-cool-footer__contact-item {
        align-items: center;
    }

    .air-cool-footer__info {
        width: calc(100% - 55px);
    }
}

/* privacy policy start */
.maa-laxmi-terms-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.maa-laxmi-terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--light-gradient);
    opacity: 0.3;
    z-index: -1;
}

.maa-laxmi-terms-container {
    background: linear-gradient(145deg, var(--white), var(--light-color));
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(230, 185, 19, 0.1);
}

.maa-laxmi-terms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.maa-laxmi-terms-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Enhanced Header Styles */
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.terms-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(230, 185, 19, 0.3);
    animation: float 3s ease-in-out infinite;
}

.terms-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

.maa-laxmi-terms-title {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.terms-description {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Content Styles */
.maa-laxmi-terms-content {
    display: grid;
    gap: 3rem;
}

.maa-laxmi-terms-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.maa-laxmi-terms-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.maa-laxmi-terms-subtitle {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.maa-laxmi-terms-text {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Enhanced Interactive Elements */
.info-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.info-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(230, 185, 19, 0.3);
}

.usage-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.usage-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.usage-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.usage-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.usage-item:hover i {
    color: var(--white);
}

.sharing-notice,
.important-notice {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(17, 101, 48, 0.1), rgba(230, 185, 19, 0.1));
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(17, 101, 48, 0.2);
}

.sharing-notice i,
.important-notice i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.responsibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
}

.responsibility-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.responsibility-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.liability-notice {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(230, 185, 19, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-content i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.notice-content strong {
    color: var(--dark-color);
    margin-right: 0.5rem;
}

/* Contact Support Section */
.contact-support {
    text-align: center;
    padding: 3rem;
    background: var(--gradient);
    border-radius: 20px;
    color: #243c2e;
    box-shadow: 0 15px 40px rgba(230, 185, 19, 0.3);
}

.support-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .maa-laxmi-terms-section {
        padding: 3rem 1rem;
    }

    .maa-laxmi-terms-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .maa-laxmi-terms-title {
        font-size: 2rem;
    }

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

    .terms-icon i {
        font-size: 1.5rem;
    }

    .maa-laxmi-terms-subtitle {
        font-size: 1.3rem;
    }

    .terms-item-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .responsibility-grid {
        grid-template-columns: 1fr;
    }

    .info-types {
        justify-content: center;
    }

    .contact-support {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .maa-laxmi-terms-container {
        padding: 1.5rem;
    }

    .maa-laxmi-terms-item {
        padding: 1.5rem;
    }

    .terms-description {
        font-size: 1rem;
    }
}

/* privacy policy end */
/* terms and condition start */
/* Additional Terms-specific Styles */
.maa-laxmi-terms-updated {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.maa-laxmi-terms-list {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-color);
}

.maa-laxmi-terms-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.maa-laxmi-terms-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Print Styles */
@media print {
    .maa-laxmi-terms-container {
        box-shadow: none;
        background-color: transparent;
        padding: 0;
    }

    .maa-laxmi-terms-title {
        color: var(--black);
    }
}

/* terms and condition end ----- --------------------------- */

/* ========================= plant and machine start================================ */
.maa-laxmi-plant-machine-valuer-section {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.maa-laxmi-plant-machine-valuer-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e6b913;
    height: 100%;
}

.maa-laxmi-plant-machine-valuer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.maa-laxmi-plant-machine-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.maa-laxmi-plant-machine-section-divider {
    height: 3px;
    width: 80px;
    background-color: #e6b913;
    margin: 0 0 30px 0;
}

.maa-laxmi-plant-machine-valuer-image {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.maa-laxmi-plant-machine-valuer-image:hover {
    transform: scale(1.02);
}

.maa-laxmi-plant-machine-badge-custom {
    background-color: #e6b913;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px;
    display: inline-block;
}

.maa-laxmi-plant-machine-highlight-text {
    color: #e6b913;
    font-weight: 600;
}

.maa-laxmi-plant-machine-service-list {
    list-style: none;
    padding: 0;
}

.maa-laxmi-plant-machine-service-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.maa-laxmi-plant-machine-service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6b913;
    font-weight: bold;
}

.maa-laxmi-plant-machine-cta-buttons {
    margin-top: 30px;
}

.maa-laxmi-plant-machine-btn-primary-custom {
    background-color: #e6b913;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 10px;
}

.maa-laxmi-plant-machine-btn-primary-custom:hover {
    color: #ffffff;
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.maa-laxmi-plant-machine-btn-outline-custom {
    border: 2px solid #e6b913;
    color: #e6b913;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.maa-laxmi-plant-machine-btn-outline-custom:hover {
    background-color: #e6b913;
    color: #fff;
}

 /***************** Alert msg Added by sanjay ***********/
.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px
}

.alert h4 {
	margin-top: 0;
	color: inherit
}

.alert .alert-link {
	font-weight: 700
}

.alert>p,
.alert>ul {
	margin-bottom: 0
}

.alert>p+p {
	margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
	padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit
}

.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d
}

.alert-success hr {
	border-top-color: #c9e2b3
}

.alert-success .alert-link {
	color: #2b542c
}

.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f
}

.alert-info hr {
	border-top-color: #a6e1ec
}

.alert-info .alert-link {
	color: #245269
}

.alert-warning {
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b
}

.alert-warning hr {
	border-top-color: #f7e1b5
}

.alert-warning .alert-link {
	color: #66512c
}

.alert-danger {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442
}

.alert-danger hr {
	border-top-color: #e4b9c0
}

.alert-danger .alert-link {
	color: #843534
}
 
 /***************** Alert msg ended by sanjay ***********/


@media (max-width: 768px) {
    .maa-laxmi-plant-machine-section-title {
        font-size: 2rem;
    }

    .maa-laxmi-plant-machine-valuer-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .maa-laxmi-plant-machine-cta-buttons {
        text-align: center;
    }

    .maa-laxmi-plant-machine-btn-primary-custom,
    .maa-laxmi-plant-machine-btn-outline-custom {
        margin: 5px;
        display: block;
        margin-bottom: 15px;
    }
}