/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  border-radius: 10px;
}

.logo h1 {
  color: #007bff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #007bff;
}

.contact-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #0056b3;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 2.6rem;
  color: #fff;
}

.hero-content p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #e0e0e0;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #007bff;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0056b3;
}

/* ===== SCROLL DOWN ===== */
.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down span {
  width: 25px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 25px;
  display: inline-block;
  position: relative;
}

.scroll-down span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 0; top: 8px; }
  50% { opacity: 1; top: 18px; }
  100% { opacity: 0; top: 28px; }
}

/* ===== FLOATING BUTTONS ===== */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn.call {
  background: linear-gradient(145deg, #007bff, #0056b3);
}

.float-btn.whatsapp {
  background: linear-gradient(145deg, #25D366, #128C7E);
}

.float-btn:hover {
  transform: scale(1.15);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    padding: 10px 25px;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 25px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    padding: 15px 20px;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .contact-btn {
    display: none;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}


/* ============================= */
/* CONTACT SECTION STYLING */
/* ============================= */
.contact-section {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-in-out;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  background-color: #1ebe5d;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    padding: 25px;
  }

  .contact-title {
    font-size: 1.6rem;
  }
}


/* =========================
   ABOUT SECTION STYLES
========================= */

.about-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.section-title span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Layout */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}

/* Gradient Border using Pseudo Element */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px; /* Border thickness */
  background: linear-gradient(135deg, #00c6ff, #0072ff, #00e0ff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Glow effect + hover animation */
.about-card:hover::before {
  opacity: 1;
  animation: borderGlow 3s linear infinite;
}

.about-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

@keyframes borderGlow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* Card content */
.about-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #00c6ff;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fade-in animation */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-card {
    width: 90%;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 10%;
  background: linear-gradient(135deg, #004aad, #007bff);
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.about-text h2 span {
  color: #ffe600;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  background: #fff;
  color: #004aad;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ffe600;
  color: #000;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Responsive View */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 10%;
  background: #f7f9fc;
  text-align: center;
  color: #000;
}

.section-title h2 {
  font-size: 2.4rem;
  color: #004aad;
  margin-bottom: 10px;
}

.section-title h2 span {
  color: #007bff;
}

.section-title p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 50px;
}

/* ===== SERVICE CARDS ===== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, #004aad, #007bff);
  color: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffe600;
  transition: 0.4s;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-card:hover i {
  transform: scale(1.15);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card i {
    font-size: 2rem;
  }
}



/* ================= FLOATING CONTACT BUTTONS ================= */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Common style for both buttons */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 22px;
}

/* WhatsApp button */
.whatsapp-btn {
  background-color: #25d366;
}

/* Call button */
.call-btn {
  background-color: #007bff;
}

/* Hover animation */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* ================== FOOTER STYLE ================== */
.footer {
  background: linear-gradient(135deg, #0d1117, #1f2937);
  color: #fff;
  padding: 60px 10%;
  position: relative;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Fade-in Animation */
.footer.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Headings */
.footer h3, .footer h4 {
  color: #00bcd4;
  margin-bottom: 15px;
}

/* Text & Links */
.footer p, .footer a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.footer a:hover {
  color: #00bcd4;
  transition: 0.3s;
}

/* Quick Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s;
}

.social-icons a:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

/* WhatsApp Link */
.whatsapp-link {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  margin-top: 10px;
  font-weight: 500;
}

.whatsapp-link:hover {
  background: #20b85f;
}

/* Newsletter Box */
.newsletter {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 8px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter button {
  padding: 8px 12px;
  border: none;
  background: #00bcd4;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 500;
}

.newsletter button:hover {
  background: #0097a7;
}

/* Message */
#subscribeMsg {
  margin-top: 8px;
  font-size: 13px;
  color: #00bcd4;
}

/* Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}


/* ===== Advanced Hero Section ===== */
.advanced-hero {
  position: relative;
  height: 100vh;
  background: radial-gradient(circle at 20% 30%, #007BFF, #001F3F);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Animated glowing circles */
.hero-bg .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}

.c1 {
  width: 300px;
  height: 300px;
  background: #00C6FF;
  top: 10%;
  left: 15%;
}
.c2 {
  width: 400px;
  height: 400px;
  background: #007BFF;
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}
.c3 {
  width: 250px;
  height: 250px;
  background: #00BFFF;
  top: 60%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-30px) translateX(20px); }
}

/* Hero text content */
.hero-container {
  position: relative;
  z-index: 5;
  max-width: 850px;
}

.hero-container h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #a8d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.hero-container h1 span {
  color: #00C6FF;
}

.hero-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d8e8ff;
  margin-bottom: 35px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.primary-btn {
  background: #fff;
  color: #007BFF;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.primary-btn:hover {
  background: #007BFF;
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 2.4rem;
  }
  .hero-container p {
    font-size: 1rem;
  }
}

/* ===== OUR CORE SERVICES SECTION ===== */
.services-section {
  background: #f9fbff;
  padding: 80px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #001f3f;
  margin-bottom: 10px;
}

.services-section h2 span {
  color: #007bff;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

.service-card img {
  width: 70px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #001f3f;
  transition: color 0.3s ease;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* On hover, text becomes white */
.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2.2rem;
  }
  .service-card {
    padding: 30px 20px;
  }
}
