.body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-image: #f3f4f6;
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/diamond_singlebg2.svg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.hero:hover {
  background-position: center 40%;
  background-size: 110%;
}
.navbar {
padding: 2rem 4rem;
background-color: transparent;
  background: linear-gradient(to right, #1573FF, #1B45B4); 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.navbar.scrolled {
background-color: rgba(20, 53, 138, 0.8); /* Dark blue with slight transparency */
transition: background-color 0.3s ease;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.7) !important; 
}

.navbar .nav-link.active {
color: white !important; 
}

.navbar .nav-link:hover {
color: white !important; 

}
.btn-outline-primary{
  color: rgb(211, 211, 211);
border: none;
}

.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;
}
}


.hero-content {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 2;
}

.hero h1 {
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 5px;
  animation: slideInFromLeft 2s ease-out forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  animation: slideInFromRight 2s ease-out forwards;
  opacity: 0;
  animation-delay: 1s;
}

.cta-button {
  background-color: #14358A;
  color: white;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: none;
  transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
  background-color: #0097FE;
  transform: scale(1.05);
}

.rectangle-bg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(185, 185, 185, 0.3);
border-radius: 0%;
width: 100%;
height: 100%;
z-index: 1;
}

/* Animations */
@keyframes slideInFromLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }

  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
      transform: translateX(100%);
      opacity: 0;
  }

  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes scaleUp {
  0% {
      transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
      transform: translate(-50%, -50%) scale(1.2);
  }
}

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

.hero p {
    font-size: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}

.cta-button {
    padding: 12px 25px;
    font-size: 1rem;
}
.hero {
 
  height: 80vh;
}
.navbar {
  padding: 2rem 2rem;
}
}

/* Feature Section */
.features {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 30px;
}

.feature-card {
background-color: #ffffff;
box-shadow: 0 10px 20px rgba(113, 131, 231, 0.1);
border-radius: 12px;
border: 1px solid #14358A;
padding: 40px;
text-align: center;
transition: transform 0.3s;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(91, 88, 226, 0.2);
}

.feature-card i {
color: #14358A;
margin-bottom: 20px;
}

.feature-card h3 {
font-size: 1.2rem;
color: #14358A;
}

.feature-card p {
font-size: 1rem;
color: #777;
margin-top: 15px;
}

/* Report Section */
.report-section {
  background-color: #e9f4f8;
  padding: 50px;
  text-align: center;
}
.report-section h2{
  color: #14358A;
}
.report-heading {
  font-size: 2rem;
  color: #14358A;
  margin-bottom: 40px;

}

.report-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch; /* Ensures both columns align equally */
  justify-content: center;
}

.report-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-image img {
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.report-cards {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Ensures 2 report cards per row */
  gap: 20px;
}

.report-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.report-card:hover {
  transform: translateY(-10px);
}

.report-card .icon {
  font-size: 2rem;
  color: #14358A;
  margin-bottom: 15px;
}

.report-card h3 {
  font-size: 1.4rem;
  color: #14358A;
  margin-bottom: 10px;
}

.report-card p {
  font-size: 1rem;
  color: #777;
}

@media (max-width: 768px) {
  .report-container {
    flex-direction: column;
  }

  .report-image {
    max-height: 50%;
  }

  .report-cards {
    grid-template-columns: repeat(1, 1fr); /* Ensure one report card per row on smaller screens */
    max-width: 100%;
  }
}

/* Call to Action Section */
.cta-section {
    background:linear-gradient(135deg, #0097FE, #14358A);
    color: white;
    text-align: center;
    padding: 100px 30px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-button-large {
    background-color: #14358A;
    padding: 15px 50px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
   
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

/* Footer */

.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;
}