* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f6fbff;
  color: #102030;
}
#navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

#navbar header {
  width: 100%;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: bold;
  color: #0077b6;
}

.logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #102030;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0077b6;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  min-width: 160px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,119,182,0.25);
}

.btn:link,
.btn:visited {
  color: white;
  text-decoration: none;
}

.btn:hover {
  background: #005f91;
  transform: translateY(-3px);
}

.outline {
  background: transparent;
  color: #0077b6;
  border: 2px solid #0077b6;
}

.outline:link,
.outline:visited {
  color: #0077b6;
}

.outline:hover {
  background: #0077b6;
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 8%;
  align-items: center;
  background: linear-gradient(135deg, #e8f7ff 0%, #ffffff 45%, #d8f3ff 100%);
  border-radius: 0 0 60px 60px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
  background: linear-gradient(90deg, #003b73, #0077b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #52616b;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.tag {
  background: #d8f3ff;
  color: #0077b6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.hero-card,
.card {
  background: white;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 1px solid rgba(0,119,182,0.08);
}

.hero-card:hover,
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,119,182,0.18);
}

.hero-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.brands,
.features,
.steps,
.testimonials,
.faq,
.cta {
  padding: 70px 8%;
  text-align: center;
}

.brands div {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 25px;
  flex-wrap: wrap;
  color: #0077b6;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 80px 8%;
  align-items: center;
  background: white;
  border-radius: 50px;
  margin: 60px 8%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.product img {
  width: 100%;
  border-radius: 25px;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0,119,182,0.18);
}

.product h2,
.features h2,
.steps h2,
.testimonials h2,
.faq h2,
.cta h2 {
  font-size: 42px;
  margin: 20px 0;
}

.product p,
.features p,
.steps p,
.cta p {
  color: #52616b;
  margin-bottom: 20px;
}

.product ul {
  margin: 20px 0;
  padding-left: 20px;
}

.product li {
  margin-bottom: 10px;
}

.features,
.steps,
.testimonials {
  background: linear-gradient(180deg, #ffffff, #f1faff);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card h3 {
  margin-bottom: 15px;
  color: #0077b6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 70px 8%;
  background: linear-gradient(135deg, #003b73, #0077b6);
  color: white;
  text-align: center;
}

.stats div {
  padding: 25px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stats div:last-child {
  border-right: none;
}

.stats h2 {
  font-size: 48px;
}

.faq details {
  background: white;
  margin: 15px auto;
  max-width: 700px;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.faq details:hover {
  transform: scale(1.02);
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
}

.cta {
  background: #e8f7ff;
}

/* Footer */
.custom-footer {
  position: relative;
  background: #071126;
  color: white;
  margin-top: 80px;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.footer-wave {
  height: 100px;
  background: linear-gradient(90deg,#3b82f6,#60a5fa);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 8%;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-center {
  flex: 0 0 180px;
  text-align: center;
}

.footer-center img {
  width: 140px;
  background: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.footer-left h2 {
  margin-bottom: 15px;
}

.footer-left p {
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-right h3 {
  margin-bottom: 15px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin: 10px 0;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  color: #60a5fa;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e3a8a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  color: #94a3b8;
}

.about-highlight {
  background: white;
}

.about-content p {
  line-height: 1.8;
}

.about-points {
  display: grid;
  gap: 15px;
  margin: 25px 0;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1faff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  color: #102030;
}

.about-points i {
  color: #0077b6;
  font-size: 22px;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(0,119,182,0.2);
}


/* About and Contact Pages */
.page-hero {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, #e8f7ff, #ffffff, #d8f3ff);
}

.page-hero h1 {
  font-size: 54px;
  color: #003b73;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: #52616b;
}

.about-page,
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 80px 8%;
  align-items: center;
}

.about-page h2,
.contact-page h2 {
  font-size: 42px;
  color: #003b73;
  margin: 20px 0;
}

.about-page p,
.contact-page p {
  color: #52616b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-page img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,119,182,0.18);
}

.contact-box {
  margin-top: 25px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border: 1px solid #d7e6f0;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077b6;
}

.contact-form textarea {
  resize: none;
}


/* Media Section */
.media-section {
  padding: 80px 8%;
  text-align: center;
  background: #f7faff;
}

.media-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.media-section > p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.media-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.media-card h3 {
  padding: 18px;
  font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 20px 5%;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 5%;
    border-radius: 0 0 35px 35px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-card img {
    height: 260px;
  }

  .product,
  .grid,
  .stats,
  .about-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .product {
    margin: 30px 5%;
    padding: 50px 6%;
    border-radius: 30px;
    text-align: center;
  }

  .product ul {
    text-align: left;
  }

  .product h2,
  .features h2,
  .steps h2,
  .testimonials h2,
  .faq h2,
  .cta h2 {
    font-size: 32px;
  }

  .stats div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .stats div:last-child {
    border-bottom: none;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .about-page,
  .contact-page {
    text-align: center;
  }

  .footer-content {
    text-align: center;
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Mobile Sidebar Navbar */
.menu-btn,
.close-btn {
  display: none;
}

@media (max-width: 768px) {
  #navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
  }

  .logo span {
    font-size: 22px;
  }

  .menu-btn {
    display: block;
    background: #0077b6;
    color: white;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
  }

  nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: #071126;
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    transition: 0.3s ease;
    z-index: 10000;
  }

  nav.active {
    right: 0;
  }

  nav a {
    color: white;
    margin: 15px 0;
    font-size: 18px;
    text-decoration: none;
  }

  .close-btn {
    display: block;
    align-self: flex-end;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
    cursor: pointer;
  }
}
.features .card i {
  color: #0077b6;
  margin-bottom: 20px;
}

.features .card {
  text-align: center;
}

.page-hero {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, #e8f7ff, #ffffff, #d8f3ff);
}

.page-hero h1 {
  font-size: 54px;
  color: #003b73;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: #52616b;
  max-width: 800px;
  margin: auto;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 38px;
  }
}


.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  padding: 20px 20px 10px;
  color: #0077b6;
}

.service-card p {
  padding: 0 20px 25px;
  color: #52616b;
}

.service-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

.service-card img {
  transition: 0.4s ease;
}

@media (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
}


/* for video card */


.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card img,
.service-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.service-card:hover img,
.service-card:hover video {
  transform: scale(1.05);
}

.service-card h3 {
  padding: 20px 20px 10px;
  color: #0077b6;
}

.service-card p {
  padding: 0 20px 25px;
  color: #52616b;
}

@media (max-width: 768px) {
  .service-card img,
  .service-card video {
    height: 180px;
  }
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-video video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .hero-video video {
    height: 220px;
  }

  .hero-card img {
    height: 200px;
  }
}

.hero-inline-video {
    margin: 30px 0;
}

.hero-inline-video video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.hero-card {
    margin-top: 25px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 8%;
  align-items: center;
  background: linear-gradient(135deg, #e8f7ff 0%, #ffffff 45%, #d8f3ff 100%);
  border-radius: 0 0 60px 60px;
}

.hero-content {
  text-align: left;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-inline-video video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-inline-video video {
    height: 220px;
  }
}


.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-inline-video video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
    margin: 25px 0;
  }

  .hero-inline-video video {
    height: 220px;
  }
}




.brands {
  padding: 60px 8%;
  text-align: center;
}

.brands p {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 30px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  min-width: 180px;
}

.brand-item i {
  font-size: 40px;
  color: #0077b6;
}

.brand-item span {
  font-weight: 600;
  color: #102030;
}

.brand-item:hover i {
  transform: scale(1.15);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .brands-grid {
    gap: 20px;
  }

  .brand-item {
    min-width: 140px;
  }

  .brand-item i {
    font-size: 32px;
  }
}


.contact-box p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.contact-box i {
    color: #0077b6;
    width: 22px;
}

.contact-box a {
    color: #102030;
    text-decoration: none;
}

.contact-box a:hover {
    color: #0077b6;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #60a5fa;
}