* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden
}

html {
  scroll-behavior: smooth;
}

/* Floating social bar */
.social-float {
  position: fixed;
  top: 50%;
  right: 12px; /* little padding from edge */
  transform: translateY(-50%);
  background: #0A2540; /* footer background */
  border-radius: 12px;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.35);
}

/* Icons */
.social-float a {
  width: 40px;
  height: 40px;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Hover effect */
.social-float a:hover {
  background: #0A58CA; /* brand blue */
  transform: translateX(-4px);
}


/* Floating whatsapp button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25D366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}


/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background:
    linear-gradient(
      135deg,
      #F8FAFF 0%,
      #F1F6FF 25%,
      #E6F0FF 55%,
      #DCE9FF 75%,
      #D1E3FF 100%
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(10,88,202,0.08),
      rgba(10,88,202,0.08) 2px,
      transparent 2px,
      transparent 6px
    );
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo img {
  height: 44px
}

.logo span {
  font-size: 22px;
  font-weight: 700;
  color: #1F2937
}

nav {
  display: flex;
  align-items: center;
  gap: 44px;
  border: #0A58CA;
  text-shadow: rgba(0, 0, 0, 0.06);
}

nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  transition: color .3s
}

nav a:hover {
  color: #0A58CA
}

nav img.icon {
  width: 18px;
  height: 18px
}

/* Dropdown */
.dropdown {
  position: relative
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center
}

.dropdown .chevron {
  font-size: 16px;
  margin-left: 4px;
  transition: transform .3s
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  background: linear-gradient(
    180deg,
    #FFFFFF 0%,
    #F4F7FF 35%,
    #EAF1FF 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(10,88,202,0.18);
  border: 1px solid rgba(10,88,202,0.12);
  border-radius: 8px;
  padding: 20px 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 1000
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 530;
  transition: background .3s, color .3s
}

.dropdown-menu a:hover {
  background: #f2f6fc;
  color: #700e0e
}

/* ✅ Fix: stay visible when moving mouse between button & menu */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex
}

/* MOBILE MENU */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: .4s ease
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0b2545;
  border-radius: 3px;
  transition: .3s
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg)
}

.dropdown.open .chevron {
  transform: rotate(180deg)
}

@media(max-width:900px) {
  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 360px;
    background: linear-gradient(135deg, #fff 0%, #f3f7ff 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 26px 40px;
    gap: 18px;
    transform: translateX(100%);
    transition: .4s ease;
    box-shadow: -6px 0 20px rgba(0, 0, 0, .08)
  }

  nav.open {
    transform: translateX(0)
  }

  nav a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #e8e8e8
  }

  .menu-overlay.show {
    display: block;
    opacity: 1
  }

  .hamburger {
    display: flex !important;
    z-index: 1001
  }

  .dropdown:hover .dropdown-menu {
    display: none
  }

  .dropdown.open .dropdown-menu {
    display: flex
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 100%
  }

  .dropdown-menu a {
    border-bottom: 1px solid #eaeaea;
    padding-left: 32px
  }
}

/* HERO */
.hero {
  position: relative;
  height: 105vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('images/cover\ page.png') center/cover no-repeat
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px
}

.hero h1 {
  font-size: 45px;
  max-width: 1100px;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .4)
}

.hero h2{font-size:25px;max-width:900px;font-weight:700;text-shadow:0 4px 20px rgba(0,0,0,.4)}


.hero h2 {
  color: #fff;
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.7),
    0 0 16px rgba(0, 0, 0, 0.5);
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
  max-width: 600px
}

.cta-btn {
  margin-top: 30px;
  padding: 14px 34px;
  font-size: 16px;
  border-radius: 40px;
  border: none;
  background: #0b2545;
  color: #fff;
  cursor: pointer;
  transition: .3s
}

.cta-btn:hover {
  background: #113a6b
}

.hero .hero-content p {
  color: #fff;
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.7),
    0 0 16px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  color: #fff;
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.7),
    0 0 16px rgba(0, 0, 0, 0.5);
}


.cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 0.7s infinite;
  font-weight: 700;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

#typeText {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

#typedContent {
  color: #fff;
}

.cursor {
  color: #fff;
}



/* Glass effect animation */
.glass-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15)0%, rgba(255, 255, 255, 0.05)40%, rgba(255, 255, 255, 0.15)100%);
  transform: rotate(25deg);
  animation: glassMove 6s linear infinite;
  z-index: 1
}

@keyframes glassMove {
  0% {
    transform: translate(-100%, -100%) rotate(25deg)
  }

  100% {
    transform: translate(100%, 100%) rotate(25deg)
  }
}

/* PRODUCTS CAROUSEL */
#products {
  padding: 100px 0;
  background: #fff
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%
}

.carousel-track {
  display: flex;
  transition: transform .6s ease
}

.product-card {
  min-width: 33.333%;
  height: 20%;
  padding: 20px;
  text-align: center;
  background: #f9f9f9;
  margin: 0 10px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  transition: transform .3s;
  flex-shrink: 0
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px
}

.product-card:hover {
  transform: translateY(-8px)
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background .3s
}

.carousel-dots button.active {
  background: #0b2545
}

/* FEATURES SECTION */
#features {
  padding: 100px 25px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #F8FAFF 0%,
      #F1F6FF 25%,
      #E6F0FF 55%,
      #DCE9FF 75%,
      #D1E3FF 100%
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(10,88,202,0.08),
      rgba(10,88,202,0.08) 2px,
      transparent 2px,
      transparent 6px
    );

}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 50px;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.3s ease;
}

.feature:hover img {
  filter: none;
}

.feature h4 {
  color: #0b2545;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* FEATURES SECTION */

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 50px;
}

.feature {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0.6) contrast(1);
  opacity: 0.85;
}

.feature:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1) contrast(1.05);
  opacity: 1;
}

.feature:hover img {
  transform: scale(1.1);
  filter: none !important;
}


.feature h4 {
  color: #0b2545;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive grid */
@media(max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 32px;
    max-width: 400px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4)
  }

  .hero h2 {
    font-size: 25px;
    max-width: 500px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4)
  }

  .hero p {
    margin-top: 14px;
    font-size: 14px;
    max-width: 300px
  }
}

@media(max-width: 600px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}


/* About section image + text layout */
.about-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 50px 24px;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 80%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.about-text p {
  margin-bottom: 16px;
}

/* ABOUT SECTION — angled border frame */
.welcome-section {
  padding: 70px 30px;
  background: #fff;
}

.welcome-section .section-title {
  text-align: left;
  font-size: 34px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 40px;
}

.welcome-section span {
  color: #0b2545;
}

.about-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.image-column {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.image-column .inner-column {
  position: relative;
  display: inline-block;
}

.image-column .inner-column img {
  width: 87%;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* angled frame behind image */
.image-column .inner-column::after {
  position: absolute;
  content: '';
  right: 0;
  top: 15px;
  left: 0;
  bottom: 0;
  z-index: 0;
  border: 8px solid #eef2ed;
  transform: skew(-0deg, -8deg);
  border-radius: 8px;
}

.text-column {
  flex: 1;
  min-width: 300px;
  color: #333;
}

.text-column h3 {
  font-size: 22px;
  color: #0b2545;
  margin-bottom: 16px;
  font-weight: 600;
}

.text-column p {
  margin-bottom: 2px;
  line-height: 1.7;
  color: #555;
  font-size: 15px;
}

.text-column .highlight {
  font-size: 18px;
  font-weight: 600;
  color: #0b2545;
  margin-top: 2px;
}

.text-column .highlight span {
  font-size: 36px;
  color: #0b2545;
  font-weight: 700;
}

@media(max-width: 900px) {
  .about-wrap {
    flex-direction: column;
    text-align: center;
  }

  .welcome-section .section-title {
    text-align: center;
  }

  .image-column .inner-column::after {
    transform: none;
  }
}



/* CONTACT */
#contact-home {
  background: #f9fafc;
  padding: 70px 24px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  max-width: 1200px;
  margin-inline: auto
}

.contact-info p {
  margin: 10px 0;
  color: #333;
  font-size: 15px
}

.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

.map-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Keeps perfect responsive ratio */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .map-container {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
  }
}

/* FOOTER */
/* FOOTER */
footer {
  position: relative;
  overflow: hidden;
  color: #E5E7EB;
  padding: 60px 24px 30px;
  background: #0A2540;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  color: #E5E7EB;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color .3s;
}

.footer-col a:hover {
  color: #3B82F6;
}

.logo-col img {
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* Social container */
footer .socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

/* Social button */
footer .socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ICON SIZE — THIS FIXES YOUR ISSUE */
footer .socials a i {
  font-size: 22px;      /* 👈 KEY LINE */
  color: #ffffff;
}

/* Hover effect */
footer .socials a:hover {
  background: #0A58CA;  /* brand blue */
  transform: translateY(-3px);
}

.bottom-footer {
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  background: #1E3A5F;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}


/* ✅ Fix dropdown hover gap */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex !important;
}

.dropdown-menu {
  pointer-events: auto;
}

footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 60px 24px 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer column headings */
footer .footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Quick links container */
footer .footer-col a {
  font-size: 14px;
  color: #CBD5E1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

/* Hover effect */
footer .footer-col a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

/* Optional subtle underline on hover */
footer .footer-col a::before {
  content: "›";
  margin-right: 8px;
  color: #0A58CA;
  opacity: 0;
  transition: opacity 0.25s ease;
}

footer .footer-col a:hover::before {
  opacity: 1;
}

/* ===== ABOUT / WELCOME SECTION ===== */
.welcome-section {
  padding: 100px 0;
  padding-left: 12px;
}

/* Wrapper */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* IMPORTANT */
}

/* LEFT IMAGE COLUMN */
.image-column {
  display: flex;
  height: 100%;
}

.image-column .inner-column {
  width: 100%;
  height: 100%;
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* RIGHT TEXT COLUMN */
.text-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 THIS FIXES EMPTY SPACE */
  height: 100%;
}

/* Text spacing */
.text-column h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.text-column p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #374151;
}

/* Highlight */
.text-column .highlight {

  font-size: 22px;
  font-weight: 600;
  color: #0A58CA;
}

.text-column .highlight span {
  font-size: 40px;
  font-weight: 700;
}

/* Bottom image */
.text-column img {
  width: 100%;
  max-width: 100%;       /* removes center gap */
  align-self: flex-start; /* force left alignment */
  border-radius: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .image-column img {
    height: auto;
  }

  .text-column {
    justify-content: flex-start;
  }

  .text-column img {
    margin-top: 20px;
  }
}



@keyframes sweep {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}