/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e0623e;
    --secondary: #ba0100;
    --copper: #ff9a56;
    --dark: #1a1a2e;
    --light: #f8fafc;
    --white: #ffffff;
    --text-dark: #334155;
    --text-light: #64748b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    font-size: 0.875rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.header-top {
    background: var(--white);
    color: var(--grey);
    padding: 5px 0;
    font-size: 0.875rem;
    border-bottom: solid 1px rgb(245 247 249 / 72%);
}

.header-top .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact_info {
    font-size: 0.75rem;
    display: flex;
    gap: 0.8rem;
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo img {
    height: 64px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--copper);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: var(--copper);
    border: none;
    border-radius: 5px;
    padding: 9px;
    height: 33px;
    cursor: pointer;
}

.hamburger-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    max-height: 75vh;
    overflow-y: auto;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative
}

.mobile-menu a:hover {
    color: var(--copper);
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
    width: 100%;
}


.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a,
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary);
}

/* Enhanced Social Links */
.social-link {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.125rem;
    border: 2px solid transparent;
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.linkedin {
    background: #0A66C2;
}

.social-link.google {
    background: #DB4437;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--copper);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 6rem);
    overflow: hidden;
    margin-top: 6rem;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}


.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero Enhancements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particle-float 6s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* Swiper Customization */
.swiper-pagination {
    bottom: 30px !important;
    z-index: 4;
    display: none;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--copper);
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--copper) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--copper), #ffad56);
    color: var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.expand-btn {
    background: var(--copper);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.expand-btn:hover {
    background: #e8824a;
    transform: translateY(-2px);
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--copper), #ffad56);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.translate-link {
    position: absolute;
    right: 20px;
    top: 0px;
    z-index: 999;
}

/* Quick Navigation */
.quick-nav {
    background: var(--light);
    padding: 20px 0;
    overflow-x: auto;
}

.quick-nav-section {
    padding: 10px 0 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.quick-nav-section .container {
    max-width: 100%;
}

.quick-links {
    display: flex;
    gap: 15px;
    min-width: max-content;
    padding: 10px 0;
}

.circle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    list-style: circle;
    max-width: 100%;
    width: 92%;
    margin: 0 auto;
}

.quick-link {
    padding: 5px 10px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--copper);
    color: var(--white);
    transform: translateY(-2px);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.quick-nav-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--copper);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--copper), #ffad56);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
}

.quick-nav-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Highlight Bar */
.highlight-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    font-weight: 600;
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    text-align: center;
}

.highlight-content i {
    font-size: 1.25rem;
    color: var(--copper);
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 4rem;
}

.content-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--copper);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Product Sections */
.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    background: var(--copper);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: var(--white);
    color: var(--copper);
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.expandable-products {
    margin-top: 3rem;
    text-align: center;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;

    transition: all 0.5s ease;
}



.product-tag {
    background: var(--white);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}

/* Content Cards */

.innerPagesHero {
    height: calc(100vh - 9.92rem);
}

.hero-full {
    width: 100%;
    height: 100%;
}

.innerPagesHero .hero-badge {
    margin-top: 30px;
}

.content-section {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
}

.content-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-text {
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--copper);
}

.highlight-box h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: bold;
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    padding: 0;
}

.card-header {
    background: #f49661;
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

.sidebar-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.sidebar-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: bold;
}

.cert-image {
    text-align: center;
    margin-top: 1.5rem;
}

.cert-image img {
    max-width: 120px;
    height: auto;
}

.company-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 5px;
    background: #f8fafc;
    border-radius: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat .stat-label {
    font-size: 0.65rem;
    color: var(--text-light);
}

.product-list {
    display: grid;
    margin: 20px 0;
}

.product-item {
    display: flex;
    gap: 10px;
    padding: 4px 0;
    font-size: 0.75rem;
}

.product-item i {
    color: var(--copper);
    padding: 4px 0;
    font-size: 0.75rem;
}

.certification {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

/* Usage Carousel */
.usage-carousel {
    height: 346px;
    overflow: hidden;
    border-radius: 10px;
    background: #f8fafc;
}

.usage-images {
    display: flex;
    flex-direction: column;
    animation: scroll 20s linear infinite;
}

.usage-images img {
    width: 250px;
    height: 273px;
    object-fit: cover;
    margin: 10px auto;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

@keyframes scroll {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark), #16213e);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    color: #94a3b8;
}

.footer-grid,
.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-section {
    color: #94a3b8;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: var(--white);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--copper);
    border-radius: 2px;
}

.footer-section-small {
    font-size: 0.75rem;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--copper);
    font-size: 1.125rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.cert-badge i {
    color: var(--copper);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    font-size: 0.65rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 84px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--copper);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #e8824a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-stats,
    .hero-badge {
        display: none;
    }

    .logo img {
        height: auto;
        width: auto;
    }

    .nav-menu {

        gap: 20px;

    }

    .quick-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        position: relative;
    }

    .hero {
        position: relative;
        height: auto;
        padding: 2rem 0;
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(1rem, 4vw, 3.5rem);
    }

    .hero-stats,
    .hero-badge {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }



    .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header h3 {
        font-size: 1.25rem;
    }

    .translate-link {
        top: 22px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .quick-nav-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-stats {
        flex-direction: column;
    }

    .footer-main,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 8px;
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }


    .hero-content {
        margin-top: 60px;
        padding: 0 15px;
    }


    .quick-nav-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .scroll-to-top {
        bottom: 5rem;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .header-top .contact_info {
        margin-top: 38px;
        flex-direction: column;
        gap: 0;
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .translate-link {
        top: 0px;
    }

    .particles {
        display: none;
    }

    .swiper-pagination {
        bottom: 20px !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Header Scrolled State */
.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Group Profile */

.profile-section {
    padding: 60px 0;
}


.profile-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.profile-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-5px);
}

.profile-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-images.arard-images {

    grid-template-columns: repeat(2, 1fr);

}

.arard-images .profile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.highlight-box p span {

    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.applications-section {
    background: #f8fafc;
    padding: 20px 40px 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.applications-section h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.application-marquee {
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.application-marquee marquee img {
    height: 120px;
    width: auto;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.application-marquee marquee img:hover {
    transform: scale(1.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.stats-grid.certificate-grid {

    grid-template-columns: repeat(3, 1fr);

}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--copper), #ffad56);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.stat-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}



@media (max-width: 768px) {
    .profile-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-images.arard-images {

        grid-template-columns: repeat(1, 1fr);

    }

    .stats-grid {

        grid-template-columns: repeat(1, 1fr);


    }

    .stats-grid.certificate-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .applications-section {
        padding: 30px 20px;
    }

    .application-marquee marquee img {
        height: 60px;
        margin: 0 10px;
    }
}

/* contact us */

.contact-container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-header-section {
    background: linear-gradient(135deg, var(--copper), #ffad56);
    color: white;
    padding: 20px 40px;
    text-align: center;
}

.contact-header-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

.contact-header-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-info-section {
    padding: 50px 40px;
    background: #f8f9fa;
}

.office-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.office-title i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ffad56;
}

.office-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-section-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-section-item:hover {
    background: #e9ecef;
}

.contact-section-item i {
    font-size: 1.2rem;
    color: #ffad56;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
}

.contact-section-item-content {
    flex: 1;
}

.contact-section-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.contact-section-item a {
    color: gray;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section-item a:hover {
    color: #ffad56;
    text-decoration: underline;
}

.map-section {
    position: relative;
    background: #34495e;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.alert-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

.alert-section i {
    color: #856404;
    font-size: 1.3rem;
    margin-right: 15px;
}

.alert-section span {
    color: #856404;
    font-weight: 500;
}

.backup-email-section {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 25px 40px;
}

.backup-email-section i {
    color: #0c5460;
    font-size: 1.2rem;
    margin-right: 10px;
}

.backup-email-section p {
    color: #0c5460;
    line-height: 1.6;
    font-size: 0.8rem;
}


.contact-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-image i {
    font-size: 2rem;
    color: #ffad56;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-section,
    .alert-section,
    .backup-email-section {
        padding: 20px;
    }

    .office-card {
        padding: 20px;
    }

    .contact-header-section {
        padding: 30px 20px;
    }

    .contact-header-section h1 {
        font-size: 2rem;
    }

    .map-container {
        min-height: 300px;
    }
}

.quick-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--copper), #ffad56);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--copper), #ffad56);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #ffad5628;
}

.action-btn i {
    margin-right: 8px;
}

/* enquiry-form */

.enquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-section {
    background: linear-gradient(135deg, var(--copper), #ffad56);
    color: white;
    padding: 20px 40px;
    text-align: center;
    position: relative;
}

.header-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

.header-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
}

.header-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.header-icon i {
    font-size: 2rem;
    color: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.form-section {
    padding: 50px 40px;
    background: #f8f9fa;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.form-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-title i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ffad56;
}

.form-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
    color: #ffad56;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #ffad56;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: #f5d7b7b9;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #ffad56 0%, #ffad56 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.image-section {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;

    height: 55%;
}


.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 8%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.features-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.feature-item p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-validation {
    font-size: 0.85rem;
    color: #e74c3c;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-control {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.form-group.success .form-control {
    border-color: #27ae60;
    background: #f2f9f2;
}

.section-content {
    display: flex;
}

.infrastructure-content {
    width: 58%;
    margin-right: 6%;
}

.infrastructure-image {
    width: 35%;
}

.infrastructure-image .profile-image {
    border-radius: 0;
}

.infrastructure-image .profile-image img {
    height: auto;
}

@media (max-width:1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .image-section {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .image-section {
        display: none;
    }

    .header-section p {
        max-width: 100%;
    }

    .form-section {
        padding: 30px 20px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .header-section {
        padding: 30px 20px;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .features-section {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .header-icon {
        display: none;
    }

    .section-content {
        display: flex;
        flex-direction: column;
    }

    .infrastructure-content {
        width: 100%;
        margin-right: 0;
    }

    .infrastructure-image {
        width: 100%;
    }
}

/* Success message styling */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.gallery_pera,
.links_img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0 !important;
}

.links_img a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.links_img a:hover {
    color: var(--copper);

}