body {
  margin: 0;
  font-family:  'Roboto', sans-serif;
  background: #f4f8fb;
  color: #333;
  
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(93, 182, 216);
  padding: 10px 20px;
}

.navbar .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
   align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.login-btn a {
  background-color: #fff;
  color: skyblue;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.ticker {
  background-color: #0077b6;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

.ticker p {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 75s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  padding: 15px 30px;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
  
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide.active {
   opacity: 1;
  z-index: 1;
  animation: zoomOut 15s ease-in-out;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transform: scale(1); /* end state for animation */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2); /* start bigger */
  transition: transform 1s, opacity 1s;
  z-index: 0;
}



.slideshow .slide {
  width: 100%;
  display: none;
  object-fit: cover;
  animation: zoomOut 5s ease-in-out;
}

.slideshow .slide.active {opacity: 1;
  z-index: 1;
  animation: zoomOut 4s ease-in-out;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.services-3d {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px; /* ⬅️ reduced gap */
  padding: 40px 4%;
  background-color: #fff;
}

.box {
 flex: 1 1 calc(33.333% - 50px); /* ⬅️ wider boxes */
  max-width: calc(33.333% - 10px);
  background-color: rgb(253, 253, 253);
  padding: 30px 20px;
  color: rgb(29, 158, 222);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 12px;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3), inset 0 -3px 0 rgba(255,255,255,0.2);
}
.box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.box p {
  font-size: 1rem;
  font-weight: 400;
  color: #4d4c4c;
  line-height: 1.5;
  margin: 0;
}
.box:hover {
  transform: perspective(800px) rotateY(10deg) rotateX(5deg);
  background-color: #e6eaeb;
}


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: float 2s infinite ease-in-out;
}

.whatsapp-btn img {
  width: 40px;
  height: 40px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .services-3d {
    display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 5%;
  background-color: #fff;
  }

  .box {
    width: 90%;
  }
}
/* ✅ Responsive stacking for tablets & phones */
@media (max-width: 768px) {
  .box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.about-eleos {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.about-eleos.show {
  opacity: 1;
  transform: translateY(0);
}

.about-eleos h1 {
  color: #0077cc;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-eleos p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}
.about-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 0 #005fa3, 0 15px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
  transform: translateY(0);
}
.btn.left {
   background-color: #0077cc;
  color: white;
  border: none;
}

.btn.right {
 background-color: white;
  color: #0077cc;
  border: 2px solid #0077cc;
  box-shadow: 0 8px 0 #005fa3, 0 15px 25px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #004c82, 0 20px 30px rgba(0, 0, 0, 0.3);
}

.box-image {
  width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.box-description {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #191919;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 10px;
}

.video-section {
  padding: 40px 5%;
  text-align: center;
  margin-top: 60px;
}

.video-title-3d {
  font-size: 3rem;
  color: #0077cc;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow:
    2px 2px 0 #005fa3,
    4px 4px 0 #004080,
    6px 6px 15px rgba(0,0,0,0.4);
  transform: perspective(800px) rotateX(5deg) rotateY(-5deg);
  letter-spacing: 1px;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.video-title-3d.show {
  opacity: 1;
  transform: none;
}

.video-wrapper {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  background: rgba(0, 119, 204, 0.7);
  border: none;
  color: #fff;
  padding: 20px 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  background: rgba(0, 119, 204, 0.9);
}
.video-container {
 background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
  transform: perspective(1000px) rotateX(2deg);
}

.focus-video {
 width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contact-request {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 5%;
}

.request-form-box,
.join-box {
  fwidth: 100%;
  max-width: 1000px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transform: perspective(800px) rotateX(2deg);
  transition: transform 0.3s ease;
}

.request-form-box:hover,
.join-box:hover {
  transform: perspective(800px) rotateX(0deg) scale(1.02);
}

.request-form-box h2,
.join-box h3 {
  color: #0077cc;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.send-btn {
  background-color: #0077cc;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.send-btn:hover {
 transform: translateY(-4px);
  box-shadow: 0 12px 0 #004f80, 0 20px 30px rgba(0, 0, 0, 0.3);
}

.success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #e6ffe6;
  border: 2px solid #00cc66;
  color: #006633;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  animation: fadeInSlide 1s ease forwards;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.join-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
}

.certification-section {
  padding: 60px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.cert-title {
  font-size: 2.5rem;
  color: #0077cc;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.cert-box {
  background-color: white;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 90px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-box:hover {
  transform: perspective(800px) rotateY(10deg) rotateX(5deg);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.cert-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.energy-section {
  padding: 60px 5%;
  background-color: #eef9f2;
}

.energy-title {
  font-size: 2.5rem;
  color: #007a3d;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.energy-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.energy-box {
  background-color: white;
  flex: 1 1 calc(50% - 30px);
  padding: 7px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: perspective(900px) rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.energy-box:hover {
  transform: perspective(900px) rotateY(5deg) rotateX(3deg);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.energy-box h3 {
  font-size: 1.5rem;
  color: #007a3d;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.energy-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

.energy-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.contact-3d-box {
  background-color: #ffffff;
  padding: 40px;
  margin: 60px auto 0 auto;
  max-width: 700px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transform: perspective(800px) rotateX(2deg);
  transition: transform 0.4s ease;
}

.contact-3d-box:hover {
  transform: perspective(800px) rotateX(0deg) scale(1.02);
}

.contact-3d-box h2 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.contact-details p {
  font-size: 1.1rem;
  color: #333;
  margin: 10px 0;
  line-height: 1.6;
}

.contact-details a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.site-footer {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
  margin-top: 60px;
}

.footer-menu {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-menu a:hover {
  color: #d4f1ff;
  text-decoration: underline;
}
.site-footer p {
 margin: 0;
}

.subscribe-social {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 5%;
  justify-content: center;
}

.subscribe-box,
.social-box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: perspective(900px) rotateY(0deg);
  transition: transform 0.3s ease;
}

.subscribe-box:hover,
.social-box:hover {
  transform: perspective(900px) rotateY(4deg);
}

.subscribe-box h3,
.social-box h3 {
  color: #0077cc;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-form input {
  flex: 1 1 70%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.subscribe-btn {
  padding: 12px 20px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  text-decoration: none;
  color: white;
  background: #0077cc;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: #005fa3;
}

/* Optional: platform colors */
.fb { background: #3b5998; }
.tw { background: #1da1f2; }
.li { background: #0077b5; }
.tg { background: #0088cc; }
.wa { background: #25d366; }


body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("images/Bgfade.jpg") center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.arrow-left,
.arrow-right {
 position: fixed;
  width: 60px;
  height: auto;
  z-index: 50;
  pointer-events: none;
  opacity: 0.3; /* ⬅️ Set to 30% opacity */
}

/* Left arrow: moves up on left side */
.arrow-left {
  left: 20px;
  bottom: -100px;
  animation: arrowUp 8s infinite ease-in-out;
  transform: rotateY(0deg);
}

/* Right arrow: moves down on right side */
.arrow-right {
  right: 20px;
  top: -100px;
  animation: arrowDown 8s infinite ease-in-out;
  transform: rotate(180deg) perspective(600px) rotateX(180deg);
  opacity: 0.85;
}

/* LEFT ARROW: moves up first */
.arrow-left {
  left: 20px;
  bottom: -100px;
  animation: arrowUp 8s infinite ease-in-out;
  transform: rotateY(0deg);
}

/* RIGHT ARROW: starts after 4s delay */
.arrow-right {
  right: 20px;
  top: -100px;
  animation: arrowDown 8s infinite ease-in-out;
  animation-delay: 4s;
  transform: rotate(180deg) perspective(600px) rotateX(180deg);
}


/* Keyframes for upward motion */
@keyframes arrowUp {
 0% {
    bottom: -100px;
    opacity: 0;
    transform: perspective(600px) rotateX(45deg);
  }
  50% {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: perspective(600px) rotateX(-45deg);
  }
}

/* Keyframes for downward motion */
@keyframes arrowDown {
 0% {
    top: -100px;
    opacity: 0;
    transform: perspective(600px) rotateX(-45deg);
  }
  50% {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg);
  }
  100% {
    top: 100%;
    opacity: 0;
    transform: perspective(600px) rotateX(45deg);
  }
}


.about-hero {
  background: url("images/Bgfade.jpg") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
  font-size: 2.5rem;
  text-shadow: 2px 2px 6px #000;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.4);
}

.about-boxes {
  display: flex;
  gap: 30px;
  padding: 60px 5%;
  flex-wrap: wrap;
  justify-content: center;
}

.about-box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.4s ease;
}

.about-box:hover {
  transform: perspective(800px) rotateY(5deg);
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 5%;
}

.image-gallery img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

.why-eleos {
  background-color: #f0f8ff;
  padding: 60px 5%;
  text-align: center;
}

.why-eleos ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #333;
}

.why-eleos li {
  margin: 10px 0;
}

.about-cta {
  text-align: center;
  padding: 60px 5%;
  background: linear-gradient(to right, #0077cc, #00b4d8);
  color: white;
}

.about-cta .cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: white;
  color: #0077cc;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.about-cta .cta-btn:hover {
  transform: scale(1.05);
}

.about-hero {
  padding: 100px 20px;
  text-align: center;
  color: white;
  font-size: 2.5rem;
  text-shadow: 2px 2px 6px #000;
  background: url("images/Bgfade.jpg") center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}

/* Intro Section */
.about-intro .content-box {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  margin-top: 40px;
}

/* Mission & Vision */
.about-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 5%;
}

.about-box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.4s ease;
}

.about-box:hover {
  transform: perspective(800px) rotateY(5deg);
}

/* Core Values */
.core-values {
  padding: 60px 5%;
  background-color: #f0f8ff;
  text-align: center;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.value-box {
  background: white;
  padding: 20px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  transform: perspective(600px) rotateY(0deg);
}

.value-box:hover {
  transform: perspective(600px) rotateY(10deg);
}

/* Team Section */
.our-team {
  padding: 60px 5%;
  background: #eef9f2;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 450px;
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.team-member h4 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
  color: #0077cc;
}

/* Footer */
.site-footer {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
  margin-top: 60px;
}

.footer-menu {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.footer-menu a:hover {
  text-decoration: underline;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("images/background.jpg") center center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  animation: bgPan 40s linear infinite;
}

/* Background Pan Animation */
@keyframes bgPan {
  0% {
    background-position: center center;
  }
  50% {
    background-position: top right;
  }
  100% {
    background-position: center center;
  }
}


/* Submit Proposal Section */
.proposal-section {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  background: #f9f9f9;
}

.proposal-box {
  background: white;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateX(2deg);
  transition: transform 0.3s ease;
}

.proposal-box:hover {
  transform: perspective(800px) rotateX(0deg);
}

.proposal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.proposal-form input,
.proposal-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.proposal-btn {
  background: #0077cc;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.proposal-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


.social-3d {
  padding: 50px 5%;
  text-align: center;
  background-color: #f3faff;
}

.social-3d h2 {
  margin-bottom: 30px;
  color: #0077cc;
  font-weight: 700;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: perspective(600px) rotateX(0deg);
}

.social-btn:hover {
  transform: perspective(600px) rotateX(8deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Platform Colors */
.fb { background: #3b5998; }
.tw { background: #1da1f2; }
.li { background: #0077b5; }
.tg { background: #0088cc; }
.wa { background: #25d366; }
.yt { background: #ff0000; }
.gp { background: #db4437; }
.tk { background: #000000; }


.contact-3d {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  background: #f9f9f9;
}

.contact-box {
  background: white;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.3s ease;
  text-align: center;
}

.contact-box:hover {
  transform: perspective(800px) rotateY(3deg);
}

.contact-box a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Service Page Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url("images/background.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #0077cc;
  color: white;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.services-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f0f8ff;
  background-image: linear-gradient(to right, #e0f7ff, #ffffff);
}

.services-hero h1 {
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 1.2rem;
  color: #555;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 60px 5%;
  background: #f9f9f9;
}

.service-box {
  background: white;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: perspective(800px) rotateY(0deg);
}

.service-box:hover {
  transform: perspective(800px) rotateY(5deg);
  box-shadow: 0 18px 32px rgba(0,0,0,0.25);
}

.service-box h3 {
  color: #0077cc;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}



.site-footer {
  background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
  margin-top: 60px;
}

.footer-menu {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.document-download {
  padding: 60px 5%;
  background-color: #f5faff;
  display: flex;
  justify-content: center;
}

.doc-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateX(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.doc-box:hover {
  transform: perspective(800px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.doc-box h2 {
  color: #0077cc;
  margin-bottom: 20px;
}

.doc-preview {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.download-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0077cc;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* Consultancy Booking Section */
.consultancy-booking {
  padding: 60px 5%;
  background-color: #eef9ff;
  display: flex;
  justify-content: center;
}

.consult-box {
  background: white;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.consult-box:hover {
  transform: perspective(800px) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.consult-box h2 {
  margin-bottom: 20px;
  color: #0077cc;
  font-size: 1.8rem;
}

.consult-box .fee {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.book-btn {
  background: #0077cc;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-3d {
  padding: 50px 5%;
  text-align: center;
  background-color: #f3faff;
}

.social-3d h2 {
  margin-bottom: 30px;
  color: #0077cc;
  font-weight: 700;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: perspective(600px) rotateX(0deg);
}

.social-btn:hover {
  transform: perspective(600px) rotateX(8deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Platform colors */
.fb { background: #3b5998; }
.tw { background: #1da1f2; }
.li { background: #0077b5; }
.tg { background: #0088cc; }
.wa { background: #25d366; }
.yt { background: #ff0000; }
.gp { background: #db4437; }
.tk { background: #000000; }

.contact-3d {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  background: #f9f9f9;
}

.contact-box {
  background: white;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.3s ease;
  text-align: center;
}

.contact-box:hover {
  transform: perspective(800px) rotateY(3deg);
}

.contact-box a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

.newsletter-3d {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  background: #eef9ff;
}

.newsletter-box {
  background: white;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateX(0deg);
  transition: transform 0.3s ease;
}

.newsletter-box:hover {
  transform: perspective(800px) rotateX(3deg);
}

.newsletter-box h2 {
  color: #0077cc;
  margin-bottom: 15px;
}

.newsletter-box p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type=email] {
  flex: 1 1 60%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.subscribe-btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: #0077cc;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* News Page Styles */
.news-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f0f8ff;
  background-image: linear-gradient(to right, #e0f7ff, #ffffff);
}

.news-hero h1 {
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.news-hero p {
  font-size: 1.2rem;
  color: #555;
}

.news-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 60px 5%;
  background: #f9f9f9;
}

.news-box {
  background: white;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: perspective(800px) rotateY(0deg);
}

.news-box:hover {
  transform: perspective(800px) rotateY(5deg);
  box-shadow: 0 18px 32px rgba(0,0,0,0.25);
}

.news-box h3 {
  color: #0077cc;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.news-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.news-date {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

.order-btn {
  display: inline-block;
  margin-top: 15px;
  background: #0077cc;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.quote-box {
  padding: 60px 5%;
  background-color: #f0f8ff;
  border-radius: 20px;
  max-width: 700px;
  margin: 80px auto;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  text-align: center;
  transform: perspective(800px) rotateX(0deg);
  transition: transform 0.4s ease;
}

.quote-box:hover {
  transform: perspective(800px) rotateX(2deg);
}

.quote-box h2 {
  margin-bottom: 20px;
  color: #0077cc;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.quote-btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: #0077cc;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.request-btn {
  background: #0077cc;
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.request-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.newsletter-3d {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  background: #eef9ff;
}

.newsletter-box {
  background: white;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateX(0deg);
  transition: transform 0.3s ease;
}

.newsletter-box:hover {
  transform: perspective(800px) rotateX(3deg);
}

.newsletter-box h2 {
  color: #0077cc;
  margin-bottom: 15px;
}

.newsletter-box p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type=email] {
  flex: 1 1 60%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.subscribe-btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: #0077cc;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
}

.subscribe-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.quote-btn {
  background: #0077cc;
  color: white;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.get-quote-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #0077cc;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-quote-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.submission-message {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: #0077cc;
  color: white;
  padding: 18px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-weight: bold;
  font-size: 1rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s ease;
  text-align: center;
  text-transform: uppercase;
}

.submission-message.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.staff-login-btn {
  background: #0077cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 5px 0 #005fa3;
  transition: 0.3s ease;
}

.staff-login-btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

.nav-links a {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 6px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 25px;
  box-shadow: 0 5px 0 #005fa3, 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background-color: #005fa3;
}

.nav-links a {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 6px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 25px;
  box-shadow: 0 5px 0 #005fa3, 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background-color: #005fa3;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fb;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Responsive Containers */
section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: auto;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #0077cc;
  padding: 15px 5%;
}

.logo img {
  max-width: 120px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  color: white;
  background-color: #0077cc;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 0 #005fa3, 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  transform: translateY(-3px);
  background-color: #005fa3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Form Boxes */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

form button {
  background: #0077cc;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Flex Layout */
.flex-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.flex-row > * {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 40px 5%;
  margin-top: 60px;
}

.footer-menu a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .quote-box,
  .contact-box,
  .newsletter-box,
  .proposal-box,
  .service-box,
  .news-box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fb;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Responsive Containers */
section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: auto;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #0077cc;
  padding: 15px 5%;
  position: relative;
  z-index: 10;
}

.logo img {
  max-width: 120px;
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  display: block;
  border-radius: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  color: white;
  background-color: #0077cc;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 0 #005fa3, 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  transform: translateY(-3px);
  background-color: #005fa3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    background: #0077cc;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Form Boxes */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

form button {
  background: #0077cc;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Flex Layout */
.flex-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.flex-row > * {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 40px 5%;
  margin-top: 60px;
}

.footer-menu a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fb;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Responsive Containers */
section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: auto;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #0077cc;
  padding: 15px 5%;
  position: relative;
  z-index: 10;
}

.logo img {
  max-width: 120px;
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  display: block;
  border-radius: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  color: white;
  background-color: #0077cc;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 0 #005fa3, 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  transform: translateY(-3px);
  background-color: #005fa3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    background: #0077cc;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Form Boxes */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

form button {
  background: #0077cc;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 0 #005fa3, 0 12px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Flex Layout */
.flex-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.flex-row > * {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Footer */
.site-footer { background-color: #0077cc;
  color: white;
  text-align: center;
  padding: 40px 5%;
  margin-top: 60px;
}

.footer-menu a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}
