body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
html, body {
    overflow-x: hidden;
}

.hero-section {
  background-image: url('images/Hero_Background.svg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 15%; /* Space for overlay */
}

.container {
    z-index: 2;
    position: relative;
    padding-bottom: 50px;

}

/* Navbar styles */
.navbar {
    padding: 2rem 4rem;
}

.btn-primary {
    background-color: transparent;
    color: white;
    border: none;

}

.btn-outline-primary {
    background-color: transparent;
    color: white;
    border: none;

}

.btn-primary :hover {
    background-color: white;
    color: #4EB4FF;
    border: 1px solid white;

}

.btn-outline-primary :hover {
    background-color: white;
    color: #4EB4FF;
    border: 1px solid white;
}

/* Heading and subheading */
.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;

}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}



/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #1573FF, #4EB4FF);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 15px;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #4EB4FF, #1573FF);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 15px;
}

.btn-gradient+.btn-gradient {
    margin-left: 0.7rem;
    
}


.dashboard-overlay {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.5rem;
  z-index: 1;
  margin-top: 5px; 
}

/* Dashboard image */
.dashboard-image {
    width: 100%;
    height: auto;
    z-index: 2;
    object-fit: cover;
}


@media (max-width: 412px) {
    .hero-heading {
        font-size: 1.2rem !important;
        /* Smaller font for very small screens */
        line-height: 28px;
        padding: 0 15px;
    }

    .hero-subheading {
        font-size: 1rem;
        /* Adjust subheading size */
        padding: 0 15px;
    }

    .btn-gradient {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        /* Reduce button size */
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 0.5rem 1rem;
        /* Adjust padding for small screens */
    }

    .dashboard-overlay {
        width: 100%;
        /* Full width for very small screens */
        padding: 0.5rem;
        bottom: -20%;
        /* Adjust positioning for small screens */
    }

    .hero-section {
        height: 60vh;
        /* Reduce hero section height on small screens */
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 1.5rem !important;
        padding: 0 20px;
        line-height: 40px;
    }
    .container {
flex-direction: column;
}

    .hero-subheading {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .dashboard-overlay {
        width: 90% !important;
        padding: 0.5rem;
        bottom: 0%;
    }

    .hero-section {
        height: 70vh;
        margin-bottom: 0;
    }
.img-fluid{
    margin-bottom: 0% !important;
}
}

@media (min-width: 1200px) {
    .hero-section {
        height: 100vh;
    }

    .dashboard-overlay {
        max-width: 1000px;


    }

}

/* For very small screens (less than 412px) including 360px */
@media (max-width: 360px) {
    .hero-heading {
        font-size: 1.1rem !important;
        /* Smaller font size for small screens */
        line-height: 26px;
        padding: 0 12px;
        /* Less padding for smaller screens */
    }

    .hero-subheading {
        font-size: 0.9rem;
        /* Smaller subheading size */
        padding: 0 12px;
    }

    .btn-gradient {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        /* Smaller button size */
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 0.5rem 1rem;
        /* Reduce button size */
    }

    .dashboard-overlay {
        position: relative;
        /* Make the overlay relative */
        width: 100%;
        /* Full width for small screens */
        padding: 0.5rem;
        top: 5%;
        /* Move the overlay further down by using top */
    }

    .hero-section {
        height: 80vh;
        /* Further reduce the height on very small screens */
    }
}
@media (min-width: 1200px) {
.hero-section {
min-height: 100vh;  /* Ensure it takes full viewport height */
}

.dashboard-overlay {
max-width: 1000px;
}
}


.navbar-collapse {
    transition: transform 0.3s ease-in-out;
  }
  
  /* Small Screens (Right Slide-in Navbar) */
  @media (min-width: 768px) and (max-width: 992px) , (max-width: 768px){
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%; 
        height: 100%;
        background: linear-gradient(to right, #4E9BFF, #1573FF); 
        transform: translateX(100%); 
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        padding: 2.5rem;
    }
    .navbar .btn{
      padding-left:0% ;
      padding-right: 0%;
      padding-top: 20px;
    }
    .navbar-collapse.show {
        transform: translateX(0); 
    }
  
    .navbar-toggler {
        position: relative;
        z-index: 1100;
    }
  
    .navbar-nav {
      margin-top: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
  
    }
  
    .nav-item a {
        color: white;
        font-size: 1rem;
        text-decoration: none;
    }
  
    .dropdown-menu {
        background-color: #444;
        border: none;
    }
  
    .dropdown-item {
        color: white;
    }
    .navbar {
      padding: 2rem 2rem;
  }
  }
  

/* Features Section */
.features-section {
    padding: 60px 20px;
}

.features-section .feature {
    margin-bottom: 40px;
}

.features-section .feature img {
    width: 100%;
    border-radius: 10px;
}

.features-section .feature h3 {
    margin-top: 20px;
    color: #007BFF;
}

.features-section .feature p {
    margin-top: 10px;
    color: #555;
}

/* Cards Section */
.cards-section {
    background-image: url(images/Hero_Background.svg);
    border: 2px solid #0d47a1;
    padding: 50px 0;
    border-radius: 10px;
}

.cards-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 50px;
}

.cards-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cards-section .solution-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(246, 239, 239, 0.1);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

.cards-section .solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.cards-section .solution-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cards-section .solution-card .card-info h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cards-section .solution-card .card-info p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.cards-section .solution-card .btn {
    background-color: #ff7b00;
    padding: 8px 20px;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
}

.cards-section .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cards-section .solution-card:hover .card-info {
    transform: translateY(0);
}

.cards-section .solution-card:hover .btn {
    background-color: #0056b3;
    transform: translateY(-5px);
}

.cards-section .solution-card.highlighted {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cards-section .solution-card.highlighted .btn {
    background-color: #0056b3;
}




/* Insights Section */
.insights-section {
    padding: 60px 20px;
}

.insights-section .insight {
    margin-bottom: 40px;
}

.insights-section h2 {
    color: #0056b3;
    margin-bottom: 20px;
}

.insights-section p {
    color: #555;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #0056b3, #007BFF);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section p {
    margin-top: 20px;
    font-size: 1.2rem;
}

.cta-section button {
    background-color: #ffffff;
    color: #0056b3;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.cta-section button:hover {
    background-color: #0d47a1;
    color: #ffffff;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .features-section h2, 
    .features-section .feature h3, 
    .features-section .feature p,
    .cards-section h2,
    .cards-section .solution-card .card-info h5,
    .cards-section .solution-card .card-info p,
    .insights-section h2,
    .insights-section .insight h4,
    .insights-section .insight p,
    .capabilities-section h4,
    .capabilities-section p,
    .commitment-section h2,
    .commitment-section p,
    .commitment-section ul {
        text-align: center;
    }
    
    .cards-section .row {
        flex-direction: column;
        gap: 20px;
    }

    .cards-section .solution-card {
        max-width: 100%;
    }

    .commitment-section .col-md-6 {
        text-align: center;
    }

    .commitment-section .commitment-box {
        margin: 0 auto;
    }
    .img-fluid{
        margin-bottom: 20px;
    }
}

.footer {
    position: relative;
    background: linear-gradient(90deg, #1B45B4, #1C2792); /* Dark background color */
    color: white;
    padding: 50px 0;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-social .social-icon {
    font-size: 26px;
    color: white;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2); /* Transparent background */
  }
  
  .footer-social .social-icon:hover {
    color: #2196f3; /* Hover effect color */
    background: rgba(255, 255, 255, 0.4);
  }
  
  .footer-links,
  .footer-right {
    margin-top: 20px;
  }
  
  .footer-links h4, .footer-right h4, .footer-cert-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
  }
  
  .footer-links ul,
  .footer-right ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .footer-links ul li,
  .footer-right ul li {
    margin-bottom: 12px;
  }
  
  .footer-links ul li a,
  .footer-right ul li {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover,
  .footer-right ul li:hover {
    color: #70a9ff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
  }
  
  .footer-bottom hr {
    border-color: #1573FF;
    width: 90%;
    margin: 20px auto;
  }
  
  .footer-bottom p {
    margin-top: 10px;
    font-size: 14px;
  }
  /* Mobile Responsive Design */
  @media (max-width: 767px) {
    .footer .row {
      text-align: center;
    }
  
    .footer-left, .footer-links, .footer-right {
      margin-bottom: 40px;
    }
  
    .footer-logo {
      max-width: 140px;
    }
  
    .footer-description {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .footer-social .social-icon {
      font-size: 22px;
      margin: 0 12px;
    
    }
  
    .footer-links ul li,
    .footer-right ul li {
      font-size: 14px;
    }
  
    .footer-bottom p {
      font-size: 12px;
    }
    .footer-social {
      justify-content: center; 
      display: flex;            
      gap: 15px;               
      margin-top: 20px;
    }
  }
  
  .footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px; /* Set the width of the shape */
    height: 150px; /* Set the height of the shape */
    background: url('images/shape_2.svg') no-repeat center center;
    background-size: cover; /* Ensures that the shape image fits correctly */
    z-index: 1; /* Ensures it's above the background image */
  }
  
  .footer-cert-column {
  margin-top: 20px;
}

.logo-box {
  width: 170px;
  height: 65px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
}

.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* force logo to fill box equally */
}

.cert-logo-link {
  text-decoration: none;
  color: white;
}

.cert-number {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
  color: #fff;
}