@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family:roboto;
  box-sizing:border-box;
  font-family: poppins;
 
 
  
  
}

/* utility section */
.biggest_container{
max-width: 1080vh;
margin-inline: auto;
padding-inline: 25px;


}
.flex{
  display: flex;
  
}
hr{
margin: 50px;
color: rgba(219, 217, 217, 0);

}
/* utility section ends here */

/*This is for navigation bar */

.navbar_main_container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  background-color: white;

}
.company_logo img {
  height: 55px;
  margin: 10px;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
nav ul li {
  position: relative;
  margin: 0 10px;
}
nav ul li a {
  text-decoration: none;
  padding: 5px;
  display: block;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  transition: 0.2s ease-out;
  left:150px;
  
}
nav ul li a:hover {
  background-color: #00000025;
  border-radius: 4px;
}

.nav-tagel{
display: none
}

/* Dropdown menu */
.dropdown-menu {
display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 1px 2px 20px 0px rgb(0 0 0 / 18%);
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: max-content;
 top: 25px;
  left: 0;
  border-radius: 4px;
 transition: 0.2s ease-out;
}

.dropdown-menu li a {
  padding: 6px 2px;
  color: #333;
  font-size: small;
  margin: 4px;
  transition: 0.2s ease-out;
  
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Nested Dropdown Menu */
.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  box-shadow: 1px 2px 20px 0px rgb(0 0 0 / 18%);
  width: max-content;
  border-radius: 4px;
  transition: 0.2s ease-out;
}

.dropdown-menu .dropdown-submenu li a {
  padding: 6px 2px;
  color: #333;
  font-size: small;
  transition: 0.2s ease-out;
}

.dropdown-menu .dropdown-submenu li a:hover {
  background-color: #f0f0f0;
}

/* Show nested dropdown on hover */
.dropdown-menu .dropdown-item:hover .dropdown-submenu {
  display: block;
}
/* Existing styles remain the same until the media queries */

/* Mobile menu styles */
.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  color: #333; /* Ensure visibility */
}


  .header-container {
            display: flex;
            
            
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        h1 {
            text-align: left;
            font-weight: 900;
            font-size: 2.8rem;
            color: #ff0505;
            margin-bottom: 30px;
            font-family: serif;
            margin-top: 30px;
            flex: 1;
        }
        
        .subtitle {
            text-align: center;
            font-size: 20px;
            color: #060000;
            margin-bottom: 80px;
        }
        
        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        /* Product Card */
        .product-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 36px rgba(42, 93, 159, 0.25);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            border-radius: 16px 16px 0 0;
            box-shadow: 0 6px 16px rgba(42, 93, 159, 0.25);
        }
        
        .product-info {
            padding: 20px;
            width: 100%;
        }
        
        .product-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #2a5d9f;
            margin: 0 0 12px 0;
            text-align: center;
        }
        
        .product-description {
            font-size: 1rem;
            color: #444;
            line-height: 1.5;
            text-align: center;
            margin-bottom: 20px;
            min-height: 80px;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 26px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            margin: 5px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #2a5d9f 0%, #3e8ed0 100%);
            color: white;
            box-shadow: 0 6px 15px rgba(58,124,210,0.47);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #3e8ed0 0%, #2a5d9f 100%);
            box-shadow: 0 10px 20px rgba(58,124,210,0.7);
        }
        
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #fb8124b7 0%, #ff5f4a 100%);
            color: white;
            font-weight: 600;
            font-size: 1.15rem;
            padding: 14px 30px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(234, 120, 58, 0.47);
            transition: background 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            text-align: center;
            margin-top: 30px;
        }
        
        .download-btn:hover {
            background: linear-gradient(135deg, #ff9e4a 0%, #ff7409 100%);
            box-shadow: 0 10px 20px rgba(210, 111, 58, 0.7);
        }
        
        .header-download-btn {
            align-self: center;
            margin-left: 20px;
        }
        
        .center-download {
            text-align: center;
            margin: 50px 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                text-align: center;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .header-download-btn {
                margin: 20px 0 0 0;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 200px;
            }
        }

   /* this is for footer */
    .container5{
      max-width: 1170px;
      margin:auto;
      margin-top: 60px;
  }
    .row{
        display: flex;
        width: 100%;
        margin: auto;
      }
      .cols{
      width: 100%;
      justify-content: space-evenly;
      display: flex;
  }
  ul{
      list-style: none;
    }
    .footer{
        background-color: rgba(245, 245, 245, 0.252);
        padding: 25px 0;
        
      }
      .footer-col{
          padding: 0 15px;
      }
      .footer-col h4{
      font-size: 18px;
      color:  #000E1C;
      text-transform: capitalize;
      margin:35px 0px;
      font-weight: 500;
      position: relative;
  }
  .footer-col h4::before{
      position: absolute;
      left:0;
      bottom: -10px;
      height: 2px;
      box-sizing: border-box;
      width: 50px;
  }
  .footer-col ul li:not(:last-child){
      margin-bottom: 9px;
  }
  .footer-col ul li a{
      font-size: 16px;
      text-transform: capitalize;
      text-decoration: none;
      font-weight: 300;
      color: darkgrey;
      display: block;
  }
  
    .footer-col .allsocial-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: white;
        margin:0 8px 8px 0;
        text-align: center;
      line-height: 40px;
      border-radius: 50%;
      color: black;
      transition: all 0.5s ease;
  }
  .footer-col .allsocial-links a:hover{
      color: white;
      background-color: black;
      transition: 0.5s ease;
  }
  .footerlogo  {
      font-size: 45px;
      margin: 60px 1px 1px 1px;
      color:  #000E1C;
    }
    .footer h3{
      background-color: black;
      color: aliceblue;
      text-align: center;
      font-family: roboto;
    }
    .footerlogo img{
      height:70px;
    }
    

/* the footer ends here */
/* For Mobile Screens (up to 320px) */
@media only screen and (max-width: 321px) {
  .navbar_main_container {
      flex-direction: column;
      align-items: flex-start;
  }
.imgcontainer{
  height: 50vh;
  margin-bottom: 120px;
}
  .nav-links {
      display: none;
      width: 100%;
  }

  .nav-links.active {
      display: block;
  }

  .nav-toggle {
      display: block;
      position: absolute;
      top: 10px;
      right: 10px;
  }

  nav ul {
      flex-direction: column;
  }

  nav ul li {
      margin: 5px 0;
  }

  .dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none;
  }

  .dropdown-menu .dropdown-submenu {
      position: static;
      width: 100%;
  }
}


/* this is for mobile 320px to 377px*/
@media only screen and (min-width: 320px) and (max-width: 377px) {
  .navbar_main_container {
    flex-direction: vertical; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
  }

  .imgcontainer {
    height: 50vh; /* Set container height to 50% of viewport height */
    margin-bottom: 120px; /* Add margin at the bottom */
  }

  .nav-links {
    display: none; /* Hide nav links by default */
    width: 100%; /* Full width for mobile */
  }

  .nav-links.active {
    display: block; /* Show nav links when active */
  }

  .nav-toggle {
    display: block; /* Show toggle button */
    position: absolute; /* Position toggle button */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
  }

  nav ul {
    flex-direction: column; /* Stack list items vertically */
  }

  nav ul li {
    margin: 5px 0; /* Add margin between list items */
  }

  .dropdown-menu {
    position: static; /* Reset position for dropdown */
    width: 100%; /* Full width for mobile */
    box-shadow: none; /* Remove shadow for simplicity */
  }

  .dropdown-menu .dropdown-submenu {
    position: static; /* Reset position for submenu */
    width: 100%; /* Full width for mobile */
  }
}


/* For Mobile Screens (377px to 427px) */
@media only screen and (min-width: 377px) and (max-width: 427px) {
  .navbar_main_container {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
  }

  .imgcontainer {
    height: 50vh; /* Set container height to 50% of viewport height */
    margin-bottom: 120px; /* Add margin at the bottom */
  }

  .nav-links {
    display: none; /* Hide nav links by default */
    width: 100%; /* Full width for mobile */
  }

  .nav-links.active {
    display: block; /* Show nav links when active */
  }
  
  .nav-toggle {
    display: block; /* Show toggle button */
    position: absolute; /* Position toggle button */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
  }

  nav ul {
    flex-direction: column; /* Stack list items vertically */
  }

  nav ul li {
    margin: 5px 0; /* Add margin between list items */
  }
  
  .dropdown-menu {
    position: static; /* Reset position for dropdown */
    width: 100%; /* Full width for mobile */
    box-shadow: none; /* Remove shadow for simplicity */
  }

  .dropdown-menu .dropdown-submenu {
    position: static; /* Reset position for submenu */
    width: 100%; /* Full width for mobile */
  }
}
/* For Tablet Screens (768px to 1023px) */

  @media only screen and (min-width: 768px) {
    .navbar_main_container {
      flex-direction: row; /* Align items horizontally */
      align-items: center; /* Center align items vertically */
    }
  
    .nav-links {
      display: flex; /* Display the navigation links */
    }
  
    .nav-toggle {
      display: none; /* Hide the toggle button */
    }
  
    nav ul {
      flex-direction: row; /* Align list items horizontally */
    }
  
    nav ul li {
      margin: 0 10px; /* Add margin between list items */
    }
    nav ul li a {
      font-size: small;
  }
}

  /* navbar laptop (min-width: 1024px)*/
 @media only screen and (min-width: 1440px) {
  .navbar_main_container {
    flex-direction: row; /* Align items horizontally */
    align-items: center; /* Center align items vertically */
  }

  .nav-links {
    display: flex; /* Display the navigation links */
  }

  .nav-toggle {
    display: none; /* Hide the toggle button */
  }

  nav ul {
    flex-direction: row; /* Align list items horizontally */
  }

  nav ul li {
    margin: 0 10px; /* Add margin between list items */
  }

.imgcontainer {
  height: 85vh; /* Adjusted for larger screens */
}
nav ul li a {
  font-size: medium;
}
  }


  /* navbar for (2560 to 4k) */
  @media screen and (min-width: 2560px) {
    .navbar_main_container {
      flex-direction: row; /* Align items horizontally */
      align-items: center; /* Center align items vertically */
    }
  
    .nav-links {
      display: flex; /* Display the navigation links */
    }
  
    .nav-toggle {
      display: none; /* Hide the toggle button */
    }
  
    nav ul {
      flex-direction: row; /* Align list items horizontally */
    }
  
    nav ul li {
      margin: 0 10px; /* Add margin between list items */
    }
  
   
  
    nav ul li a {
      font-size: large; /* Set font size for navigation links */
    }
  }

/* Media Queries for Responsiveness for NAVBAR ENDS HERE */
/* Media Queries for Responsiveness FOOTER SECTON STARTS HERE */

/* For Mobile Screens (320px) */
@media only screen and (max-width: 321px) {
  .row {
    
      align-items: center; /* Center align items */
  }

  .cols {
      flex-direction: column; /* Stack columns vertically */
      align-items: center; /* Center align items */
  }

  .footer-col {
      padding: 10px 0; /* Adjust padding for mobile */
      text-align: center; /* Center align text */
  }

  .footer-col h4 {
      margin: 20px 0; /* Adjust margin for mobile */
  }

  .footer-col h4::before {
      left: 50%; /* Center underline */
      transform: translateX(-50%);
  }

  .footer-col ul li a {
      font-size: 14px; /* Adjust font size for mobile */
  }

  .footer-col .allsocial-links a {
      margin: 0 5px; /* Adjust margin for mobile */
  }

  .footerlogo img {
      height: 45px; /* Adjust logo size for mobile */
  }

  .footerlogo p {
      font-size: 9px; /* Adjust font size for mobile */
      margin-left: 0; /* Remove left margin */
  }
}

/* this is for mobile 320px to 377px*/
@media only screen and (min-width: 320px) and (max-width: 377px) {
  .row {
    align-items: center; /* Center align items */
  }

  .cols {
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Center align items */
  }

  .footer-col {
    padding: 10px 0; /* Adjust padding for mobile */
    text-align: center; /* Center align text */
  }

  .footer-col h4 {
    margin: 20px 0; /* Adjust margin for mobile */
  }

  .footer-col h4::before {
    left: 50%; /* Center underline */
    transform: translateX(-50%);
  }

  .footer-col ul li a {
    font-size: 14px; /* Adjust font size for mobile */
  }

  .footer-col .allsocial-links a {
    margin: 0 5px; /* Adjust margin for mobile */
  }

  .footerlogo img {
    height: 45px; /* Adjust logo size for mobile */
  }

  .footerlogo p {
    font-size: 9px; /* Adjust font size for mobile */
    margin-left: 0; /* Remove left margin */
  }
}

/*footer section  For Mobile Screens (377px to 427px) */
@media only screen and (min-width: 377px) and (max-width: 427px) {
  .row {
    align-items: center; /* Center align items */
  }

  .cols {
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Center align items */
  }

  .footer-col {
    padding: 10px 0; /* Adjust padding for mobile */
    text-align: center; /* Center align text */
  }

  .footer-col h4 {
    margin: 20px 0; /* Adjust margin for mobile */
  }

  .footer-col h4::before {
    left: 50%; /* Center underline */
    transform: translateX(-50%);
  }

  .footer-col ul li a {
    font-size: 14px; /* Adjust font size for mobile */
  }

  .footer-col .allsocial-links a {
    margin: 0 5px; /* Adjust margin for mobile */
  }

  .footerlogo img {
    height: 45px; /* Adjust logo size for mobile */
  }

  .footerlogo p {
    font-size: 9px; /* Adjust font size for mobile */
    margin-left: 0; /* Remove left margin */
  }
}


/* For Tablet Screens (768px)*/
@media only screen and (min-width: 768px) {
  .row {
    flex-wrap: wrap; /* Allow wrapping of columns */
  }

  .cols {
    flex: 1 1 50%; /* Two columns per row */
  }

  .footer-col {
    padding: 10px; /* Adjust padding for tablet */
  }

  .footer-col h4 {
    margin: 25px 0; /* Adjust margin for tablet */
  }

  .footer-col ul li a {
    font-size: 15px; /* Adjust font size for tablet */
  }

  .footer-col .allsocial-links a {
    margin: 0 6px; /* Adjust margin for tablet */
  }

  .footerlogo img {
    height: 60px; /* Adjust logo size for tablet */
  }

  .footerlogo p {
    font-size: 10px; /* Adjust font size for tablet */
  }
}


/* For laptop  Screens (1440px)*/
@media screen and (min-width: 1440px) {
  .row {
    flex-wrap: wrap; /* Allow wrapping of columns */
  }

  .cols {
    flex: 1 1 50%; /* Two columns per row */
  }

  .footer-col {
    padding: 10px; /* Adjust padding for tablet */
  }

  .footer-col h4 {
    margin: 25px 0; /* Adjust margin for tablet */
    font-size: 30px;
  }

  .footer-col ul li a {
    font-size: 22px; /* Adjust font size for tablet */
  }

  .footer-col .allsocial-links a {
    margin: 0 6px; /* Adjust margin for tablet */
  }

  .footerlogo img {
    height: 70px; /* Adjust logo size for tablet */
  }

  .footerlogo p {
    font-size: 10px; /* Adjust font size for tablet */
  }
  
}

/*footer section size (2560 to 4k)*/
@media screen and (min-width: 2560px) {
  .row {
    flex-wrap: wrap; /* Allow wrapping of columns */
  }

  .cols {
    flex: 1 1 50%; /* Two columns per row */
  }

  .footer-col {
    padding: 30px; /* Increase padding for larger screens */
  }

  .footer-col h4 {
    margin: 35px 0; /* Increase margin for larger screens */
    font-size: 50px; /* Increase font size for larger screens */
  }

  .footer-col ul li a {
    font-size: 38px; /* Increase font size for larger screens */
  }

  .footer-col .allsocial-links a {
    margin: 10px 10px; /* Increase margin for larger screens */
   
  }

  .footerlogo img {
    height: 100px; /* Increase logo size for larger screens */
  }

  .footerlogo p {
    font-size: 16px; /* Increase font size for larger screens */
  }
}
/* Media Queries for Responsiveness FOOTER SECTON ENDS  HERE */



h1, h2 {
  text-align: center;
}

