@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Global font families */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--secondary-font) !important;
}

p {
    font-family: var(--third-font) !important;
}

:root{
    /* Font Families */
    --primary-font			: 'Quicksand', 'Hybi11 Amigo Light', sans-serif;
    /* Fixed syntax error here */
    --secondary-font		: "DM Sans", sans-serif; 
    --third-font			: "Open Sans", sans-serif;

    /* --- ASAMAR Brand Colors --- */
    /* 1. The "A" Gradient (Teal to Aqua) */
    --asamar-primary-start: #ff0009;
    --asamar-primary-end: #0f1111;
    --asamar-gradient: linear-gradient(135deg, var(--asamar-primary-start), var(--asamar-primary-end));

    /* 2. The "ASAMAR" Red (Vitality/Surgical) */
    --asamar-accent: #ff0009;
    --asamar-accent-page: #FFFFFF;

    /* 3. The "SURGICAL" Dark (Professional Navy) */
    --asamar-text-dark: #1D3557;
    
    /* --- Mapped Old Variables to New Scheme --- */
    --primary-color			: #1D3557; /* Changed from #222222 to Asamar Dark */
    --secondary-color		: #F1FAEE; /* Changed from #F5F5F5 to Asamar Light Mint */
    --text-color			: #4A5568; /* Slightly darker than old #81848A for better contrast */
    --accent-color			: #ff0009; /* Changed from Cyan to Asamar Teal for general accents */
    --white-color			: #FFFFFF;
    --divider-color			: #EBEBEB;
    --dark-divider-color	: #FFFFFF1A;
    --error-color			: rgb(230, 87, 87);
    
    /* Backgrounds */
    --asamar-bg-white: #FFFFFF;
    --asamar-bg-light: #F1FAEE;
}

strong{
    /* Changed to ASAMAR Teal Start */
    color: var(--asamar-primary-start);
    font-family: var(--secondary-font);
    font-weight: 600;
}
.content{
    color: #fff;
}

/* Fade-in-up animation for hero/feature section */
/* Extra slow fade-in-up animation for hero/feature section */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 2.2s cubic-bezier(0.4,0,0.2,1), transform 2.2s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-up.animate {
    opacity: 1;
    transform: none;
}
.fade-in-up-1 { transition-delay: 0.4s; }
.fade-in-up-2 { transition-delay: 1.0s; }
.fade-in-up-3 { transition-delay: 1.6s; }
.fade-in-up-4 { transition-delay: 2.2s; }

/* Video section specific animations - reset and start hidden */
.video-fade-element {
    opacity: 0 !important;
    transform: translateY(40px) !important;
}

.video-fade-element.video-animate {
    font-family: var(--secondary-font) !important;
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1) !important;
    margin-bottom: 0 !important;
}

.theme-title h6{
    font-family: var(--secondary-font) !important;

}
/* Video Section Scroll Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
/* Dropdown Menu Animations */
@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownItemFade {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.Description{
    font-family: var(--third-font) !important;
    padding: 10px 0 20px 0 !important;
}

/* What We Do Section Animations */
.what-do-animate-title {
    opacity: 0;
    transform: translateY(30px);
}

.what-do-animate-title.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

.what-do-animate-heading {
    opacity: 0;
    transform: translateY(30px);
}

.what-do-animate-heading.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.2s;
}

.what-do-animate-item {
    opacity: 0;
    transform: translateY(40px);
}

.what-do-animate-item.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.what-do-animate-image {
    opacity: 0;
    transform: translateX(50px);
}

.what-do-animate-image.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* Blogs Section Animations */
.text-center h2{
font-family: var(--secondary-font) !important;
    font-weight: 400;
}
.blog-animate-title {
    opacity: 0;
    transform: translateY(30px);
    
}

.blog-animate-title.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

.blog-animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.blog-animate-subtitle.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.2s;
}

.blog-animate-item {
    opacity: 0;
    transform: translateY(40px);
}

.blog-animate-item.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.blog-animate-button {
    opacity: 0;
    transform: translateY(30px);
}

.blog-animate-button.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* Compliances Section Animations */
.compliance-animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.compliance-animate-subtitle.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

.compliance-animate-title {
    opacity: 0;
    transform: translateY(30px);
}

.compliance-animate-title.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.2s;
}

.compliance-animate-item {
    opacity: 0;
    transform: translateY(40px);
}

.compliance-animate-item.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.compliance-animate-swiper {
    opacity: 0;
    transform: translateY(30px);
}

.compliance-animate-swiper.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* Products Categories Section Animations */
.products-animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.products-animate-subtitle.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

.products-animate-title {
    opacity: 0;
    transform: translateY(30px);
}

.products-animate-title.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.2s;
}

.products-animate-item {
    opacity: 0;
    transform: translateY(40px);
}

.products-animate-item.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.products-animate-swiper {
    opacity: 0;
    transform: translateY(30px);
}

.products-animate-swiper.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* Manufacturing Excellence Stat Animation */
.manufacturing-animate-stat {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.manufacturing-animate-stat.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* Stay Updated Section */
.stay-updated-section {
    background: #ff0009;
    padding: 59px 0;
    position: relative;
    overflow: hidden;
}

.stay-updated-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stay-updated-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.stay-updated-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--secondary-font);
}

.stay-updated-desc {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stay-updated-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.stay-updated-input {
padding: 1rem 1.5rem;
    border: 2px solid #3a3a5c47;
    border-radius: 50px;
    
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stay-updated-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(253, 252, 252, 0.1);
    box-shadow: 0 0 20px rgba(241, 4, 4, 0.3);
}

.stay-updated-input::placeholder {
    color: #e2dddd;
}

.stay-updated-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #ff000056 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stay-updated-btn:hover {
    background: linear-gradient(135deg, #404244 0%, #040b14 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 217, 0.4);
}

/* Stay Updated Animations */
.stay-animate-title {
    opacity: 0;
    transform: translateY(30px);
}

.stay-animate-title.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}

.stay-animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.stay-animate-subtitle.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.2s;
}

.stay-animate-form {
    opacity: 0;
    transform: translateY(40px);
}

.stay-animate-form.animate-in {
    opacity: 1;
    transform: none;
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.4s;
}

/* About Us scroll animation */
.about-content.animate,
.about-content .text.animate,
.about-content .image.animate,
.about-content.animate-on-scroll,
.about-content.animate-on-scroll .text,
.about-content.animate-on-scroll .image {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.about-content,
.about-content .text,
.about-content .image {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
*{
    --primary-font: 'Quicksand', 'Hybi11 Amigo Light', sans-serif;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}


.blog-post:hover {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 12px 36px 0 rgba(34,211,238,0.16), 0 2px 12px 0 rgba(30,58,95,0.10);
    border-color: #22d3ee;
}

.blog-post-date {
    font-size: 0.92rem;
    /* Updated to ASAMAR Teal End */
    color: var(--asamar-primary-end); 
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.blog-post h3 {
    font-family: var(--secondary-font);
    font-size: 1.28rem;
    font-weight: 600;
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-primary-start); 
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(34,211,238,0.07);
}
.stat-number {
    font-family: var(--third-font);
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(34,211,238,0.10);
    transition: color 0.2s;
}
.stat-block:hover .stat-number {
    /* Updated to ASAMAR Teal End */
    color: var(--asamar-primary-end);
}
.stat-label {
    color: #c7e6f7;
    font-size: 1.08rem;
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(15,23,42,0.12);
}
@media (max-width: 900px) {
    .stats-row { gap: 32px 18px; }
    .stat-block { min-width: 120px; padding: 22px 10px 18px 10px; }
    .stat-number { font-size: 2.1rem; }
}
@media (max-width: 600px) {
    .stats-row { flex-direction: column; gap: 18px; }
    .stat-block { width: 90vw; min-width: unset; }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { overflow-x: hidden; }

/* Banner */

.banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner-slide.active { opacity: 1; }

.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.banner-slide.active .banner-bg { transform: scale(1); }

.banner-overlay {
    position: absolute;
    inset: 0;
    /* Updated overlay with ASAMAR Teal tint */
   
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 120px;
}
@media (min-width: 1024px) { .slide-content { padding-left: 8%; padding-right: 40%; } }
@media (min-width: 1280px) { .slide-content { padding-left: 10%; padding-right: 45%; } }

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.7s ease-out forwards;
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }

/* Label line */
.label-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 1024px) { .label-line { gap: 12px; } }

/* Title responsive */
.banner-title {
    color: rgba(255,255,255,0.95);
    font-weight: 200;
    line-height: 1.1;
    margin-top: 16px;
    font-family: var(--primary-font) !important;
}
/* xs: 480px+ */
.banner-title { font-size: clamp(1.75rem, 6vw, 2rem); }
@media (min-width: 480px) { .banner-title { font-size: clamp(2rem, 7vw, 2.75rem); } }
@media (min-width: 768px) { .banner-title { font-size: clamp(2.5rem, 6vw, 3.5rem); line-height: 1.08; margin-top: -1px; } }
@media (min-width: 1024px) { .banner-title { font-size: clamp(2.75rem, 5vw, 4.25rem); } }
@media (min-width: 1280px) { .banner-title { font-size: 4.5rem;  } }
@media (min-width: 1536px) { .banner-title { font-size: 5rem; } }

.banner-desc {
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    line-height: 1.85;
    margin-top: 16px;
    max-width: 520px;
    font-family: var(--primary-font) !important;
}
@media (max-width: 479px) { .banner-desc { font-size: 13px; line-height: 1.65; } }
@media (min-width: 480px) { .banner-desc { font-size: 14px; margin-top: 20px; } }
@media (min-width: 768px) { .banner-desc { font-size: 15px; margin-top: 14px; max-width: 560px; } }
@media (min-width: 1024px) { .banner-desc { font-size: 16px; } }

.label-text {
    /* Updated to ASAMAR Teal End */
    color: var(--asamar-primary-end);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--primary-font) !important;
}
@media (max-width: 479px) { .label-text { font-size: 10px; letter-spacing: 0.12em; } }
@media (min-width: 480px) { .label-text { font-size: 11px; } }
@media (min-width: 768px) { .label-text { font-size: 12px; letter-spacing: 0.2em; } }

/* Buttons */
.btn-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.slide-counter-wrap{
    display: none !important    ;
}
@media (min-width: 480px) { .btn-row { gap: 16px; margin-top: 20px; } }
@media (min-width: 768px) { .btn-row { gap: 20px;} }

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    /* Updated to ASAMAR Red (Surgical) */
    background: #ff0009; 
    color: #ffffff;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}
@media (min-width: 480px) { .btn-explore { padding: 13px 28px; font-size: 13px; gap: 10px; } }
@media (min-width: 768px) { .btn-explore { padding: 14px 32px; font-size: 14px; } }
.btn-explore::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-explore:hover::before { left: 100%; }
.btn-explore:hover {
    /* Darker Red on Hover */
    background: #C92A37; 
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: var(--third-font);
    transition: color 0.3s ease;
    white-space: nowrap;
}
@media (min-width: 480px) { .btn-video { font-size: 13px; gap: 10px; } }
@media (min-width: 768px) { .btn-video { font-size: 14px; } }
.btn-video:hover { color: #ffffff; }
.btn-video .play-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
@media (min-width: 480px) { .btn-video .play-circle { width: 40px; height: 40px; } }
.btn-video:hover .play-circle {
    /* Updated to ASAMAR Teal End */
    border-color: var(--asamar-primary-end);
    background: rgba(72, 202, 228, 0.1);
}

/* Dot Navigation */
.dot-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
@media (min-width: 768px) { .dot-nav { bottom: 36px; gap: 10px; } }
@media (min-width: 1024px) { .dot-nav { bottom: 40px; } }
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
@media (min-width: 768px) { .dot { width: 12px; height: 12px; border-color: rgba(255,255,255,0.5); } }
.dot.active {
    /* Updated to ASAMAR Teal End */
    background: var(--asamar-primary-end);
    border-color: var(--asamar-primary-end);
    transform: scale(1.15);
}
.dot:hover:not(.active) {
    border-color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.12);
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 30;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 480px) { .top-nav { padding: 16px 24px; } }
@media (min-width: 768px) { .top-nav { padding: 20px 32px; } }
@media (min-width: 1024px) { .top-nav { padding: 20px 40px; } }
.top-nav.scrolled {
    background: rgba(29, 53, 87, 0.97); /* ASAMAR Dark */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .top-nav.scrolled { padding: 14px 32px; } }
@media (min-width: 1024px) { .top-nav.scrolled { padding: 14px 40px; } }

.logo-text {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.08em;
}
@media (max-width: 479px) { .logo-text { font-size: 16px; } }
@media (min-width: 480px) { .logo-text { font-size: 18px; } }
@media (min-width: 768px) { .logo-text { font-size: 20px; } }

.logo-icon {
    width: 36px; height: 36px;
    /* Updated to ASAMAR Teal Start */
    background: var(--asamar-primary-start);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (min-width: 480px) { .logo-icon { width: 38px; height: 38px; } }
@media (min-width: 768px) { .logo-icon { width: 42px; height: 42px; border-radius: 8px; } }

.nav-links {
    display: none;
    align-items: center;
    gap: 24px;
    list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; gap: 28px; } }
@media (min-width: 1280px) { .nav-links { gap: 32px; } }
.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}
@media (min-width: 1280px) { .nav-links a { font-size: 13px; } }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    /* Updated to ASAMAR Teal End */
    background: var(--asamar-primary-end);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { width: 100%; }

.nav-phone {
    display: none;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}
@media (min-width: 1280px) { .nav-phone { display: flex; } }
.nav-phone:hover { color: #ffffff; }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 40;
    padding: 4px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
    width: 22px; height: 2px;
    background: #0a1533;
    transition: all 0.3s ease;
    display: block;
}
@media (min-width: 480px) { .hamburger span { width: 24px; } }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Side Menu */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-side-menu.open {
    left: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}
.mobile-menu-logo img {
    height: 40px;
    width: auto;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}
.mobile-menu-close:hover {
    background: #e9ecef;
}
.mobile-menu-nav {
    flex: 1;
    padding: 20px;
}
.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-links li {
    margin-bottom: 10px;
}
.mobile-menu-links a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    padding: 12px 0;
    transition: color 0.2s;
}
.mobile-menu-links a:hover {
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-primary-start);
}
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 200px;
}
.mobile-dropdown-menu li {
    margin-bottom: 5px;
}
.mobile-dropdown-menu a {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}
.mobile-menu-search {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}
.mobile-search-wrapper {
    position: relative;
}
.mobile-search-wrapper button {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
}
.mobile-search-wrapper i {
    position: relative;
    pointer-events: none;
}
.mobile-search-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 44px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}
.mobile-search-wrapper input:focus {
    /* Updated to ASAMAR Teal Start */
    border-color: var(--asamar-primary-start);
}

/* Side Decoration */
.side-decoration {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
@media (min-width: 1280px) { .side-decoration { display: flex; right: 3%; } }
.side-line {
    width: 1px; height: 60px;
    /* Updated to ASAMAR Teal Gradient */
    background: linear-gradient(to bottom, transparent, var(--asamar-primary-end), transparent);
}
.side-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
}
.side-icon:hover {
    /* Updated to ASAMAR Teal End */
    border-color: var(--asamar-primary-end);
    color: var(--asamar-primary-end);
    background: rgba(72, 202, 228, 0.08);
    transform: scale(1.1);
}

/* Bottom Stats Bar */
.bottom-bar {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
}
/* Mobile: hide full bar, show minimal */
@media (max-width: 767px) {
    .bottom-bar {
        bottom: 60px;
        left: 5%;
        right: 5%;
        justify-content: space-between;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 14px 20px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .bottom-bar .divider { display: none; }
}
@media (min-width: 768px) {
    .bottom-bar {
        bottom: 80px;
        left: 8%;
        gap: 20px;
    }
}
@media (min-width: 1024px) {
    .bottom-bar { bottom: 40px; left: 8%; gap: 24px; }
}
.bottom-stat { text-align: left; }
.bottom-stat .num {
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
}
@media (max-width: 479px) { .bottom-stat .num { font-size: 18px; } }
@media (min-width: 480px) { .bottom-stat .num { font-size: 20px; } }
@media (min-width: 768px) { .bottom-stat .num { font-size: 22px; } }
@media (min-width: 1024px) { .bottom-stat .num { font-size: 24px; } }
.bottom-stat .num span { 
    /* Updated to ASAMAR Teal End */
    color: var(--asamar-primary-end);
}
.bottom-stat .label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 1px;
}
@media (min-width: 768px) { .bottom-stat .label { font-size: 11px; letter-spacing: 0.08em; } }
.bottom-bar .divider {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* Slide Counter */
.slide-counter-wrap {
    position: absolute;
    z-index: 20;
    display: none;
    align-items: center;
    gap: 10px;
}
@media (min-width: 768px) {
    .slide-counter-wrap {
        display: flex;
        bottom: 10px;
        right: 32px;
    }
}
@media (min-width: 1024px) { .slide-counter-wrap { bottom: 10px; right: 40px; } }
.slide-counter-num {
    color: #ffffff;
    font-weight: 300;
    font-size: 22px;
}
.slide-counter-total {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}
.slide-progress-track {
    width: 48px; height: 2px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}
.slide-progress-bar {
    height: 100%;
    /* Updated to ASAMAR Teal End */
    background: var(--asamar-primary-end);
    position: absolute;
    left: 0; top: 0;
    width: 0%;
    border-radius: 1px;
}

/* Geometric shapes */
.geo-shape {
    position: absolute;
    /* Updated to ASAMAR Teal End with low opacity */
    border: 1px solid rgba(72, 202, 228, 0.1);
    z-index: 5;
    pointer-events: none;
    display: none;
}
@media (min-width: 1024px) {
    .geo-shape { display: block; }
}
.geo-1 {
    width: 180px; height: 180px;
    right: 18%; top: 18%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphRotate 20s ease-in-out infinite;
}
@media (min-width: 1280px) { .geo-1 { width: 220px; height: 220px; } }
.geo-2 {
    width: 100px; height: 100px;
    right: 28%; bottom: 28%;
    border-radius: 50%;
    animation: morphRotate 15s ease-in-out infinite reverse;
}
@media (min-width: 1280px) { .geo-2 { width: 130px; height: 130px; } }
@keyframes morphRotate {
    0%, 100% { transform: rotate(0deg); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { transform: rotate(180deg); border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* Mobile CTA bar (below 768px, replaces bottom stats) */
.mobile-cta-row {
    display: flex;
    position: absolute;
    bottom: 80px;
    left: 5%;
    right: 5%;
    z-index: 20;
    gap: 10px;
}
@media (min-width: 480px) { .mobile-cta-row { bottom: 100px; gap: 12px; } }
@media (min-width: 768px) { .mobile-cta-row { display: none; } }
.mobile-cta-row .btn-explore {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 11px;

    /* Updated to ASAMAR Teal End (Primary Action) */
    background: var(--asamar-primary-end); 
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-cta-row .btn-explore:hover {
    /* Updated to ASAMAR Teal Start */
    background: var(--asamar-primary-start);
    transform: translateY(-1px);
}
.mobile-cta-row .btn-explore .iconify {
    transition: transform 0.3s ease;
}
.mobile-cta-row .btn-explore:hover .iconify {
    transform: translateX(2px);
}
@media (min-width: 480px) { .mobile-cta-row .btn-explore { font-size: 12px; padding: 13px 20px; } }
.mobile-cta-row .btn-video {
    padding: 12px;
}

/* Desktop: hide inline buttons, show in content */
.desktop-btns { display: none; }
@media (min-width: 768px) { .desktop-btns { display: flex; } }
/*Add this CSS in your stylesheet */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}
.loader{
    width: 60px;
    height: 60px;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.custom-header {
    background: #fff;
    border-radius: 8px 8px 0 0;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    width: 100vw;
    position: relative;
    z-index: 100;
}
.custom-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 30px;
    min-height: 70px;
    position: relative;
}
.custom-logo-area {
    display: flex;
    align-items: center;
    min-width: 120px;
}
.custom-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.custom-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.08rem;
    font-weight: 300;
    font-family: var(--third-font);
}
.custom-nav-links li {
    position: relative;
    font-weight: 400;
}
.custom-nav-links a {
    color: #0a1533;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}
.custom-nav-links a:hover,
.custom-nav-links .active > a {
    /* Updated to ASAMAR Red */
    color: var(--asamar-primary-start);
}
.custom-nav-links li:not(.dropdown) a {
    border-bottom: 2px solid transparent;
}
.custom-nav-links li:not(.dropdown) a.active,
.custom-nav-links li:not(.dropdown) a:focus {
    border-bottom: 2px solid #0a1533;
}
.dropdown {
    cursor: pointer;
}
.dropdown-icon {
    font-size: 0.7em;
    margin-left: 2px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    min-width: 150px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    z-index: 10;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu,
.dropdown.open > .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #0a1533;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.custom-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0a1533;
    border: 2px solid #0a1533;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 300;
    font-size: 1.08rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-left: 24px;
    white-space: nowrap;
}
.custom-cta-btn:hover {
    background: #0a1533;
    color: #fff;
    border-color: #0a1533;
}
.custom-mobile-toggle {
    display: none;
    background: none;
    border: 2px solid #0a1533;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a1533;
    margin-left: 18px;
    cursor: pointer;
    z-index: 101;
}
@media (max-width: 1440px) {
    .custom-header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1600px;
        margin: 0px auto;
        padding: 30px 20px;
        min-height: 70px;
        position: relative;
    }
}
@media (max-width: 1100px) {
    .custom-header-container {
        flex-direction: row;
        padding: 30px 1vw;
    }
    .custom-nav-links {
        gap: 18px;
    }
    .custom-cta-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}
@media (max-width: 900px) {
    .custom-header-container {
        flex-wrap: wrap;
    }
    .custom-nav {
        display: none;
    }
    .custom-mobile-toggle {
        display: flex;
    }
}
@media (max-width: 700px) {
    .custom-header-container {
        flex-direction: row;
        padding: 8px 2vw;
    }
    .custom-logo-img {
        height: 36px;
    }
    .custom-cta-btn {
        padding: 7px 10px;
        font-size: 0.98rem;
    }
}
@media (max-width: 480px) {
    .custom-header-container {
        padding: 8px 4vw 8px 4vw;
        min-height: 56px;
    }
    .custom-logo-area {
        min-width: 90px;
    }
    .custom-logo-img {
        height: 28px;
    }
    .custom-mobile-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
        margin-left: 8px;
    }
    .slide-content {
        padding: 60px 4vw 80px 4vw;
    }
    .banner-desc {
        font-size: 12px;
        margin-top: 10px;
    }
    .btn-row {
        gap: 8px;
        margin-top: 16px;
    }
    .btn-explore {
        padding: 10px 12px;
        font-size: 11px;
    }
}
@media (max-width: 1100px) {
    .custom-nav-links {
        gap: 12px;
        font-size: 0.96rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .custom-nav-links li {
        min-width: 74px;
    }
    .custom-nav .dropdown-menu {
        min-width: 170px;
    }
}
@media (max-width: 900px) {
    .custom-header-container {
        flex-wrap: wrap;
        align-items: center;
    }
    .custom-nav {
        width: 100%;
    }
    .custom-nav-links {
        gap: 14px;
        padding: 0 0.5rem;
        justify-content: center;
    }
}
/* Search Bar */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-wrapper button {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8aaec2;
    cursor: pointer;
}
.search-wrapper input {
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    border: 1px solid #cbdde9;
    border-radius: 60px;
    font-size: 0.85rem;
    width: 220px;
    background: #fefefe;
    transition: all 0.2s;
    font-family: var(--secondary-font);
}
.search-wrapper input:focus {
    outline: none;
    border-color: #136b8d;
    box-shadow: 0 0 0 3px rgba(19,107,141,0.1);
    width: 250px;
}
.search-wrapper i {
    position: absolute;
    left: 4px;
    color: #8aaec2;
    font-size: 0.9rem;
    pointer-events: none;
    bottom: 0;
}
@media (max-width: 900px) {
    .search-wrapper {
        display: none;
    }
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    right: 24px;
    bottom: 32px;
    width: 44px;
    height: 44px;
    /* Updated to ASAMAR Dark */
    background: var(--asamar-primary-start);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(34,211,238,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s;
    z-index: 1200;
}
.scroll-up-btn:hover {
    /* Updated to ASAMAR Teal End */
    background: var(--asamar-primary-end);
    color: #fff;
}
.scroll-up-btn.show {
    opacity: 1;
    pointer-events: auto;
}
.back-pic{
    background-image: url('./back.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;   /* FIXED BACKGROUND */
    display: block;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px;
     
}
.back-pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
    pointer-events: none;
}
.content h1 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: var(--secondary-font) !important;
    color: #ffffff;
    line-height: 14px;
}

.content p {
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    font-family: var(--secondary-font) !important;
    letter-spacing: 0.5px;
}
.control_all{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 68px;
    padding-top: 83px;
}
.counter {
    font-size: 3.2rem;
    font-weight: 300;
    margin: 8px 0 10px 0;
    color: #ffffff;
    font-family: var(--secondary-font) !important;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Description text */
.counter-container span {
    font-size: 0.85rem;
    font-weight: 300;
    display: block;
    line-height: 1.35;
    font-family: var(--third-font);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    word-break: break-word;
}
/* ── About Section ── */
.about {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Ambient background layers */
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -300px;
    width: 700px;
    height: 700px;
    /* Updated to ASAMAR Teal Start Glow */
    background: radial-gradient(circle, var(--asamar-primary-start) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    animation: floatBlob 18s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -200px;
    width: 550px;
    height: 550px;
    /* Updated to ASAMAR Red Glow */
    background: radial-gradient(circle, #ff0009 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    animation: floatBlob 22s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Subtle grid pattern overlay */
.about-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(var(--card-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--card-border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

/* ── Section Label ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-accent);
    margin-bottom: 7px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}
.mb-6{
    margin-bottom: 24px !important; 
}
.section-label .line {
    display: inline-block;
    width: 40px;
    height: 1.5px;
    /* Updated to ASAMAR Teal Gradient */
    background: linear-gradient(90deg, var(--asamar-primary-start), transparent);
    border-radius: 2px;
}

/* ── Main Layout ── */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.max-w-2xl h1{
    font-weight: 400 !important;
}
.about-content .text,
.about-content .image {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

/* ── Text Side ── */
.text {
    font-family: var(--secondary-font);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards 0.4s;
}

.text h2 {
    font-family: var(--secondary-font) !important;
    font-size: clamp(3.2rem, 3vw, 4.2rem);
    font-weight: 400 !important;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #000;
}

.text h2 strong {
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-primary-start);
    font-weight: 600;
    font-style: bold;
}

.text p {
    font-family: var(--third-font);
    font-size: 1.02rem;
    color: var(--fg-muted);
    margin-bottom: 18px;
    max-width: 520px;
    text-align: justify;
}

.text p strong {
    color: #000;
    font-weight: 300;
}

/* ── Feature Pills ── */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 36px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-family: var(--third-font);
    font-weight: 300;
    color: var(--fg-muted);
    transition: all 0.35s ease;
    cursor: default;
}

.pill:hover {
    /* Updated to ASAMAR Teal Start */
    border-color: var(--asamar-primary-start);
    color: var(--asamar-primary-start);
    /* Updated to ASAMAR Teal Start Glow */
    background: rgba(0, 109, 119, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 109, 119, 0.15);
}

.pill i {
    font-size: 0.72rem;
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-primary-start);
}

/* ── CTA Button ── */
.btn {

    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 34px;
    /* Updated to ASAMAR Gradient */
    background: var(--asamar-gradient);
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 0.92rem;
    font-weight: 300;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 25px rgba(0, 109, 119, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Updated to ASAMAR Red & Gold Gradient for hover */
    background: linear-gradient(135deg, var(--asamar-accent), var(--asamar-primary-start));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(230, 57, 70, 0.35);
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* ── Image Side ── */
.image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 1s ease forwards 0.6s;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    border-radius: var(--radius);
    overflow: hidden;
}

.image-wrapper img,
.image-wrapper video,
.image-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-embed {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-top: 56.25%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 240px;
}

.about .video-embed {
    background: #000;
}

.image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Image overlay gradient */
.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 15, 13, 0.6) 100%
    );
    pointer-events: none;
}

/* Decorative border frame */
.image-border {
    position: absolute;
    inset: -16px;
    border: 1.5px solid var(--card-border);
    border-radius: calc(var(--radius) + 8px);
    pointer-events: none;
    opacity: 0.5;
}

/* Floating accent corner */
.image-accent-corner {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    /* Updated to ASAMAR Teal Start */
    border-left: 3px solid var(--asamar-primary-start);
    border-bottom: 3px solid var(--asamar-primary-start);
    border-radius: 0 0 0 12px;
    opacity: 0.6;
}

.image-accent-corner-2 {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    /* Updated to ASAMAR Red */
    border-right: 3px solid #000;
    border-top: 3px solid #000;
    border-radius: 0 12px 0 0;
    opacity: 0.6;
}

/* Floating stat card on image */
.floating-stat {
    position: absolute;
    bottom: 40px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    animation: floatCard 5s ease-in-out infinite;
    display: flex;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating-stat .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* Updated to ASAMAR Teal Start */
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.2), rgba(72, 202, 228, 0.05));
    border: 1px solid rgba(0, 109, 119, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-primary-start);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.floating-stat .stat-number {
    font-size: 2.2rem; /* Larger font size for emphasis */
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: baseline; /* Align number and suffix */
    gap: 4px;
}

.floating-stat .stat-number .suffix {
    font-size: 1.2rem; /* Smaller font size for the "+" */
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
}

.floating-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 4px;
}

/* ── Stats Bar ── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 80px;
    background: var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.9s;
}

.stat-item {
    background: var(--bg-section);
    padding: 36px 28px;
    text-align: center;
    transition: background 0.4s ease;
    position: relative;
}

.stat-item:hover {
    background: var(--card);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    /* Updated to ASAMAR Gradient */
    background: linear-gradient(90deg, var(--asamar-primary-start), var(--asamar-accent));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.stat-item:hover::after {
    width: 50px;
}

.stat-item .stat-value {
    font-family: var(--secondary-font);
    font-size: 2rem;
    font-weight: 300;
    color: var(--fg);
    line-height: 1.2;
}

.stat-item .stat-value .suffix {
    /* Updated to ASAMAR Teal Start */
    color: var(--asamar-primary-start);
}

.stat-item .stat-desc {
    font-size: 0.8rem;
    color: var(--fg-muted);
    margin-top: 6px;
    font-weight: 300;
}

/* ── Keyframes ── */
@keyframes fadeUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
    opacity: 1;
    transform: translateX(0);
    }
}
.text-cyan-400 {
    --tw-text-opacity: 1;
    color: var(--asamar-primary-start) !important;
    font-weight: 600 !important;
}

/* ── Particle Canvas ── */
.particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .about {
    padding: 80px 0 60px;
    }

    .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    }

    .image {
    max-width: 480px;
    margin: 0 auto;
    }

    .image-wrapper {
    min-height: 280px;
    }

    .floating-stat {
    right: 10px;
    bottom: 20px;
    }

    .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .about {
    padding: 60px 0 40px;
    }

    .image-wrapper {
    min-height: 220px;
    }

    .text h2 {
    font-size: 3.9rem;
    }

    .floating-stat {
    position: relative;
    bottom: 89px;
    left: 144px;
    margin-top: 16px;
    animation: none;
    width: min-content;
    }

    .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    }

    .stat-item {
    padding: 24px 16px;
    }

    .stat-item .stat-value {
    font-size: 1.5rem;
    }

    .image-border,
    .image-accent-corner,
    .image-accent-corner-2 {
    display: none;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
:root {
    --bg: #0a0f0d;
    --bg-section: #0d1310;
    --fg: #e8ece9;
    --fg-muted: #0a1414;
    /* Updated to ASAMAR Teal Start */
    --accent: var(--asamar-primary-start);
    /* Updated to ASAMAR Teal Start */
    --accent-deep: #ff0000;
    /* Updated to ASAMAR Teal Start Glow */
    --accent-glow: rgba(0, 109, 119, 0.15);
    --gold: #c9a84c85;
    --gold-glow: rgba(201, 168, 76, 0.12);
    --card: rgba(255,255,255,0.03);
    --card-border: rgba(255,255,255,0.06);
    --radius: 16px;
    --radius-sm: 10px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.video-section {
    position: relative;
    overflow: hidden;
}

.video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.video-poster {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    transition: opacity 0.8s ease;
}

.video-poster.hidden-poster {
    opacity: 0;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.93) 0%,
        rgba(10, 10, 10, 0.80) 30%,
        rgba(10, 10, 10, 0.50) 55%,
        rgba(10, 10, 10, 0.25) 100%
    );
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
}

.accent-line {
    width: 48px;
    height: 3px;
    /* Updated to ASAMAR Red */
    background: var(--asamar-accent);
    border-radius: 2px;
}

.btn-red {
    /* Updated to ASAMAR Red */
    background: var(--asamar-accent);
    color: #fff;
    padding: 14px 36px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 2px solid var(--asamar-accent);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s ease;
}
.btn-red:hover {
    /* Darker ASAMAR Red */
    background: #C92A37;
    border-color: #C92A37;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.35);
}
.btn-red:hover::before {
    left: 100%;
}

.play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* Updated to ASAMAR Red */
    background: rgba(230, 57, 70, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}
.play-btn::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}
.play-btn:hover {
    /* Updated to ASAMAR Red */
    background: rgba(230, 57, 70, 0.9);
    border-color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.4);
}
.play-btn:hover::after {
    inset: -14px;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Pause icon state */
.play-btn.is-playing svg {
    display: none;
}
.play-btn.is-playing .pause-icon {
    display: block;
}
.play-btn .pause-icon {
    display: none;
}

.stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 24px;
}
.stat-item:first-child {
    border-left: none;
    padding-left: 0;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up-1 { animation-delay: 0.15s; }
.fade-in-up-2 { animation-delay: 0.35s; }
.fade-in-up-3 { animation-delay: 0.55s; }
.fade-in-up-4 { animation-delay: 0.75s; }
.fade-in-up-5 { animation-delay: 0.95s; }

/* Video playing indicator */
.video-playing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Updated to ASAMAR Red */
    background: var(--asamar-accent);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Blogs Section */
.blogs-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.blogs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogs-section h2 {
    font-family: var(--secondary-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.blogs-section p {
    font-family: var(--third-font);
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.blog-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.blog-post h3 {
    font-family: var(--secondary-font);
    font-size: 1.25rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-post p {
    font-family: var(--third-font);
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-post a {
    /* Updated to ASAMAR Red */
    color: var(--asamar-accent);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.blog-post a:hover {
    color: #C92A37;
}

.view-all-btn {
    display: inline-block;
    /* Updated to ASAMAR Red */
    background: var(--asamar-accent);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 300;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 2rem;
}

.view-all-btn:hover {
    background: #C92A37;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blogs-section h2 {
        font-size: 2rem;
    }
    
    .blog-post-content {
        padding: 1rem;
    }
    
    .blog-post h3 {
        font-size: 1.1rem;
    }
}

.grain::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 3;
}

/* Video modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: transform 0.35s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}
/* ========== What We Do Section ========== */
.what-we-do {
  position: relative;
  overflow: hidden;
  /* Updated to ASAMAR Dark */
  background: var(--asamar-text-dark);
}

.what-we-do .row {
  min-height: 700px;
}

/* ---------- Left Content Area ---------- */
.what-we-do-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Updated gradient to ASAMAR tones */
  background:#ff0009;
  position: relative;
  z-index: 2;
  min-height: 700px;
}

.what-we-do-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  /* Updated to ASAMAR Teal */
  background: linear-gradient(to bottom, transparent, var(--asamar-primary-end), transparent);
}

/* ---------- Section Title ---------- */
.section-title.dark-section h3 {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  /* Updated to ASAMAR Red */
  color: var(--asamar-accent);
  display: inline-block;
  position: relative;
}
.section-title.dark-section h2 {
  font-family: var(--secondary-font) !important;
  font-size: 59px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 8px;
}

.section-title.dark-section h2 span {
  /* Updated to ASAMAR Teal End */
  color: #fff;
  font-weight: 500;
}

    .no-gutters .col-lg-6 {
        padding: 0 ;
    }

/* Per-word inline-block wrappers */
.text-anime-style-2 > div,
.text-anime-style-2 > span > div {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-right: 12px;
}

.text-anime-style-2 > div > div,
.text-anime-style-2 > span > div > div {
  position: relative;
  display: inline-block;
  opacity: 1;
  visibility: inherit;
  transform: translate(0px, 0px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover effect on words */
.text-anime-style-2 > div:hover > div,
.text-anime-style-2 > span > div:hover > div {
  transform: translateY(-4px);
}

/* ---------- Service List Grid ---------- */
.what-we-do-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.what-we-do-list-box-1,
.what-we-do-list-box-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Service Item Card ---------- */
.what-we-do-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.what-we-do-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  /* Updated to ASAMAR Teal Gradient */
  background: linear-gradient(to bottom, var(--asamar-primary-start), var(--asamar-primary-end));
  transition: height 0.4s ease;
  border-radius: 0 0 3px 0;
}

.what-we-do-item:hover {
  background: rgba(0, 109, 119, 0.1);
  border-color: rgba(0, 109, 119, 0.2);
  transform: translateX(6px);
}

.what-we-do-item:hover::before {
  height: 100%;
}

/* Icon Box */
.what-we-do-item .icon-box {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Updated to ASAMAR Teal */
  background: rgba(0, 109, 119, 0.15);
  border-radius: 10px;
  transition: all 0.4s ease;
}

.what-we-do-item:hover .icon-box {
  background: rgba(0, 109, 119, 0.25);
  transform: scale(1.05);
}

.what-we-do-item .icon-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: filter 0.4s ease;
}

.what-we-do-item:hover .icon-box img {
  filter: brightness(0) invert(1) opacity(1);
}

/* Item Content */
.what-we-item-content h3 {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.what-we-do-item:hover .what-we-item-content h3 {
  /* Updated to ASAMAR Teal End */
  color: var(--asamar-primary-end);
}

.what-we-item-content p {
  font-family: var(--third-font);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Right Image Area ---------- */
.what-we-do-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.what-we-do-image figure.image-anime {
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.what-we-do-image figure.image-anime img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 8s ease;
}

.what-we-do-image:hover figure.image-anime img {
  transform: scale(1.05);
}

/* Subtle overlay on image */
.what-we-do-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(29, 53, 87, 0.5) 0%,
    transparent 30%,
    transparent 70%,
    rgba(29, 53, 87, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ---------- Contact Now Circle ---------- */
.contact-now-circle {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 5;
  width: 150px;
  height: 150px;
  cursor: pointer;
  animation: rotateCircle 15s linear infinite;
}

.contact-now-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Updated to ASAMAR Teal Glow */
  filter: drop-shadow(0 4px 20px rgba(0, 109, 119, 0.4));
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Pulse ring behind the circle */
.contact-now-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  /* Updated to ASAMAR Teal */
  border: 2px solid rgba(0, 109, 119, 0.3);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1199px) {
    
  .what-we-do-content {
    padding: 60px 40px;
  }

  .section-title.dark-section h2 {
    font-size: 36px;
  }

  .contact-now-circle {
    width: 120px;
    height: 120px;
    bottom: 35px;
    right: 35px;
  }

  .contact-now-circle::before {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 991px) {
  .what-we-do .row {
    min-height: auto;
  }

  .what-we-do-content {
    padding: 60px 30px;
    min-height: auto;
  }

  .what-we-do-content::before {
    display: none;
  }

  .what-we-do-image {
    min-height: 400px;
    position: relative;
  }

  .what-we-do-image figure.image-anime {
    position: relative;
  }

  .section-title.dark-section h2 {
    font-size: 32px;
  }

  .contact-now-circle {
    width: 110px;
    height: 110px;
    bottom: 25px;
    right: 25px;
  }

  .contact-now-circle::before {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .what-we-do-content {
    padding: 50px 20px;
  }

  .section-title.dark-section h2 {
    font-size: 46px;
    margin-bottom: 30px;
  }

  .section-title.dark-section h3 {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .what-we-do-item {
    padding: 18px 20px;
    gap: 14px;
  }

  .what-we-do-item .icon-box {
    width: 44px;
    height: 44px;
  }

  .what-we-do-item .icon-box img {
    width: 22px;
    height: 22px;
  }

  .what-we-item-content h3 {
    font-size: 14px;
  }

  .what-we-item-content p {
    font-size: 12.5px;
  }

  .what-we-do-image {
    min-height: 300px;
  }

  .contact-now-circle {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }

  .contact-now-circle::before {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .text-anime-style-2 > div,
  .text-anime-style-2 > span > div {
    margin-right: 6px;
  }

  .what-we-do-item {
    padding: 16px;
    gap: 12px;
    border-radius: 8px;
  }
}.main-footer{
    background: url(./footer-bg.svg), var(--asamar-primary-end);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 100px 0 0;
}

.footer-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-header .section-title{
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.swift-up-text .text-anime-style-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.swift-up-text .text-anime-style-2 > div {
    margin-right: 0;
    overflow: hidden;
}

.swift-up-text .text-anime-style-2 > div > div {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.8rem);
    animation: swift-up 0.6s ease-out forwards;
}

.footer-contact-circle{
    margin-left: 20px;
}

.footer-contact-circle img{
    max-width: 130px;
    animation: contactrotate 20s infinite linear;
}

.about-footer{
    width: 100%;
    max-width: 300px;
}

.footer-logo{
    margin-bottom: 10px;
}

.footer-logo img{
    max-width: 216px;
    padding-bottom: 10px;
}

.about-footer-content{
    margin-bottom: 20px;
}

.about-footer-content p{
    color: var(--white-color);
    margin: 0;
}

.footer-social-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
    margin-right: 0;
}

.footer-social-links ul li a{
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
    border-color: var(--white-color);
}

.footer-social-links ul li a i{
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
    color: var(--white-color);
}

.footer-links h3{
    font-size: 20px;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li{
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-links ul li:last-child{
    margin-bottom: 0;
}

.footer-links ul li a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
    color: var(--accent-color);
}

.footer-copyright{
    text-align: center;
    border-top: 1px solid var(--dark-divider-color);
    padding: 60px 0;
    margin-top: 60px;
}

.footer-copyright-text p{
    color: var(--white-color);
    margin: 0;
}

.slide-content h1 {
    font-size: 55px;
    line-height: 1.2 !important; 
    color: #fff;
    font-family: var(--secondary-font) !important;
    font-weight: 400;
}
.max-w-2xl{
    padding-top: 11rem;
}
.max-w-2xl p{
    font-family: var(--third-font) !important;
    padding: 10px 0 20px !important;
    color: gray;
}
/* ========== Comprehensive Responsive Styles ========== */

/* Mobile First - Small screens (320px - 767px) */
@media (min-width: 320px) and (max-width: 767px) {
    .mobile-cta-row{
        bottom: 30px;
        padding: 0 !important;
    }
    .mobile-cta-row .btn-explore{
        flex: none;
    }
    .dot-nav {
        display: none;
    }
    
    .service-pagination {
        display: none;
    }
    .spaced{
        padding-top: 59px !important;
    }
    .spacd{
        padding-top: 60px !important;
    }
    .slide-content h1{
        font-size: 25px;
    } 
}
@media (max-width: 767px) {
    /* Header */
    .custom-header-container {
        padding: 10px 15px;
    }
    .custom-logo-img {
        height: 40px;
    }
    .custom-nav-links {
        display: none;
    }
    .search-wrapper {
        display: none;
    }

    /* Banner */
    .banner-wrapper {
        height: 420px;
        min-height: 420px;
    }
    .slide-content {
        padding: 60px 20px 80px;
    }
    
    .banner-desc {
        font-size: 14px;
        margin-top: 15px;
    }
    .btn-explore {
        padding: 12px 24px;
        font-size: 14px;
    }
    .mobile-cta-row {
        padding: 20px;
    }

    /* About Section */
    .about {
        padding: 60px 0 40px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .text h2 {
        font-size: 3.8rem;
    }
    .feature-pills {
        /* flex-direction: column; */
        gap: 8px;
    }
    .pill {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* Video Section */
    .video-section {
        min-height: 500px;
    }
    .video-content {
        padding: 40px 20px;
    }
    .fade-in-up-2 {
        font-size: 2.5rem;
    }
    .fade-in-up-3 {
        font-size: 15px;
    }
    .btn-red {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Products Section */
    .our-departments-section {
        padding: 40px 0;
    }
    .theme-title h2 {
        font-size: 1.8rem;
    }
    .service-item {
        margin-bottom: 20px;
    }

    /* Blogs Section */
    .blogs-section {
        padding: 60px 0;
    }
    .blogs-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .blogs-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .blog-post {
        margin-bottom: 30px;
    }
    .blog-post-content {
        padding: 1rem;
    }
    .blog-post h3 {
        font-size: 1.1rem;
    }
    .view-all-btn {
        padding: 0.6rem 1.5rem;
        font-size: 14px;
    }

    /* Footer */
    .custom-footer {
        padding: 40px 15px;
    }
    .footer-top {
        margin-bottom: 15px;
    }
    .footer-cta h2 {
        font-size: 1.8rem;
    }
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        flex: none;
        text-align: left;
    }
    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

/* Knowledge Hub Animations */
.knowledge-articles-section .section-title.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
}

.knowledge-articles-section .section-subtitle.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
    transition-delay: 0.2s;
}

.knowledge-articles-section .knowledge-card.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.knowledge-articles-section .section-title,
.knowledge-articles-section .section-subtitle,
.knowledge-articles-section .knowledge-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1) transform 0.8s cubic-bezier(0.4,0,0.2,1) !important;
}
    .footer-bottom {
        margin-top: 30px;
        font-size: 0.85rem;
    }

    /* What We Do Section */
    .what-we-do-content {
        padding: 40px 20px;
    }
    .section-title.dark-section h2 {
        font-size: 40px;
    }
    .what-we-do-item {
        padding: 15px;
    }
    .what-we-item-content h3 {
        font-size: 13px;
    }
    .what-we-item-content p {
        font-size: 12px;
    }
}

/* Tablet - Medium screens (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Header */
    .custom-nav-links {
        gap: 20px;
    }
    .custom-nav-links li a {
        font-size: 14px;
    }

    /* Banner */
    
    .image-wrapper {
    min-height: 252px;
}
    
    .banner-desc {
        font-size: 15px;
        margin-top: 11px;
        max-width: 500px;
    }

    /* About Section */
    .about-content {
        gap: 50px;
    }
    .about-content .text,
    .about-content .image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .text h2 {
        font-size: 4.2rem;
    }

    /* Video Section */
    .video-content {
        padding: 60px 30px;
    }
    .fade-in-up-2 {
        font-size: 3rem;
    }

    /* Products Section */
    .theme-title h2 {
        font-size: 2.2rem;
    }

    /* Blogs Section */
    .blogs-section h2 {
        font-size: 2.3rem;
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }

    /* Footer */
    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer-links {
        flex: 1 1 calc(50% - 20px);
    }

    /* What We Do Section */
    .what-we-do-content {
        padding: 60px 40px;
    }
}


/* Desktop - Large screens (1024px+) */
@media (min-width: 1024px) {
    .image-wrapper {
    min-height: 252px;
}
    /* Header */
    .custom-nav-links {
        gap: 30px;
    } 

    /* About Section */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    /* Video Section */
    .video-content {
        padding: 80px 40px;
    }
    .fade-in-up-2 {
        font-size: 4rem;
    }

    /* Products Section */
    .theme-title h2 {
        font-size: 2.5rem;
    }

    /* Blogs Section */
    .blogs-section h2 {
        font-size: 2.5rem;
    }
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8rem;
    }

    /* Footer */
    .footer-main {
        flex-wrap: nowrap;
        gap: 60px;
    }
    .footer-links {
        flex: 1 1 calc(33.333% - 40px);
    }

    /* What We Do Section */
    .what-we-do-content {
        padding: 80px 60px;
    }
}

/* Extra Large screens (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .fade-in-up-2 {
        font-size: 4.5rem;
    }
}

/* Ultra Wide screens (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .fade-in-up-2 {
        font-size: 5rem;
    }
}

/* Print Styles */
@media print {
    .banner-wrapper,
    .video-section,
    .mobile-side-menu,
    .scroll-up-btn,
    .toast {
        display: none !important;
    }
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    .custom-footer {
        background: #fff !important;
        color: #000 !important;
    }
}
@media (min-width: 425px) {
    .mobile-cta-row{
        bottom: 30px;
        padding: 0 !important;
    }
    .mobile-cta-row .btn-explore{
        flex: none;
    }
}
.btn-default{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 0.6em;
    text-transform: capitalize;
    color: var(--primary-color);
    background-color: var(--accent-color);
    border-radius: 30px;
    padding: 2px 40px 2px 2px;
    border: none;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.btn-default:hover{
    background-color: transparent;
}

.btn-default::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8 5l7 7-7 7V5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    transform: translate(-15px, -50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover::before{
    transform: translate(-15px, -50%) rotate(45deg);
}

.btn-default::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 30px;
    background: #000;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.btn-default:hover::after{
    width: 100%;
    left: 0;
    right: auto;
}

.btn-default span{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 15px 20px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.btn-default:hover span{
    background-color: transparent;
    color: var(--primary-color);
}

.btn-default span::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 30px;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default span i{
    margin-left: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.btn-default:hover span i{
    transform: translateX(3px);
}

.btn-default:hover span::after{
    width: 100%;
    left: 0;
    right: auto;
}

/* Mobile override: make button same as desktop on small screens */
@media (max-width: 767px) {
    .btn-default {
        padding: 2px 26px 2px 2px !important;
        border-radius: 30px !important;
        background-color: var(--accent-color) !important;
        color: var(--primary-color) !important;
    }
    .btn-default span {
        padding: 14px 18px !important;
        font-size: 14px !important;
    }
    .btn-default::before, .btn-default::after, .btn-default span::after {
        transition: all 0.4s ease-in-out !important;
    }
}

/* Products Categories section styling */
.products-animate-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    color: #64748b;
}
.products-animate-title {
    font-size: 2.8rem;
    line-height: 1.05;
    font-weight: 700;
    max-width: 760px;
    margin: 0 auto;
    color: #111827;
}
.products-animate-swiper {
    padding-top: 30px;
}
.service-swiper {
    position: relative;
    padding-top: 20px;
    padding-bottom: 48px;
}
.service-swiper .swiper-pagination {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    z-index: 5;
}
.service-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(15, 23, 42, 0.15);
    opacity: 1;
}
.service-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #e63946;
}
.service-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
.service-item.style-5 {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(229,57,70,0.15);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-item.style-5:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.14);
}
.service-item.style-5 .service-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.service-item.style-5 .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-item.style-5:hover .service-image img {
    transform: scale(1.04);
}
.service-item.style-5 .service-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e63946;
    font-size: 1.25rem;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    z-index: 2;
}
.service-item.style-5 .service-desc,
.service-item.style-5 .service-desc-hover {
    position: absolute;
    left: 0;
    right: 0;
    padding: 22px 22px 24px;
    transition: all 0.35s ease;
}
.service-item.style-5 .service-desc {
    bottom: 0;
    background: rgba(255,255,255,0.96);
}
.service-item.style-5 .service-desc-hover {
    top: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.82);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
}
.service-item.style-5:hover .service-desc-hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.service-item.style-5 .service-desc-hover .service-title h4 a,
.service-item.style-5 .service-desc .service-title h5 a {
    color: #111827;
    text-decoration: none;
}
.service-item.style-5 .service-desc-hover .service-title h4 a {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}
.service-item.style-5 .service-desc .service-title h5 a {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
}
.service-item.style-5 .themeht-btn.dark-btn {
    margin-top: 14px;
    align-self: flex-start;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 999px;
    background-color: #ff0009;
    color: #ffffff;
    border: none;
}
.service-item.style-5 .themeht-btn.dark-btn:hover {
    background-color: #ff000;
}
@media (max-width: 991px) {
    .service-item.style-5 .service-image { min-height: 260px; }
    .service-item.style-5 .service-desc,
    .service-item.style-5 .service-desc-hover { padding: 18px; }
    .products-animate-title { font-size: 2.1rem; }
}
@media (max-width: 576px) {
    .service-item.style-5 { max-width: 100%; border-radius: 20px; }
    .service-item.style-5 .service-icon { top: 14px; right: 14px; width: 42px; height: 42px; }
}
@keyframes swift-up {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stay-updated-btn{
    background: linear-gradient(135deg, #000000 0%, #030303 100%) !important;
}