	:root {
      		--primary: #e74c3c;
     		 --primary-dark: #c0392b;
      		--light-bg: #f8f9fa;
      		--text-dark: #2c3e50;
      		--placeholder: #ecf0f1;
    		}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
	
	 body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: white;
    }
     
        .container {
            max-width: 1200px;
            margin: 0px auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
	    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  	    transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

	.header-scrolled {
	  background: rgba(192, 57, 43, 0.95) !important;
	  backdrop-filter: blur(10px) !important;
	}

/* Ensure mobile menu has proper z-index */
	.nav-links.show {
	  z-index: 1000;
	}
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 180px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon img {
            width: 200px;
            height: 100px;
            object-fit: contain;
	  /*  background-color: white; */
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ffffff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: white;
	    width: max-content;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            background: rgba(231, 76, 60, 0.2);
            transform: translateY(-2px);
        }
	.nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav h1 {
      font-size: 1.8rem;
      font-weight: 700;
    }

    .nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .nav ul li a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      transition: 0.3s;
    }

    .nav ul li a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .section {
      padding: 15px 0 60px;
    }

        /* Hero Section */
        .hero {
            background: linear-gradient(-9deg, #9b231521 10%, #c0392bab 70%);
            padding: 50px 0 80px;
            padding-bottom: 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 1;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h2 {
            font-size: 2.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: 2rem;
            opacity: 0.9;
        }

	.btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      margin-top: 20px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn:hover {
      background: var(--primary-dark);
    }


        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
	    position: relative;
 	    z-index: 1;
	    pointer-events: auto;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
        }

        /* Mission & Vision */
        .mission-vision {
            padding: 15px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .mission-card, .vision-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
        }

        .mission-card h3, .vision-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

	.image-placeholder {
      width: 100%;
      height: 180px;
      background: var(--placeholder);
      border: 2px dashed #bdc3c7;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7f8c8d;
      font-size: 1rem;
      margin-bottom: 1rem;
    }

        /* Services */
        .services {
            padding: 15px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: 2c3e50;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scale(1.2);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            position: relative;
            z-index: 1;
        }

        /* Industries */
        .industries {
		padding: 15px 0;
            background: white;
        }

        .industries-grid {
    	    display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .industry-card {
	    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            }
	
	    .industry-card::before {
	    content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: transform 0.3s ease;
    	}

       
	.industry-card:hover::before {
            transform: scale(1.2);
        }

        .industry-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

       	.industry-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

       	.industry-card p {
            position: relative;
            z-index: 1;
	}

        /* Projects */
        .projects {
            padding: 15px 0;
            background: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
        }

        .project-card h4 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .project-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            margin: 1rem 0;
        }

	.leadership {
            background: #f8f9fa;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .leader-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .leader-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border: 4px solid #c23b2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #3498db;
            position: relative;
            overflow: hidden;
        }

        .leader-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .leader-photo::before {
            content: '👤';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
        }

        .leader-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .leader-name {
            font-size: 1.1rem;
            color: #c23a2c;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .leader-bio {
            text-align: left;
            line-height: 1.6;
            color: #555;
        }

        .photo-placeholder-text {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: #7f8c8d;
            background: white;
            padding: 2px 8px;
            border-radius: 10px;
            border: 1px solid #bdc3c7;
            white-space: nowrap;
        }

        /* Leadership 
        .leadership {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .leader-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .leader-card:hover {
            transform: translateY(-10px);
        }

        .leader-card h4 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .leader-card .position {
            color: #e74c3c;
            font-weight: 600;
            margin-bottom: 1.5rem;
        } */

        /* Patents */
        .patents {
            padding: 15px 0;
            background: linear-gradient(135deg, #ec7063 0%, #e74c3c 100%);
            color: white;
        }

        .patent-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            margin: 1rem 0;
        }

    /* Timeline */
    .timeline {
      position: relative;
      background: var(--light-bg);
      padding: 15px 0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--primary);
      transform: translateX(-50%);
    }

    .timeline-entry {
      width: 45%;
      position: relative;
      margin: 2rem 0;
    }

    .timeline-entry.left {
      left: 0;
    }

    .timeline-entry.right {
      left: 55%;
    }

    .timeline-box {
      background: white;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .timeline-year {
      color: var(--primary);
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      .timeline::before { left: 20px; }
      .timeline-entry { width: 100% !important; left: 0 !important; padding-left: 40px; }
    }
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        /* Responsive 
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
	*/

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 81px;
    right: 20px;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
   
.nav ul {
    list-style: none;
    display: none;
    gap: 1.5rem;
}
  .nav-links.show {
    display: flex;
  }

  .mobile-nav-toggle {
    display: flex;
  }
}
.hero-what-we-do {
  background: white;
  padding: 100px 0 60px;
}
	    .hero-what-we-do {
  background: #f8f9fa;
  padding: 100px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: center;
}

.hero-card {
  background: #de4838;
  color: #FFF;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  flex: 1;
}

.hero-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.gallery-section {
  background: #f8f9fa;
  padding: 15px 20px;
  text-align: center;
}
.gallery-swiper {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 60px;
}

.gallery-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.purpose-section {
  background: #f8f9fa;
  padding: 15px 20px;
  text-align: center;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.purpose-card {
  background: #c23d2f;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
  text-align: left;
}

.purpose-card:hover {
  transform: translateY(-5px);
}

.purpose-card .icon {
  font-size: 2.5rem;
  margin-bottom: -4rem;
  color:#ffa555 ;
}

.purpose-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0rem;
  color: whitesmoke;
  text-align: center;
}

.purpose-card p {
  color: whitesmoke;
  line-height: 1.6;
  font-size: 1rem;
}
.contact-section {
  background: #f8f9fa;
  padding: 15px 20px;
  text-align: center;
}


