
:root {
    --primary-color: #037275;
    --secondary-color: #f17234;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --light-bg: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #ffffff 60%, var(--primary-color) 130%);
    padding: 50px 0 0px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.min-vh-100 {
    min-height: 100vh;
}

.align-items-center {
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    margin-bottom: 24px;
}

.cursive-text {
    font-size: 1.85rem;
    /* color: var(--secondary-color); */
    color: #7a7a7a;
    display: block;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 16px;
}

.bold-text {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.1;
    margin-bottom: 30px;
}


.hero-subtitle {
    font-size: 1.47rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
     color:  #333333;
    margin-bottom: 33px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 95%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background: #025a5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 114, 117, 0.3);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 32px;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Image Stack Animation */
.image-stack-container {
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.image-stack {
    position: relative;
    width: 550px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(3, 114, 117, 0.2);
}

.stack-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.stack-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.stack-image.sliding-up {
    animation: slideUp 0.8s ease-in-out forwards;
}

.stack-image.sliding-down {
    animation: slideDown 0.8s ease-in-out forwards;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 114, 117, 0.9), transparent);
    color: white;
    padding: 30px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease 0.2s;
}

.stack-image.visible .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.image-overlay p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Hover effects */
.stack-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(3, 114, 117, 0.3);
}

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cursive-text {
        font-size: 2.2rem;
    }
    
    .bold-text {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        text-align: center;
        width: 100%;
    }
    
    .image-stack-container {
        margin-top: 50px;
        height: 350px;
    }
    
    .image-stack {
        width: 350px;
        height: 230px;
    }
}

@media (max-width: 576px) {
    .cursive-text {
        font-size: 1.8rem;
    }
    
    .bold-text {
        font-size: 2.2rem;
    }
    
    .image-stack-container {
        height: 300px;
    }
    
    .image-stack {
        width: 300px;
        height: 200px;
    }
    
    .image-overlay h3 {
        font-size: 1.2rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
}






/* Category Cards with Horizontal Scroll */
.categories-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   /* padding: 20px 0 40px 0; */
}

.category-card-wrapper {
   position: relative;
   margin-bottom: 30px;
}

.category-card {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
   border: 2px solid rgba(3, 114, 117, 0.1);
   border-radius: 25px;
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: all 0.3s ease;
   cursor: pointer;
   height: 160px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0;
   position: relative;
}

.category-card:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow-hover);
   border-color: var(--primary-color);
}

.category-content {
   flex: 1;
   padding: 30px;
   z-index: 2;
}

.category-content h4 {
   color: var(--primary-color);
   font-size: 1.4rem;
   font-weight: 700;
   margin-bottom: 8px;
   line-height: 1.1;
}

.category-content p {
   color: var(--text-dark);
   font-size: 0.9rem;
   line-height: 1.4;
   margin: 0;
   opacity: 0.8;
}

.category-image {
   flex-shrink: 0;
   width: 120px;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 2;
   padding: 20px;
}

.category-image img {
   /*width: 80px;*/
   /*height: 80px;*/
   object-fit: contain;
   filter: drop-shadow(0 4px 8px rgba(3, 114, 117, 0.2));
}

.discover-btn {
   position: absolute;
   left: 15px;
   bottom: -20px;
   background: var(--secondary-color);
   color: white;
   border: none;
   padding: 12px 25px;
   border-radius: 25px;
   font-weight: 600;
   font-size: 0.9rem;
   box-shadow: 0 4px 15px rgba(241, 114, 52, 0.3);
   transition: all 0.3s ease;
   z-index: 10;
   cursor: pointer;
}

.discover-btn:hover {
   background: #d63031;
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(241, 114, 52, 0.4);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
   .categories-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 25px;
   }
   
   .category-card {
       height: 150px;
   }
   
   .category-image {
       width: 100px;
   }
   
   .category-image img {
       /*width: 70px;*/
       height: 70px;
   }
}

/* Mobile Responsive with Horizontal Scroll */
@media (max-width: 768px) {
   .categories-grid {
       display: flex;
       overflow-x: auto;
       overflow-y: hidden;
       scroll-behavior: smooth;
       -webkit-overflow-scrolling: touch;
       gap: 20px;
       padding: 20px 0 40px 0;
   }

   .categories-grid::-webkit-scrollbar {
       height: 6px;
   }

   .categories-grid::-webkit-scrollbar-track {
       background: rgba(3, 114, 117, 0.1);
       border-radius: 3px;
   }

   .categories-grid::-webkit-scrollbar-thumb {
       background: var(--primary-color);
       border-radius: 3px;
   }

   .category-card-wrapper {
       flex: 0 0 280px;
   }
   
   .category-card {
       height: 140px;
   }
   
   .category-content {
       padding: 20px;
   }
   
   .category-content h4 {
       font-size: 1.3rem;
       margin-bottom: 5px;
   }
   
   .category-content p {
       font-size: 0.8rem;
   }

   .category-image {
       width: 90px;
       padding: 15px;
   }

   .category-image img {
       /*width: 60px;*/
       /*height: 60px;*/
   }

   .discover-btn {
       left: 10px;
       bottom: -15px;
       padding: 10px 20px;
       font-size: 0.8rem;
   }
}

@media (max-width: 576px) {
   .category-card-wrapper {
       flex: 0 0 260px;
   }
   
   .category-card {
       height: 120px;
   }
   
   .category-content {
       padding: 15px;
   }
   
   .category-content h4 {
       font-size: 1.2rem;
   }
   
   .category-content p {
       font-size: 0.75rem;
   }

   .category-image {
       width: 80px;
       padding: 10px;
   }

   .category-image img {
       /*width: 50px;*/
       /*height: 50px;*/
   }

   .discover-btn {
       left: 8px;
       bottom: -12px;
       padding: 8px 18px;
       font-size: 0.75rem;
   }
}

@media (max-width: 480px) {
   .categories-grid {
       padding-left: 10px;
       padding-right: 10px;
   }
   
   .category-card-wrapper {
       flex: 0 0 240px;
   }
}









:root {
    --primary-color: #037275;
    --secondary-color: #f17234;
    --accent-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    --gradient: linear-gradient(135deg, #037275 0%, #0a5d60 100%);
    --shadow: 0 10px 30px rgba(3, 114, 117, 0.1);
    --shadow-hover: 0 15px 40px rgba(3, 114, 117, 0.2);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(3,114,117,0.02) 100%);
    position: relative;
    overflow: hidden;
}

/* Left Content */
.about-content {
    padding: 60px 80px 60px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #037275, #0a5d60);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(3,114,117,0.3);
    width: fit-content;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-accent {
    color: #f17234;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #037275;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f17234, #e55a1f);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(241,114,52,0.3);
    border: none;
    width: fit-content;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241,114,52,0.4);
    color: white;
}

.btn-luxury i {
    transition: transform 0.3s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

/* Factory Container - Fixed for Full Coverage */
.factory-container {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.factory-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.quality-badge {
    position: absolute;
    background: white;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(3,114,117,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #037275;
    z-index: 10;
    border: 1px solid rgba(3,114,117,0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.quality-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(3,114,117,0.25);
}

.quality-badge i {
    font-size: 1.1rem;
    color: #f17234;
}

/* Badge Positioning */
.badge-1 {
    top: 30px;
    right: 30px;
}

.badge-2 {
    top: 100px;
    right: 30px;
}

.badge-3 {
    top: 170px;
    right: 30px;
}

/* Milestone Cards Section */
.milestones-section {
    margin-top: 40px;
}

.milestone-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.milestone-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(3,114,117,0.1);
    border: 1px solid rgba(3,114,117,0.1);
    transition: all 0.3s ease;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(3,114,117,0.2);
    border-color: rgba(3,114,117,0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #037275, #0a5d60);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(3,114,117,0.3);
}

.card-icon i {
    font-size: 1.3rem;
    color: white;
}

.milestone-card .year {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #037275;
    margin-bottom: 5px;
}

.milestone-card .event {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .factory-container {
        min-height: 500px;
    }
    
    .about-content {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .about-content {
        padding: 40px 30px;
        text-align: center;
        min-height: auto;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .factory-container {
        height: 400px;
        min-height: 400px;
    }
    
    .milestone-cards {
        gap: 15px;
    }
    
    .milestone-card {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .factory-container {
        height: 350px;
        min-height: 350px;
    }
    
    .quality-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Responsive Badge Positioning */
    .badge-1 {
        top: 15px;
        right: 15px;
    }

    .badge-2 {
        top: 65px;
        right: 15px;
    }

    .badge-3 {
        top: 115px;
        right: 15px;
    }
    
    .milestone-cards {
        gap: 12px;
    }
    
    .milestone-card {
        min-width: 100px;
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .factory-container {
        height: 300px;
        min-height: 300px;
    }
    
    .milestone-cards {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .milestone-card {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .factory-container {
        height: 250px;
        min-height: 250px;
    }
    
    .about-content {
        padding: 30px 20px;
        align-items: anchor-center;
    }
}

.why-choose-section {
   padding: 80px 0;
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   position: relative;
}

.why-choose-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: 
       radial-gradient(circle at 10% 20%, rgba(3, 114, 117, 0.05) 0%, transparent 50%),
       radial-gradient(circle at 90% 80%, rgba(241, 114, 52, 0.05) 0%, transparent 50%);
   pointer-events: none;
}

/* Header Styles */
.section-header {
   margin-bottom: 50px;
}

.section-title {
   font-size: 2.8rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 15px;
}

.brand-highlight {
   color: #037275;
   font-weight: 700;
}

.section-subtitle {
   font-size: 1.1rem;
   color: #6c757d;
   font-weight: 400;
}

/* Feature Cards */
.feature-card {
   background: white;
   padding: 35px 30px;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border: 1px solid rgba(255, 255, 255, 0.8);
   height: 100%;
   position: relative;
   overflow: hidden;
}

.feature-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #037275 0%, #f17234 100%);
}

.feature-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 40px rgba(3, 114, 117, 0.15);
}

.card-icon {
   width: 70px;
   height: 70px;
   background: linear-gradient(135deg, #037275 0%, #0a5d60 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 25px;
}

.card-icon i {
   font-size: 1.8rem;
   color: white;
}

.feature-card h4 {
   font-size: 1.4rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 15px;
   line-height: 1.3;
}

.feature-card p {
   color: #6c757d;
   line-height: 1.6;
   margin-bottom: 25px;
   font-size: 0.95rem;
}

/* Heritage Card Specific */
.stats-row {
   display: flex;
   justify-content: space-between;
   gap: 20px;
}

.stat {
   text-align: center;
   flex: 1;
}

.stat .number {
   display: block;
   font-size: 1.8rem;
   font-weight: 700;
   color: #037275;
   margin-bottom: 5px;
}

.stat .label {
   font-size: 0.85rem;
   color: #6c757d;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

/* Quality Card Specific */
.quality-badges {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.quality-badges .badge {
   background: linear-gradient(135deg, #037275 0%, #0a5d60 100%);
   color: white;
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 0.8rem;
   font-weight: 500;
   border: none;
}

/* Innovation Card Specific */
.innovation-list {
   space-y: 10px;
}

.innovation-item {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
}

.innovation-item i {
   color: #037275;
   margin-right: 12px;
   font-size: 0.9rem;
}

.innovation-item span {
   color: #2c3e50;
   font-size: 0.9rem;
   font-weight: 500;
}

/* Trust Section */
.trust-section {
   background: white;
   padding: 40px;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   margin-top: 50px;
}

.trust-content h3 {
   font-size: 1.6rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 15px;
}

.trust-content p {
   color: #6c757d;
   line-height: 1.6;
   margin: 0;
   font-size: 1rem;
}

.trust-badge {
   text-align: center;
}

.badge-content {
   display: inline-flex;
   align-items: center;
   background: linear-gradient(135deg, #037275 0%, #0a5d60 100%);
   color: white;
   padding: 20px 25px;
   border-radius: 50px;
   box-shadow: 0 8px 25px rgba(3, 114, 117, 0.3);
}

.badge-content i {
   font-size: 1.5rem;
   margin-right: 12px;
   color: #f17234;
}

.badge-content span {
   font-size: 0.9rem;
   font-weight: 600;
   line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 991.98px) {
   .section-title {
       font-size: 2.2rem;
   }
   
   .feature-card {
       margin-bottom: 30px;
   }
   
   .trust-section {
       text-align: center;
   }
   
   .trust-badge {
       margin-top: 20px;
   }
}

@media (max-width: 767.98px) {
   .why-choose-section {
       padding: 60px 0;
   }
   
   .section-title {
       font-size: 1.8rem;
   }
   
   .feature-card {
       padding: 25px 20px;
   }
   
   .stats-row {
       justify-content: center;
       gap: 30px;
   }
   
   .trust-section {
       padding: 30px 20px;
   }
}





.video-container {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 114, 117, 0.1);
}
.video-container video {
  display: block;
  transition: opacity 0.3s ease;
}
.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #037275;
  font-size: 14px;
  z-index: 5;
}
.loader-circle {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(3, 114, 117, 0.2);
  border-top: 3px solid #037275;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #037275, #f17234);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.play-button:hover {
  transform: scale(1.1);
}
.video-info {
  text-align: center;
  color: white;
  max-width: 80%;
}
.video-info h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.video-info p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}
.audio-toggle-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s ease;
}
.audio-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
/* Responsive */
@media (max-width: 768px) {
  .video-container video { height: 300px !important; }
  .play-button { width: 60px; height: 60px; font-size: 22px; }
  .video-info h4 { font-size: 1.3rem; }
  .video-info p { font-size: 0.9rem; }
}
@media (max-width: 576px) {
  .video-container video { height: 250px !important; }
  .video-container { border-radius: 12px; }
}







/* Products Showcase Section */
.products-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(3,114,117,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}


.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #037275;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #037275, #f17234);
    margin: 0 auto;
    border-radius: 2px;
}

/* Product Filters */
.product-filters {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #037275;
    border-color: #037275;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 114, 117, 0.2);
}

/* Products Container - Horizontal Scroll Setup */
.products-container {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* Products Grid - Responsive Horizontal Scroll */
.products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 320px);
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px 50px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar for Chrome, Safari */
.products-grid::-webkit-scrollbar {
    display: none;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 114, 117, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.scroll-btn:hover {
    background: #037275;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

/* Hide scroll buttons on larger screens */
@media (min-width: 992px) {
    .scroll-btn {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        overflow-x: visible;
        justify-content: center;
        justify-items: center;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    width: 100%;
    height: 4px;
    background: rgba(3, 114, 117, 0.1);
    border-radius: 2px;
    margin-top: 20px;
    position: relative;
    display: none;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #037275, #f17234);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Show scroll indicator on mobile */
@media (max-width: 991px) {
    .scroll-indicator {
        display: block;
    }
}

.product-item {
    width: 100%;
    max-width: 320px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-item.hidden {
    display: none !important;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    height: 420px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f17234;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #8b4513;
}

.product-badge.new {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Product Image */
.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    margin: 15px 15px 0 15px;
    border-radius: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.product-code-overlay {
    background: rgba(3, 114, 117, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

/* Product Info */
.product-info {
    padding: 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 160px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-code {
    color: #7f8c8d;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Hanging View Button */
.quote-btn-hanging {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #037275;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 114, 117, 0.3);
    z-index: 4;
    white-space: nowrap;
}

.quote-btn-hanging:hover {
    background: #025d60;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 114, 117, 0.4);
}

/* View More Section */
.view-more-section {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.view-more-text {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 25px;
}

.btn-view-catalog {
    background: linear-gradient(135deg, #037275, #0a5d60);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(3, 114, 117, 0.2);
}

.btn-view-catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(3, 114, 117, 0.3);
    color: white;
    text-decoration: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .products-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-auto-columns: minmax(260px, 280px);
        gap: 20px;
        padding: 20px 5px 50px;
    }
    
    .product-image {
        margin: 10px 10px 0 10px;
        height: 180px;
    }
    
    .product-info {
        padding: 15px 20px;
        height: 140px;
    }
    
    .product-card {
        height: 380px;
    }
    
    .scroll-left {
        left: -15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-right {
        right: -15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-auto-columns: minmax(240px, 260px);
        gap: 15px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 140px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-card {
        height: 360px;
    }
    
    .product-info {
        height: 130px;
    }
    
    .scroll-left {
        left: -10px;
        width: 35px;
        height: 35px;
    }
    
    .scroll-right {
        right: -10px;
        width: 35px;
        height: 35px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.me-2 {
    margin-right: 0.5rem;
}










/* Testimonials Section */
.unique-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.unique-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.unique-text-center {
    text-align: center;
}

.unique-mb-5 {
    margin-bottom: 3rem;
}

.unique-testimonials-header {
    margin-bottom: 60px;
}

.unique-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #037275;
    margin-bottom: 15px;
}

.unique-section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.unique-header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #037275 0%, #FF6B35 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Testimonials Grid */
.unique-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Floating Cards */
.unique-floating-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(3, 114, 117, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(3, 114, 117, 0.05);
    overflow: hidden;
}

.unique-floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(3, 114, 117, 0.2);
}

.unique-floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #037275 0%, #FF6B35 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.unique-floating-card:hover::before {
    opacity: 1;
}

/* Testimonial Card */
.unique-testimonial-card {
    text-align: center;
}

.unique-quote-icon {
    color: #FF6B35;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.unique-stars {
    margin-bottom: 20px;
}

.unique-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0 2px;
}

.unique-testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #212529;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.unique-customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.unique-customer-avatar {
    position: relative;
}

.unique-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #037275 0%, #FF6B35 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.unique-customer-details {
    text-align: left;
}

.unique-customer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.unique-customer-location {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Card Glow Effect */
.unique-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(3, 114, 117, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.unique-floating-card:hover .unique-card-glow {
    opacity: 1;
}

.unique-stats-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

/* Trust Indicators */
.unique-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.unique-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(3, 114, 117, 0.1);
    transition: all 0.3s ease;
}

.unique-trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 114, 117, 0.15);
}

.unique-trust-icon {
    color: #FF6B35;
    font-size: 1.2rem;
}

.unique-trust-item span {
    font-weight: 500;
    color: #212529;
    font-size: 0.9rem;
}

/* Background Shapes */
.unique-testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.unique-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(3, 114, 117, 0.03);
    animation: unique-float 8s ease-in-out infinite;
}

.unique-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.unique-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

.unique-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes unique-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-testimonials-section {
        padding: 60px 0;
    }
    
    .unique-section-title {
        font-size: 2rem;
    }
    
    .unique-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unique-floating-card {
        padding: 25px;
    }
    
    .unique-trust-indicators {
        gap: 20px;
        margin-top: 40px;
    }
    
    .unique-trust-item {
        padding: 12px 20px;
    }
    
    .unique-stats-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .unique-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .unique-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .unique-testimonials-grid {
        padding: 0 10px;
    }
    
    .unique-floating-card {
        padding: 20px;
    }
    
    .unique-customer-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .unique-customer-details {
        text-align: center;
    }
    
    .unique-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

/* AOS Animation Support */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}





/* CTA Background */
.cleancta-section {
    background: linear-gradient(135deg, #037275 0%, #0a5d60 25%, #126b6e 50%, #0a5d60 75%, #037275 100%);
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Headline */
.cleancta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.cleancta-highlight {
    color: #f17234;
}

/* Paragraph */
.cleancta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Fade-up Animation */
@keyframes animate-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: animate-fade-up 0.8s ease-out forwards;
    opacity: 0;
}

/* Grid Layout */
.cleancta-platform-container {
    max-width: 900px;
    margin: 0 auto;
}

.cleancta-platform-grid .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* Platform Card */
.cleancta-platform-card {
    background: white;
    border-radius: 24px;
    height: 110px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cleancta-platform-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Logo fills entire card */
.cleancta-platform-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Scrollable on Mobile */
.cleancta-platform-scroll {
    padding: 0 20px;
}

.cleancta-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cleancta-scroll-container::-webkit-scrollbar {
    display: none;
}

.cleancta-platform-scroll .cleancta-platform-card {
    flex: 0 0 auto;
    width: 160px;
    height: 90px;
}
