:root {
      --primary: #6e0753;
      --secondary: #60a3bc;
      --accent: #13ebe7;
      --light: #f5f6fa;
      --dark: #1e272e;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
       font-family: 'Playfair Display', serif;
      overflow-x: hidden;
      background-color: var(--light);
      color:  var(--dark);
    }
    
    /* Preloader */
    .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    .preloader .logo {
      width: 150px;
      height: 150px;
      animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(0.8); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 1; }
      100% { transform: scale(0.8); opacity: 0.5; }
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
    }
    
    header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
    }
    
    .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 30px;
      position: relative;
    }
    
    .nav-links a {
      text-decoration: none;
      color:  var(--dark);
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 5px 0;
    }
    
    .nav-links a:hover {
      color: var(--accent);
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .hamburger {
      display: none;
      cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(10, 61, 98, 0.8), rgba(10, 61, 98, 0.8)), url('images.unsplash.com/photo-1503387762-592deb58ef4e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1489&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 20px;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s forwards 0.5s;
    }
    
    .hero p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s forwards 0.8s;
    }
    
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* About Section */
    .about {
      padding: 100px 50px;
      background: white;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent);
    }
    
    .about-content {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }
    
    .stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-top: 50px;
    }
    
    .stat-item {
      text-align: center;
      margin: 20px;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 10px;
    }
    
    .stat-text {
      font-size: 1.2rem;
      color:  var(--dark);
    }
    
    /* Services Section */
    .services {
      padding: 100px 50px;
      background: #f9f9f9;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
  
	  
	      .service-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      padding: 30px;
      text-align: center;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .service-icon {
      font-size: 3rem;
      color: var(--accent);
      margin-bottom: 20px;
    }
    
    .service-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .service-desc {
      color:  var(--dark);
      line-height: 1.6;
    }
    
    /* Projects Section */
    .projects {
      padding: 100px 50px;
      background: white;
    }
    
    .filter-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    
    .filter-btn {
      background: none;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 8px 20px;
      margin: 5px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active, .filter-btn:hover {
      background: var(--primary);
      color: white;
    }
    
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .project-card {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 250px;
	  transition: all 0.3s ease;
    }
    
    .project-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 61, 98, 0.9);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .project-card:hover .project-overlay {
      opacity: 1;
    }
    
    .project-card:hover .project-img {
      transform: scale(1.1);
    }
    
    .project-title {
      color: white;
      font-size: 1.5rem;
      margin-bottom: 10px;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }
    
    .project-category {
      color: var(--accent);
      font-size: 1rem;
      transform: translateY(20px);
      transition: all 0.4s ease 0.1s;
    }
    
    .project-card:hover .project-title,
    .project-card:hover .project-category {
      transform: translateY(0);
    }
    
    /* Team Section */
    .team {
      padding: 100px 50px;
      background: #f9f9f9;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .team-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .team-card:hover {
      transform: translateY(-10px);
    }
    
    .team-img-container {
      height: 250px;
      overflow: hidden;
    }
    
    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .team-card:hover .team-img {
      transform: scale(1.1);
    }
    
    .team-info {
      padding: 20px;
      text-align: center;
    }
    
    .team-name {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .team-position {
      color: var(--accent);
      font-size: 0.9rem;
      margin-bottom: 15px;
    }
    
    .team-social {
      display: flex;
      justify-content: center;
    }
    
    .social-icon {
      color:  var(--dark);
      margin: 0 10px;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      color: var(--accent);
      transform: translateY(-3px);
    }
    
   /* Contact Section */
    .contact {
      padding: 100px 50px;
      background: white;
    }
    
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      margin-top: 50px;
    }
    
    .contact-info {
      flex: 1;
      min-width: 300px;
      padding-right: 50px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
    }
    
    .contact-icon {
      font-size: 1.5rem;
      color: var(--accent);
      margin-right: 15px;
    }
    
    .contact-text h3 {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .contact-text p {
      color: var(--dark);
    }
    
    .contact-form {
      flex: 1;
      min-width: 300px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-control {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      border-color: var(--accent);
      outline: none;
      box-shadow: 0 0 10px rgba(229, 142, 38, 0.2);
    }
    
    .btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 5px;
	  }
    
    .btn:hover {
      background: var(--accent);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Map */
    .map {
      height: 400px;
      margin-top: 50px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Footer */
    footer {
      background: var(--primary);
      color: white;
      padding: 50px;
      text-align: center;
    }
    
    .footer-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      list-style: none;
      margin: 20px 0;
    }
    
    .footer-links li {
      margin: 0 15px;
    }
    
    .footer-links a {
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .footer-social {
      margin: 20px 0;
    }
    
    .footer-social a {
      color: white;
      font-size: 1.5rem;
      margin: 0 10px;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      color: var(--accent);
      transform: translateY(-3px);
    }
    
    .copyright {
      margin-top: 20px;
      font-size: 0.9rem;
      opacity: 0.8;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .navbar {
        padding: 20px;
      }
      
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      }
      
      .nav-links.active {
        right: 0;
      }
      
      .nav-links li {
        margin: 15px 0;
      }
      
      .hamburger {
        display: block;
        z-index: 1001;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero p {
        font-size: 1.2rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .contact-container {
        flex-direction: column;
      }
      
      .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
      }
    }
	
	 .hero-slider {
      position: relative;
      height: 100vh;
      overflow: hidden;
	  
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(0.7);
      transition: opacity 1s ease-in-out, transform 2s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      z-index: 2;
      animation: fadeSlideUp 1.5s ease-out forwards;
      opacity: 0;
    }

    .slide.active .overlay {
      opacity: 1;
    }

    .overlay h1 {
	font-family: ChronicleDisp;
      font-size: 3.5rem;
      margin-bottom: 20px;
      animation: slideIn 1s ease forwards;
	
  font-weight: bold;
  letter-spacing: 0.05em;
    }

    .overlay p {
      font-size: 1.5rem;
      animation: slideIn 1.5s ease forwards;
	 
  font-weight: normal;
    }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translate(-50%, -30%); }
      to { opacity: 1; transform: translate(-50%, -50%); }
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
	
	
.awards {
  padding: 100px 50px;
  background: #f5f5f5;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.awards-intro {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #333;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.award-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
 
 
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.award-card:hover {
  transform: translateY(-10px);
}

.award-card h3 {
  color: #0a3d62;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.award-card p {
  color: #555;
  font-size: 1rem;
}

/* Fade Animation for Award Cards */


.award-card:nth-child(1) {
  animation-delay: 0.3s;
}
.award-card:nth-child(2) {
  animation-delay: 0.6s;
}
.award-card:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slide-in animation */
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Dynamic Title Style (Hero) */
.overlay h1 {
  background: linear-gradient(to right, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s ease-in-out;
   animation: slideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.overlay h1:hover {
  letter-spacing: 0.1em;
  transform: scale(1.05);
}

.overlay p {
  opacity: 0.9;
  font-style: italic;
  transition: color 0.5s;
   animation: slideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.overlay p:hover {
  color: var(--accent);
}