
/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fb;
}
a {
  text-decoration: none;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo img {
  height: 50px;
}

/* Nav Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu ul li {
  position: relative;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-menu ul li:hover {
  color:#003049;
}

/* Dropdown */
.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  z-index: 999;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-menu .dropdown:hover .dropdown-menu {
  display: flex;
}

/* Dropdown Active for Mobile */
.dropdown-menu.active {
  display: flex !important;
}

.dropdown-box {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
  padding: 8px;
  border-radius: 5px;
}

.dropdown-box i {
  font-size: 18px;
  color:#00557f;
  min-width: 20px;
}

.dropdown-box h4 {
  margin: 0;
  font-size: 14px;
}

.dropdown-box p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

.dropdown-box:hover {
  background-color: #f8f8f8;
}

/* CTA Button */
.cta .demo-btn {
  padding: 5px 10px;
  background-color:#003049;
  color: #fff !important;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

/* .cta .demo-btn:hover {
  background-color: #e96f09;
} */

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: white;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 15px;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* disable hover on mobile */
  }


}s
.dropdown-box i {
  font-size: 28px;
  color: #0c396f;
}
.cta .demo-btn {
  border: 2px solid #0c396f;
  padding: 8px 18px;
  border-radius: 25px;
  color: #0c396f;
  font-weight: 600;
  transition: 0.3s;
}
.demo-btn:hover {
  background: #0c396f;
  color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}
/* Mobile Nav */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
    /* margin-left: 48% !important; */
  }

}

/* Main Banner */
.main-banner {
  background-color: #00557f;
  color: white;
  /* padding: 80px 20px; */
  /* clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%); */
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 300px;
}

.left h1 {
  font-size: 2.5rem;
  /* line-height: 1.3; */
  margin-bottom: 20px;
}

.left p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #00b4ff;
  color: #00b4ff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #00b4ff;
  color: #00557f;
}

.right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.right img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .main-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Section */
section h2 {
  text-align: center;
  /* margin: 50px 0 10px; */
  font-size: 30px;
  color: #0c396f;
}
section span {
  display: block;
  font-size: 18px;
  color: #666;
  margin-top: 10px;
  text-align: center;
}
.btn-center {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.btn-center .btn {
  background: #0c396f;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
}

/* Tab Section */
.tabs {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.tab {
  padding: 15px 25px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
  color: #0c396f;
  transition: 0.3s;
}
.tab.active {
  background: #eaf0fb;
  border-bottom: 3px solid #0c396f;
}
.tab + .tab {
  border-left: none;
}

.tab-content {
  display: none;
  margin-top: 30px;
  padding: 10px 384px;
}
.tab-content.active {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.tab-content img {
  height: 120px;
  border-radius: 10px;
}
.tab-content .text {
  flex: 1;
  /* margin-top: 40px; */
}
.tab-content .text h2 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #0c396f;
}
.tab-content .text p {
  color: #555;
  margin-bottom: 20px;
}
.tab-content .text a {
  color: #fd7e14;
  font-weight: bold;
}
.features-section {
  background-color: #003049; 
  background-image: url('image/globe-blue-760.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: relative;
  padding: 106px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}
.features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  /* background-color: #f9f9fc;  */
  clip-path: polygon(0 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.features-grid, .features-heading {
  position: relative;
  z-index: 2;
}


.features-heading {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box i {
  font-size: 36px;
  color: #4a90e2;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.key-features {
  background-color: #f9fbff;
  /* padding: 80px 20px; */
  text-align: center;
}

.key-features .features-heading {
  font-size: 32px;
  color: #1b2e4b;
  margin-bottom: 10px;
}

.key-features .features-subheading {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-box {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 20px;
  color: #1a2a3c;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.feature-icon {
  font-size: 48px;
  color: #2a5bd7;
  margin-bottom: 20px;
}

/* footer-start */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 30px 20px 20px; /* Reduced top padding */
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 211px;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #60a5fa;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  cursor: pointer;
}

.footer-links ul li a:hover {
  color: #60a5fa;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact i {
  margin-right: 10px;
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #334155;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #94a3b8;
}

/* footer-end */

/* faq start */
.container {
  margin: 0 auto;
  padding: 4rem;
  /* width: 48rem; */
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  /* padding: 1em 0; */
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/* faq-end */




/* 3rd-section */


.diagonal-banner {
  background-color: #00557f;
  background-image: url('image/sectbg-blue-dots-wave-2000px.png'); /* Your uploaded image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  text-align: center;
}

.content {
  max-width: 1000px;
  margin: auto;
  z-index: 2;
  position: relative;
}

.diagonal-banner h1 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #00b4ff;
  color: #00b4ff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #00b4ff;
  color: #00557f;
}


/* 3rd-section-end */
/* responsive-start */
@media (max-width:968px){
.tab {
  padding: 1px 10px;
  font-size: 12px !important;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
  color: #0c396f;
  transition: 0.3s;
}
.tab-content{
  padding: 1px;
}
h2{
  font-size: 24px !important;
}
p{
  font-size: 14px !important;
}
.features-section{
  padding: 16px 20px !important;
  margin-top: 10px !important;
}
h1{
  font-size: 26px !important;
}
.img-faq{
  margin-top:1px !important;
  flex-direction: column;
}
.container{
  padding: 1rem !important;
}
}




/* resposnive-end */