/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: 'Inter', sans-serif;
}


/* Header styling */
.main-header {
  background-color: #fff;
  position: static;
  border-bottom: 1px solid #eee;
  padding: 20px 40px; 
  height: 90px;
  margin-top: -15px;
  margin-bottom: 30px;
}

.container {
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Logo section */
.logo-section {
  display: flex;
  align-items: center;
  margin-right: 210px;
  
}

.logo-img {
  width: 200px;         
  height: auto;
  position: sticky;
  margin-left: -72px;   
}

/* Navigation */
.nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-right: -200px;
}

.nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 450;
  color: #00288D;
  transition: color 0.3s ease;
  margin: 0px;
 padding: 10px;
  
}



.nav a:hover {
  color: #ff4500;
}
.dropdown {
  position: relative;
  display: inline-block;

}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  backdrop-filter: blur(50px);
  background-color: white;
  box-shadow: 0  4px 6px rgba(0,0,0,0.1);
  z-index: 999;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background-color: #f2f2f2;

}
/* Auth buttons */
.auth-buttons {
  display: flex;
  align-items: centre;
  gap: 16px;
  margin-bottom: 20px;
}

.login-btn {
  background-color: #00227e;
  color: #fff;
  padding: 10px 20px;      
  font-size: 15px;         
  font-weight: 800;        
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  margin-right: -73px;
  margin-bottom: -15px;
}

.login-btn:hover {
  background-color: #00185c;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.788);
  box-shadow: -10px 0 10px rgba(0,0,0,0.1);
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  font-weight: bold;
  font-size: 24px;
}
.sidebar li{
  width: 100%;
  font-weight: bold;
  margin: 15px 0;
  color: #000;
}
.sidebar a{
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
 
}
.sidebar .dropdown {
  position: relative;
  width: 100%;
}
.sidebar .dropdown-menu {
  display: none;
  flex-direction: column;
  position: static;
  padding: 5px 10px;
  margin-left: 10px;
  background-color: #ffffff; 
  border: 1px solid #ddd; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  border-radius: 5px; 
  z-index: 1000;
}
.sidebar .dropdown-menu a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
}

.sidebar .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: black;
}
.menu-button{
  display: none;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
nav li {
  height: 50px;
}
nav a {
  height: 100%;
  padding: 10px 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #00288D;
  margin-right: 40px;
}
nav a:hover {
  background-color: #f0f0f0;
}

.nav a.active {
  color: #ff4500;
}
.hero-section {
  background: white;
  color: white;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  margin-top: -20px;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  max-width: 50%;

}
.hero-text h1 {
  font-size: 50px;
  line-height: 55px;
  font-weight: bold;
}

.hero-text h1 .orange {
  color: black; 
  font-size: 50px;
}

.hero-text h1 .white {
  color: black;
  font-weight: 300;
  font-size: 45px;
}
.hero-text p.subtext {
  color: black;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 1rem;
  font-weight: medium;
}



.hero-buttons {
  margin-top: 32px;

}
.hero-buttons button {
  padding: 12px 24px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #00227e;
  background-color: transparent;
  color: #00227e;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-right: 10px;
}

.hero-buttons button:hover {
  background-color: #ffffff;
  color: #00227e;
}
.hero-buttons .secondary {
  background-color: white;
  color: #00227e;
  border: 1px solid  #00227e;
}

.hero-image-container {
  flex: 1;
  position: relative;
  height: 400px;
  width: 400px;
  overflow: hidden;
  margin-right: -100px;

}
.hero-image {
   width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.dots {
  text-align: center;
  margin-top: 20px;
}
.dot {
  height: 10px;
  width: 10px;
  background-color: grey;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.dot.active {
  opacity: 1;
  background-color: #ff6600;
}
.section {
  max-width: 1200px;
  margin: auto;
  padding: -10px  -20px;
  text-align: center;
  margin-top: 50px;
}

.section h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: -40px;
}

.section p {
  font-size: 12px;
  color: #777;
  max-width: 600px;
  margin: 0 auto 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.card {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
   display: flex;
  flex-direction: column;
  align-items: center;
}

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

.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
 display: block;
}

.title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.desc {
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  font-weight: regular;
}
.partners-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fefafa;
}

.partners-section h2 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(2 * 200px);
  animation: scroll-left 4s linear infinite  ;
}

.slide {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slide img {
  height: 80px;
  object-fit: contain;
  padding: 0 10px;
}

/* Slide animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-90%);
    }
  }
/* About Section */
.about-section {
  padding: 60px 10%;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 300px;
  max-width: 100%;
}

.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-size: 25px;
  color: #1b1b1b;
  margin-bottom: 15px;
  font-weight: bold;
  
}

.about-content h2 span {
  font-weight: bold;
  color: #111;
}

.about-content p {
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  font-weight: medium;
}
.about-content .blue {
  color: #00288D;
}

.about-content .orange {
  color: #FF6300; 
}


.read-more {
  display: inline-block;
  color: #0056ff;
  font-weight: medium;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: poppins;
}

.read-more span {
  transition: transform 0.3s ease;
}

.read-more:hover span {
  transform: translateX(4px);
}
.services-section {
  padding: 60px 10%;
  background-color: #fff8f6;
  text-align: center;
}

.services-header h2 {
  font-size: 25px;
  color: #222;
  margin-bottom: 10px;
}

.services-header p {
  color: #777;
  font-size: 12px;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-image {
  height: 150px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #f3f3f3 ;
}

.service-title {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #001f5c;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #e35b00;
}
.results-section {
  padding: 60px 10%;
  background-color: #ffffff;
  text-align: center;
}

.results-header h2 {
  font-size: 25px;
  color: #222;
  margin-bottom: 10px;
}

.results-header p {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: poppins;
  font-weight: medium;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 60px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.result-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
}

.result-item p {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}
.result-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.result-item.animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
.download-section {
  background-color: #fef4f2;
  padding: 60px 20px;
}
.download-left .blue {
  color: #00288D; 
}

.download-left .orange {
  color: #FF6300; 
}

.download-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.download-left h2 {
  font-size: 25px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  text-align: center;
}

.download-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 400px;
}

.download-right p {
  font-size: 12px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.download-section .form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.download-section input[type="text"] {
  padding: 10px 14px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
  min-width: 200px;
}

.download-section button {
  padding: 10px 20px;
  background-color: #001f54;
  color: white;
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.download-section button:hover {
  background-color: #003080;
}

/* Footer */
    .footer {
  background-color: #f1f4fa ;
  padding: 40px 60px;
  align-items: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer-section h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.footer-section ul li a {
  margin-bottom: 6px;
  color: #333;
  font-size: 12px;
  text-decoration: none;
}

.footer-section p {
  font-size: 12px;
  line-height: 1.5;
}

.social-icons {
  margin-top: 10px;
}
.social-icons a {
  margin-right: 10px;
  transition: color 0.3s;
  text-decoration: none;    
  margin: 0 10px;            
  font-size: 24px;           
  color: #000;               
  display: inline-flex;     
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e60023; 
}

.contact {
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #000;
}

.contact i {
  margin-right: 8px;
  color: #ff5722;
}
.copy {
  width: 100%;
 
  color: #333;
  font-size: 16px;
  text-align: center;
  padding: 20px 0px;
  position: relative;
  margin-bottom: -30px;
  
  
  
}

/* Highlight company name */
.copy strong {
  font-weight: 600;
  color: #1f2f47;
}

/* Scroll to top button */
#scrollTopBtn {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #4a75c6;
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 40px;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-text h1 .orange,
  .hero-text h1 .white {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: auto;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .hero-section {
    padding: 80px 40px;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-text h1 .orange,
  .hero-text h1 .white {
    font-size: 42px;
  }

  .hero-image-container {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .hero-image {
    object-fit: contain;
    width: 100%;
    height: auto;
  }
}

@media  (max-width: 768px) {
  .logo-img {
    margin-left: -20px;
  }
 .hero-section {
    padding: 40px 20px;
  }

  .hero-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    padding: 20px 0;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-text h1 .orange,
  .hero-text h1 .white {
    font-size: 32px;
  }

  .hero-text p.subtext {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons button {
    width: 80%;
    font-size: 14px;
  }

  .hero-image-container {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .dots {
    margin-top: 20px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 300px;
  }
   .download-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .download-left h2 {
    font-size: 20px;
  }

  .download-right {
    width: 100%;
    max-width: 100%;
  }

  .download-section .form-group {
    flex-direction: column;
    align-items: center;
  }

  .download-section input[type="text"] {
    width: 100%;
    max-width: 300px;
  }

  .download-section button {
    width: 100%;
    max-width: 300px;
  }
  

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .copy-section {
    padding: 15px 10px;
    font-size: 13px;
  }

  #scrollTopBtn {
    position: static;
    margin-top: 10px;
    transform: none;
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {

  .results-grid {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 1.5rem;
  }
  
   .download-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .download-left h2 {
    font-size: 20px;
  }

  .download-right {
    width: 100%;
    max-width: 100%;
  }

  .download-section .form-group {
    flex-direction: column;
    align-items: center;
  }

  .download-section input[type="text"] {
    width: 100%;
    max-width: 300px;
  }

  .download-section button {
    width: 100%;
    max-width: 300px;
  }

} 
@media screen and (max-width: 380px) {

  .results-grid {
    grid-template-columns: 2fr;
  }

  .section h2 {
    font-size: 1.5rem;
  }


} 
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media( max-width: 400px){
    .sidebar{
      width: 100%;
    }
   
}
  

