 
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #e0e0e0;
            transition: all 0.3s ease;
        }

        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #0f1419;
            color: #e2e8f0;
        }

        
        body.dark-mode header,
        body.dark-mode nav{
            background-color: #1a202c !important;
        }
        
        body.dark-mode .partnering-part1,
        body.dark-mode .partnering-part2,   
        body.dark-mode .partnering-part3,
        body.dark-mode .partnering-part4,
        body.dark-mode .partnering-part5,
        body.dark-mode .feature-card,
        body.dark-mode .catalog-container,
        body.dark-mode .hero,
       
       
        body.dark-mode .contact-form,
        body.dark-mode .contact-info {
            background: #1a202c;
            border: 1px solid #2d3748;
            position: relative;

            
        }
        
        body.dark-mode .hero {
            background-image:
          linear-gradient(to bottom,rgba(255,255,255,0) 0%, rgba(18, 18, 18, 0.8)  40%), 
        url('images/hero-image.jpg');
        background-size: cover;
            background-position: center;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            
            margin-bottom: 4rem;
            margin-top: 8.5rem;
          }


body.dark-mode .accordion-section {
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

body.dark-mode .accordion-toggle {
  background-color: #2d3748;
  color:#f0f2f4;
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #2d3748;
}
.accordion-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2em;
  margin-left: 10px;
   display: inline-block;
}

/* When section is active, rotate arrow down */
.accordion-section.active .accordion-toggle .arrow {
  transform: rotate(90deg); /* ▶ becomes ▼ */
}








        .icon-top-right {
            top:20px;
        right:20px;
    position: absolute;        }

        body.dark-mode .stat-item {
            background: #2d3748;
            border-left-color: #64b5f6;
        }
        body.dark-mode .service-card,
        body.dark-mode .contact-item {
            background: #2d3748;
        }

        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea
        {
            background: #2d3748;
            border-color: #4a5568;
            color: #e2e8f0;
        }

        body.dark-mode  .form-group label{
            color: #e2e8f0;
        }

        body.dark-mode .form-group input:focus,
        body.dark-mode .form-group textarea:focus {
            border-color: #64b5f6;
        }

        body.dark-mode h1,
        body.dark-mode h2,
        body.dark-mode h3 {
            color: #64b5f6;
        }
        body.dark-mode .partnering-part5 a{
            color:yellow;
        }
        body.dark-mode .service-card p,
        body.dark-mode .nav-links li a,
        body.dark-mode .hero p,
        body.dark-mode .services-content p,
        body.dark-mode .about-content p{
            color: #f0f2f4;
        }
        body.dark-mode #contactForm{
background: #1a202c;
    border: 1px solid #2d3748;
        }

            
        /* Header Styles */
        header {
            
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background-color: rgba(255, 255, 255, 0.95);
           
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        nav {
             display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
   
    position: relative;
    z-index: 1000;
        }
        .nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color:#64b5f6;
  transition: width 0.3s ease;
  
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

        .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}
.nav-links a.cta-button-contact::after {
  display: none;
}

.cta-button-contact{
    background: linear-gradient(135deg, #5980c7 0%, #3f5e98 100%);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 50px;
  padding:0.60rem 1.3rem;
  
}
.hamburger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
}
        .logo {
            
  height: 120px;              /* Match image height */
  display: flex;
  align-items: center;       /* Vertically center image */
  padding: 0;
  margin: 0;

        }
        .logo img {
  height: 150px;   /* or whatever size fits your header */
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

        .nav-links li a {
    text-decoration: none;
    color:#0f1419;
    font-weight: 500;
    font-size:large;
}

        

        .nav-links a {
           position: relative;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links button {
            background:#1e3c72;
            border: none;
            color: rgb(18, 9, 135);
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #64b5f6;
        }

        .dark-mode-toggle {
            background: rgba(255, 255, 255, 0.048);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            width: 55px;
            height: 28px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 2rem;
        }

        .dark-mode-toggle::before {
            content: '';
            position: absolute;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: white;
            top: 2px;
            left: 2px;
            transition: all 0.3s ease;
        }

        .dark-mode-toggle.active {
            background: rgba(100, 181, 246, 0.3);
            border-color: #64b5f6;
        }

        .dark-mode-toggle.active::before {
            transform: translateX(30px);
            background: #64b5f6;
        }




        /* Main Content Styles */
        main {
            margin-top: 80px;
            min-height: calc(100vh - 160px);
        }

        .page {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .page.active {
            display: block;
        }













        /* Home Page Styles */
        .hero {
            height: 100vh;
            margin-top: 6rem;
            text-align: center;
            
            padding: 10rem 2rem;
            background-image: 
        linear-gradient(to bottom, rgba(188, 184, 184, 0.8) 0%, rgba(137, 132, 132, 0) 90%), 
        url('images/hero-image.jpg');
            background-size: cover;
            background-position: center;

            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            
            margin-top: 8rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 3rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.6rem;
            color: #0d1b35;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-button {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 0.6rem 1.6rem;
            border: none;
            border-radius: 40px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

      
.cta-button-contact:hover,
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
            gap: 1rem;
            margin: 0.70rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.02) 0%, rgba(42, 82, 152, 0.02) 100%);
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .collaboration-section {
            margin: 2rem 2rem 2rem 2rem;
            text-align: center;
            padding-top: 20px ;
            border-radius: 24px;
            display: flex;
            gap: 2rem;
            align-items: center;
            
        }
        .collaboration-text{
            flex:1;
        }
         .collaboration-image{
            flex:1;
        }
        .collaboration-image img{
            max-width: 100%;
            border-radius: 10px;
        }


        .collaboration-section p{
            margin-bottom: 2rem;
        }


        /*catalog page styles */
        .catalog-container {
            margin-top: 8rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 4rem;
          
        
           
        }
        
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
      align-items: start;
    }

   .product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.image-wrapper {
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid #ccc;
  
}

.preview-btn {
  margin-top: 0.5rem;
  background: none;
  border: 1px dashed #7956cb;
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  color: #ac95e7;
  cursor: pointer;
  border-radius: 4px;
  

}
/* carousle for book previews*/
.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-top: 0.1rem;
  display: none;
}

.carousel img {
  display: none;
  width: 100%;
  border-radius: 8px;
  margin-top: 0;
  max-width: 100%;
  height: auto;
  
  
}

.carousel img.active {
  display: block;
}

.carousel button.prev,
.carousel button.next,
.carousel button.cancle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffdd;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 0.5rem;
  z-index: 1;
}

.carousel button.prev { left: 10px; }
.carousel button.next { right: 10px; }
.carousel button.cancle {
 
  top: 15px;
  right:0;
  

  
}



/* Only show carousel when not hidden */
.carousel:not(.hidden) {
  display: block;
}
/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 1rem;
  transform: translateY(1000%);
  transition: transform 0.3s ease;
  
}

/* Reveal overlay on hover */
.product-card:hover .overlay {
  transform: translateY(0);
  
}

.product-title {
  text-align: center;
  padding: 0.75rem;
  font-weight: bold;
  font-size: 1.1rem;
}



        /* Servise Page Styles */
        .services-content {
            margin-top: 8rem;
            max-width: 1000px;
            padding: 2rem;
            padding-bottom: 0.5rem;
            margin-left: auto;
            margin-right: auto;
          /*  box-shadow: 0 20px 60px rgba(0,0,0,0.1);*.
           /* border: 1px solid rgba(255, 255, 255, 0.2);*/
          /*  margin-bottom: 1rem;*/
            position: relative;
            overflow: hidden;
        }

        .services-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: linear-gradient(135deg, rgba(30, 60, 114, 0.02) 0%, rgba(42, 82, 152, 0.02) 100%);*/
            z-index: -1;
        }
.about-content h2,
        .services-content h2 {
            color: #1e3c72;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            text-align: left;
        }
       

        .services-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid #1e3c72;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e3c72;
            display: block;
        }

        .stat-label {
            color: #666;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Services Grid */
.services-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  gap: 2rem;
  padding:0 1rem;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Cards */
.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: start;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Card Hover */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp{
  to {
    opacity: 1;
    transform: translateY(0);
  }

}
.more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.service-card.expanded .more-content {
  max-height: 400px; /* or large enough for your content */
  opacity: 1;
}

.toggle-btn {
  margin-top: 1rem;
  align-self: start;
  background: none;
  border: none;
  color: #0056b3;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

.toggle-btn:hover {
  color: #003f80;
}

        /* Contact Page Styles */
        .contact-container {
            margin-top: 10rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
           justify-content: center;
           padding:2rem;

        }

        #contactForm {
            
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            
            position: relative;
            overflow: hidden;
            max-width: 600px;
             
           
            
        }
        input,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: #f9fafb;
  transition: border 0.3s, background 0.3s;
}

input:focus,
textarea:focus {
  border-color: #667eea;
  background: #fff;
  outline: none;
}
        

        #contactForm::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.02) 0%, rgba(42, 82, 152, 0.02) 100%);
            z-index: -1;
        }

        #contactForm h2 {
            color: #1e3c72;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3c72;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            
            position: relative;
            overflow: hidden;
            
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.02) 0%, rgba(42, 82, 152, 0.02) 100%);
            z-index: -1;
        }

        .contact-info h2 {
            color: #1e3c72;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .contact-item-prompt p{
            margin-bottom: 1rem;
            font-size: 1.1rem;
            
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem auto;
            background: #f8f9fa;
            border-radius: 8px;
            text-align: center;
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: #1e3c72;
            width: 30px;
        }
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #5980c7 0%, #3f5e98 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
        /* reCAPTCHA container styling (optional) */
.captcha-container {
  margin-bottom: 1.5rem;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Thank You Message */
.thank-you {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  animation: fadeIn 0.6s ease-in-out;
}

.thank-you h2 {
  color: #166534;
  margin-bottom: 0.5rem;
}

.thank-you p {
  color: #15803d;
  font-size: 0.95rem;
}

.hidden {
  display: none;
}


/*about page */ 

.about{
   
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    margin-top: 8rem;
    gap:2rem;
   max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
   
   
}

.about-content h2 i,
.about-content h3 i {
  color: #007acc;
  margin-right: 0.5em;
}

.about-content .fa-rocket {
  color: #28a745;
  margin-right: 0.5em;
}
.about-content {
    
 
    
    margin-top: 1rem;
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding:auto 4rem;
   
  
   
    position: relative;
    overflow: hidden;
}

.about-content p{
   font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #555;
}

/*animated storytelling*/
    .chart-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .stage {
      margin-bottom: 1.5rem;
    }

    .label {
      font-weight: bold;
      margin-bottom: 0.3rem;
    }

    .bar {
      background: #e0e0e0;
      border-radius: 20px;
      overflow: hidden;
      height: 25px;
    }

    .bar-fill {
      height: 100%;
      background: linear-gradient(to right, #007acc, #00b4d8);
      width: 0;
      border-radius: 20px;
      transition: width 1.5s ease-in-out, opacity 1s ease-in-out;
    }

 
.bar-fill.animated {
  opacity: 1;
}












/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/*partnering page*/


.partnering-image img {
  width: 100%;
  height: auto;
  max-width: 100%; /* fits inside container */
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}


.partnering-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:2rem
 

}


.partnering-image {
   
  flex:1;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;  /* center image if needed */

}


.accordion-section {
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-toggle {
  background-color: #f5f5f5;
  color: #333;
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #e0e0e0;
}

.partnering-part2,
.partnering-part3,
.partnering-part4,
.partnering-part5 {
  display: none;
  padding: 1em;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

.accordion-section.active .partnering-part2,
.accordion-section.active .partnering-part3,
.accordion-section.active .partnering-part4,
.accordion-section.active .partnering-part5 {
  display: block;
}

   .partnering-part1 {
  display: flex;
  flex-direction: row; /* side-by-side */
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap; /* allows stacking on small screens */
  padding: 1rem;
  margin: 8rem 2rem auto 2rem;
  border-radius: 24px;
  text-align: left;
  justify-items: center;
}
.partnering-content {
   
    
    justify-content: center;
    padding: 2rem 2rem;
    
    
   
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}



.partnering-part5,
.partnering-part3,
.partnering-part4,
.partnering-part2 {
    position: relative;
  
}
  



        /* Footer Styles */
      .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  background-color: #2d3748;
   backdrop-filter: blur(2000px);
  color: #fff;
  padding: 2em;
  gap: 2em;
}

.footer-section {
  flex: 1;
  min-width: 200px; /* Ensures stacking on small screens */
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.footer a {
  color: #63b3ed;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer address {
  font-style: normal;
  line-height: 1.6;
}
        /* Responsive Design */
        @media (max-width: 768px) {
          
            .hero{
                height: auto;
                margin-top: 7rem;
            }
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                padding: auto;
            }

            nav {
                padding: 0 1rem;
            }

            .page {
                padding: 2rem 1rem;
            }
            .hamburger {
        display: flex;
    }

    
     .nav-links a{
        padding-left: 3rem;
     }

    

    .dark-mode-toggle {
    display: none;
    }
       
      .hamburger {
        display: flex;
    }






        .nav-links a{
        padding-left: 3rem;
     }


            

            .logo {
                font-size: 1.4rem;
            }

            .hero {
                padding: 2rem 1rem;
            }
      

    .nav-links {
        background-color:#1e3c72;
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
       padding-left: 1rem;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links a::after{
    display: none;
    }

   

    .dark-mode-toggle {
       display: none;
    }

   body.dark-mode nav-links.show{
           display: flex;
        position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #222d38;
  backdrop-filter: blur(10px);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right 0.4s ease;
  color:#f0fdf4;
  border-radius: 5px;
    }

    logo{
      display:none;
    }
       .nav-links.show {
        display: flex;
        position: fixed;
  text-align: left;
  right: -100%;
  width: 200px;
  height: 70vh;
  background: #43586d;
  backdrop-filter: blur(50px);
  box-shadow: -2px 0 20px rgba(194, 191, 191, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right 0.4s ease;
  border-radius: 5px;
    }

    .collaboration-section{
        flex-direction: column;
    }
    .services-content,
    .about-content{
       padding:1.5rem ;
       text-align: left;

       
    }
    .contact-item{
        flex-direction: row;
        text-align: center;
        padding: 0.2rem 0.2rem;
    }
   
.partnering-part1 {
    flex-direction: column;
    text-align: center;
     margin-top: 5rem;
     margin-left: 1rem;
     margin-right: 1rem;
  }
  .contact-info,
  #contactForm{
    padding: 1rem;
  }

  .partnering-text {
    text-align: center;
  }

  .partnering-image {
    max-width: 100%;
  }
   .icon-top-right {
  
   display: none;
}
.catalog-container{
  padding: 2rem;
}
      /* Responsive tweaks */
   
.footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 1.5em;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }

}

        @media (max-width: 600px) {
      .overlay {
        font-size: 0.9rem;
      }
    }


@media (max-width: 950px)  and (min-width: 750px  ) {
       
  

      .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1rem;
            margin: 0.70rem;
        }
    }
     