   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #c9a961;
            --accent-color: #34495e;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --white: #ffffff;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        ul, ol{
            padding:0;
            margin:0;
        }
        /* Header & Navigation */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0rem;
        }
        #navLinks{
            margin-bottom: 0px;
        }

        .logo {
            max-width: 300px;
        }
        .logo img,  .footer-logo img {
            width: 100%;
        }

        .logo span {
            color: var(--secondary-color);
        }
       .footer-logo{
             max-width: 300px;
          }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            height: 90vh;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 73, 94, 0.9)), 
                        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero .tagline {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            font-weight: 500;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: var(--secondary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #b89651;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--secondary-color), #d4b068);
            padding: 4rem 2rem;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            color: var(--white);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .stat-number::after {
            content: '+';
        }

        .stat-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.95;
        }

        /* Value Propositions */
        .value-props {
            background: var(--white);
            padding: 4rem 2rem;
        }

        .value-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
        }

        .value-card h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }

        .value-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Introduction Section */
        .introduction {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .intro-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-content {
            padding-right: 2rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }

        .intro-text {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .intro-highlights {
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .check-icon {
            background: var(--secondary-color);
            color: var(--white);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .intro-images {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1rem;
            position: relative;
        }

        .intro-image-main {
            grid-row: 1 / 3;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .intro-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .intro-image-main:hover img {
            transform: scale(1.05);
        }

        .intro-image-secondary {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin-top: 2rem;
        }

        .intro-image-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .intro-image-secondary:hover img {
            transform: scale(1.05);
        }

        /* Why Choose Us */
        .why-choose-us {
            background: var(--light-bg);
            padding: 5rem 2rem;
        }

        .why-choose-us .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .features-grid {
            /*max-width: 1200px;*/
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
            position: relative;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 10px;
            overflow: hidden;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Services Overview */
        .services-overview {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-overview .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            position: relative;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Call to Action */
        .cta-section2 {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            padding: 5rem 2rem;
            text-align: center;
        }

        .cta-section2 h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section2 p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            /*max-width: 1200px;*/
            /*margin: 0 auto;*/
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* WhatsApp Chat Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-button svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .whatsapp-chat {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            z-index: 998;
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .whatsapp-chat.active {
            display: flex;
            animation: slideUp 0.3s ease-out;
        }

        .whatsapp-header {
            background: #075E54;
            color: white;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .whatsapp-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #075E54;
        }

        .whatsapp-info h4 {
            margin: 0;
            font-size: 1.1rem;
        }

        .whatsapp-info p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .whatsapp-close {
            margin-left: auto;
            cursor: pointer;
            font-size: 1.5rem;
            opacity: 0.8;
        }

        .whatsapp-close:hover {
            opacity: 1;
        }

        .whatsapp-body {
            padding: 1.5rem;
            background: #ECE5DD;
            min-height: 150px;
        }

        .whatsapp-message {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .whatsapp-message p {
            margin: 0 0 0.5rem 0;
            color: #333;
            line-height: 1.5;
        }

        .whatsapp-time {
            font-size: 0.75rem;
            color: #999;
            text-align: right;
        }

        .whatsapp-footer {
            padding: 1rem;
            background: white;
            border-top: 1px solid #ddd;
        }

        .whatsapp-input {
            display: flex;
            align-items: center;
            background: #F0F0F0;
            border-radius: 25px;
            padding: 0.5rem 1rem;
        }

        .whatsapp-input input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.95rem;
            color: #333;
        }

        .whatsapp-send {
            background: #25D366;
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            margin-left: 0.5rem;
            transition: background 0.3s;
        }

        .whatsapp-send:hover {
            background: #128C7E;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            }
            50% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .whatsapp-chat {
                width: 100%;
                max-width: 350px;
                right: 10px;
                left: 10px;
                margin: 0 auto;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
                right: 20px;
                bottom: 20px;
            }

            .intro-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .intro-content {
                padding-right: 0;
            }

            .intro-images {
                grid-template-columns: 1fr;
            }

            .intro-image-main {
                grid-row: auto;
                height: 300px;
            }

            .intro-image-secondary {
                margin-top: 0;
                height: 200px;
            }
            .value-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }


                .page-hero {
            margin-top: 80px;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }



        /**********About us************
                /* Who We Are Section */
        .who-we-are {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .about-content p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-content .highlight {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .about-image {
            position: relative;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid var(--secondary-color);
            z-index: 1;
            pointer-events: none;
        }

        /* Vision & Mission */
        .vision-mission {
            background: var(--light-bg);
            padding: 6rem 2rem;
        }

        /*.vm-container {*/
        /*    max-width: 1200px;*/
        /*    margin: 0 auto;*/
        /*}*/

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .vm-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), #d4b068);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .vm-card h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .vm-card p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.9;
        }

        /* Philosophy Section */
        .philosophy {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .philosophy-content {
            text-align: center;
        }

        .philosophy-content h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .philosophy-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .philosophy-text {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 2;
            max-width: 900px;
            margin: 2rem auto;
            padding: 2.5rem;
            background: var(--light-bg);
            border-radius: 15px;
            border-left: 5px solid var(--secondary-color);
        }

        .philosophy-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .value-item {
            text-align: center;
            padding: 2rem;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: var(--white);
            transition: transform 0.3s;
        }

        .value-item:hover .value-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .value-item h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .value-item p {
            color: var(--text-light);
            font-size: 1rem;
        }

        /* The Story Behind VIGA */
        .viga-story {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            padding: 6rem 2rem;
        }

        .story-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .story-container h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .story-container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .story-subtitle {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 2.5rem;
            font-weight: 500;
        }

        .story-content {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .story-content p {
            font-size: 1.15rem;
            line-height: 2;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .tribute {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.3);
        }

        .tribute p {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--secondary-color);
            text-align: center;
        }

        /* Team Values */
        .team-values {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        /*.team-container {*/
        /*    max-width: 1200px;*/
        /*    margin: 0 auto;*/
        /*}*/

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .team-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .team-card-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .team-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .team-card p {
            color: var(--text-light);
            line-height: 1.8;
        }


        /**********Service********/
                /* Services Introduction */
        .services-intro {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .services-intro h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .services-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .services-intro p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 2;
            max-width: 900px;
            margin: 2rem auto;
        }

        /* Service Section */
        /*.service-section {*/
        /*    padding: 5rem 2rem;*/
        /*    max-width: 1400px;*/
        /*    margin: 0 auto;*/
        /*}*/

        .service-section:nth-child(even) {
            background: var(--light-bg);
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .service-image {
            position: relative;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid var(--secondary-color);
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-image:hover::before {
            opacity: 1;
        }

        .service-details {
            padding: 2rem;
        }

        .service-number {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .service-details h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .service-details h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .service-details p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .features-list li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            font-size: 1.1rem;
            color: var(--text-dark);
            border-bottom: 1px solid #eee;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.5rem;
            width: 30px;
            height: 30px;
            background: rgba(201, 169, 97, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Service Stats */
        .service-stats {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 4rem 2rem;
          
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
            color: var(--white);
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }


        /*************Contact Us**********/
                /* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
          
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
        }

        /* Contact Info */
        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .contact-info p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.9;
            margin: 2rem 0 3rem;
        }

        .info-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border-left: 5px solid var(--secondary-color);
            transition: all 0.3s;
        }

        .info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .info-card h3 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .info-icon {
            font-size: 1.8rem;
        }

        .info-card p {
            color: var(--text-dark);
            margin: 0.5rem 0;
            font-size: 1.1rem;
        }

        .info-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .info-card a:hover {
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Locations Section */
        .locations-section {
            padding: 5rem 2rem;
            background: var(--light-bg);
        }

        .locations-container {
            /*max-width: 1400px;*/
            /*margin: 0 auto;*/
            text-align: center;
        }

        .locations-container h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .locations-container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .locations-container > p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin: 2rem auto 4rem;
            max-width: 700px;
        }

        .locations-grid {
           
            margin-top: 3rem;
        }

        .location-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: left;
            height:100%;
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
.countryLocation{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
        .location-icon {
            max-width: 50px;
                border: 1px solid #f1f1f1;
        }
     .location-icon img{
        width: 100%;
            height: 35px;
     }
        .location-card h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 0rem;
        }

        .location-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .location-status {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Map Section */
        .map-section {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .map-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .map-container h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 3rem;
        }

        .map-placeholder {
            width: 100%;
            height: 450px;
            background: var(--light-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-light);
            border: 2px dashed #ddd;
        }

        /***********Our Process***********/
          /* Process Steps */
        .process-steps {
            padding: 3rem 2rem;
            background: var(--light-bg);
        }

        .process-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .step-card {
            display: grid;
            grid-template-columns: 100px 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 5rem;
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .step-card:last-child {
            margin-bottom: 0;
        }

        .step-card.reverse {
            grid-template-columns: 100px 1.5fr 1fr;
        }

        .step-card.reverse .step-icon {
            order: 3;
        }

        .step-card.reverse .step-content {
            order: 2;
        }

        .step-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: center;
            opacity: 0.3;
            align-self: start;
        }

        .step-icon {
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .step-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .step-card:hover .step-icon img {
            transform: scale(1.05);
        }

        .step-content h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .step-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .step-features {
            list-style: none;
        }

        .step-features li {
            padding: 0.6rem 0;
            padding-left: 1.8rem;
            position: relative;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .step-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Why Process Works */
        .why-process {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .why-container h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .why-container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .why-card {
            background: var(--light-bg);
            padding: 0.5rem;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .why-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .why-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .why-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 5rem 2rem;
            background: var(--light-bg);
            text-align: center;
        }

        .timeline-section h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .timeline-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .timeline-intro {
            font-size: 1.15rem;
            color: var(--text-light);
            margin: 2rem auto 4rem;
            max-width: 700px;
        }

        .timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: var(--secondary-color);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
            text-align: right;
            padding-right: calc(50% + 40px);
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            text-align: left;
            padding-left: calc(50% + 40px);
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--secondary-color);
            border: 4px solid var(--white);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--light-bg);
        }

        .timeline-content {
            background: var(--white);
            padding: 1.5rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 350px;
        }

        .timeline-content h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: var(--text-light);
            line-height: 1.7;
        }
     /* Process Introduction */
        .process-intro {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .process-intro h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .process-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .process-intro p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 2;
            max-width: 900px;
            margin: 2rem auto;
        }
/*******Product*************/
  /* Category Filter */
        .category-filter {
            background: var(--white);
            padding: 2rem 0rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 80px;
            z-index: 999;
        }

        .filter-container {
            /*max-width: 1400px;*/
            /*margin: 0 auto;*/
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scrollbar-width: thin;
            padding: 0.5rem 0;
        }

        .filter-container::-webkit-scrollbar {
            height: 6px;
        }

        .filter-container::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 3px;
        }

        .filter-btn {
            padding: 0.8rem 1.8rem;
            background: var(--light-bg);
            border: 2px solid transparent;
            border-radius: 25px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 600;
            transition: all 0.3s;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--secondary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Products Introduction */
        .products-intro {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .products-intro h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .products-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .products-intro p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 2;
            max-width: 900px;
            margin: 2rem auto;
        }

        /* Product Category Section */
        .product-category {
            padding: 5rem 0rem;
    
        }

        .product-category:nth-child(even) {
            background: var(--light-bg);
        }

        .category-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .category-header h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .category-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        .category-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 1.5rem auto 0;
            line-height: 1.8;
        }

        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .product-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .product-info {
            padding: 2rem;
        }

        .product-info h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .product-info p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .product-features {
            font-size: 0.95rem;
            color: var(--text-dark);
            border-top: 1px solid #eee;
            padding-top: 1rem;
            line-height: 1.8;
        }

        .product-features strong {
            color: var(--primary-color);
        }

        /* Feature Section with Image */
        .feature-section {
            padding: 5rem 0rem;

        }

        .feature-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .feature-image {
            position: relative;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .feature-image:hover img {
            transform: scale(1.05);
        }

        .feature-details h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .feature-details h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .feature-details p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .features-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.3rem;
        }
