  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
          
        }

        :root {
            --primary: #4871b3;
            --secondary: #3bafbf;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --overlay: rgba(15, 23, 42, 0.7);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
            
        }
 .go-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}
  /* Hero Section Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Behind everything */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark semi-transparent overlay */
  z-index: -1; /* Between video and content */
}

.slide-content {
  position: relative;
  z-index: 1; /* Above overlay */
  color: white;
  text-align: center;
  top: 40%;
  width: 100%;
  padding: 0 20px;
}


        .search-container {
            background: rgba(255, 255, 255, 0.9);
            padding: 1.5rem;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(0);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .slide:hover .search-container {
            transform: translateY(20px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .search-container form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .search-input {
            flex: 1;
            min-width: 200px;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }

        .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }

        .search-btn {
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        .search-btn:hover {
            background: var(--secondary);
        }

      
   
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            height: 100vh;
            width: 300px;
            background: white;
            z-index: 1100;
            transition: var(--transition);
            padding: 5rem 2rem;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            display: none; /* Fixed: Hide by default */
        }
        
        .mobile-nav.active {
            right: 0;
            display: block; /* Show when active */
        }
        
        .mobile-nav-links {
            list-style: none;
        }
        
        .mobile-nav-links li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .close-menu {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Responsive Design */
         @media (max-width: 1300px) {
             .nav-links li a{
                 
                 font-size: 0.8rem;
             }
             .logo{
                 width: 150px;
             }
             .slide h1{
                 font-size: 2.5rem;
             }
             .slide p{
                 font-size: 1rem;
             }
             .category-card img{
                 height: 380px;
             }
             .category-card .card-body h5{
                 font-weight: 0;
             }
         }
        @media (max-width: 992px) {
            .slide h1 {
                font-size: 2rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-buttons {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .mobile-nav {
                display: block; /* Show in mobile view */
                right: -300px;
            }
            
            .mobile-nav.active {
                right: 0;
            }
           
        }

        @media (max-width: 768px) {
            .slide h1 {
                font-size: 2.5rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .search-container {
                padding: 1rem;
            }
            
            .search-container form {
                flex-direction: column;
            }
            
            .search-input, .search-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .slide h1 {
                font-size: 1.6rem;
            }
            
            .navbar {
                padding: 1rem 5%;
            }
            
     
        }
        
        
        
        .category-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      background-color: #ffffff;
    }
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    }
    .category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .category-body {
      padding: 1rem;
    }
    .category-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .category-description {
      font-size: 0.95rem;
      color: #6c757d;
    }
        
        
       
.bg-teal { background-color: #3bafbf !important; }
.border-teal { border-color: #3bafbf !important; }
#btn-3{
    background-color: var(--secondary);
}
.btn-3:hover{
    color: #fff;
}
.btn-2{
    background-color: transparent;
    border:2px solid var(--primary);
}
.card-img-top {
  object-fit: cover;
  height: 500px;
}
 .about-section {
   padding: 40px;
   border-radius: 10px;
   box-shadow: ;
    }
    .about-title {
     
      font-weight: 400;
      color: #4871b3;
    }
    .about-text {
      font-size: 1rem;
      color: #333;
      text-align: justify;
    }
    hr{
        width: 70%;
        justify-self: center;
        padding-bottom: 10px;
    }
    
    .row2 img {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
  }

  .row2 img.appear {
    opacity: 1;
    transform: translateY(0);
  }
  .sterile{width:100%;justify-items:center;padding-top:80px;}

.product-section{display:flex;flex-wrap:wrap;align-items:center;max-width:1200px;background:#fff;box-shadow:0 4px 10px rgba(0,0,0,.1);border-radius:10px}
.product-image{flex:1;min-width:300px}
.product-image img{width:100%;height:80%;display:block}
.product-info{flex:1;padding:20px 30px;display:flex;flex-direction:column;justify-content:center}
.product-info h2{font-size:24px;margin-bottom:10px;color:#21033d}
.product-info p{font-size:16px;margin-bottom:20px;line-height:1.5;color:#555}
.product-info .subtitle,.product-info a{font-size:14px;text-transform:uppercase}
.product-info .subtitle{color:#888;letter-spacing:1px;margin-bottom:10px}
.product-info a{padding:10px 20px;background:#3bafbf;width:auto;color:#fff;border:none;border-radius:5px;cursor:pointer;transition:background .3s;text-align:center}
.product-info a:hover{background:#21033d}
    
 .certified {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 30px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
    
.blog-item {
  margin-bottom: 30px;
  transition: transform 0.3s;
box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.3);
}
.blog-item:hover{
    transform: scale(1.05);
}
.blog-item .image {
  position: relative;
}
.blog-item .image img{
    max-width: 100%;
    height:auto;
}
.blog-item .image .date {
  position: absolute;
  top: 0;
  left: 0;
}
.blog-item .image .date span {
  display: inline-block;
  padding: 10px 25px;
  background-color: #fff;
  color: #3bafbf;
  font-family: var(--optionalfontFamily);
  font-weight: 400;
  transition: var(--transition);
}
.blog-item .content {
  margin-top: 20px;
}
.blog-item .content h3 {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-item .content h3  {
  color: var(--blackColor);
}
.blog-item .content .blog-btn {
  background-color: #4871b3;
  border-radius: 5px;
 border-color: transparent;
  font-size:15px;
  
}
.blog-btn a{
     color: #fff;
}
.blog-btn:hover{
    background-color: var(--mainColor);
}
.blog-item:hover .image .date span {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  
}
.blog-item.bg-ffffff .content {
  margin-top: 0;
  padding: 25px 20px;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}
.blog-item.bg-ffffff .content h3 {
  font-family: var(--optionalfontFamily);
}
    
  /**  .contact-section{justify-content:center;justify-items:center;width:100%;height:700px}.contact-container{display:flex;flex-wrap:wrap;width:100%;max-width:100%;height:100%;background-color:#e5edf9;box-shadow:0 4px 10px rgba(0,0,0,.1);overflow:hidden}.info-section{flex:1;padding:140px 20px 20px;background:#4871b3;color:#fff;display:flex;flex-direction:column}
     .contact-img{position:relative;width:50%}

    .info-section h2{font-size:1.6rem;color:#fff;margin-bottom:15px}
    .info-section .details,.info-section p{margin-bottom:20px}
    .info-section p{line-height:1.5;font-style:Sans-Serif}
    .info-section .whatsapp{width:80%;height:35%}.info-section .details .whatsapp button{position:relative;width:40%;height:100%;border:none;border-radius:10px;background-color:#00abbb;align-items:center;color:#fff;justify-content:center;text-align:center;border-left:4px solid #00abbb;border-bottom:4px solid #00abbb}.info-section .details .whatsapp button:hover,.two{background-color:#427ebb}.info-section .details div,.one img,.three img,.two img{margin-bottom:10px}.info-section .details h3{color:#fff}@media (max-width:360px){.contact-img{width:500px}.info-section{padding-top:0;justify-content:center}#text,.details h5,.info-section p,button,h2{text-align:center}.info-section .details,.info-section .details .whatsapp{justify-content:center}.info-section .details .whatsapp button{width:100px;height:60px}}.sub-branches{width:100%;height:auto;justify-content:center;justify-items:center;padding-top:2%}.sub-branches h2{font-size:2.5rem;text-align:center}.branch-grid{display:grid;grid-template-columns:repeat(2,minmax(250px,1fr));gap:30px;padding:20px}.branch-icon{display:flex;justify-content:center;align-items:center;background:#fff;border:1px solid #ddd;border-radius:10px;padding:20px;box-shadow:0 4px 6px rgba(0,0,0,.1);width:300px}.branch-icon img{width:100%;height:100%}.info-section2{display:grid;grid-template-columns:repeat(3,minmax(200px,1fr));gap:20px;padding:30px;height:auto;background-color:#fff;color:#fff}.one,.three,.two{display:flex;position:relative;height:200px;justify-content:center;align-items:center;border-radius:10px;text-align:center;width:100%;flex-direction:column;box-shadow:2px 0 5px rgba(20,20,20,.342)}.one{background-color:#033d70}.three{background-color:#00abbb}@media (max-width:750px){.branch-grid,.info-section2,.logo-grid{grid-template-columns:repeat(1,minmax(100px,1fr));gap:20px;padding:10px}.branch-icon,.logo-item{flex-direction:column}}
    **/
    .blog-item .content h3 a{
        
        color: #000;
        font-size: 1rem;
    }
    .blog-item .content a{
        text-decoration: none;
    }
    
 .category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 3px solid #3bafbf;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.4);
  border-color: #007b8a;
}

.text-teal {
  color: #20c997;
}

.btn-outline-teal {
  color: #20c997;
  border-color: #20c997;
}

.btn-outline-teal:hover {
  background-color: #20c997;
  color: #fff;
}


.custom-card {


  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.custom-card .card-title {
  font-size: 1.25rem;
}

.custom-card .btn {
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
}


    .map-section img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }



    @media (max-width: 768px) {
      .location-card {
        position: static;
        margin: 1rem auto;
      }

      .map-section {
        padding-bottom: 0;
      }
    }
    
    .footer-area {
   background-color: #0158af;
   background-image:url('pictures/headbg.png');
   background-size:100%;
   padding-top: 60px;
  
}

.single-footer-widget {
  margin-bottom: 30px;
}
.single-footer-widget .footer-logo {
  margin-bottom: 30px;
}
.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info>p{
  color: var(--whiteColor);
}
.single-footer-widget .footer-contact-info li {
  margin-bottom: 20px;
  color: var(--whiteColor);
  position: relative;
  padding-left: 40px;
}
.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 25px;
  color: var(--whiteColor);
}
.single-footer-widget .footer-contact-info li span {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #cdcccc;
  font-weight: 500;
  position: relative;
  font-family: var(--optionalfontFamily);
  font-size: 15px;
}
.single-footer-widget .footer-contact-info li a:hover {
  color: var(--whiteColor);
}
.single-footer-widget .footer-contact-info li a:hover::before {
  width: 100%;
}
.single-footer-widget .footer-contact-info li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}
.single-footer-widget h3 {
  color: var(--whiteColor);
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--optionalfontFamily);
}


.footer-bottom-area {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer-bottom-area p {
  line-height: initial;
  margin-bottom: 0;
  color: #cecdcd;
  font-weight: 500;
  font-family: var(--optionalfontFamily);
}
.footer-bottom-area p i {
  position: relative;
  top: 1px;
}

    .mdr-section {
            background: white;
            border-radius: 20px;
           
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        

        
        .mdr-container {
            padding: 50px;
            position: relative;
        }
        


        
        .mdr-heading {
         
            font-weight: 600;
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: #1a3a4c;
            position: relative;
            padding-bottom: 15px;
        }
        

        
        .mdr-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 25px;
            text-align: justify;
        }
        
        .highlight {
            background: linear-gradient(120deg, rgba(59, 175, 191, 0.15) 0%, rgba(59, 175, 191, 0) 100%);
            padding: 0 5px;
            border-radius: 3px;
            font-weight: 600;
            color: #2a8c9b;
        }
        
        .sgs-certification {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f8fafc;
            padding: 10px 20px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .sgs-certification:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .sgs-certification img {
            height: 30px;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
        }
        
        .mdr-logo-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .mdr-logo {
            max-width: 300px;
            transition: transform 0.5s ease;
            filter: drop-shadow(0 10px 20px rgba(59, 175, 191, 0.3));
        }
        
        .mdr-logo:hover {
            transform: scale(1.05);
        }
        
        .certification-label {
            position: absolute;
            bottom: -20px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 0.9rem;
            color: #718096;
            font-weight: 600;
        }
        
        .progress-container {
            margin: 35px 0 25px;
            background: #dae3ef;
            height: 10px;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        
        .progress-bar {
            position: absolute;
            height: 100%;
            width: 50%;
            background: linear-gradient(90deg,#355b99, #4670b4);
            border-radius: 5px;
            animation: progress-animation 2s ease-in-out forwards;
        }
        
        .progress-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #4a5568;
            margin-top: 8px;
        }
        
        .stage {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .stage.completed i {
            color: #355b99;
        }
        
        .stage-label {
            font-weight: 600;
        }
        
        .stage-date {
            font-size: 0.85rem;
            color: #718096;
        }
        
        .ce-mark {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3bafbf 0%, #2a8c9b 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: 1.8rem;
            box-shadow: 0 10px 30px rgba(59, 175, 191, 0.4);
            animation: pulse 2s infinite;
        }
        
        .decoration {
            position: absolute;
            opacity: 0.05;
            pointer-events: none;
        }
        
        .decoration.circle {
            width: 200px;
            height: 200px;
            border: 15px solid #3bafbf;
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        
        .decoration.square {
            width: 150px;
            height: 150px;
            border: 10px solid #3bafbf;
            bottom: -75px;
            left: -75px;
            transform: rotate(45deg);
        }
        
        @keyframes progress-animation {
            0% { width: 0; }
            100% { width: 30%; }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 175, 191, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(59, 175, 191, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 175, 191, 0); }
        }
        
        @media (max-width: 991px) {
            .mdr-container {
                padding: 40px 30px;
            }
            
            .mdr-heading {
                font-size: 2rem;
            }
            
            .ce-mark {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 767px) {
            .mdr-container {
                padding: 30px 20px;
            }
            
            .mdr-heading {
                font-size: 1.8rem;
            }
            
            .mdr-text {
                font-size: 1rem;
            }
            
            .milestone-badge {
                font-size: 0.9rem;
            }
            
            .ce-mark {
                top: 15px;
                right: 15px;
            }
        }
 #goToTopBtn {
display: none;
    position: fixed;
    bottom: 10px;
    right: 18px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #3bafbf;
    color: white;
    width: 45px;
    text-align: center;
    cursor: pointer;
 height: 45px;
 
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.9s ease;
     overflow: hidden;
  }
  #goToTopBtn i{
      font-size: 22px;
  }

  #goToTopBtn:hover {
    background-color: #365a94;
  }
  .go-top {
    position: fixed;
    cursor: pointer;
    bottom: -100px;
    right: 20px;
    color: #fff;
    background-color: #3bafbf;
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    opacity: 1;
 
    border-radius: 50%;
    font-size: 22px;
    transition: 0.9s;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
      