:root {
  --primary: #0077b6;     /* Bold Aqua Blue */
  --secondary: #2ca58d;   /* Fresh Leafy Green */
  --dark: #0a2540;        /* Deep Navy */
  --light: #f1faff;       /* Gentle Sky Blue (background tone) */
  --accent: #004e64;      /* Oceanic Teal (details, hover states) */
}





        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(248, 250, 252, 0.97), rgba(248, 250, 252, 0.97)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/><path d="M0,100 Q50,60 100,100 T200,100" fill="none" stroke="%23e2e8f0" stroke-width="0.3"/></svg>');
            background-size: 300px;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .hero-bg {
  background: linear-gradient(150deg, var(--primary) 20%, var(--dark) 80%);
  opacity: 0.94; /* This will apply to the whole element, including text! */
}


        .service-card {
            transition: all 0.4s ease;
            border-bottom: 3px solid transparent;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            background: white;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary);
            opacity: 0.05;
            transition: height 0.4s ease;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid var(--secondary);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .stats-bg {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .stats-bg:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
        }
        
        .nav-hidden {
            transform: translateY(-100%);
        }
        
        .nav-visible {
            transform: translateY(0);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        }
        
        .mobile-menu.active {
            max-height: 500px;
        }
        
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }
        
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .project-counter {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .counter-text {
            font-size: 1.1rem;
            color: white;
            font-weight: 500;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
            padding-bottom: 0.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: 2px solid var(--primary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--secondary);
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .btn-primary:hover {
            background: #08482c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 95, 56, 0.2);
            color: white;
        }
        
        .btn-primary:hover:before {
            width: 100%;
        }
        
        .btn-secondary {
            background: var(--secondary);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.5s ease-in-out;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: 2px solid var(--secondary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-secondary:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary);
            transition: width 0.5s ease-out;
            z-index: -1;
        }
        
        
        .btn-secondary:hover {
  background: #3FAF78; /* soothing green from the logo */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 120, 182, 0.2); /* soft blue glow */
  color: #ffffff;
}

        
        .btn-secondary:hover:before {
            width: 100%;
        }
        
        .stats-card {
            transition: all 0.4s ease;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            background-color:#dfe4ea;
        }
        
        .stats-card:hover {
            transform: scale(1.03);
        }
        
        .nav-link {
            position: relative;
            padding: 0.5rem 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
        }
        
        .fade-in {
            animation: fadeIn 0.8s forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-in-left {
            animation: slideInLeft 0.8s forwards;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-in-right {
            animation: slideInRight 0.8s forwards;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }
        .stagger-delay-4 { animation-delay: 0.4s; }
        .stagger-delay-5 { animation-delay: 0.5s; }
        
       .pattern-bg {
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(148, 75, 37, 0.05) 0%, transparent 40%), /* --primary */
    radial-gradient(circle at 90% 80%, rgba(244, 201, 93, 0.08) 0%, transparent 25%); /* --secondary */
}

        
        .accent-border {
            position: relative;
        }
        
        .accent-border:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--secondary);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 120px;
            color: var(--primary);
            opacity: 0.1;
            font-family: serif;
        }
        
        .map-container {
            height: 100%;
            min-height: 300px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(to right, rgba(26, 46, 53, 0.8) 0%, transparent 50%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a2e35"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23d4af37" stroke-width="0.5" fill="none"/></svg>');
            background-size: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            color: white;
        }
        
        .contact-info {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            height: 100%;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(10, 95, 56, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .contact-icon i {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .info-table {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            border-collapse: collapse;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
        }
        .info-table.visible {
            opacity: 1;
            transform: none;
        }
        .info-table td {
            vertical-align: top;
            padding: 0 16px 8px 0;
            font-size: 1.35rem;
        }
        .label {
            font-weight: bold;
            padding-right: 24px;
            white-space: nowrap;
        }
        .company-name {
            text-align: center;
            font-weight: bold;
            font-size: 1.5rem;
            line-height: 1.1;
        }
        .address {
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.2;
        }
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: none;
        }
        .hero-wave {
  background: url("low-poly-grid-haikei.svg") no-repeat center;
  background-size: cover;
  width: 100%;
   height: auto;
  aspect-ratio: 16 / 1.5;
}
/* Base navbar style */
#navbar {
  transition: transform 0.3s ease-in-out;
}

/* Hide navbar on scroll down */
.nav-hidden {
  transform: translateY(-100%);
}

/* Show navbar on scroll up */
.nav-visible {
  transform: translateY(0);
}

a:active {
  color: var(--primary);
  background-color: var(--secondary);
  text-decoration: underline;
}

 .hover-effect {
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    background-color: transparent;
  }

  .hover-effect:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .hovering {
   transition: all 0.3s ease;
  border: 2px solid transparent;
}
.hovering:hover {
 border: 2px solid #0ea5e9;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.4);
  transform: scale(1.02);

}
.stats-effect{
  transition: all 0.3s ease;
  opacity: 0.9;
}
.stats-effect:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

