body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6ff;
}


.navbar {
  
 /* background: linear-gradient(135deg, #f8fbff, #e8f1ff);*/
   background: linear-gradient(90deg, #8ba8e3 0%,#8ba8e3 50%, #8ba8e3 100%);
    position: relative; 
     height:80px;
   /*  min-height: 110px;*/
 
   
  color: white;
  display: flex;
  justify-content: space-between;
  align-items:center;
 /* padding: 10px 20px;*/
  /*padding:15px 25px;*/
  padding: 10px 40px;
  flex-wrap: wrap;
 /* box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
 /*z-index:1000;*/

  
}
/* Adjust logo size without breaking navbar layout */
.navbar .logo img {
  
    width: auto;    /* Keeps correct aspect ratio */
   object-fit: contain;
     /* margin-top: 0;  */
      height: 100px !important;   /* 🔥 smaller logo */
        margin-top: -20px; 
}


/* Logo animation */
.logo {
  /*font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  */
  height: 45px; /* 45px Reduced logo size */
/*  width: auto;*/

  animation: fadeIn 1.2s ease forwards;/*appear slow*/
  /*transition: transform 0.3s ease;*/
  vertical-align: middle;

}
.logo img:hover {
  transform: scale(1.05);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;/*25px*/
  margin: 0;
  padding: 0;
 /* align-items: center;*/
}

.nav-links a {
  color:whitesmoke;
 position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size:large;
 /* letter-spacing: 0.4px;
  font-size: 15px; /* slightly smaller */
  transition: color 0.3s ease, text-shadow 0.3s ease;
/*  z-index: 1020;*/ /* So link stays on top */
 /* display: inline-block;
 /* padding: 10px 8px;
 -webkit-tap-highlight-color: transparent;*/
}


.nav-links a:hover {
  color: #057d65;
  text-shadow: 0 0 8px #057d65;
}
/* subtle glow for active link */
.nav-links active {
  color:#057d65;
  text-shadow: 0 0 6px #057d65;
}

/* optional glowing underline */
.nav-links a::after {
  content: "";
  position:absolute;
  bottom: -5px;/*6px*/
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  border-radius: 5px;
  box-shadow: 0 0 10px #00ffcc;
  transition: width 0.3s ease;
/*   pointer-events: none; /* key — prevents the pseudo-element from blocking clicks */
}


/* Responsive: Center logo and shrink navbar more on small screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    font-size: 13px;
    /*padding: 10px 0;*/
  }
.navbar {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .logo img {
    height: 40px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
}
.nav-links a:hover::after

{
  width: 100%;
}
@keyframes pulseGlow {
  0%   { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc; }
  50%  { text-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc; }
  100% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc; }
}


/* Button style for Login */
.btn {
  background: #00ffcc;
  color: #003096;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ffffff;
  color: #002060;
}
/* Fade-in animation for elements */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;}
  
  }


.hero {
 display: flex;
 
  align-items: center;           /* Vertically centers */
  /*gap: 40px; */                    /* Space between text and image */
  background: linear-gradient(135deg, #f8fbff, #e8f1ff);
  flex-wrap: wrap;
  justify-content: space-between;

  padding: 110px;
 
/*background: linear-gradient(135deg, #f7f7f7, #ececec);*/
  color:blue;

}
/* Text Box */
.hero-content {
  max-width: 500px;
  flex: 1;
}
.hero-text {
  max-width: 50%;
 
}
.hero-text h1{
  
  white-space: nowrap;      /* Prevents line break */
  font-size: 2.4rem;        /* Adjust size so it fits */
  line-height: 1.2;
  overflow: hidden;         /* Prevents spill */
  text-overflow: ellipsis;
   line-height: 1.2;
    width: 100%;
}
.hero-text p {
  margin: 20px 0;
}

/* Move image slightly left & stop shrinking */
.hero-image {
  flex: 1;
  display: flex;
  justify-content:center;   /* Moves image left */
}



.hero-text .btn {
  background: white;
  color: #0056ff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.hero-text .btn-outline {
  border: 2px solid white;
  padding: 10px 20px;
  margin-left: 10px;
  text-decoration: none;
  color: white;
}

/* Control image size */
.hero-image img {
  width: 420px;                  /* Fixed consistent width */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: -40px;            /* Shift slightly left */
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}
/* ============================
   RESPONSIVE FIXES
============================ */

/* Tablets */
@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero-image {
    justify-content: center;  /* Center image on tablets */
  }

  .hero-image img {
    margin-left: 0;
    width: 350px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 270px;       /* Perfect mobile size */
    margin-left: 0;
  }
}

.heroabout {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("https://source.unsplash.com/1600x500/?technology,office") center/cover;
    color: white;
    text-align: center;
    padding: 40px 10px;
}

.heroabout h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.heroabout p {
    font-size: 20px;
}
.contentabout {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.contentabout h2 {
    color: #0066ff;
    margin-top: 30px;
}

ul {
    margin: 15px 0;
    padding-left: 20px;
}
.content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.content h2 {
    color: #0056ff;
    margin-top: 30px;
}

ul {
    margin: 15px 0;
    padding-left: 20px;
}
/* 🏢 About Section (with Image & Text) */
.about-home {
  background: linear-gradient(90deg, #8ba8e3 0%,#8ba8e3 50%, #8ba8e3 100%);
  color: white;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  flex-wrap: wrap;
}

.about-image img {
  width: 450px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.about-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.05em;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-image img {
    width: 100%;
    max-width: 350px;
  }

  .about-content h2 {
    font-size: 1.8em;
  }
}
/* ⚙️ Why Choose Us */
.why-choose {
 background: linear-gradient(135deg, #f8fbff, #e8f1ff);
  text-align: center;
  padding: 70px 10%;
  font-size: large;
}

.why-choose h2 {
  color: #0056ff;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.why-box {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-box:hover {
  background: #0056ff;
  color: white;
  transform: translateY(-8px);
}

.why-box i {
  font-size: 2em;
  color: #00ffcc;
  margin-bottom: 10px;
}
/* Reduce Why Choose Us Image */
.why-image img {
    width: 80%;          /* Reduce size to 80% (adjust as needed) */
    max-width: 350px;    /* Prevent image from becoming too large */
    border-radius: 12px; /* Keep clean rounded corners */
    display: block;
    margin: 0 auto;      /* Center the image */
}
@media (max-width: 768px) {
    .why-image img {
        width: 70%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .why-image img {
        width: 65%;
        max-width: 220px;
    }
}

/* 💡 Services Overview Section */
.services-overview {
  text-align: center;
  background: linear-gradient(180deg, #f4f6ff 0%, #eaf1ff 100%);
  padding: 80px 10%;
}

.services-overview h2 {
  font-size: 2.5em;
  color: #0056ff;
  text-shadow: 0 0 10px rgba(0, 85, 255, 0.3);
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border: 2px solid #00ffcc;
  box-shadow: 0 0 20px rgba(0,255,204,0.3);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #0056ff;
}

.service-card h3 {
  color: #003366;
  margin: 20px 0 10px;
  font-size: 1.2em;
  text-transform: capitalize;
}

.service-card p {
  padding: 0 20px 25px;
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .services-overview {
    padding: 50px 5%;
  }

  .service-card img {
    height: 180px;
  }

  .service-card h3 {
    font-size: 1.1em;
  }

  .services-overview h2 {
    font-size: 2em;
  }
}

/* Hero Section */
.services-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("https://source.unsplash.com/1600x500/?technology,office") center/cover;
    color: white;
    text-align: center;
    padding: 40px 10px;
}
.services-hero h1 {
  font-size: 40px;
    margin-bottom: 10px;
}
.services-hero p {
   font-size: 20px;
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}
.service-card {
  background: #fff;
  border: 2px solid #9b59b6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h2 {
  color: #0056ff;
  margin-bottom: 10px;
 
}
.service-card p {
  font-size: 0.95em;
  margin-bottom: 10px;
}
.service-card ul {
  padding-left: 20px;
}
.service-card ul li {
  list-style: disc;
  margin-bottom: 5px;
}


/* Call to Action */
.cta {
  text-align: center;
  padding: 50px 20px;
  background: #f8f8f8;
}
.cta h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  background: #0056ff;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #0056ff;
}
footer {
  background: #293244;
  color: white;
  text-align: center;
  padding: 15px;
  width: 100%;
}
/* Contact Section */
.contact-section {
   background: linear-gradient(90deg, #8ba8e3 0%,#8ba8e3 50%, #8ba8e3 100%);
  color: #fff;
  padding: 60px 20px;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
/* Left side */
.contact-left h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-left p {
  margin-bottom: 20px;
}

.contact-left a {
  color: #ffda3e;
  font-weight: bold;
}

.illustration img {
  width: 70%;
  max-width: 200px;
  margin: 20px 0;
}

.contact-info p {
  margin: 8px 0;
  
}
.contact-info a{
  color:white ;
  
}
/* Right side form */
.contact-form {
  background: #fff;
  border: #9e1941;
  color: var(--text-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(199, 61, 61, 0.1);

}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background:#00c6ff;
  color:#9e1941;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  outline:#9e1941;
}


.contact-form small {
  font-size: 12px;
  color: var(--muted);
}



/* --- FUTURISTIC GLOWING FOOTER --- */
footer {
  background: #001a4d;
  color: #ffffff;
  text-align: center;
  padding: 25px 10px;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  z-index: 10;
  border-top: 2px solid #00ffcc;
  box-shadow: 0 0 15px #00ffcc;
  transition: box-shadow 0.4s ease;
}

/* Footer glow text */
footer p {
  margin: 0;
  font-size: 1rem;
  text-shadow: 0 0 6px #00ffcc, 0 0 15px #00aaff;
}

/* Hover brightens glow */
footer:hover {
  box-shadow: 0 0 25px #00ffcc, 0 0 50px #00aaff;
}


/* Moving glowing line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffcc, #00aaff, transparent);
  animation: moveGlow 3s linear infinite;
  box-shadow: 0 0 20px #00ffcc;
}

/* Looping glow animation */
@keyframes moveGlow {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

/* Optional slow pulsing of footer box shadow */
@keyframes footerPulse {
  0% {
    box-shadow: 0 0 8px #00ffcc, 0 0 15px #00aaff;
  }
  50% {
    box-shadow: 0 0 25px #00ffcc, 0 0 50px #00aaff;
  }
  100% {
    box-shadow: 0 0 8px #00ffcc, 0 0 15px #00aaff;
  }
}

/* Add this class for a continuous glowing footer */
footer.glow-footer {
  animation: footerPulse 3s infinite ease-in-out;
}
footer .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* spacing between email and phone */
    margin-bottom: 15px;
}

footer .contact-info a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

footer .contact-info a i {
    margin-right: 6px; /* spacing between icon and text */
}
@media (max-width: 480px) {
    footer .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #25d366;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 4px #25d366);
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
  filter: drop-shadow(0 0 8px #25d366);
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #00ffcc;
  color: #003366;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px #00ffcc;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffffff;
  color: #001a4d;
  box-shadow: 0 0 25px #00ffcc, 0 0 50px #00aaff;
}
/* ==============================
   ✨ CTA (Call-To-Action) Section
   ============================== */
.cta-section {
  background: linear-gradient(90deg, #8ba8e3 0%,#8ba8e3 50%, #8ba8e3 100%);
  color: blue;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
   padding: 40px 0; 
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
}
.cta-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.cta-content {

  animation: fadeInUp 1s ease;
  margin: 0 auto;
  /*padding: 20px;   */  
  max-width: 500px;
}

.cta-image-box {
 
width: 350px;
    height: auto;
    border-radius: 12px;
     overflow: hidden;  /* Prevent image from overflowing */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}
.cta-image-box img {
    transition: transform 0.4s ease;  /* Smooth zoom */
}
.cta-image-box:hover img {
    transform: scale(1.1);  /* Zoom in */
}
.cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}
.cta-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ffcc;
}
.cta-buttons {
    display: flex;
    gap: 15px;
}
/* Buttons */
.cta-buttons .btn-primary {
    padding: 12px 22px;
    background: #003399;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    background: #001f66;
}

/* 📱 RESPONSIVE (Mobile & Tablets) */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-image-box img {
        width: 260px;
    }
}
.cta-section p {
  font-size: 15px;            /* smaller paragraph text */
  margin-bottom: 18px;
  line-height: 1.5;
  color: #333;
  /*font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.6;
  color:  #001a4d;*/
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px; 
 /* display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;*/
}
.cta-buttons .btn-primary {
  background: #0056ff;
  padding: 10px 18px;
  font-size: 0.95rem;         /* smaller buttons */
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
/* Buttons */
.btn-primary,
.btn-outline {
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #00ffcc;
  color: #001a33;
  box-shadow: 0 0 15px #00ffcc;
}

.btn-primary:hover {
  background: white;
  color: #001a33;
  box-shadow: 0 0 30px #00ffcc;
}

.btn-outline1 {
  border: 2px solid #00ffcc;
  color: #00ffcc;
  background: transparent;
}

.btn-outline1:hover {
  background: #00ffcc;
  color: #001a33;
  box-shadow: 0 0 20px #00ffcc;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Mobile responsive */
@media (max-width: 480px) {
  .cta-section {
    padding: 30px 5%;
    margin: 25px auto;
  }

  .cta-image {
    width: 140px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn-primary {
    width: 100%;
    padding: 10px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 1.6em;
  }

  .cta-section p {
    font-size: 1em;
  }

  .cta-image {
    width: 150px;
  }
}


/* ========== SEND BUTTON ANIMATION ========== */
#sendBtn {
  background: linear-gradient(90deg, #00ffcc, #0066ff);
  color: #003366;
  padding: 12px 25px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow hover */
#sendBtn:hover {
  background: #ffffff;
  color: #001a4d;
  box-shadow: 0 0 25px #00ffcc, 0 0 50px #00aaff;
}

/* Sending animation */
#sendBtn.sending {
  background: linear-gradient(90deg, #999, #ccc);
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}

/* Success animation */
#sendBtn.success {
  background: linear-gradient(90deg, #00ffcc, #00ff88);
  color: #002233;
  box-shadow: 0 0 25px #00ffcc, 0 0 50px #00ffcc;
  transform: scale(1.08);
  animation: pulseSuccess 0.6s ease-in-out;
}

@keyframes pulseSuccess {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1.08); }
}
/* ========================
   ✨ FOOTER WITH SOCIALS
   ======================== */
.footer {
  position: relative;
  background: #001a33;
  text-align: center;
  padding: 30px 20px;
  color: #b3eaff;
  box-shadow: 0 -2px 15px rgba(0, 255, 204, 0.2);
  overflow: hidden;
}

.footer span {
  color: #00ffcc;
  font-weight: 600;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

/* Social icons */
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #00ffcc;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

/* Hover animations */
.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 25px #00ffcc, 0 0 40px #00aaff;
  color: #fff;
}

/* Brand color glows */
.facebook:hover { background: #1877f2; }
.twitter:hover  { background: #1da1f2; }
.linkedin:hover { background: #0077b5; }
.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
/* ✅ Success / Error Message Box */
.success-message {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid #00ffcc;
  color: #1877f2;
  font-weight: 500;
  text-align: center;
  padding: 12px 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
  animation: fadeInMessage 0.6s ease-in-out;
}

@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 🌍 Responsive design adjustments */
@media (max-width: 1024px) {
  .service-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .service-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  /* Header / Navbar */
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  /* Hero section */
  .hero-content {
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* Services */
  .service-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
    margin-bottom: 20px;
  }

  /* Contact form section */
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contact-form,
  .contact-left {
    width: 100%;
  }

  /* Footer */
  footer {
    text-align: center;
    font-size: 14px;
    padding: 15px;
  }
}
.service-card {
    background: #fff;
    border: 2px solid #9b59b6;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;      /* removes underline */
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;             /* makes full block clickable */
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #0056ff;
    margin-bottom: 8px;
}
/* ================================
   SERVICE BANNER
===================================*/
.service-banner {
    background: linear-gradient(135deg, #0047cc, #002f88);
    padding: 70px 10%;
    text-align: center;
    color: #fff;
    border-radius: 0 0 15px 15px;
}

.service-banner-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.service-banner-content p {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   SERVICE CONTENT AREA
===================================*/
.service-details {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-details h2 {
    font-size: 2.4rem;
    text-align: center;
    color: #0056ff;
    margin-bottom: 20px;
}

.service-details p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #333;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-box-full {
    background: #fff;
    border: 2px solid #0056ff;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-box-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-box-full h3 {
    color: #003da6;
    margin-bottom: 10px;
}

.service-box-full p {
    margin-bottom: 15px;
    color: #444;
}

.service-box-full ul {
    padding-left: 20px;
}

.service-box-full li {
    margin-bottom: 6px;
}

/* CTA Section */
.cta-web {
     background: linear-gradient(90deg, #8ba8e3 0%,#8ba8e3 50%, #8ba8e3 100%);
    color: white;
    text-align: center;
    padding: 40px 10%;
    margin-top: 40px;
    border-radius: 12px;
}

.cta-web h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-web p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-web {
    display: inline-block;
    background: #fff;
    color: #0056ff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.btn-web:hover {
    background: #00ffcc;
    color: #002266;
    transform: scale(1.05);
}

/* ================================
   RESPONSIVE
===================================*/
@media (max-width: 768px) {
    .service-banner-content h1 {
        font-size: 2.2rem;
    }

    .service-details h2 {
        font-size: 2rem;
    }

    .cta-web h2 {
        font-size: 1.8rem;
    }
}
/* 🔥 FINAL FIX FOR BULLETS IN SERVICE PAGE ONLY */
.services-container .service-card ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
    padding-left: 20px !important;
    text-align: left !important;
}

.services-container .service-card li {
    list-style-type: disc !important;
    display: list-item !important;
    margin-left: 15px !important;
}

/* ============================
   ⭐ A — HIGHLIGHTS SECTION
============================ */
.highlights-section {
  padding: 60px 5%;
  text-align: center;
  background: #f5f9ff;
}

.highlights-section h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #003399;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.highlight-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.highlight-box:hover {
  transform: translateY(-6px);
}

.highlight-box i {
  font-size: 35px;
  color: #00ffcc;
  margin-bottom: 10px;
}


/* ============================
   ⭐ B — OUR PROCESS
============================ */
.process-section {
  padding: 70px 5%;
  background: #eef7ff;
  text-align: center;
}

.process-section h2 {
  font-size: 2.2em;
  margin-bottom: 35px;
  color: #003399;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.process-step {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #00ffcc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.process-step span {
  font-size: 32px;
  font-weight: bold;
  color: #0056ff;
}





/* ============================
   ⭐ F — FAQ SECTION
============================ */
.faq-section {
  padding: 70px 5%;
  background: #f2f8ff;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.3em;
  color: #003399;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-container details {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.faq-container summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: #003399;
}

.faq-container p {
  margin-top: 10px;
  color: #333;
}
/* ---------------------------------------------------- */
/* DESKTOP BEHAVIOR */
/* ---------------------------------------------------- */

/* Toggle hidden on desktop */
.menu-toggle {
    display: none;
}

/* Desktop menu visible */
.nav-links {
    display: flex;
    gap: 20px;
}


/* ---------------------------------------------------- */
/* MOBILE BEHAVIOR */
/* ---------------------------------------------------- */

@media (max-width: 768px) {
   
    /* Hide the desktop nav links */
    .nav-links {
        display: none !important;
    }
    .logo img {
        height: 42px;   /* smaller on mobile */
    }

    /* Show toggle button on mobile */
    .menu-toggle {
        display: block;
        font-size: 32px;
        color: #ffcc00;     /* 🔥 bright yellow toggle */
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 18px;
        z-index: 9999;
       
    }

    /* Mobile Slide Menu (RIGHT SIDE) */
    .mobile-slide-menu {
        position: fixed;
        top: 0;
        right: -270px;   /* Hidden by default */
        width: 250px;
        height: 100vh;
        background: #0B2C3A;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        transition: right 0.4s ease;   /* Smooth slide */
        z-index: 9998;
    }

    /* When open → slide in */
    .mobile-slide-menu.open {
        right: 0;
    }

    /* Links inside mobile menu */
    .mobile-slide-menu a {
        color: #ffffff;
        padding: 15px 20px;
        font-size: 18px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    .mobile-slide-menu a:hover {
        background: #133f52;
    }
}


/* ---------------------------------------------------- */
/* PREVENT MOBILE MENU FROM SHOWING ON DESKTOP */
/* ---------------------------------------------------- */

@media (min-width: 769px) {
    #mobileMenu {
        display: none !important;
    }
}
