  :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-light: #e0e7ff;
      --secondary: #1e293b;
      --accent: #f59e0b;
      --accent-dark: #d97706;
      --light: #f8fafc;
      --dark: #0f172a;
      --gray: #64748b;
      --light-gray: #e2e8f0;
      --lighter-gray: #f1f5f9;
      --success: #10b981;
      --border-radius: 8px;
      --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    * {
      margin: 0; 
      padding: 0; 
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--secondary);
      background-color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      line-height: 1.2;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    /* Header Styles */
    header {
      background: linear-gradient(135deg, var(--dark), var(--secondary));
      color: var(--light);
      padding: 1.5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
      opacity: 0.4;
    }
    
    .header-content {
      position: relative;
      z-index: 2;
    }
    
    /* Navigation */
    nav {
      background: rgba(15, 23, 42, 0.98);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      padding: 0 2rem;
    }
    
    .logo {
      color: var(--light);
      font-weight: 700;
      font-size: 1.5rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.5px;
      transition: var(--transition);
    }
    
    .logo:hover {
      transform: scale(1.05);
    }
    
    .logo span {
      color: var(--accent);
    }
    
    .nav-links {
      display: flex;
      flex-wrap: wrap;
    }
    
    nav a {
      color: var(--light);
      padding: 1.5rem 1.5rem;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
      font-size: 0.95rem;
    }
    
    nav a:hover {
      color: var(--accent);
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: var(--accent);
      transition: var(--transition);
    }
    
    nav a:hover::after {
      width: 70%;
    }
    
    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Section Styles */
    section {
      padding: 5rem 0;
      position: relative;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3.5rem;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark);
      display: inline-block;
      position: relative;
      padding-bottom: 1rem;
    }
    
    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }
    
    .section-subtitle {
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto 2rem;
      text-align: center;
      font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
      text-align: center;
      padding: 7rem 0;
      background: linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
      color: var(--light);
      position: relative;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      line-height: 1.2;
      animation: fadeInUp 1s ease;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
    }
    
    .btn-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
    }
    
    /* Achievements Section */
    .achievements {
      background: var(--secondary);
      color: white;
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .achievements::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
      opacity: 0.6;
    }
    
    .achievements-container {
      position: relative;
      z-index: 2;
    }
    
    .achievements-intro {
      max-width: 800px;
      margin: 0 auto 3rem;
    }
    
    .achievements-intro p {
      font-size: 1.1rem;
      opacity: 0.9;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .stat-item {
      padding: 2rem 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--border-radius);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition);
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: white;
      font-family: 'Montserrat', sans-serif;
    }
    
    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
    }
    
    /* Buttons */
    .btn {
      background: var(--primary);
      color: white;
      padding: 0.8rem 2rem;
      border: none;
      text-decoration: none;
      border-radius: var(--border-radius);
      margin-top: 1rem;
      display: inline-block;
      font-weight: 500;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
      font-size: 0.95rem;
      text-align: center;
      cursor: pointer;
    }
    
    .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }
    
    .btn-accent {
      background: var(--accent);
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    
    .btn-accent:hover {
      background: var(--accent-dark);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }
    
    .btn-outline {
      background: transparent;
      color: var(--light);
      border: 2px solid var(--light);
      box-shadow: none;
    }
    
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--light);
      transform: translateY(-3px);
    }
    
    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    .about-text h3 {
      margin: 2rem 0 1rem;
      color: var(--dark);
      position: relative;
      padding-left: 20px;
      font-size: 1.4rem;
    }
    
    .about-text h3::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.4em;
      height: 1.2em;
      width: 6px;
      background: var(--accent);
      border-radius: 3px;
    }
    
    .about-text p {
      margin-bottom: 1.2rem;
      color: var(--gray);
      line-height: 1.7;
      font-size: 1rem;
    }
    
    .about-image {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }
    
    .about-image:hover img {
      transform: scale(1.03);
    }
    
    .mission-vision {
      background: var(--lighter-gray);
      padding: 3rem;
      border-radius: var(--border-radius);
      margin-top: 4rem;
      box-shadow: var(--box-shadow);
    }
    
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    
    /* Portfolio Section */
    .portfolio-section {
      position: relative;
      overflow: hidden;
    }
    
    .portfolio-slider {
      padding: 2rem 0;
    }
    
    .portfolio-slide {
      background: #ffffff;
      padding: 2.5rem 2rem;
      text-align: center;
      border-radius: var(--border-radius);
      transition: var(--transition);
      box-shadow: var(--box-shadow);
      border: 1px solid var(--light-gray);
      position: relative;
      overflow: hidden;
     min-height: 450px; /* Adjust this value as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
      margin: 0 1rem;
    }
    
    .portfolio-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--primary);
      transition: var(--transition);
    }
    
    .portfolio-slide:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-light);
    }
    
    .portfolio-slide:hover::before {
      height: 100%;
    }
    
    .portfolio-slide i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: block;
      transition: var(--transition);
    }
    
    .portfolio-slide:hover i {
      transform: scale(1.1);
      color: var(--accent);
    }
    
    .portfolio-slide h3 {
      margin-bottom: 1rem;
      color: var(--dark);
      font-size: 1.3rem;
    }
    
    .portfolio-slide p {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
    
    .portfolio-slide .tech-stack {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    
    .portfolio-slide .tech-tag {
      background: var(--primary-light);
      color: var(--primary-dark);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
    }
    
    .swiper-pagination {
      position: relative;
      margin-top: 2rem;
    }
    
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: var(--light-gray);
      opacity: 1;
    }
    
    .swiper-pagination-bullet-active {
      background: var(--primary);
    }
    
    .swiper-button-next, 
    .swiper-button-prev {
      color: var(--primary);
      background: rgba(255, 255, 255, 0.8);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }
    
    .swiper-button-next:hover, 
    .swiper-button-prev:hover {
      background: white;
      transform: scale(1.1);
    }
    
    .swiper-button-next::after, 
    .swiper-button-prev::after {
      font-size: 1.2rem;
    }
    
/* Contact Section */
form {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff; /* Dark blue background */
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 6px 6px rgba(0, 0, 0, 0.2),
    inset 0 -2px 5px rgba(255, 255, 255, 0.1),
    inset 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.921), 
    rgb(253, 254, 255), 
    rgba(255, 255, 255, 0.978));
  z-index: -1;
  border-radius: 14px;
  transform: translateZ(-10px);
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

form label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: rgba(11, 11, 11, 0.9);
  font-size: 0.95rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

form input, form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  background: rgba(253, 250, 250, 0.842);
  color: rgb(0, 0, 0);
  box-shadow: 
    inset 0 1px 3px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.05);
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #dbe4ef;
  background: rgba(209, 207, 207, 0.3);
  box-shadow: 
    inset 0 1px 3px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(58, 123, 213, 0.2);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form button {
  background: linear-gradient(135deg, #d8dee6, #ebf5f8);
  color: rgb(8, 8, 8);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 
    0 4px 15px rgba(229, 227, 227, 0.3),
    0 2px 3px rgba(251, 251, 251, 0.684),
    inset 0 -2px 5px rgba(238, 237, 237, 0.622);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

form button:hover {
  background: linear-gradient(135deg, #78d5ea, #558fda);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 4px 6px rgba(0, 0, 0, 0.3),
    inset 0 -2px 5px rgba(255, 255, 255, 0.2);
}

form button:active {
  transform: translateY(1px);
}

/* Rest of the styles remain unchanged */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-right: 1.5rem;
  margin-top: 5px;
}

.info-content h4 {
  margin-bottom: 0.7rem;
  color: var(--dark);
  font-size: 1.2rem;
}

.info-content p {
  color: var(--gray);
  line-height: 1.7;
}
    
    /* Footer */
    footer {
      background: var(--dark);
      color: var(--light);
      padding: 5rem 0 2rem;
      position: relative;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }
    
    .footer-column h3 {
      color: white;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 12px;
      font-family: 'Montserrat', sans-serif;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent);
    }
    
    .footer-column p {
      margin-bottom: 1.5rem;
      opacity: 0.8;
      line-height: 1.7;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 1rem;
    }
    
    .footer-links a {
      color: var(--light);
      text-decoration: none;
      transition: var(--transition);
      opacity: 0.8;
      display: block;
    }
    
    .footer-links a:hover {
      opacity: 1;
      color: var(--accent);
      padding-left: 8px;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .social-links a {
      color: var(--light);
      background: rgba(255, 255, 255, 0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      margin-top: 5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0.7;
      font-size: 0.9rem;
    }
    
    /* Card Styles */
    .card {
      background: #ffffff;
      padding: 2.5rem 2rem;
      text-align: center;
      border-radius: var(--border-radius);
      transition: var(--transition);
      box-shadow: var(--box-shadow);
      border: 1px solid var(--light-gray);
      position: relative;
      overflow: hidden;
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--primary);
      transition: var(--transition);
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-light);
    }
    
    .card:hover::before {
      height: 100%;
    }
    
    .card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: block;
      transition: var(--transition);
    }
    
    .card:hover i {
      transform: scale(1.1);
      color: var(--accent);
    }
    
    .card h3 {
      margin-bottom: 1rem;
      color: var(--dark);
      font-size: 1.3rem;
    }
    
    .card p {
      color: var(--gray);
      font-size: 0.95rem;
    }
    
    /* Chatbot Styles */
    #chatbot-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 320px;
      max-height: 500px;
      background: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      z-index: 9999;
      transition: max-height 0.3s ease;
    }
    
    #chatbot-container.minimized {
      max-height: 48px;
    }
    
    .chatbot-header {
      background: #007bff;
      color: white;
      padding: 12px;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    #chatbot-toggle {
      background: transparent;
      border: none;
      color: white;
      font-size: 18px;
      cursor: pointer;
    }
    
    #chatbot-messages {
      flex: 1;
      padding: 12px;
      overflow-y: auto;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    
    #chatbot-messages.minimized {
      display: none;
    }
    
    .chatbot-message {
      display: flex;
      justify-content: flex-start;
    }
    
    .chatbot-message.user {
      justify-content: flex-end;
    }
    
    .message-bubble {
      padding: 10px 12px;
      border-radius: 18px;
      max-width: 75%;
      word-wrap: break-word;
      font-size: 14px;
      line-height: 1.4;
    }
    
    .user-message {
      background: #e9ecef;
      color: #212529;
    }
    
    .bot-message {
      background: #007bff;
      color: white;
    }
    
    #chatbot-input-area {
      display: flex;
      border-top: 1px solid #ddd;
      background: white;
    }
    
    #chatbot-input-area.minimized {
      display: none;
    }
    
    #chatbot-input {
      flex: 1;
      border: none;
      padding: 10px;
      font-size: 14px;
      outline: none;
      color: #495057;
    }
    
    #chatbot-send, #chatbot-clear {
      background: #007bff;
      color: white;
      border: none;
      padding: 10px 14px;
      cursor: pointer;
      font-weight: 500;
    }
    
    #chatbot-clear {
      background: #6c757d;
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .about-content {
        grid-template-columns: 1fr;
      }
      
      .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
      }
      
      .mv-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      section {
        padding: 4rem 0;
      }
      
      .hero {
        padding: 5rem 0;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
       .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
  }
      
      .nav-links {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
      }
      
      nav a {
        padding: 1rem;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .mission-vision {
        padding: 2rem;
      }
      
      /* Mobile menu */
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        padding: 1rem 0;
      }
      
      .nav-links.active {
        display: flex;
      }
      
      nav a {
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
      }
      
      nav a::after {
        display: none;
      }
    }
    
    @media (max-width: 576px) {
      section {
        padding: 3rem 0;
      }
      
      .hero {
        padding: 4rem 0;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .btn-group {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 250px;
      }
      
      .stats-grid {
        grid-template-columns: 1fr;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      form {
        padding: 2rem;
      }
      
      #chatbot-container {
        width: 280px;
        right: 10px;
        bottom: 10px;
      }
    }




    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --primary-light: #e0e7ff;
      --secondary: #1e293b;
      --accent: #f59e0b;
      --accent-dark: #d97706;
      --light: #f8fafc;
      --dark: #0f172a;
      --gray: #64748b;
      --light-gray: #e2e8f0;
      --lighter-gray: #f1f5f9;
      --success: #10b981;
      --border-radius: 8px;
      --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    * {
      margin: 0; 
      padding: 0; 
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--secondary);
      background-color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      line-height: 1.2;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* === Blog Styles Added === */
    /* Blog Hero */
    .blog-hero {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      text-align: center;
      padding: 4rem 0;
    }

    .blog-hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .blog-hero p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    .containerblog {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Blog Content */
    .blog-content {
      padding: 0 0 1rem;
    }

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


    .blog-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      border: 1px solid var(--light-gray);
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .blog-card-image {
      height: 200px;
      background: var(--lighter-gray);
      position: relative;
      overflow: hidden;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
      loading: lazy;
    }

    .blog-card:hover .blog-card-image img {
      transform: scale(1.05);
    }

    .blog-card-content {
      padding: 1.5rem;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      color: var(--gray);
    }

    .blog-category {
      background: var(--primary-light);
      color: var(--primary-dark);
      padding: 0.2rem 0.8rem;
      border-radius: 15px;
      font-weight: 500;
      font-size: 0.75rem;
    }

    .blog-card h3 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      color: var(--dark);
      line-height: 1.3;
    }

    .blog-card p {
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .read-more {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
    }

    .read-more:hover {
      color: var(--primary-dark);
      gap: 0.8rem;
    }

    /* SEO-friendly breadcrumb */
    .breadcrumb {
      background: var(--lighter-gray);
      padding: 1rem 0;
      font-size: 0.9rem;
    }

    .breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
    }

    .breadcrumb-list a {
      color: var(--primary);
      text-decoration: none;
    }

    .breadcrumb-list a:hover {
      text-decoration: underline;
    }

    

    /* Responsive for Blog */
    @media (max-width: 768px) {
      .blog-hero h1 {
        font-size: 2.5rem;
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .container {
        padding: 0 1rem;
        margin-left: 20px;
        margin-right: 20px;
      }
    }












    /* Blog Post Header */
    .blog-post-header {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 4rem 0 2rem;
      text-align: center;
    }

    .post-meta {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
      font-size: 0.9rem;
      opacity: 0.9;
      flex-wrap: wrap;
    }

    .post-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Blog Post Content */
    .post-content {
      max-width: auto;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .back-to-blog {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: var(--border-radius);
      margin-bottom: 2rem;
      transition: var(--transition);
    }

    .back-to-blog:hover {
      background: var(--primary-dark);
    }

    .post-content h2 {
      color: var(--dark);
      font-size: 1.8rem;
      margin: 2rem 0 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--primary-light);
    }

    .post-content h3 {
      color: var(--dark);
      font-size: 1.4rem;
      margin: 1.5rem 0 0.8rem;
    }

    .post-content p {
      margin-bottom: 1.5rem;
      color: var(--gray);
      line-height: 1.8;
    }

    .post-content ul, .post-content ol {
      margin: 1.5rem 0;
      padding-left: 2rem;
    }

    .post-content li {
      margin-bottom: 0.5rem;
      color: var(--gray);
    }

    .post-content blockquote {
      border-left: 4px solid var(--primary);
      background: var(--lighter-gray);
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      font-style: italic;
      color: var(--dark);
    }

    .post-content code {
      background: var(--lighter-gray);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-family: 'Courier New', monospace;
      font-size: 0.9rem;
    }

    .post-content pre {
      background: var(--dark);
      color: white;
      padding: 1.5rem;
      border-radius: var(--border-radius);
      overflow-x: auto;
      margin: 2rem 0;
    }

    .post-content pre code {
      background: transparent;
      padding: 0;
    }

    .share-section {
      background: var(--lighter-gray);
      padding: 2rem;
      border-radius: var(--border-radius);
      margin: 3rem 0;
      text-align: center;
    }

    .share-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .share-btn {
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.2rem;
      text-decoration: none;
      border-radius: var(--border-radius);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .share-btn:hover {
      transform: translateY(-2px);
    }

    .share-btn.twitter:hover { background: #1da1f2; }
    .share-btn.linkedin:hover { background: #0077b5; }
    .share-btn.facebook:hover { background: #4267b2; }

    /* Navigation between posts */
    .post-navigation {
      display: flex;
      justify-content: space-between;
      margin: 3rem 0;
      gap: 1rem;
    }

    .nav-post {
      flex: 1;
      padding: 1.5rem;
      background: white;
      border: 1px solid var(--light-gray);
      border-radius: var(--border-radius);
      text-decoration: none;
      color: var(--gray);
      transition: var(--transition);
    }

    .nav-post:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--box-shadow);
    }

    .nav-post-label {
      font-size: 0.85rem;
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .nav-post-title {
      color: var(--dark);
      font-weight: 600;
    }

    /* Author bio section */
    .author-bio {
      background: white;
      border: 1px solid var(--light-gray);
      border-radius: var(--border-radius);
      padding: 2rem;
      margin: 3rem 0;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .author-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--primary);
    }

    .author-info h4 {
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .author-info p {
      color: var(--gray);
      line-height: 1.6;
      margin: 0;
    }

    /* === Existing styles remain unchanged === */
    /* Keep all previous CSS rules (Header, Hero, Sections, Footer, etc.) here */

