* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
 
}
html {
  scroll-behavior: smooth;
   font-size:18px;
}
body {
  background: linear-gradient(to bottom, #e6f7ff, #cceeff);
  color: #003366;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #ffffffcc;
  border-bottom: 1px solid #b3e0ff;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
header h1 {
  font-size: 24px;
  font-weight: bold;
  color: #007acc;
}
nav a {
  margin: 0 15px;
  color: #005580;
  text-decoration: none;
  transition: 0.3s;
}
nav a:hover {
  color: #0099ff;
}
.btn {
  background: #0099ff;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #33bbff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(to bottom, #b3e5ff, #e6f7ff);
  position: relative;
}
.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #004466;
}
.hero p {
  font-size: 18px;
  color: #005580;
  margin-bottom: 30px;
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
.wave path {
  fill: #cceeff;
}

/* Services */
.services {
  padding: 80px 20px;
  text-align: center;
  background: #f2fbff;
}
.services h3 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #007acc;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #b3e0ff;
  box-shadow: 0 4px 10px rgba(0, 128, 255, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card h4 {
  margin-bottom: 10px;
  color: #007acc;
}

/* About */
.about {
  background: #e6f7ff;
  padding: 80px 20px;
  text-align: center;
}
.about h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #007acc;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  color: #004466;
  font-size: 18px;
}

/* Contact */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #f2fbff;
}
.contact h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #007acc;
}
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input, form textarea {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #99d6ff;
  background: #ffffff;
  color: #003366;
  resize: none;
}
form input::placeholder, form textarea::placeholder {
  color: #6699cc;
}
form button {
  padding: 15px;
  background: #0099ff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
form button:hover {
  background: #33bbff;
}
.services .card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 128, 255, 0.2);
}
.details
{
        max-width: 60rem;
    padding: 1rem;


}

.card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}
/* Footer */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #b3e0ff;
  color: #004466;
  background: #e6f7ff;
}
.contact-info {
  margin-bottom: 20px;
  font-size: 18px;
  color: #004466;
}
.contact-info p {
  margin: 5px 0;
}
/* Service Detail Sections */

.service-detail {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #004466;
  overflow: hidden;
}
.service-detail .content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  margin: 0 auto;
}
.service-detail img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}
.service-detail h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #005580;
}
.service-detail p {
  font-size: 18px;
  line-height: 1.6;
  color: #003366;
}

/* Ocean backgrounds */
.service-detail.custom-dev {
  background: #e6f7ff;
}
.service-detail.cloud {
  background: #cceeff;
}
.service-detail.security {
  background: #b3e6ff;
}

/* Transparent overlay image */
.service-detail .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://www.transparenttextures.com/patterns/wavecut.png');
  opacity: 0.15;
  z-index: 1;
}

#popup{
display:none;
z-index: 100000;

  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.3); /* semi-dark */
  backdrop-filter: blur(6px); /* ✅ blur effect */
  -webkit-backdrop-filter: blur(6px); /* Safari support */

  align-items:center;
  justify-content:center;
  border-radius:10px;
  box-shadow:0 0 10px rgba(0,0,0,0.3);
}

.popup-content{
    padding: 1rem;
      align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background: white;
    width: 40rem;
    height: 10rem;
    border-radius: 30px;
}
#contactForm{
  position:relative;
}
.loading{
  display: none;
  position: absolute ;
  width: 100%;
      height: 100%;
      background-color: #00000059;
    border-radius: 1rem;

}
.loading p{
  margin:auto;
  font-size:2rem;
  color:white;
}

#closeBtn{
   margin-top:20px;
    background:#ffffff;
    color:#333;
    border:none;
    padding:10px 20px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    box-shadow:0 4px 8px rgba(0,0,0,0.2);
    transition:all 0.3s ease;
}
.social-media {
  text-align: center;
  padding: 50px 20px;
  background: #e6f7ff;
}

.social-media h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #004466;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  background: #0099ff;
  box-shadow: 0 0 8px #ff2b2b inset;
  transition: all 0.3s ease;
}

/* Hover glow */
.social-btn:hover {
  background: #ff2b2b;

  transform: translateY(-5px);
}

/* Optional unique accent colors if you want */
.twitter:hover  { background: #1DA1F2; box-shadow: 0 0 12px #1DA1F2, 0 0 0 #1DA1F2; }
.facebook:hover { background: #1877F2; box-shadow: 0 0 12px #1877F2, 0 0 0 #1877F2; }
.instagram:hover{ background: #E1306C; box-shadow: 0 0 12px #E1306C, 0 0 0 #E1306C; }
.youtube:hover  { background: #FF0000; box-shadow: 0 0 12px #FF0000, 0 0 0 #FF0000; }
.discord:hover  { background: #5865F2; box-shadow: 0 0 12px #5865F2, 0 0 0 #5865F2; }