/*

TemplateMo 595 3d coverflow

https://templatemo.com/tm-595-3d-coverflow

*/

@charset "utf-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
            background: #F5F1E8; /* Changed from #403328 */
            max-width: 100vw;
        }

        /* Prevent scrolling when preloader is active */
        body.preloader-active {
            overflow: hidden;
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #F5F1E8 0%, #E8E4D9 100%); /* Changed */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .preloader-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            animation: logo-pulse 2s ease-in-out infinite;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .preloader-text {
            color: #1B6B5F; /* Changed from #EFF1B2 */
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            animation: text-fade 1.5s ease-in-out infinite;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Lighter shadow */
        }

        .progress-bar-container {
            width: 250px;
            height: 6px;
            background: rgba(27, 107, 95, 0.2); /* Changed */
            border-radius: 10px;
            overflow: hidden;
            margin-top: 10px;
        }

        .progress-bar {
            width: 0%;
            height: 100%;
            background: #1B6B5F; /* Changed from #813B39 */
            border-radius: 10px;
            transition: width 0.3s ease;
        }

        .progress-text {
            color: #1B6B5F; /* Changed from #EFF1B2 */
            font-size: 1rem;
            margin-top: 10px;
            display: block;
        }

        /* Preloader Animations */
        @keyframes logo-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes text-fade {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes spinner-rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Sections */
        .section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Background Slider */
        .hero-background-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-bg-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-bg-slide.active {
            opacity: 1;
        }

        /* Hero Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(245, 241, 232, 0.6); /* Changed */
            z-index: 2;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #1B6B5F; /* Changed from #EFF1B2 */
            padding: 0 20px;
            max-width: 900px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            color: #1B6B5F; /* Changed */
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.6;
            color: #1B6B5F; /* Changed */
        }

        .hero-cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #1B6B5F; /* Changed from #813B39 */
            color: #F5F1E8; /* Changed */
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(27, 107, 95, 0.4); /* Changed */
        }

        .hero-cta-btn:hover {
            background: #237A6C; /* Lighter teal */
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(27, 107, 95, 0.6); /* Changed */
        }

        /* Hero Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-cta-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            /* Preloader Responsive */
            .preloader-logo {
                width: 100px;
                height: 100px;
            }
            
            .preloader-text {
                font-size: 1.2rem;
            }

            .progress-bar-container {
                width: 200px;
            }

            .progress-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }

            /* Preloader Extra Small Screens */
            .preloader-logo {
                width: 80px;
                height: 80px;
            }
            
            .preloader-text {
                font-size: 1rem;
            }

            .progress-bar-container {
                width: 180px;
                height: 5px;
            }

            .progress-text {
                font-size: 0.85rem;
            }
        }

        #about {
            background: linear-gradient(135deg, #F5F1E8 0%, #ECEADF 100%); /* Changed */
        }

        #services {
            background: #F5F1E8; /* Changed */
        }

        #projects {
            background: linear-gradient(135deg, #F5F1E8 0%, #ECEADF 100%); /* Changed */
        }

        #contact {
            background: linear-gradient(135deg, #E8E4D9 0%, #F5F1E8 100%); /* Changed from #403328 */
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100vw;
            max-width: 100vw;
            height: 80px;
            background: rgba(27, 107, 95, 0.95); /* Changed */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(245, 241, 232, 0.2); /* Changed */
            z-index: 1000;
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(27, 107, 95, 0.98); /* Changed */
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            min-width: 0;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo svg {
            width: 100%;
            height: 100%;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text {
            color: #F5F1E8; /* Changed */
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .main-menu {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 40px;
        }

        /* Hide menu toggle on desktop */
        .menu-toggle {
            display: none;
        }

        .menu-item {
            color: rgba(245, 241, 232, 0.9); /* Changed */
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .menu-item:hover {
            color: #F5F1E8; /* Changed */
            transform: translateY(-2px);
        }

        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #F5F1E8, #E8E4D9); /* Changed */
            transition: width 0.3s ease;
        }

        /* WhatsApp Menu Icon */
        .whatsapp-menu-link {
            display: inline-flex;
            align-items: center;
            padding: 5px 0;
        }

        .whatsapp-menu-link .whatsapp-icon {
            width: 130px;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .whatsapp-menu-link:hover .whatsapp-icon {
            transform: scale(1.15);
        }

        .whatsapp-menu-link::after {
            display: none;
        }

        .menu-item:hover::after {
            width: 100%;
        }

        .menu-item.active {
            color: #F5F1E8; /* Changed */
        }

        .menu-item.active::after {
            width: 100%;
        }

        .menu-item.external::before {
            content: '↗';
            margin-right: 5px;
            font-size: 12px;
            opacity: 0.7;
        }

        /* Dropdown Menu Styles */
        .menu-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle::before {
            content: '▼';
            margin-left: 8px;
            font-size: 10px;
            transition: transform 0.3s ease;
            order: 2;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            flex-direction: row-reverse;
        }

        .menu-dropdown:hover .dropdown-toggle::before,
        .menu-dropdown.dropdown-active .dropdown-toggle::before {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(27, 107, 95, 0.98); /* Changed */
            backdrop-filter: blur(15px);
            border: 1px solid rgba(245, 241, 232, 0.2); /* Changed */
            border-radius: 8px;
            min-width: 200px;
            padding: 8px 0;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 1001;
        }

        .menu-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            color: rgba(245, 241, 232, 0.9); /* Changed */
            text-decoration: none;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(245, 241, 232, 0.1); /* Changed */
            position: relative;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            color: #F5F1E8; /* Changed */
            background: linear-gradient(90deg, rgba(245, 241, 232, 0.1), rgba(232, 228, 217, 0.1)); /* Changed */
            transform: translateX(5px);
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(90deg, #F5F1E8, #E8E4D9); /* Changed */
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover::before {
            transform: scaleY(1);
        }

        /* Mobile dropdown active state */
        .menu-dropdown.dropdown-active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
            flex-shrink: 0;
            width: 33px;
            height: 33px;
            justify-content: center;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #F5F1E8; /* Changed */
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px;
            color: #1B6B5F;
        }

        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-header h2 {
            font-size: 48px;
			margin-top: 60px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-header p {
            font-size: 20px;
            color: rgba(27, 107, 95, 0.8); /* Changed */
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .about-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-display {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-main {
            position: relative;
            width: 350px;
            height: 400px;
            background: white;
            border-radius: 30px;
            border: 3px solid #1B6B5F; /* Changed */
            border-top: 8px solid #1B6B5F; /* Changed */
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .showcase-logo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(27, 107, 95, 0.4); /* Changed */
        }

        .showcase-logo svg {
            width: 70%;
            height: 70%;
        }

        .showcase-title {
            font-size: 32px;
            font-weight: 700;
            color: #1B6B5F; /* Changed */
            margin-bottom: 15px;
            text-align: center;
        }

        .showcase-subtitle {
            font-size: 16px;
            color: rgba(27, 107, 95, 0.7); /* Changed */
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .showcase-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .badge {
            background: rgba(27, 107, 95, 0.1); /* Changed */
            border: 1px solid rgba(27, 107, 95, 0.3); /* Changed */
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            color: #1B6B5F; /* Changed */
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .badge:hover {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border-color: transparent;
            color: #F5F1E8; /* Changed */
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(27, 107, 95, 0.4); /* Changed */
        }

        .badge:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(129, 59, 57, 0.3);
        }

        /* Decorative corner elements */
        .corner-decoration {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(27, 107, 95, 0.4); /* Changed */
        }

        .corner-decoration.top-left {
            top: -20px;
            left: -20px;
            border-right: none;
            border-bottom: none;
            border-radius: 20px 0 0 0;
        }

        .corner-decoration.bottom-right {
            bottom: -20px;
            right: -20px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 20px 0;
        }

        .about-info {
            max-width: calc(100% - 100px);
            margin-right: auto;
            padding-left: 40px;
            direction: rtl;
        }

        .about-info h3 {
            font-size: 36px;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .about-info p {
            font-size: 18px;
            color: #1B6B5F;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
            direction: rtl;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
         
            /* flex-direction: row-reverse; */
            text-align: right;
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border-radius: 50%;
            flex-shrink: 0;
            color: #F5F1E8; /* Changed */
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            color: #F5F1E8; /* Changed */
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(27, 107, 95, 0.5); /* Changed */
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 60px;
            background: white;
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(129, 59, 57, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(27, 107, 95, 0.7); /* Changed */
        }

        /* Services Section */
        .services-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .services-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .services-header h2 {
            font-size: 48px;
            margin-top: 60px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-header p {
            font-size: 20px;
            color: rgba(27, 107, 95, 0.8); /* Changed */
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            direction: rtl;
        }

        .services-info-section {
            direction: rtl;
            text-align: right;
        }

        .services-info-section h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .services-info-section p {
            font-size: 18px;
            color: rgba(27, 107, 95, 0.8); /* Changed */
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .service-item {
            display: flex;
            gap: 18px;
            padding: 22px;
            background: rgba(27, 107, 95, 0.05); /* Changed */
            border-radius: 14px;
            border: 1px solid rgba(27, 107, 95, 0.1); /* Changed */
            transition: all 0.26s ease;
            align-items: center;
        }

        .service-item:hover {
            background: rgba(27, 107, 95, 0.1); /* Changed */
            transform: translateY(-4px);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(27, 107, 95, 0.2), rgba(35, 122, 108, 0.2)); /* Changed */
            border-radius: 12px;
            flex-shrink: 0;
            font-size: 28px;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            fill: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .service-item h3,
        .service-item h4 {
            font-size: 18px;
            margin: 0 0 6px 0;
            color: #1B6B5F; /* Changed from #EFF1B2 */
            line-height: 1.2;
        }

        .service-item p {
            font-size: 15px;
            color: rgba(27, 107, 95, 0.8); /* Changed */
            margin: 0;
            line-height: 1.6;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            direction: rtl;
            text-align: right;
        }

        .benefits-list li {
            padding: 12px 30px 12px 0;
            color: rgba(27, 107, 95, 0.9); /* Changed */
            position: relative;
        }

        .benefits-list li:before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #1B6B5F; /* Changed from #813B39 */
            font-weight: bold;
        }

        /* Services Tabs Styles */
        .services-tabs {
            max-width: 600px;
            margin: 0 auto;
        }

        .services-tabs h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .tabs-container {
            background: rgba(27, 107, 95, 0.05); /* Changed */
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(27, 107, 95, 0.15); /* Changed */
        }

        .tabs-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tab-btn {
            background: rgba(27, 107, 95, 0.1); /* Changed */
            color: rgba(27, 107, 95, 0.8); /* Changed */
            border: 1px solid rgba(27, 107, 95, 0.2); /* Changed */
            padding: 15px 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            text-align: center;
            font-weight: 500;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .tab-btn:hover {
            background: rgba(27, 107, 95, 0.15); /* Changed */
            color: #1B6B5F; /* Changed */
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            color: #F5F1E8; /* Changed */
            border-color: #1B6B5F; /* Changed */
        }

        .tabs-content {
            min-height: 300px;
        }

        .tab-panel {
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }

        .tab-panel.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tab-header {
            text-align: center;
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .tab-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            z-index: 1;
        }

        .tab-header h4 {
            color: #1B6B5F; /* Changed from #EFF1B2 */
            font-size: 22px;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .tab-header p {
            color: rgba(27, 107, 95, 0.9); /* Changed */
            font-size: 16px;
            margin: 0;
            position: relative;
            z-index: 2;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        /* Theme Colors */
        .teal-theme {
            background: linear-gradient(135deg, rgba(27, 107, 95, 0.15) 0%, rgba(27, 107, 95, 0.08) 100%); /* Changed */
            border: 1px solid rgba(27, 107, 95, 0.3); /* Changed */
        }

        .burgundy-theme {
            background: linear-gradient(135deg, rgba(35, 122, 108, 0.15) 0%, rgba(35, 122, 108, 0.08) 100%); /* Changed */
            border: 1px solid rgba(35, 122, 108, 0.3); /* Changed */
        }

        .skyblue-theme {
            background: linear-gradient(135deg, rgba(27, 107, 95, 0.12) 0%, rgba(35, 122, 108, 0.12) 100%); /* Changed */
            border: 1px solid rgba(27, 107, 95, 0.3); /* Changed */
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
            direction: rtl;
            text-align: right;
        }

        .service-list li {
            padding: 15px 30px 15px 0;
            color: rgba(27, 107, 95, 0.95); /* Changed */
            border-bottom: 1px solid rgba(27, 107, 95, 0.1); /* Changed */
            position: relative;
            font-size: 16px;
            line-height: 1.5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li::before {
            content: '●';
            position: absolute;
            right: 0;
            color: #1B6B5F; /* Changed from #813B39 */
            font-weight: bold;
            font-size: 12px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Tab Action Buttons */
        .tab-action {
            text-align: center;
            margin-top: 25px;
            direction: ltr;
        }

        .tab-btn-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            color: #1B6B5F; /* Changed */
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .tab-btn-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Theme Button Colors */
        .teal-btn {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border: 1px solid #1B6B5F; /* Changed */
            color: #F5F1E8; /* Changed */
        }

        .teal-btn:hover {
            background: linear-gradient(135deg, #237A6C 0%, #1B6B5F 100%); /* Changed */
        }

        .burgundy-btn {
            background: linear-gradient(135deg, #237A6C 0%, #1B6B5F 100%); /* Changed */
            border: 1px solid #237A6C; /* Changed */
            color: #F5F1E8; /* Changed */
        }

        .burgundy-btn:hover {
            background: linear-gradient(135deg, #2A8F7E 0%, #237A6C 100%); /* Changed */
            color: #F5F1E8; /* Changed */
        }

        .skyblue-btn {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border: 1px solid #1B6B5F; /* Changed */
            color: #F5F1E8; /* Changed */
        }

        .skyblue-btn:hover {
            background: linear-gradient(135deg, #237A6C 0%, #2A8F7E 100%); /* Changed */
            color: #F5F1E8; /* Changed */
        }



        /* Projects Section */
        .projects-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            color: #EFF1B2;
            width: 100%;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .projects-header h2 {
            font-size: 48px;
            /* margin-top: 60px; */
            margin-bottom: 20px;
            background: linear-gradient(135deg, #403328 0%, #5a4a3d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .projects-header p {
            font-size: 20px;
            color: rgba(64, 51, 40, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .projects-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .projects-visual {
            position: relative;
        }

        .projects-info h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color:#1B6B5F; ;
        }

        .projects-info p {
            font-size: 18px;
            color: rgba(64, 51, 40, 0.8);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .contact-header {
            text-align: center;
			margin-top: 60px;
            margin-bottom: 60px;
        }

        .contact-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 20px;
            color: rgba(27, 107, 95, 0.8); /* Changed */
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-section {
            padding-right: 40px;
        }

        .contact-info-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .contact-info-section p {
            font-size: 16px;
            color: rgba(27, 107, 95, 0.8); /* Changed */
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(27, 107, 95, 0.05); /* Changed */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(27, 107, 95, 0.15); /* Changed */
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(27, 107, 95, 0.1); /* Changed */
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(27, 107, 95, 0.2); /* Changed */
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: #F5F1E8; /* Changed */
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            font-size: 16px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
            margin-bottom: 5px;
        }

        .contact-text p {
            font-size: 14px;
            color: rgba(27, 107, 95, 0.7); /* Changed */
            margin: 0;
        }

        .social-links {
            margin-top: 40px;
        }

        .social-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .social-buttons {
            display: flex;
            gap: 15px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            background: rgba(27, 107, 95, 0.05); /* Changed */
            border: 1px solid rgba(27, 107, 95, 0.2); /* Changed */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-btn:hover {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(27, 107, 95, 0.4); /* Changed */
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            fill: #1B6B5F; /* Changed from #EFF1B2 */
        }

        .social-btn:hover svg {
            fill: #F5F1E8; /* Changed */
        }

        .contact-form-section {
            padding-left: 40px;
        }

        .contact-form {
            background: rgba(27, 107, 95, 0.05); /* Changed */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(27, 107, 95, 0.15); /* Changed */
            border-radius: 20px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: rgba(27, 107, 95, 0.9); /* Changed */
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(27, 107, 95, 0.08); /* Changed */
            border: 1px solid rgba(27, 107, 95, 0.2); /* Changed */
            border-radius: 10px;
            color: #1B6B5F; /* Changed from #EFF1B2 */
            font-size: 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1B6B5F; /* Changed */
            background: rgba(27, 107, 95, 0.12); /* Changed */
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(27, 107, 95, 0.5); /* Changed */
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
            line-height: 1.5;
        }

        .submit-btn {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            color: #F5F1E8; /* Changed */
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(129, 59, 57, 0.5);
        }

        /* Smooth image loading */
        .image-loading {
            background: linear-gradient(45deg, #333, #555);
            position: relative;
        }

        .image-loading::after {
            content: '📷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            opacity: 0.5;
        }

        /* Footer Styles */
        .footer {
            background: #1B6B5F; /* Changed from #403328 */
            color: #F5F1E8;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            border-top: 8px solid #237A6C; /* Changed */
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(35, 122, 108, 0.1) 0%, rgba(35, 122, 108, 0.05) 100%); /* Changed */
            z-index: 1;
        }

        .footer-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
        }

        .footer-logo img {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }

        .footer-logo h1 {
            font-size: 28px;
            font-weight: 700;
            color: #F5F1E8;
            margin: 0;
            text-align: center;
        }

        .footer-logo span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            text-align: center;
        }

        .footer-links a {
            color: #F5F1E8;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #1B6B5F; /* Changed */
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .footer-social a {
            color: #F5F1E8;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: #1B6B5F; /* Changed */
        }

        .footer-bottom {
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom a {
            color: #F5F1E8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #1B6B5F; /* Changed */
        }

        /* Product Footer (for product pages) */
        .product-footer {
            background-color: #1B6B5F; /* Changed */
            color: #F5F1E8;
            padding: 40px 20px;
        }

        .product-footer .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .product-footer .footer-copyright {
            font-size: 0.95rem;
            color: #F5F1E8;
        }

        .product-footer .footer-copyright a {
            color: #E8E4D9; /* Changed */
            text-decoration: none;
            font-weight: 600;
        }

        .product-footer .footer-copyright a:hover {
            text-decoration: underline;
        }

        .product-footer .footer-links {
            display: flex;
            gap: 30px;
        }

        .product-footer .footer-links a {
            color: #F5F1E8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .product-footer .footer-links a:hover {
            color: #E8E4D9; /* Changed */
        }

        /* Footer Copyright (for main page) */
        .footer-copyright {
            color: rgba(245, 241, 232, 0.7); /* Changed */
            font-size: 14px;
        }

        .footer-copyright a {
            color: #E8E4D9; /* Changed from #813B39 */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #F5F1E8; /* Changed from #BF584F */
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #813B39 0%, #BF584F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #403328;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(129, 59, 57, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            /* Hero Section - Tablet */
            .hero {
                background-attachment: scroll;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .title-line {
                font-size: 1.8rem;
            }

            .title-main {
                font-size: 4.5rem;
            }

            .hero-description {
                font-size: 1.3rem;
            }

            .about-main {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-visual {

            .service-item {
                display: flex;
                gap: 14px;
                padding: 16px;
                align-items: flex-start;
            }

            .service-item .service-icon {
                width: 54px;
                height: 54px;
                font-size: 26px;
            }
            }

            .feature-list {
                text-align: left;
                max-width: 500px;
                margin: 0 auto 40px;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 40px;
            }

            /* Contact section responsive */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-section {
                padding-right: 0;
            }

            .contact-form-section {
                padding-left: 0;
            }

            /* Services section responsive */
            .services-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .services-tabs {
                max-width: 100%;
                padding: 0 20px;
            }
            
            .tabs-container {
                padding: 20px;
            }
            
            .tab-btn {
                font-size: 14px;
                padding: 12px 15px;
            }

            /* Projects section responsive */
            .projects-main {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .projects-visual {
                height: 400px;
            }

            .projects-info {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 15px;
                min-width: 0;
                max-width: 100vw;
                flex-direction: row-reverse;
                height: 90px;
                background: rgba(27, 107, 95, 0.98); /* Changed */
            }
            
            .logo-container {
                max-width: calc(100vw - 100px);
                flex-shrink: 1;
            }

            .main-menu {
                display: none;
                position: fixed;
                top: 90px;
                left: 0;
                right: 0;
                width: 100%;
                background: rgba(27, 107, 95, 0.98); /* Changed */
                backdrop-filter: blur(10px);
                flex-direction: column !important;
                padding: 20px;
                gap: 20px;
                border-top: none;
                border-bottom: 1px solid rgba(245, 241, 232, 0.2); /* Changed */
                z-index: 999;
            }

            .main-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            /* WhatsApp icon responsive - mobile */
            .whatsapp-menu-link .whatsapp-icon {
                width: 110px;
            }

            /* Mobile dropdown styles */
            .menu-dropdown {
                width: 100%;
                display: block;
                text-align: center;
            }

            .dropdown-toggle {
                justify-content: center;
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                background: rgba(245, 241, 232, 0.08); /* Changed */
                border: none;
                border-radius: 0;
                margin-top: 0;
                padding: 0;
                opacity: 0;
                visibility: hidden;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease;
            }

            .menu-dropdown.dropdown-active .dropdown-menu {
                opacity: 1 !important;
                visibility: visible !important;
                max-height: 300px !important;
                transform: none !important;
            }

            /* Disable hover on mobile to prevent conflicts */
            @media (hover: hover) {
                .menu-dropdown:hover .dropdown-menu {
                    opacity: 1;
                    visibility: visible;
                    max-height: 300px;
                    transform: none;
                }
            }

            .dropdown-item {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(245, 241, 232, 0.1); /* Changed */
                margin: 0;
                text-align: center;
                display: block;
                width: 100%;
            }

            .dropdown-item:hover {
                transform: none;
                background: rgba(245, 241, 232, 0.1); /* Changed */
            }

            .logo-text {
                font-size: 20px;
            }

            .about-header h2 {
                font-size: 36px;
            }

            .about-info {
                max-width: none;
                margin-right: 0;
                padding-left: 20px;
                padding-right: 20px;
            }

            .about-info h3 {
                font-size: 28px;
            }

            .about-visual {
                height: 400px;
            }

            .showcase-display {
                max-width: 350px;
                height: 400px;
            }

            .showcase-main {
                width: 100%;
                height: 350px;
                padding: 30px;
            }

            .showcase-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }

            .showcase-title {
                font-size: 28px;
            }

            .showcase-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .corner-decoration {
                display: none;
            }

            .stat-number {
                font-size: 36px;
            }

            .contact-content h2 {
                font-size: 36px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer-links {
                gap: 20px;
            }

            /* Hero Section Mobile Styles */
            .hero {
                background-attachment: scroll;
                min-height: 500px;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .title-line {
                font-size: 1.3rem;
                margin-bottom: 0.3rem;
            }

            .title-main {
                font-size: 3rem;
            }

            .hero-description {
                font-size: 1.2rem;
                margin-bottom: 2rem;
                padding: 0 10px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                padding: 0 20px;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                padding: 12px 30px;
                font-size: 1rem;
            }

            .scroll-indicator {
                bottom: 20px;
            }

            .mouse {
                width: 25px;
                height: 45px;
            }

            .arrow span {
                width: 12px;
                height: 12px;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 70px;
                padding: 0 10px;
                flex-direction: row-reverse;
            }

            .logo-container {
                gap: 6px;
                max-width: calc(100vw - 80px);
                flex-shrink: 1;
            }
            
            .main-menu {
                top: 70px;
            }

            .header.scrolled {
                height: 60px;
            }

            .logo {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 18px;
            }

            /* Hero Section - Responsive (handled in main hero section) */
        }

        @media (max-width: 360px) {
            .header {
                padding: 0 8px;
                flex-direction: row-reverse;
            }
            
            .logo-container {
                gap: 4px;
                max-width: calc(100vw - 70px);
            }
            
            .logo-text {
                font-size: 16px;
            }
            
            .logo {
                width: 35px;
                height: 35px;
            }

            /* Hero Section - Responsive (handled in main hero section) */
        }

        @media (max-width: 320px) {
            .header {
                padding: 0 5px;
                flex-direction: row-reverse;
            }
            
            .logo-container {
                max-width: calc(100vw - 60px);
            }

            /* Hero Section - Responsive (handled in main hero section) */

            .about-content,
            .services-content,
            .projects-content,
            .contact-content {
                padding: 20px;
            }

            /* Services section mobile optimization */
            .services-header h2,
            .projects-header h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .services-header p,
            .projects-header p {
                font-size: 16px;
                padding: 0 10px;
            }

            .services-info-section {
                max-width: none;
                margin-right: 0;
                padding-right: 20px;
                padding-left: 20px;
            }

            .services-info-section h3,
            .projects-info h3 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .services-info-section p,
            .projects-info p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .service-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px;
            }

            .service-icon {
                margin: 0 auto;
            }

            .package {
                padding: 25px 20px;
            }

            .package h4 {
                font-size: 20px;
            }

            .package-price {
                font-size: 36px;
            }

            /* Additional contact section mobile optimization for small screens */
            .contact-container {
                gap: 30px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-header p {
                font-size: 16px;
                padding: 0 10px;
            }

            .contact-info-section {
                margin-bottom: 20px;
            }

            .contact-info-section h3 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .contact-info-section > p {
                font-size: 14px;
                padding: 0 10px;
                margin-bottom: 30px;
            }

            .contact-details {
                gap: 15px;
            }

            .contact-item {
                padding: 15px;
                gap: 12px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .contact-text h4 {
                font-size: 14px;
            }

            .contact-text p {
                font-size: 12px;
                word-break: break-word;
            }

            .social-links {
                margin-top: 30px;
            }

            .social-links h4 {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .social-buttons {
                gap: 10px;
            }

            .social-btn {
                width: 40px;
                height: 40px;
            }

            .social-btn svg {
                width: 18px;
                height: 18px;
            }

            .contact-form {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group label {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px;
                font-size: 14px;
                border-radius: 8px;
            }

            .form-group textarea {
                min-height: 120px;
            }

            .submit-btn {
                padding: 12px 30px;
                font-size: 16px;
                border-radius: 25px;
            }
        }

        /* Companies Cards Styles */
        /* Projects/Companies Section */
        #projects {
            background: linear-gradient(135deg, #F5F1E8 0%, #ECEADF 100%); /* Changed */
            padding: 80px 0;
        }

        .projects-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .projects-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1B6B5F; /* Changed */
            margin-bottom: 15px;
        }

        .projects-header p {
            font-size: 1.2rem;
            color: rgba(27, 107, 95, 0.7); /* Changed */
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Companies Grid */
        .companies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Company Card - FIXED HEIGHT */
        .company-card {
            perspective: 1000px;
            height: 500px; /* Fixed height for all cards */
        }

        .company-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .company-card:hover .company-card-inner {
            transform: rotateY(180deg);
        }

        .card-front,
        .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Card Front */
        .card-front {
            background: white;
            display: flex;
            flex-direction: column;
            border-top: 5px solid #1B6B5F; /* Changed */
        }

        .company-image {
            width: 100%;
            height: 280px; /* Fixed height for images */
            overflow: hidden;
            position: relative;
        }

        .company-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .company-card:hover .company-image img {
            transform: scale(1.1);
        }

        .company-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .company-info h3 {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1B6B5F; /* Changed */
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .company-description {
            font-size: 1rem;
            color: rgba(27, 107, 95, 0.7); /* Changed */
            line-height: 1.6;
            margin: 0;
        }

        /* Card Back */
        .card-back {
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }

        .card-back h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #F5F1E8; /* Changed */
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .card-back p {
            font-size: 1.1rem;
            color: #F5F1E8; /* Changed */
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .company-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: white;
            color: #1B6B5F; /* Changed */
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .company-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: #F5F1E8; /* Changed */
        }

        .company-more-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .company-more-btn:hover svg {
            transform: translateX(-5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .companies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            #projects {
                padding: 60px 0;
            }
            
            .projects-header {
                margin-bottom: 40px;
            }
            
            .projects-header h2 {
                font-size: 2rem;
            }
            
            .projects-header p {
                font-size: 1rem;
            }
            
            .companies-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .company-card {
                height: 480px;
            }
            
            .company-image {
                height: 250px;
            }
            
            .company-info h3 {
                font-size: 1.3rem;
            }
            
            .company-description {
                font-size: 0.95rem;
            }
            
            .card-back h3 {
                font-size: 1.5rem;
            }
            
            .card-back p {
                font-size: 1rem;
            }
            
            /* Mobile: Click to flip instead of hover */
            .company-card:hover .company-card-inner {
                transform: none;
            }
            
            .company-card.flipped .company-card-inner {
                transform: rotateY(180deg);
            }
        }

        @media (max-width: 480px) {
            .company-card {
                height: 450px;
            }
            
            .company-image {
                height: 220px;
            }
            
            .company-info {
                padding: 20px;
            }
            
            .card-back h3 {
                font-size: 1.2rem;
            }
            
            .card-back p {
                font-size: 0.9rem;
            }
        }

        .info-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1B6B5F; /* Changed */
            margin-bottom: 15px;
            text-align: center;
        }

        .info-card p {
            font-size: 16px;
            color: rgba(27, 107, 95, 0.7); /* Changed */
            text-align: center;
            line-height: 1.6;
        }

        .services-section {
            background: linear-gradient(135deg, #E8E4D9 0%, #F5F1E8 100%); /* Changed */
            padding: 60px 40px;
            border-radius: 0;
        }

        .services-section .section-title {
            text-align: center;
            font-size: 2rem;
            color: #1B6B5F; /* Changed */
            margin-bottom: 40px;
            font-weight: 600;
        }

        .company-section .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            align-items: stretch;
            max-width: 1100px;
            margin: 0 auto;
        }

        .company-section .service-item {
            background: white;
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(27, 107, 95, 0.2); /* Changed */
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s ease;
            flex: 1 1 300px;
            max-width: 420px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .service-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 10px 30px rgba(27, 107, 95, 0.2); /* Changed */
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .company-section .service-icon {
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 15px auto;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, #1B6B5F 0%, #237A6C 100%); /* Changed */
            padding: 2px;
            position: relative;
            color: #F5F1E8; /* Changed */
        }

        .company-section .service-icon::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: white;
            border-radius: 50%;
            z-index: -1;
        }

        .company-section .service-item h3 {
            font-size: 1.3rem;
            color: #1B6B5F; /* Changed */
            margin-bottom: 10px;
            font-weight: 600;
        }

        .company-section .service-item p {
            font-size: 16px;
            color: rgba(27, 107, 95, 0.7); /* Changed */
            line-height: 1.6;
        }

        /* Mobile Responsiveness for Company Pages */
        @media (max-width: 768px) {
            .company-section {
                padding: 80px 0;
            }
            
            .company-title {
                font-size: 2rem;
            }
            
            .company-subtitle {
                font-size: 1.1rem;
            }
            
            .company-description {
                font-size: 1rem;
                padding: 0 10px;
                direction: rtl;
                text-align: right;
            }
            

            
            .company-info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 40px 20px;
                margin: 40px 0;
            }
            /* For company pages we use flex for services; stack items on small screens */
            .company-section .services-grid {
                flex-direction: column;
                gap: 20px;
                justify-content: center;
                align-items: center;
            }
            
            .services-section {
                padding: 40px 20px;
                margin: 40px 0;
            }
            .company-section .service-item {
                flex: 1 1 100%;
                max-width: none;
                width: 100%;
                margin: 0 auto;
            }
            
            .info-card,
            .service-item {
                padding: 20px;
            }
            
            .info-icon,
            .company-section .service-icon {
                margin: 0 auto 15px auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .company-logo img {
                width: 100px;
                height: 100px;
            }
            
            .services-section .section-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .company-hero-section,
            .company-info-section,
            .company-services-section {
                padding: 60px 0;
            }
            
            .company-title {
                font-size: 1.7rem;
            }
            
            .company-content {
                padding: 20px 15px;
                margin: 0;
            }
            
            .company-info-grid {
                padding: 30px 15px;
                margin: 30px 0;
            }
            
            .services-section {
                padding: 30px 15px;
                margin: 30px 0;
            }
            
            .company-logo img {
                width: 80px;
                height: 80px;
            }
        }

        /* Back to Home Button */
        .back-to-home {
            text-align: center;
            padding: 40px 0;
            background: #F5F1E8; /* Changed */
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(27, 107, 95, 0.1); /* Changed */
            color: #1B6B5F; /* Changed */
            text-decoration: none;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(27, 107, 95, 0.2); /* Changed */
            backdrop-filter: blur(6px);
        }

        .back-btn:hover {
            background: linear-gradient(90deg, rgba(27, 107, 95, 0.15), rgba(35, 122, 108, 0.15)); /* Changed */
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        }

        .back-btn svg {
            transition: transform 0.22s ease;
            color: #1B6B5F; /* Changed */
        }

        .back-btn:hover svg {
            transform: translateX(-3px);
        }

        @media (max-width: 768px) {
            .back-to-home {
                padding: 30px 0;
            }
            
            .back-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }



        @media (max-width: 1200px) {
            .companies-grid {
                max-width: 1200px;
                padding: 0 40px;
                gap: 35px;
            }
        }

        @media (max-width: 1024px) {
            .companies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 0 30px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .companies-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
                max-width: 100%;
            }
            
            .company-info {
                padding: 20px;
            }
            
            .company-info h3 {
                font-size: 20px;
                text-align: center;
            }
        }


        /* ===============================================
           AL-SALAM MILK PAGE - EXACT CSS FOR YOUR HTML
           =============================================== */

        /* Product Page Header */
.product-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(64, 51, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.product-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-direction: row-reverse;
}

.product-logo:hover {
    opacity: 0.8;
}

.product-logo img {
    height: 50px;
    width: auto;
}

.product-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #EFF1B2;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.back-to-home-nav {
    padding: 10px 25px;
    background-color: #813B39;
    color: #403328;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-home-nav:hover {
    background-color: #BF584F;
    transform: translateY(-2px);
}

/* Product Hero Section */
.product-hero-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    min-height: 100vh;
    padding: 100px 5%;
    background-color: #EFF1B2;
    overflow: hidden;
}

.product-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-visual img {
    max-width: 100%;
    width: 550px;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.product-hero-content {
    color: #403328;
}

.product-hero-content .pre-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    color: #BF584F;
}

.product-hero-content .pre-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: #813B39;
}

.product-hero-content .main-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #403328;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #813B39;
    color: #403328;
}

.btn-primary:hover {
    background-color: #BF584F;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #403328;
    border: 2px solid #403328;
}

.btn-secondary:hover {
    background-color: #403328;
    color: #EFF1B2;
    transform: translateY(-3px);
}

/* Quality Section */
.quality-section {
    padding: 100px 20px;
    background-color: #403328;
    color: #EFF1B2;
}

.quality-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.quality-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: #EFF1B2;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid #813B39;
    transition: all 0.3s ease;
}

.quality-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(129, 59, 57, 0.3);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #BF584F;
}

.quality-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #403328;
}

.quality-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
    color: #403328;
}

/* Product Footer */
.product-footer {
    background-color: #403328;
    color: #EFF1B2;
    padding: 40px 20px;
}

.product-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-footer .footer-copyright {
    font-size: 0.95rem;
    color: #EFF1B2;
}

.product-footer .footer-copyright a {
    color: #813B39;
    text-decoration: none;
    font-weight: 600;
}

.product-footer .footer-copyright a:hover {
    text-decoration: underline;
}

.product-footer .footer-links {
    display: flex;
    gap: 30px;
}

.product-footer .footer-links a {
    color: #EFF1B2;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.product-footer .footer-links a:hover {
    color: #813B39;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #813B39;
    color: #403328;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #004D40;
    transform: translateY(-5px);
}

.scroll-to-top span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 15px;
    padding: 40px;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #7f8c8d;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background-color: #f0f0f0;
    color: #2c3e50;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.modal-body {
    color: #7f8c8d;
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 5% 60px;
    }
    
    .product-hero-visual {
        order: -1;
        margin-bottom: 40px;
    }
    
    .product-hero-visual img {
        width: 350px;
    }
    
    .product-hero-content .pre-title::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .product-hero-content .main-title {
        font-size: 4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-header {
        padding: 15px 5%;
    }
    
    .product-logo img {
        height: 40px;
    }
    
    .back-to-home-nav {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .product-hero-section {
        padding: 100px 5% 50px;
    }
    
    .product-hero-visual img {
        width: 280px;
    }
    
    .product-hero-content .main-title {
        font-size: 3rem;
    }
    
    .quality-section {
        padding: 60px 20px;
    }
    
    .quality-section .section-title {
        font-size: 2rem;
    }
    
    .quality-item {
        padding: 25px 20px;
    }
    
    .quality-icon {
        font-size: 2.5rem;
    }
    
    .quality-item h3 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .product-hero-content .main-title {
        font-size: 2.5rem;
    }
    
    .product-hero-visual img {
        width: 220px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .quality-section .section-title {
        font-size: 1.8rem;
    }
    
    .product-footer .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
           WHATSAPP FLOATING BUTTON - COMPLETELY FIXED
           ======================================== */

.whatsapp-float-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
}

.whatsapp-float-btn svg {
    width: 35px !important;
    height: 35px !important;
    fill: white !important;
}

.whatsapp-float-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: rgba(37, 211, 102, 0.3) !important;
    animation: whatsapp-pulse 2s infinite !important;
    z-index: -1 !important;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Tooltip on Hover */
.whatsapp-float-btn::after {
    content: attr(title) !important;
    position: absolute !important;
    right: 70px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #25D366 !important;
    color: white !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.whatsapp-float-btn:hover::after {
    opacity: 1 !important;
    visibility: visible !important;
    right: 75px !important;
}

/* Media Queries for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 55px !important;
        height: 55px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .whatsapp-float-btn svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    /* Hide tooltip on mobile */
    .whatsapp-float-btn::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-btn {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-float-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* If scroll-to-top button exists, adjust position */
.scroll-to-top.show ~ .whatsapp-float-btn {
    bottom: 100px !important;
}

@media (max-width: 768px) {
    .scroll-to-top.show ~ .whatsapp-float-btn {
        bottom: 90px !important;
    }
}


