/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
  color: #aaa;
}
body {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  overflow: scroll;
}
@keyframes slideIn{
  to{
    transform: translateY(0);
  }
}
/* WhatsApp CTA fixed at bottom-right corner */
#whatsapp-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  padding: 12px 18px;
  border-radius: 30px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

#whatsapp-cta a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#whatsapp-cta i {
  font-size: 18px;
}

#whatsapp-cta:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  #whatsapp-cta {
    padding: 10px 14px;
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
  #whatsapp-cta i {
    font-size: 16px;
  }
}

/* ================= NAVIGATION ================= */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d1b2a;
  padding: 6px 4%;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00aaff;
}

.icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}

.icons a:hover {
  color: #00aaff;
}

#menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile menu toggle */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(to bottom, #0d1b2a, #0d1b2afb);
  padding: 15px 5%;
}

.mobile-menu a {
  color: white;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid #444;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  #menu-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}

/* ================= HERO SECTION ================= */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  background: #0d1b2a;
  color: #fff;
}

.hero-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-100%);
  animation: slideIn 0.6s ease-in forwards;
}

.hero-name span {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 65px;
}

.hero-slogan {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffdd00;
}

.stats-wrapper {  
  display: flex; 
  align-items: center;  
  justify-content: space-around;
  width: 100vw;
  margin: 80px 0 20px 0;
}  

.stat-box {  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;  
  font-weight: 600;
  color: #fff;  
  background-color: #00567a;
  padding: 10px;
  width: 15rem;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.658);
  transition: transform 0.3s ease;
}  
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-box span{
  font-size: 1.5rem;
}

.hero-description p {
  font-size: 1rem;
  color: #e0e0e0;
}

.demo-btn {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #00567a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.demo-btn:hover {
  background-color: #00567a;
}

.hero-graphic img {
  width: 100%;
  max-width: 450px;
  animation: zoomIn 1s ease;
  transform: translateX(100%);
  animation: slideIn 0.6s ease-in forwards;
}

/* Responsive Hero */
@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }
  .stats-wrapper {  
    text-align: center; 
    align-self: center;
    width: 80%;
  }  .stat-box{
    width: 7rem; height: 8rem;
  }
  .hero-graphic img {
    max-width: 280px;
    margin-top: 20px;
  }
}

/* ================= SERVICES SECTION ================= */
.sc-container {
  padding: 60px 8%;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.main-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #00567a;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 20px;transform:
  translateY(100%);
  animation: slideIn 0.6s ease-in forwards;
}

.sb-heading {
  font-size: 1.5rem;
  color: #222;
  font-weight: 600;
}

.body-text {
  font-size: 1rem;
  color: #555;
}

/* Boxes for Extra Solutions */
.solution-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.sol-item {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.sol-item i {
  font-size: 30px;
  color: #00567a;
  margin-bottom: 10px;
}

.sol-item h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* Logos for Software */
.software-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.software-logo {
  width: 150px;
  transition: transform 0.3s ease;
}

.software-logo:hover {
  transform: scale(1.05);
}

/* Responsive Service Section */
@media screen and (max-width: 768px) {
  .solution-boxes {
    flex-direction: column;
  }

  .sol-item {
    width: 100%;
  }

  .software-logo {
    width: 110px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-container {
  padding: 60px 8%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.about-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #444;
  transform: translateX(-100%);
  animation: slideIn 0.6s ease-in forwards;
}

.about-text .tagline {
  font-size: 1.2rem;
  color: #00567a;
  font-weight: 700;
}

.about-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  animation: slideIn 0.6s ease-in forwards;
}

.responsive-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .responsive-img {
    max-width: 80%;
  }
}

.keybenefits-section{
  padding: 2rem 0 2rem 0;
}

.keybenefits-section .tagline { 
  margin: 20px 10px 0 10px; 
  text-align: center;
  color: #00567a;
}  

.keybenefits-container { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
  justify-content: center; 
  margin-top: 20px;

}  

.keybenefits-container .bg-color{
  background-color: #0d1b2a;
  color: white;
}

.keybenefits-box {  
  background: #fff;
  padding: 20px; 
  border-radius: 60px; 
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  width: 350px;  height: 300px;
  text-align: left;  
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);  
  transition: transform 0.3s ease;
}  
.keybenefits-box:hover{
  transform: translateY(-5px);
}
.keybenefits-box i{
  font-size: 3em;
  margin-bottom: 10px;
}

.keybenefits-box h3 { 
  margin-bottom: 10px; 
  font-size: 1.1em; 
}  

.keybenefits-box p { 
  font-size: 0.95em; 
}  

@media (max-width: 768px) {  
  .keybenefits-container {  
    display: flex;  
    flex-wrap: nowrap;  
    overflow-x: auto;  
    width: 100%;  
    justify-content: flex-start;  
    align-items: flex-start;  
    gap: 5px;  
    padding: 20px;  
  }  

  .keybenefits-container {  
  scroll-snap-type: x mandatory;  
  -webkit-overflow-scrolling: touch;  
  }

  .keybenefits-box {  
    width: 90vw;  
    flex: 0 0 auto;  
    scroll-snap-align: start;
    overflow: scroll;
  }  
}  

/* ================= FOOTER ================= */
.site-footer {
  background-color: #0d1b2a;
  color: #f1f1f1;
  padding: 60px 8% 30px;
}

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

.footer-brand {
  flex: 1 1 200px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-brand .tagline {
  color: #ffdd00;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00aaff;
}

.footer-contact p {
  color: #ccc;
  margin: 5px 0;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  color: #f1f1f1;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #00aaff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact,.footer-socials{
    justify-content: center;
  }
}