 :root {
      --primary: #1F106C;
      --secondary: #dc8924;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --border-radius: 5px;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Header Styles */
    header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .header-top {
      background-color: var(--primary);
      color: white;
      padding: 8px 0;
      font-size: 14px;
    }
    
    .header-top-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .contact-info {
      display: flex;
      gap: 20px;
    }
    
    .contact-info a {
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }
    
    .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo span {
      color: var(--secondary);
    }
    
    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    
    nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s;
    }
    
    nav a:hover {
      color: var(--secondary);
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: width 0.3s;
    }
    
    nav a:hover::after {
      width: 100%;
    }
    
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 24px;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('../img/home-slider.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 120px 0;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .hero p {
      font-size: 20px;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--secondary);
      color: white;
      border: none;
      border-radius: var(--border-radius);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
    }
    
    .btn:hover {
      background-color: orangered;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid white;
      margin-left: 0px;
    }
    
    .btn-outline:hover {
      background-color: white;
      color: var(--primary);
    }
    
    /* About Section */
    .section {
      padding: 80px 0;
    }
    
    .section-header {
      text-align: center;

      margin-bottom: 60px;
    }
    
    .section-title {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--secondary);
    }
    
    .section-subtitle {
      color: var(--gray);
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .about-img {
      flex: 1;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: var(--border-radius);
      overflow: hidden;
    }
    
    .about-img img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-text h3 {
      font-size: 28px;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .about-text p {
      margin-bottom: 15px;
      color: var(--gray);
    }
    
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    
    .stat-card {
      background-color: white;
      padding: 20px;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s;
    }
    
    .stat-card:hover {
      transform: translateY(-5px);
    }
    
    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 10px;
    }
    
    .stat-title {
      font-size: 14px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Services Section */
    .services {
      background-color: #f1f5f9;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background-color: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .service-img {
      height: 200px;
      overflow: hidden;
    }
    
    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .service-card:hover .service-img img {
      transform: scale(1.1);
    }
    
    .service-content {
      padding: 25px;
    }
    
    .service-content h3 {
      font-size: 20px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .service-content p {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    .read-more {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
    }
    
    /* Materials Section Responsive CSS */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Tablet adjustments */
@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .materials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Optional: make cards a bit more compact on mobile */
  .material-card {
    padding: 15px;
  }
  
  .material-card h3 {
    font-size: 18px;
    margin: 10px 0 8px;
  }
}
    
    .material-card {
      background-color: white;
      border-radius: var(--border-radius);
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .material-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--primary);
      transition: transform 0.5s;
      transform: scaleY(0);
      transform-origin: bottom;
      z-index: -1;
    }
    
    .material-card:hover::before {
      transform: scaleY(1);
    }
    
    .material-card:hover {
      color: white;
    }
    
    .material-card:hover h3 {
      color: white;
    }
    
    .material-card h3 {
      font-size: 20px;
      color: var(--primary);
      margin: 15px 0 10px;
      transition: color 0.3s;
    }
    
    .material-icon {
      font-size: 40px;
      color: var(--secondary);
      background-color: rgba(230, 57, 70, 0.1);
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 15px;
    }
    
    /* CTA Section */
    .cta {
      background: linear-gradient(135deg, var(--primary), #051937);
      color: white;
      text-align: center;
      padding: 80px 0;
    }
    
    .cta h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .cta p {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }
    
    /* Testimonials */
    .testimonials {
      background-color: #f1f5f9;
    }
    
    .testimonial-slider {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    
    .testimonial-card {
      background-color: white;
      border-radius: var(--border-radius);
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin: 20px auto;
      max-width: 700px;
      position: relative;
    }
    
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -30px;
      left: 30px;
      font-size: 120px;
      color: rgba(230, 57, 70, 0.1);
      font-family: Georgia, serif;
    }
    
    .testimonial-text {
      font-style: italic;
      color: var(--gray);
      margin-bottom: 20px;
      font-size: 18px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }
    
    .author-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
    }
    
    .author-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .author-info h4 {
      font-size: 18px;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .author-info p {
      font-size: 14px;
      color: var(--gray);
    }
    
    /* Contact Section */
    .contact-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px;
    }
    
    .contact-info-list {
      list-style: none;
    }
    
    .contact-info-item {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background-color: rgba(10, 92, 138, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 20px;
      flex-shrink: 0;
    }
    
    .contact-text h4 {
      font-size: 18px;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .contact-text p, .contact-text a {
      color: var(--gray);
      text-decoration: none;
    }
    
    .contact-form {
      background-color: white;
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 5px;
      color: var(--dark);
      font-weight: 500;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: var(--border-radius);
      font-size: 16px;
      transition: border-color 0.3s;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
    }
    
    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }
    
    .btn-block {
      width: 100%;
    }
    
    /* Footer */
    footer {
      background-color: #051937;
      color: white;
      padding-top: 60px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-col h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }
    
    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--secondary);
    }
    
    .footer-col p {
      margin-bottom: 15px;
      opacity: 0.8;
      font-size: 14px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: white;
      opacity: 0.8;
      text-decoration: none;
      transition: opacity 0.3s;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .footer-links a:hover {
      opacity: 1;
      color: var(--secondary);
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .social-link:hover {
      background-color: var(--secondary);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      padding: 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      opacity: 0.8;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
      }
      
      .contact-content {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .header-top-content {
        flex-direction: column;
        gap: 10px;
      }
      
      .mobile-toggle {
        display: block;
		  margin-right: 10px;
		  color: var(--secondary);
      }
      
      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s;
        padding: 80px 20px 20px;
      }
      
      nav.active {
        right: 0;
      }
      
      nav ul {
        flex-direction: column;
        gap: 15px;
      }
      
      .hero h1 {
        font-size: 36px;
      }
      
      .hero p {
        font-size: 16px;
      }
      
      .about-stats {
        grid-template-columns: 1fr;
      }
    }
	  
	  
	.logo {
  display: block;
  max-width: 400px;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo {
    max-width: 250px; /* Smaller on mobile */
	margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 220px; /* Even smaller on very small screens */
	  margin-left: 10px;
  }
}  
	  


/* Mobile menu close button */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  display: none;
  padding: 5px;
  z-index: 10;
}

/* When the mobile menu is active, show the close button */
nav.active .close-menu {
  display: block;
}

/* Hover effect */
.close-menu:hover {
  color: var(--secondary);
}

/* Adjust the nav padding to accommodate the close button */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s;
    padding: 70px 20px 20px; /* Increased top padding to make room for close button */
  }
}
	