/* header css */
/* Root Variables */
:root {
    --primary: #8BC34A;
    --secondary: #00838F;
    --light: #F5F5F5;
    --dark: #333333;
    --text-primary: #333333;
    --text-secondary: #555555;
    --background-main: #FFFFFF;
    --background-secondary: #F5F5F5;
    --footer-background: #004D40;
    --button-primary: #8BC34A;
    --button-primary-hover: #7CB342;
    --button-secondary: #00838F;
    --button-secondary-hover: #007C89;
    --link-color: #00838F;
    --link-hover: #005662;
    --border-color: #E0E0E0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Container */
.zeerit_header {
    width: 100%;
    position: relative;
}

/* Topbar Styles */
.zeerit_header_topbar {
    background: linear-gradient(135deg, var(--secondary), var(--footer-background));
    padding: 12px 0;
    color: var(--background-main);
    position: relative;
    overflow: hidden;
}

.zeerit_header_topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(255,255,255,0.05) 21%, transparent 22%);
    background-size: 10px 10px;
    animation: movePattern 20s linear infinite;
}

.zeerit_header_topbar_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 10px;
}

.zeerit_header_contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.zeerit_header_contact_item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.zeerit_header_contact_item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zeerit_header_contact_item:hover {
    transform: translateY(-2px);
}

.zeerit_header_contact_item i {
    font-size: 18px;
    min-width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.zeerit_header_contact_item:hover i {
    background: rgba(255,255,255,0.2);
    transform: rotate(360deg);
}

.zeerit_header_social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.zeerit_header_social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.zeerit_header_social a:hover {
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.zeerit_header_social a i {
    transition: transform 0.3s ease;
}

.zeerit_header_social a:hover i {
    animation: bounce 0.5s ease infinite;
}

/* Navbar Styles */
.zeerit_header_navbar {
    background-color: var(--background-main);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.zeerit_header_navbar.sticky {
    padding: 10px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.zeerit_header_navbar_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.zeerit_header_logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.zeerit_header_logo i {
    font-size: 28px;
    animation: floatIcon 3s ease-in-out infinite;
}

.zeerit_header_nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.zeerit_header_nav_link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.zeerit_header_nav_link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.zeerit_header_nav_link:hover {
    color: var(--primary);
}

.zeerit_header_nav_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.zeerit_header_get_in_touch {
    background: linear-gradient(45deg, var(--button-primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.zeerit_header_get_in_touch i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.zeerit_header_get_in_touch:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.zeerit_header_get_in_touch:hover i {
    animation: slideRight 0.8s ease infinite;
}

.zeerit_header_get_in_touch::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.zeerit_header_get_in_touch:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.zeerit_header_mobile_toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zeerit_header_mobile_toggle i {
    font-size: 20px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes movePattern {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .zeerit_header_contact_item span {
        font-size: 14px;
    }
    
    .zeerit_header_nav {
        gap: 25px;
    }
    
    .zeerit_header_logo {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .zeerit_header_contact {
        gap: 15px;
    }
    
    .zeerit_header_contact_item i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .zeerit_header_topbar_content {
        justify-content: center;
        text-align: center;
    }

    .zeerit_header_contact {
        display: none;
    }

    .zeerit_header_social {
        margin: 0;
    }

    .zeerit_header_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 20px;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .zeerit_header_nav.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .zeerit_header_mobile_toggle {
        display: flex;
    }

    .zeerit_header_mobile_toggle:hover {
        background: var(--primary);
    }

    .zeerit_header_mobile_toggle:hover i {
        color: white;
        transform: rotate(90deg);
    }

    .zeerit_header_logo {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .zeerit_header_logo {
        font-size: 18px;
        gap: 8px;
    }

    .zeerit_header_logo i {
        font-size: 24px;
    }

    .zeerit_header_get_in_touch {
        padding: 10px 20px;
        font-size: 14px;
    }

    .zeerit_header_mobile_toggle {
        width: 40px;
        height: 40px;
    }

    .zeerit_header_topbar {
        padding: 8px 0;
    }

    .zeerit_header_social a {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 360px) {
    .zeerit_header_logo span {
        display: none;
    }

    .zeerit_header_logo i {
        font-size: 28px;
    }
}

/* footer area css */
/* Main Footer Styles */
.zeerit_footer {
    background: #004D40;
    background-image: 
        radial-gradient(circle at 20% 20%, #00838F 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, #006064 0%, transparent 40%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 100px 0 40px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.zeerit_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: floatBackground 20s linear infinite;
    opacity: 0.1;
}

/* Container and Grid */
.zeerit_footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zeerit_footer_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

/* Brand Section */
.zeerit_footer_brand {
    grid-column: span 5;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-50px);
    animation: fadeInUp 1s ease-out forwards;
}

.zeerit_footer_brand_logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.zeerit_footer_brand_logo i {
    font-size: 40px;
    color: #8BC34A;
    animation: pulse 2s infinite;
}

.zeerit_footer_brand_logo span {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zeerit_footer_brand_desc {
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    color: white;
}

.zeerit_footer_brand_desc::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: #8BC34A;
    opacity: 0.5;
}

/* Certifications */
.zeerit_footer_certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.zeerit_footer_cert {
    padding: 10px 20px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.3);
    cursor: pointer;
}

.zeerit_footer_cert:hover {
    transform: scale(1.05) rotate(-2deg);
    background: rgba(139, 195, 74, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zeerit_footer_cert i {
    color: #8BC34A;
}

/* Navigation Section */
.zeerit_footer_nav {
    grid-column: 6 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transform: translateY(-30px);
    animation: fadeInUp 1s ease-out forwards 0.3s;
}

.zeerit_footer_nav_section {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.zeerit_footer_nav_section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zeerit_footer_nav_title {
    color: #8BC34A;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    cursor: pointer;
}

.zeerit_footer_nav_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #8BC34A;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(139, 195, 74, 0.3);
}

.zeerit_footer_nav_section:hover .zeerit_footer_nav_title::after {
    width: 100%;
}

.zeerit_footer_nav_links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zeerit_footer_nav_link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.zeerit_footer_nav_link i {
    font-size: 14px;
    color: #8BC34A;
    transition: all 0.3s ease;
}

.zeerit_footer_nav_link:hover {
    color: #8BC34A;
    padding-left: 15px;
    letter-spacing: 0.5px;
}

.zeerit_footer_nav_link:hover i {
    transform: rotate(90deg);
    color: #ffffff;
}

.zeerit_footer_nav_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8BC34A, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.zeerit_footer_nav_link:hover::after {
    transform: scaleX(1);
}

/* Bottom Section */
.zeerit_footer_bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeIn 1s ease-out forwards 0.6s;
    opacity: 0;
}

.zeerit_footer_credits {
    display: flex;
    gap: 30px;
    align-items: center;
}

.zeerit_footer_copyright {
    color: rgba(255, 255, 255, 0.7);
}

.zeerit_footer_designer {
    color: #8BC34A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.zeerit_footer_designer:hover {
    transform: scale(1.05);
}

.zeerit_footer_designer i {
    animation: heartbeat 1.5s infinite;
}

/* Social Media */
.zeerit_footer_social {
    display: flex;
    gap: 15px;
}

.zeerit_footer_social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zeerit_footer_social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8BC34A;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.zeerit_footer_social a:hover::before {
    transform: translateY(0);
}

.zeerit_footer_social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.zeerit_footer_social a:hover i {
    transform: scale(1.2);
}

/* Animations */
@keyframes floatBackground {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
    100% { transform: translate(0, 0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zeerit_footer_grid {
        grid-template-columns: 1fr;
    }

    .zeerit_footer_brand,
    .zeerit_footer_nav {
        grid-column: 1 / -1;
        transform: translateY(0);
    }

    .zeerit_footer_nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zeerit_footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
        padding: 80px 0 40px;
    }

    .zeerit_footer_nav {
        grid-template-columns: 1fr;
    }

    .zeerit_footer_bottom {
        flex-direction: column;
        text-align: center;
    }

    .zeerit_footer_credits {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .zeerit_footer_brand_logo span {
        font-size: 20px;
    }

    .zeerit_footer_cert {
        width: 100%;
        justify-content: center;
    }

    .zeerit_footer_nav_section {
        padding: 20px;
    }

    .zeerit_footer_social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .zeerit_footer_designer {
        font-size: 14px;
    }
}

/* banner area css */
.zeerit_animabanner {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zeerit_animabanner-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, #8BC34A08 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #00838F08 0%, transparent 50%);
    z-index: 1;
}

.zeerit_animabanner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
}

.zeerit_animabanner-content {
    animation: slideIn 1s ease-out;
}

.zeerit_animabanner-subtitle {
    font-size: 1.1rem;
    color: #00838F;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 131, 143, 0.1);
    border-radius: 30px;
}

.zeerit_animabanner-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.zeerit_animabanner-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.zeerit_animabanner-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1000px;
}

.zeerit_animabanner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zeerit_animabanner-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.zeerit_animabanner-slide.previous {
    transform: translateX(-100%);
}

.zeerit_animabanner-product {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
    transform-style: preserve-3d;
    animation: productFloat 6s infinite ease-in-out;
}

.zeerit_animabanner-info {
    text-align: center;
}

.zeerit_animabanner-product-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.zeerit_animabanner-product-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.zeerit_animabanner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.zeerit_animabanner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zeerit_animabanner-dot.active {
    background: #00838F;
    transform: scale(1.2);
}

.zeerit_animabanner-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.zeerit_animabanner-shape {
    position: absolute;
    background: linear-gradient(45deg, #64a71710, #00838F10);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: shapeFloat 15s infinite alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation-delay: -7s;
}

@keyframes productFloat {
    0%, 100% {
        transform: translateY(0) rotate3d(1, 1, 0, 2deg);
    }
    50% {
        transform: translateY(-20px) rotate3d(1, 1, 0, -2deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shapeFloat {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: translate(20px, -20px) rotate(45deg);
    }
}

@media (max-width: 1200px) {
    .zeerit_animabanner-container {
        gap: 40px;
    }

    .zeerit_animabanner-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .zeerit_animabanner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zeerit_animabanner-description {
        margin: 0 auto 40px;
    }

    .zeerit_animabanner-carousel {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .zeerit_animabanner-container {
        padding: 60px 20px;
    }

    .zeerit_animabanner-title {
        font-size: 2.5rem;
    }

    .zeerit_animabanner-carousel {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .zeerit_animabanner-container {
        padding: 40px 20px;
    }

    .zeerit_animabanner-title {
        font-size: 2rem;
    }

    .zeerit_animabanner-subtitle {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .zeerit_animabanner-carousel {
        height: 350px;
    }
}


/* about area css */
.zeerit_about {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    color: #333333;
    overflow: hidden;
}

.zeerit_about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(139, 195, 74, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(0, 131, 143, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.zeerit_about_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zeerit_about_header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.zeerit_about_header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8BC34A, #00838F);
    border-radius: 3px;
}

.zeerit_about_subtitle {
    color: #00838F;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zeerit_about_subtitle i {
    color: #8BC34A;
    animation: pulse 2s infinite;
}

.zeerit_about_title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #004D40;
}

.zeerit_about_intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.zeerit_about_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.zeerit_about_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.zeerit_about_image_main {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.zeerit_about_image:hover .zeerit_about_image_main {
    transform: scale(1);
}

.zeerit_about_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.zeerit_about_feature {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.zeerit_about_feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #8BC34A, #00838F);
    transition: height 0.3s ease;
}

.zeerit_about_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.zeerit_about_feature:hover::before {
    height: 100%;
}

.zeerit_about_feature i {
    font-size: 24px;
    color: #8BC34A;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.zeerit_about_feature:hover i {
    transform: scale(1.2);
}

.zeerit_about_feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #004D40;
}

.zeerit_about_feature p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.zeerit_about_certifications {
    margin-top: 60px;
    text-align: center;
}

.zeerit_about_cert_grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.zeerit_about_cert {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.zeerit_about_cert:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.zeerit_about_cert img {
    width: 70%;
    height: auto;
}

.zeerit_about_cta {
    margin-top: 60px;
    text-align: center;
}

.zeerit_about_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zeerit_about_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.zeerit_about_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 195, 74, 0.3);
}

.zeerit_about_button:hover::before {
    transform: translateX(100%);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .zeerit_about_title {
        font-size: 36px;
    }

    .zeerit_about_features {
        gap: 20px;
    }

    .zeerit_about_cert {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .zeerit_about {
        padding: 60px 0;
    }

    .zeerit_about_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zeerit_about_features {
        grid-template-columns: 1fr;
    }

    .zeerit_about_cert_grid {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .zeerit_about_title {
        font-size: 28px;
    }

    .zeerit_about_intro {
        font-size: 16px;
    }

    .zeerit_about_feature {
        padding: 20px;
    }

    .zeerit_about_cert {
        width: 80px;
        height: 80px;
    }

    .zeerit_about_button {
        width: 100%;
        justify-content: center;
    }
}

/* our product area css */

.zeerit_productsslider {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(120deg, #f3f4f6 0%, #ffffff 100%),
        linear-gradient(60deg, rgba(139, 195, 74, 0.1) 0%, rgba(0, 131, 143, 0.1) 100%);
    background-blend-mode: overlay;
}

.zeerit_productsslider::before,
.zeerit_productsslider::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 195, 74, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 131, 143, 0.05) 0%, transparent 50%);
    top: 0;
    left: 0;
    z-index: 1;
}

.zeerit_productsslider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zeerit_productsslider-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.zeerit_productsslider-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #333333, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.zeerit_productsslider-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

.zeerit_productsslider-wrapper {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.zeerit_productsslider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.zeerit_productsslider-item {
    flex: 0 0 300px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zeerit_productsslider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #8BC34A20, #00838F20);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zeerit_productsslider-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.zeerit_productsslider-item:hover::before {
    opacity: 1;
}

.zeerit_productsslider-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.zeerit_productsslider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zeerit_productsslider-item:hover .zeerit_productsslider-image img {
    transform: scale(1.1);
}

.zeerit_productsslider-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(139, 195, 74, 0.1),
        rgba(0, 131, 143, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zeerit_productsslider-item:hover .zeerit_productsslider-image::after {
    opacity: 1;
}

.zeerit_productsslider-content {
    text-align: center;
    padding: 20px 15px;
}

.zeerit_productsslider-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.zeerit_productsslider-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(45deg, #8BC34A20, #00838F20);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.zeerit_productsslider-item:hover .zeerit_productsslider-name::after {
    transform: scaleX(1);
}

.zeerit_productsslider-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zeerit_productsslider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.zeerit_productsslider-controls::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 131, 143, 0.2),
        transparent
    );
}

.zeerit_productsslider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #00838F, #006064);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.zeerit_productsslider-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.zeerit_productsslider-btn:hover::before {
    transform: translateX(100%);
}

.zeerit_productsslider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 131, 143, 0.2);
}

.zeerit_productsslider-btn:disabled {
    background: #eee;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.zeerit_productsslider-readmore {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.zeerit_productsslider-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zeerit_productsslider-readmore-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.zeerit_productsslider-readmore-btn:hover::before {
    transform: translateX(100%);
}

.zeerit_productsslider-readmore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 131, 143, 0.2);
}

.zeerit_productsslider-readmore-btn svg {
    transition: transform 0.3s ease;
}

.zeerit_productsslider-readmore-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .zeerit_productsslider-item {
        flex: 0 0 280px;
    }
}

@media (max-width: 992px) {
    .zeerit_productsslider-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .zeerit_productsslider {
        padding: 60px 0;
    }

    .zeerit_productsslider-title {
        font-size: 2rem;
    }

    .zeerit_productsslider-item {
        flex: 0 0 260px;
    }

    .zeerit_productsslider-image {
        height: 180px;
    }

    .zeerit_productsslider::before,
    .zeerit_productsslider::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .zeerit_productsslider-title {
        font-size: 1.8rem;
    }

    .zeerit_productsslider-item {
        flex: 0 0 240px;
    }

    .zeerit_productsslider-image {
        height: 160px;
    }

    .zeerit_productsslider-btn {
        width: 40px;
        height: 40px;
    }

    .zeerit_productsslider-readmore-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zeerit_productsslider *,
    .zeerit_productsslider *::before,
    .zeerit_productsslider *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* why choose area start */
.zeerit_whyze {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.zeerit_whyze::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.zeerit_whyze::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 131, 143, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.zeerit_whyze_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zeerit_whyze_header {
    text-align: center;
    margin-bottom: 60px;
}

.zeerit_whyze_subtitle {
    color: #00838F;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zeerit_whyze_subtitle i {
    color: #8BC34A;
    animation: pulse 2s infinite;
}

.zeerit_whyze_title {
    font-size: 42px;
    color: #004D40;
    margin-bottom: 20px;
}

.zeerit_whyze_description {
    max-width: 700px;
    margin: 0 auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.zeerit_whyze_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.zeerit_whyze_card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.zeerit_whyze_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8BC34A, #00838F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.zeerit_whyze_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.zeerit_whyze_card:hover::before {
    transform: scaleX(1);
}

.zeerit_whyze_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(0, 131, 143, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.zeerit_whyze_icon i {
    font-size: 30px;
    color: #8BC34A;
    transition: all 0.3s ease;
}

.zeerit_whyze_card:hover .zeerit_whyze_icon {
    transform: rotate(10deg);
    background: linear-gradient(135deg, #8BC34A, #00838F);
}

.zeerit_whyze_card:hover .zeerit_whyze_icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.zeerit_whyze_card_title {
    font-size: 20px;
    color: #004D40;
    margin-bottom: 15px;
}

.zeerit_whyze_card_text {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.zeerit_whyze_stats {
    font-size: 24px;
    color: #00838F;
    font-weight: bold;
    margin-bottom: 10px;
}

.zeerit_whyze_stat_label {
    font-size: 14px;
    color: #666666;
}

.zeerit_whyze_highlight {
    background: linear-gradient(120deg, #8BC34A, #00838F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .zeerit_whyze_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .zeerit_whyze_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .zeerit_whyze {
        padding: 60px 0;
    }

    .zeerit_whyze_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zeerit_whyze_card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .zeerit_whyze_title {
        font-size: 28px;
    }

    .zeerit_whyze_subtitle {
        font-size: 16px;
    }

    .zeerit_whyze_description {
        font-size: 14px;
    }

    .zeerit_whyze_icon {
        width: 60px;
        height: 60px;
    }

    .zeerit_whyze_icon i {
        font-size: 24px;
    }

    .zeerit_whyze_card_title {
        font-size: 18px;
    }
}

/* testimonial area css */
.zeerit_testri {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.zeerit_testri::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(139, 195, 74, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(0, 131, 143, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.zeerit_testri_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zeerit_testri_header {
    text-align: center;
    margin-bottom: 60px;
}

.zeerit_testri_subtitle {
    color: #00838F;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zeerit_testri_subtitle i {
    color: #8BC34A;
    animation: pulse 2s infinite;
}

.zeerit_testri_title {
    font-size: 42px;
    color: #004D40;
    margin-bottom: 20px;
}

.zeerit_testri_slider_container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.zeerit_testri_track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.zeerit_testri_card {
    min-width: 400px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.zeerit_testri_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.zeerit_testri_quote {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8BC34A, #00838F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.zeerit_testri_content {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 25px;
    position: relative;
}

.zeerit_testri_author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zeerit_testri_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8BC34A;
}

.zeerit_testri_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zeerit_testri_info {
    flex: 1;
}

.zeerit_testri_name {
    font-size: 18px;
    font-weight: bold;
    color: #004D40;
    margin-bottom: 5px;
}

.zeerit_testri_position {
    font-size: 14px;
    color: #00838F;
}

.zeerit_testri_rating {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.zeerit_testri_rating i {
    color: #FFC107;
}

.zeerit_testri_nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.zeerit_testri_button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004D40;
    transition: all 0.3s ease;
}

.zeerit_testri_button:hover {
    background: linear-gradient(135deg, #8BC34A, #00838F);
    color: white;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .zeerit_testri_card {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .zeerit_testri {
        padding: 60px 0;
    }

    .zeerit_testri_title {
        font-size: 32px;
    }

    .zeerit_testri_card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .zeerit_testri_card {
        min-width: calc(100vw - 40px);
        padding: 20px;
    }

    .zeerit_testri_content {
        font-size: 14px;
    }

    .zeerit_testri_avatar {
        width: 50px;
        height: 50px;
    }
}

/* get in touch area css */
/* Main Container Styles */
.zeerit_getintouch {
    min-height: 100vh;
    background: linear-gradient(135deg, #004D40, #00838F);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Background Effects */
.zeerit_getintouch_shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.zeerit_getintouch_shape {
    position: absolute;
    background: rgba(139, 195, 74, 0.1);
    backdrop-filter: blur(80px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.zeerit_getintouch_shape:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    animation: morphShape1 20s linear infinite;
}

.zeerit_getintouch_shape:nth-child(2) {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -300px;
    animation: morphShape2 25s linear infinite;
}

.zeerit_getintouch_floating_shape {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUp 10s linear infinite;
}

/* Container Layout */
.zeerit_getintouch_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Section */
.zeerit_getintouch_heading {
    text-align: center;
    margin-bottom: 60px;
}

.zeerit_getintouch_title {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.zeerit_getintouch_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8BC34A;
    transform: scaleX(0);
    transform-origin: left;
    animation: titleUnderline 1s ease forwards 0.5s;
}

.zeerit_getintouch_subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Content Grid */
.zeerit_getintouch_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Cards Section */
.zeerit_getintouch_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.zeerit_getintouch_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.zeerit_getintouch_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.zeerit_getintouch_card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.zeerit_getintouch_card:hover::before {
    transform: translateX(100%);
}

.zeerit_getintouch_card_icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 195, 74, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #8BC34A;
    transition: all 0.4s ease;
}

.zeerit_getintouch_card:hover .zeerit_getintouch_card_icon {
    background: #8BC34A;
    color: #ffffff;
    transform: rotate(360deg);
    border-radius: 50%;
}

.zeerit_getintouch_card_content {
    color: #ffffff;
}

.zeerit_getintouch_card_content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.zeerit_getintouch_card_content p {
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
}

/* Form Container */
.zeerit_getintouch_form_container {
    perspective: 1000px;
}

.zeerit_getintouch_form_wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.zeerit_getintouch_form_wrapper:hover {
    transform: translateZ(20px);
}

/* Form Inputs */
.zeerit_getintouch_form_group {
    margin-bottom: 25px;
    position: relative;
}

.zeerit_getintouch_input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.zeerit_getintouch_input:focus {
    outline: none;
    border-color: #8BC34A;
    box-shadow: 0 0 15px rgba(139, 195, 74, 0.2);
}

.zeerit_getintouch_label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 0 5px;
}

.zeerit_getintouch_input:focus ~ .zeerit_getintouch_label,
.zeerit_getintouch_input:not(:placeholder-shown) ~ .zeerit_getintouch_label {
    transform: translateY(-25px) scale(0.9);
    color: #8BC34A;
    background: rgba(0, 77, 64, 0.8);
    padding: 0 5px;
    border-radius: 5px;
}

.zeerit_getintouch_textarea {
    height: 120px;
    resize: none;
}

/* Submit Button */
.zeerit_getintouch_submit {
    width: 100%;
    padding: 15px;
    background: #8BC34A;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zeerit_getintouch_submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.zeerit_getintouch_submit:hover {
    background: #7CB342;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 195, 74, 0.3);
}

.zeerit_getintouch_submit:hover::before {
    left: 100%;
}

/* Modal Styles */
.zeerit_getintouch_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.zeerit_getintouch_modal.active {
    opacity: 1;
    visibility: visible;
}

.zeerit_getintouch_modal_content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
}

.zeerit_getintouch_modal.active .zeerit_getintouch_modal_content {
    transform: scale(1);
}

.zeerit_getintouch_modal_content i {
    font-size: 50px;
    color: #8BC34A;
    margin-bottom: 20px;
}

/* Error States */
.zeerit_getintouch_form_group.error .zeerit_getintouch_input {
    border-color: #ff4444;
}

.zeerit_getintouch_error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 15px;
}

/* Animations */
@keyframes morphShape1 {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes morphShape2 {
    0%, 100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    25% { border-radius: 42% 58% 25% 75% / 46% 76% 24% 54%; }
    50% { border-radius: 50% 50% 67% 33% / 27% 55% 45% 73%; }
    75% { border-radius: 67% 33% 42% 58% / 68% 63% 37% 32%; }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(2);
        opacity: 0;
    }
}

@keyframes titleUnderline {
    to { transform: scaleX(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zeerit_getintouch_wrapper {
        gap: 40px;
    }
    
    .zeerit_getintouch_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .zeerit_getintouch_wrapper {
        grid-template-columns: 1fr;
    }
    
    .zeerit_getintouch_cards {
        grid-template-columns: 1fr;
    }
    
    .zeerit_getintouch_form_wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .zeerit_getintouch {
        padding: 40px 0;
    }
    
    .zeerit_getintouch_title {
        font-size: 28px;
    }
    
    .zeerit_getintouch_subtitle {
        font-size: 16px;
    }
    
    .zeerit_getintouch_form_wrapper {
        padding: 20px;
    }
    
    .zeerit_getintouch_card {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .zeerit_getintouch {
        background: #ffffff;
        color: #000000;
    }
    
    .zeerit_getintouch_shapes,
    .zeerit_getintouch_submit {
        display: none;
    }
    
    .zeerit_getintouch_card,
    .zeerit_getintouch_form_wrapper {
        border: 1px solid #000000;
        box-shadow: none;
        background: none;
    }
}
/* breadcrumb area css */
.zeerit_breadcrumb {
    position: relative;
    min-height: 400px;
    background: linear-gradient(120deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
}

/* Curved Shape Background */
.zeerit_breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, #8BC34A10 0%, #00838F15 100%);
    transform: rotate(-12deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s infinite alternate;
}

.zeerit_breadcrumb-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.zeerit_breadcrumb-content {
    position: relative;
    z-index: 2;
}

.zeerit_breadcrumb-subtitle {
    font-size: 1.1rem;
    color: #00838F;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInUp 0.6s ease-out;
}

.zeerit_breadcrumb-title {
    font-size: 3.5rem;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

.zeerit_breadcrumb-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

.zeerit_breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    animation: slideInUp 1s ease-out;
}

.zeerit_breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #00838F;
    font-weight: 500;
    padding: 10px 24px;
    background: rgba(0, 131, 143, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zeerit_breadcrumb-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.zeerit_breadcrumb-link:hover::before {
    left: 100%;
}

.zeerit_breadcrumb-link:hover {
    background: rgba(0, 131, 143, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 131, 143, 0.2);
}

.zeerit_breadcrumb-active {
    color: #333333;
    font-weight: 600;
    padding: 10px 24px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 50px;
    animation: pulse 2s infinite;
}

.zeerit_breadcrumb-image-wrapper {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.zeerit_breadcrumb-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Decorative Elements */
.zeerit_breadcrumb-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
}

.zeerit_breadcrumb-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-1 { top: 20%; left: 10%; background: #8BC34A; animation: pulse 2s infinite; }
.dot-2 { top: 60%; left: 15%; background: #00838F; animation: pulse 2.5s infinite; }
.dot-3 { top: 30%; right: 15%; background: #8BC34A; animation: pulse 3s infinite; }
.dot-4 { bottom: 20%; right: 10%; background: #00838F; animation: pulse 2.8s infinite; }

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .zeerit_breadcrumb-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zeerit_breadcrumb-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .zeerit_breadcrumb-nav {
        justify-content: center;
    }

    .zeerit_breadcrumb-image-wrapper {
        order: -1;
        margin: 0 auto;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .zeerit_breadcrumb-title {
        font-size: 2.5rem;
    }

    .zeerit_breadcrumb-nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* new about area start css */
.zeerit_newab {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
}

.zeerit_newab-shape {
    position: absolute;
    z-index: 1;
}

.zeerit_newab-shape1 {
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #8BC34A15, #00838F15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s infinite alternate;
}

.zeerit_newab-shape2 {
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #00838F15, #8BC34A15);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morphShape 15s infinite alternate-reverse;
}

.zeerit_newab-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.zeerit_newab-content {
    animation: slideInLeft 0.8s ease-out;
}

.zeerit_newab-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 25px;
    position: relative;
}

.zeerit_newab-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

.zeerit_newab-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

.zeerit_newab-highlight {
    color: #00838F;
    font-weight: 600;
}

.zeerit_newab-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    color: #ffffff;
    background: linear-gradient(45deg, #00838F, #006064);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zeerit_newab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.zeerit_newab-button:hover::before {
    left: 100%;
}

.zeerit_newab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 131, 143, 0.2);
}

.zeerit_newab-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.zeerit_newab-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.zeerit_newab-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.zeerit_newab-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8BC34A;
    opacity: 0.5;
}

.dot1 { top: 20%; left: 10%; animation: pulse 2s infinite; }
.dot2 { top: 60%; left: 15%; animation: pulse 2.5s infinite; }
.dot3 { top: 30%; right: 15%; animation: pulse 3s infinite; }
.dot4 { bottom: 20%; right: 10%; animation: pulse 2.8s infinite; }

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@media (max-width: 992px) {
    .zeerit_newab-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zeerit_newab-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .zeerit_newab-image-wrapper {
        order: -1;
        margin: 0 auto;
    }

    .zeerit_newab-content {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .zeerit_newab {
        padding: 60px 0;
    }

    .zeerit_newab-title {
        font-size: 2rem;
    }

    .zeerit_newab-text {
        font-size: 1rem;
    }
}

/* mission vision are start */
.zeerit_mvv {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
}

.zeerit_mvv-bg-pills {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
}

.zeerit_mvv-pill {
    position: absolute;
    background: #00838F;
    border-radius: 50px;
}

.pill-1 { width: 100px; height: 200px; top: 10%; left: 5%; transform: rotate(45deg); animation: float 8s infinite; }
.pill-2 { width: 80px; height: 160px; top: 60%; right: 10%; transform: rotate(-30deg); animation: float 6s infinite; }
.pill-3 { width: 60px; height: 120px; bottom: 20%; left: 15%; transform: rotate(15deg); animation: float 7s infinite; }

.zeerit_mvv-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.zeerit_mvv-header {
    text-align: center;
    margin-bottom: 80px;
}

.zeerit_mvv-title {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.zeerit_mvv-title::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 20px;
    bottom: 5px;
    left: -10%;
    background: #8BC34A20;
    z-index: -1;
    transform: skew(-15deg);
}

.zeerit_mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    perspective: 1000px;
}

.zeerit_mvv-card {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    animation: cardEntrance 0.8s ease-out backwards;
}

.zeerit_mvv-card:nth-child(1) { animation-delay: 0.2s; }
.zeerit_mvv-card:nth-child(2) { animation-delay: 0.4s; }
.zeerit_mvv-card:nth-child(3) { animation-delay: 0.6s; }

.zeerit_mvv-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.zeerit_mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8BC34A, #00838F);
    border-radius: 30px 30px 0 0;
    transform: translateZ(20px);
}

.zeerit_mvv-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    perspective: 1000px;
}

.zeerit_mvv-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8BC34A10, #00838F10);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(20deg) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.zeerit_mvv-card:hover .zeerit_mvv-icon {
    transform: rotateY(-20deg) rotateX(-10deg);
}

.zeerit_mvv-icon svg {
    transform: translateZ(20px);
}

.zeerit_mvv-card-title {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
    transform: translateZ(20px);
}

.zeerit_mvv-card-text {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
    transform: translateZ(10px);
}

.zeerit_mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transform: translateZ(15px);
}

.zeerit_mvv-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.zeerit_mvv-list-item:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translate(0, -20px) rotate(var(--rotation, 0deg));
    }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(100px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@media (max-width: 992px) {
    .zeerit_mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zeerit_mvv {
        padding: 60px 0;
    }

    .zeerit_mvv-grid {
        grid-template-columns: 1fr;
    }

    .zeerit_mvv-title {
        font-size: 2.5rem;
    }

    .zeerit_mvv-card {
        padding: 30px;
    }
}


/* history are css */
.zeerit_history {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
}

.zeerit_history-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.zeerit_history-shape {
    position: absolute;
    background: #00838F;
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.zeerit_history-shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: morphShape 15s infinite alternate;
}

.zeerit_history-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: morphShape 15s infinite alternate-reverse;
}

.zeerit_history-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.zeerit_history-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.zeerit_history-title {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.zeerit_history-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

.zeerit_history-timeline {
    position: relative;
    padding: 40px 0;
}

.zeerit_history-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8BC34A20, #00838F20);
    border-radius: 2px;
}

.zeerit_history-item {
    display: flex;
    justify-content: flex-end;
    padding: 40px 0;
    width: 50%;
    position: relative;
    animation: slideIn 0.8s ease-out both;
}

.zeerit_history-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
}

.zeerit_history-content {
    width: 400px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.zeerit_history-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.zeerit_history-date {
    position: absolute;
    top: 0;
    width: 120px;
    padding: 8px 20px;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    color: #ffffff;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    transform: translateY(-50%);
}

.zeerit_history-item:nth-child(odd) .zeerit_history-date {
    right: 20px;
}

.zeerit_history-item:nth-child(even) .zeerit_history-date {
    left: 20px;
}

.zeerit_history-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #8BC34A;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.zeerit_history-item:hover .zeerit_history-dot {
    background: #8BC34A;
    transform: translate(-50%, -50%) scale(1.2);
}

.zeerit_history-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.zeerit_history-subtitle {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 15px;
}

.zeerit_history-text {
    color: #666666;
    line-height: 1.7;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .zeerit_history-line {
        left: 20px;
    }

    .zeerit_history-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 50px;
    }

    .zeerit_history-item:nth-child(even) {
        margin-left: 0;
    }

    .zeerit_history-content {
        width: 100%;
        max-width: 500px;
    }

    .zeerit_history-dot {
        left: 20px;
    }

    .zeerit_history-date {
        left: 20px !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .zeerit_history {
        padding: 60px 0;
    }

    .zeerit_history-title {
        font-size: 2.5rem;
    }

    .zeerit_history-content {
        padding: 20px;
    }

    .zeerit_history-subtitle {
        font-size: 1.2rem;
    }
}

/* services area css */
.zeerit_services {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.zeerit_services-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, #8BC34A10 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, #00838F10 0%, transparent 20%);
    z-index: 1;
}

.zeerit_services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.zeerit_services-header {
    text-align: center;
    margin-bottom: 80px;
}

.zeerit_services-top-title {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #8BC34A10, #00838F10);
    border-radius: 30px;
    color: #00838F;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.zeerit_services-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.zeerit_services-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.zeerit_services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.zeerit_services-item {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zeerit_services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.zeerit_services-item::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(45deg, #8BC34A05, #00838F05);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.zeerit_services-item:hover::before {
    transform: rotate(225deg);
}

.zeerit_services-icon-box {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.zeerit_services-item:hover .zeerit_services-icon-box {
    transform: rotateY(180deg);
    background: linear-gradient(45deg, #8BC34A, #00838F);
}

.zeerit_services-icon-box svg {
    width: 35px;
    height: 35px;
    stroke: #00838F;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.zeerit_services-item:hover .zeerit_services-icon-box svg {
    stroke: #ffffff;
    transform: rotateY(180deg);
}

.zeerit_services-item-title {
    font-size: 1.5rem;
    color: #333333;
    position: relative;
}

.zeerit_services-item-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    transition: width 0.3s ease;
}

.zeerit_services-item:hover .zeerit_services-item-title::after {
    width: 60px;
}

.zeerit_services-item-text {
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.zeerit_services-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.zeerit_services-contact {
    padding: 15px 40px;
    font-size: 1.1rem;
    color: #ffffff;
    background: linear-gradient(45deg, #00838F, #006064);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.zeerit_services-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 131, 143, 0.2);
}

.zeerit_services-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.zeerit_services-contact:hover::before {
    transform: translateX(100%);
}

@media (max-width: 1200px) {
    .zeerit_services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zeerit_services {
        padding: 60px 0;
    }

    .zeerit_services-grid {
        grid-template-columns: 1fr;
    }

    .zeerit_services-title {
        font-size: 2.5rem;
    }
    
    .zeerit_services-item {
        padding: 30px;
    }
}

/* product css  */
.zeerit_prod {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

/* Background Effects */
.zeerit_prod-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.zeerit_prod-bg::before,
.zeerit_prod-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.zeerit_prod-bg::before {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    top: -200px;
    right: -200px;
    filter: blur(50px);
}

.zeerit_prod-bg::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #00838F, #8BC34A);
    bottom: -100px;
    left: -100px;
    filter: blur(40px);
    animation-delay: -10s;
}

/* Main Container */
.zeerit_prod-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.zeerit_prod-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.zeerit_prod-subtitle {
    font-size: 1.1rem;
    color: #00838F;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(0, 131, 143, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.zeerit_prod-title {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease forwards;
}

.zeerit_prod-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

/* Grid Layout */
.zeerit_prod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card Styles */
.zeerit_prod-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease forwards;
}

.zeerit_prod-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Image Styles */
.zeerit_prod-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(45deg, #8BC34A08, #00838F08);
}

.zeerit_prod-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.zeerit_prod-card:hover .zeerit_prod-image {
    transform: scale(1.1);
}

/* Image Overlay */
.zeerit_prod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zeerit_prod-card:hover .zeerit_prod-overlay {
    opacity: 1;
}

/* Content Area */
.zeerit_prod-content {
    padding: 30px;
    position: relative;
}

/* Category Tag */
.zeerit_prod-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zeerit_prod-card:hover .zeerit_prod-category {
    transform: translateY(0);
    opacity: 1;
}

/* Icon */
.zeerit_prod-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zeerit_prod-card:hover .zeerit_prod-icon {
    transform: rotate(15deg);
}

.zeerit_prod-icon svg {
    transition: all 0.4s ease;
}

.zeerit_prod-card:hover .zeerit_prod-icon svg {
    transform: scale(1.1);
}

/* Product Title */
.zeerit_prod-name {
    font-size: 1.8rem;
    color: #00838F;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.zeerit_prod-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    transition: width 0.4s ease;
}

.zeerit_prod-card:hover .zeerit_prod-name::after {
    width: 100px;
}

/* Description */
.zeerit_prod-desc {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action Buttons */
.zeerit_prod-actions {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.zeerit_prod-card:hover .zeerit_prod-actions {
    opacity: 1;
    transform: translateY(0);
}

.zeerit_prod-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.zeerit_prod-view {
    background: #00838F;
    color: white;
    flex: 1;
}

.zeerit_prod-download {
    background: #8BC34A;
    color: white;
    flex: 1;
}

.zeerit_prod-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: transform 0.6s ease;
}

.zeerit_prod-btn:hover::before {
    transform: translateX(200%);
}

.zeerit_prod-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .zeerit_prod-grid {
        gap: 30px;
    }

    .zeerit_prod-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .zeerit_prod-grid {
        grid-template-columns: 1fr;
    }

    .zeerit_prod-title {
        font-size: 3rem;
    }

    .zeerit_prod-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .zeerit_prod {
        padding: 60px 0;
    }

    .zeerit_prod-title {
        font-size: 2.5rem;
    }

    .zeerit_prod-image-wrapper {
        height: 180px;
    }

    .zeerit_prod-content {
        padding: 20px;
    }

    .zeerit_prod-name {
        font-size: 1.4rem;
    }

    .zeerit_prod-actions {
        flex-direction: column;
    }

    .zeerit_prod-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .zeerit_prod-container {
        padding: 0 20px;
    }

    .zeerit_prod-subtitle {
        font-size: 0.9rem;
    }

    .zeerit_prod-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .zeerit_prod {
        padding: 20px 0;
        background: white;
    }

    .zeerit_prod-bg,
    .zeerit_prod-actions,
    .zeerit_prod-overlay {
        display: none;
    }

    .zeerit_prod-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
    .zeerit_prod-title {
        background: none;
        -webkit-text-fill-color: #000000;
        color: #000000;
    }

    .zeerit_prod-category {
        background: #00838F;
    }

    .zeerit_prod-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .zeerit_prod-card,
    .zeerit_prod-image,
    .zeerit_prod-actions,
    .zeerit_prod-category,
    .zeerit_prod-icon,
    .zeerit_prod-btn {
        transition: none;
        animation: none;
    }

    .zeerit_prod-bg::before,
    .zeerit_prod-bg::after {
        animation: none;
    }
}

/* contact us css */
/* Base Styles */
.zeerit_contactus {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

/* Background Elements */
.zeerit_contactus-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.1;
    overflow: hidden;
}

.zeerit_contactus-line {
    position: absolute;
    height: 200px;
    width: 2px;
    background: #00838F;
    animation: lineFloat 8s infinite ease-in-out;
}

.line-1 { 
    left: 10%; 
    top: -100px; 
}
.line-2 { 
    left: 30%; 
    top: -50px; 
    animation-delay: -2s; 
}
.line-3 { 
    right: 20%; 
    top: -80px; 
    animation-delay: -4s; 
}

/* Container */
.zeerit_contactus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.zeerit_contactus-header {
    text-align: center;
    margin-bottom: 50px;
}

.zeerit_contactus-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.zeerit_contactus-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

/* Contact Info Cards */
.zeerit_contactus-info {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.zeerit_contactus-info-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.zeerit_contactus-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zeerit_contactus-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00838F;
    transition: all 0.3s ease;
}

.zeerit_contactus-info-item:hover .zeerit_contactus-icon {
    background: #00838F;
    color: white;
}

.zeerit_contactus-info-content {
    flex: 1;
}

.zeerit_contactus-info-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.zeerit_contactus-info-text {
    color: #333;
    font-weight: 500;
}

/* Main Content Grid */
.zeerit_contactus-main {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
    align-items: start;
}

/* Form Styles */
.zeerit_contactus-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.zeerit_contactus-input-group {
    margin-bottom: 25px;
    position: relative;
}

.zeerit_contactus-label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
}

.zeerit_contactus-input,
.zeerit_contactus-textarea,
.zeerit_contactus-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.zeerit_contactus-input:focus,
.zeerit_contactus-textarea:focus,
.zeerit_contactus-select:focus {
    border-color: #00838F;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 131, 143, 0.1);
}

.zeerit_contactus-textarea {
    height: 120px;
    resize: vertical;
}

.zeerit_contactus-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Error States */
.zeerit_contactus-error {
    display: none;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

.zeerit_contactus-input-group.error .zeerit_contactus-input,
.zeerit_contactus-input-group.error .zeerit_contactus-select,
.zeerit_contactus-input-group.error .zeerit_contactus-textarea {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.zeerit_contactus-input-group.error .zeerit_contactus-error {
    display: block;
}

/* Submit Button */
.zeerit_contactus-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #00838F;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zeerit_contactus-submit:hover {
    background: #006064;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 131, 143, 0.2);
}

.zeerit_contactus-submit svg {
    transition: transform 0.3s ease;
}

.zeerit_contactus-submit:hover svg {
    transform: translateX(5px);
}

.zeerit_contactus-submit.loading {
    background: #006064;
    pointer-events: none;
}

.zeerit_contactus-submit.success {
    background: #8BC34A;
}

/* Image Section */
.zeerit_contactus-image {
    position: relative;
}

.zeerit_contactus-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.zeerit_contactus-image:hover img {
    transform: scale(1.02);
}

/* Animations */
@keyframes lineFloat {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(400px) rotate(-5deg);
    }
}

@keyframes submitSpin {
    100% { 
        transform: rotate(360deg); 
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .zeerit_contactus-container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .zeerit_contactus-main {
        grid-template-columns: 1fr;
    }

    .zeerit_contactus-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .zeerit_contactus {
        padding: 60px 0;
    }

    .zeerit_contactus-title {
        font-size: 2rem;
    }

    .zeerit_contactus-info-item {
        min-width: 100%;
    }

    .zeerit_contactus-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .zeerit_contactus {
        padding: 40px 0;
    }

    .zeerit_contactus-form {
        padding: 20px;
    }

    .zeerit_contactus-info-item {
        padding: 20px;
    }

    .zeerit_contactus-submit {
        padding: 12px;
    }
}

/* Print Styles */
@media print {
    .zeerit_contactus {
        padding: 20px 0;
        background: white;
    }

    .zeerit_contactus-lines {
        display: none;
    }

    .zeerit_contactus-form,
    .zeerit_contactus-info-item {
        box-shadow: none;
        border: 1px solid #eee;
    }

    .zeerit_contactus-submit {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
    .zeerit_contactus-input,
    .zeerit_contactus-textarea,
    .zeerit_contactus-select {
        border-width: 2px;
    }

    .zeerit_contactus-submit {
        border: 2px solid transparent;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .zeerit_contactus * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* faqs area css */

.zeerit_faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zeerit_faq-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.zeerit_faq-shape-1 {
    width: 500px;
    height: 500px;
    background: #8BC34A;
    top: -250px;
    right: -250px;
    animation: float 20s infinite alternate ease-in-out;
}

.zeerit_faq-shape-2 {
    width: 300px;
    height: 300px;
    background: #00838F;
    bottom: -150px;
    left: -150px;
    animation: float 15s infinite alternate-reverse ease-in-out;
}

.zeerit_faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.zeerit_faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.zeerit_faq-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.zeerit_faq-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #8BC34A, #00838F);
    border-radius: 2px;
}

.zeerit_faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zeerit_faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.zeerit_faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zeerit_faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zeerit_faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.zeerit_faq-icon::before,
.zeerit_faq-icon::after {
    content: '';
    position: absolute;
    background: #00838F;
    transition: all 0.3s ease;
}

.zeerit_faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.zeerit_faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.zeerit_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.zeerit_faq-item.active .zeerit_faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.zeerit_faq-item.active .zeerit_faq-question {
    color: #00838F;
}

.zeerit_faq-item.active .zeerit_faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@media (max-width: 768px) {
    .zeerit_faq {
        padding: 60px 0;
    }

    .zeerit_faq-title {
        font-size: 2rem;
    }

    .zeerit_faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .zeerit_faq-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .zeerit_faq-title {
        font-size: 1.8rem;
    }

    .zeerit_faq-question {
        padding: 15px;
    }

    .zeerit_faq-answer {
        padding: 0 15px;
    }

    .zeerit_faq-item.active .zeerit_faq-answer {
        padding: 0 15px 15px;
    }
}

/* appoinment area css */

.zeerit_appoinm {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafb 0%, #e6f3ff 100%);
    padding: 60px 20px;
}

.zeerit_appoinm .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Side Info Panel */
.zeerit_appoinm .info-panel {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.zeerit_appoinm .info-header {
    position: relative;
    margin-bottom: 30px;
}

.zeerit_appoinm .info-header h2 {
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zeerit_appoinm .info-steps {
    margin-top: 30px;
}

.zeerit_appoinm .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.zeerit_appoinm .step-item:hover {
    transform: translateX(10px);
    background: #f0f7ff;
}

.zeerit_appoinm .step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #8BC34A, #00838F);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.zeerit_appoinm .step-content h4 {
    color: #2C3E50;
    margin-bottom: 5px;
    font-size: 18px;
}

.zeerit_appoinm .step-content p {
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.5;
}

/* Right Side Form */
.zeerit_appoinm .form-container {
    flex: 1.5;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.zeerit_appoinm .form-header {
    background: linear-gradient(45deg, #8BC34A, #00838F);
    padding: 30px;
    color: white;
    text-align: center;
}

.zeerit_appoinm .form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.zeerit_appoinm .form-content {
    padding: 40px;
}

.zeerit_appoinm .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.zeerit_appoinm .form-group {
    position: relative;
}

.zeerit_appoinm .form-group.full-width {
    grid-column: 1 / -1;
}

.zeerit_appoinm label {
    display: block;
    margin-bottom: 8px;
    color: #2C3E50;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.zeerit_appoinm input,
.zeerit_appoinm select,
.zeerit_appoinm textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.zeerit_appoinm input:focus,
.zeerit_appoinm select:focus,
.zeerit_appoinm textarea:focus {
    border-color: #8BC34A;
    box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
    outline: none;
}

.zeerit_appoinm select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238BC34A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.zeerit_appoinm textarea {
    height: 120px;
    resize: vertical;
}

.zeerit_appoinm .submit-btn {
    background: linear-gradient(45deg, #8BC34A, #00838F);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.zeerit_appoinm .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.zeerit_appoinm .input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8BC34A;
}

/* Time Slots Grid */
.zeerit_appoinm .time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.zeerit_appoinm .time-slot-btn {
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.zeerit_appoinm .time-slot-btn:hover,
.zeerit_appoinm .time-slot-btn.active {
    border-color: #8BC34A;
    background: #f0f7ff;
}

/* Progress Indicator */
.zeerit_appoinm .progress-bar {
    height: 4px;
    background: #E0E0E0;
    margin-bottom: 30px;
    border-radius: 2px;
    overflow: hidden;
}

.zeerit_appoinm .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8BC34A, #00838F);
    width: 0;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zeerit_appoinm .container {
        flex-direction: column;
    }

    .zeerit_appoinm .info-panel {
        position: relative;
        top: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .zeerit_appoinm {
        padding: 30px 15px;
    }

    .zeerit_appoinm .form-grid {
        grid-template-columns: 1fr;
    }

    .zeerit_appoinm .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .zeerit_appoinm .form-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .zeerit_appoinm .time-slots {
        grid-template-columns: 1fr;
    }

    .zeerit_appoinm .step-item {
        padding: 12px;
    }

    .zeerit_appoinm .form-header h3 {
        font-size: 20px;
    }
}