/* 🌟 Global Reset & Base */
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #f9fcfe;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: #00394c;
}

/* 🌊 Navbar Base (Glass look) */
.navbar {
  background: rgba(245, 247, 250, 0.35);
  /* Thoda transparent */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}


/* 🌐 Logo */
.navlogo {
  height: 60px;
  transition: transform 0.3s ease;
}

.navlogo:hover {
  transform: scale(1.05);
}

/* 🔹 Nav Links */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #00394c;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #2bb9e1;
}

/* ✨ Underline Hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: #2bb9e1;
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(.39, 1.62, .46, .93);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}



/* 🌤️ Hero Section */
.hero {
  position: relative;
  background: #F5F7FA;
  color: #00394c;
  padding: 6rem 0;
  overflow: hidden;
}

.hero h1 {
  color: #2bb9e1;
  font-size: 2.5rem;
}

.hero p {
  color: #063846;
  opacity: 0.9;
}

.hero .card {
  background: rgba(255, 255, 255, 0.85);
  border: none;
  box-shadow: 0 8px 32px rgba(43, 185, 225, 0.18);
  backdrop-filter: blur(12px);
}

.hero .card:hover {
  transform: none;
}


.call-text {
  font-weight: 600;
  color: #00394c;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.call-text span {
  color: #2bb9e1;
  font-weight: 700;
}

.call-btn {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, #2bb9e1, #00a8cc);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(43, 185, 225, 0.4);
}

.call-btn:hover {
  background: linear-gradient(135deg, #00a8cc, #2bb9e1);
  transform: translateY(3px);
}

/* ✨ Buttons */
.btn-primary,
.btn-info {
  background: linear-gradient(90deg, #2bb9e1, #57dcf2);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-info:hover {
  background: linear-gradient(90deg, #1fa9cb, #38d2ef);
  transform: translateY(3px);
  color: #fff;
}

.btn-outline-secondary {
  border: 2px solid #2bb9e1;
  color: #2bb9e1;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: #2bb9e1;
  color: #fff;
}

/* 🧊 Card Design */
.card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(43, 185, 225, 0.15);
  box-shadow: 0 8px 32px rgba(43, 185, 225, 0.18) !important;
  backdrop-filter: blur(12px);
  border-radius: 18px;
  transition: all 0.35s cubic-bezier(.2, 1, .3, 1);
}

.card:hover {
  box-shadow: 0 12px 45px rgba(43, 185, 225, 0.25);
  transform: translateY(-6px) scale(1.02);
}

/* 🧾 Form Elements */
.form-control,
.form-select,
textarea {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(43, 185, 225, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.25s;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #2bb9e1;
  box-shadow: 0 0 0 3px rgba(43, 185, 225, 0.18);
}

/* 💠 Section Headings */
h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #00394c;
  margin-bottom: 0.5em;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2bb9e1, #6de0f8);
  border-radius: 4px;
  margin-top: 10px;
}


/* Services */
.service-card {
  background: #fff;
  border: 1px solid rgba(43, 185, 225, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(43, 185, 225, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(43, 185, 225, 0.25);
}

.service-icon {
  font-size: 3rem;
  color: #2bb9e1;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: #1fa8ce;
  transform: scale(1.1);
}

.service-card h3 {
  color: #1a5f71;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #004c5d;
  font-size: 0.95rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(43, 185, 225, 0.15);
  color: #2bb9e1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.card:hover .icon-circle {
  background: #2bb9e1;
  color: #fff;
}

/* How We Build Your Product */
.process-card {
  background: #fff;
  border: 1px solid rgba(43, 185, 225, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(43, 185, 225, 0.08);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(43, 185, 225, 0.15);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(43, 185, 225, 0.1);
  color: #2bb9e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.process-card:hover .icon-circle {
  background: #2bb9e1;
  color: #fff;
}

h2 {
  font-weight: 700;
  color: #00394c;
}

.process-card h5 {
  font-weight: 600;
  color: #1a5f71;
}


/* 🔷 Portfolio Section Background */
.portfolio-section {
  background-color: #ffffff;
  background-image: repeating-linear-gradient(45deg,
      #2bb9e110 0,
      #2bb9e110 2px,
      transparent 2px,
      transparent 20px);
  padding: 80px 0;
  border-radius: 20px;
  background-attachment: fixed;

}

/* 💎 Portfolio Cards */
.portfolio-card {
  background: #70dcf9;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* 🧾 Text inside cards */
.portfolio-card h4 {
  color: #1a5f71;
  font-weight: 600;
}

.portfolio-card p {
  color: #ffffff;
}

/* ✨ Button */
.btn-light {
  background: #2bb9e1;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: #2bb9e1;
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

/* Our Client says */
#testimonials {
  background: linear-gradient(135deg, #2bb9e1, #004f7a);
  padding: 90px 10px;
  overflow: hidden;
}

#testimonials .card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
  border-radius: 15px;
  transform: none;
}

#testimonials .testimonial-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}



/* Our Team */
#team .card {
  box-shadow: 0 8px 32px rgba(43, 185, 225, 0.18);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#team .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(43, 185, 225, 0.12);
}

.team-img-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #2bb9e1, #00a3c4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

/* Contact */
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(43, 185, 225, 0.18);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.contact-card a {
    text-decoration: none;   /* underline hat gaya */
    color: inherit;          /* parent ka color le lega */
}
.contact-card a:hover {
    text-decoration: underline; /* hover pe underline chahiye to */
    color: inherit;
}


.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(43, 185, 225, 0.18);
  backdrop-filter: blur(12px);
}


.contact-card p i,
.contact-card p strong {
  color: #2bb9e1;
}

/* Inputs and Textareas */
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: #2bb9e1;
  box-shadow: 0 0 0 0.2rem rgba(43, 185, 225, 0.25);
}

/* Button */
.contact-form .btn-primary {
  background-color: #2bb9e1;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background-color: #22a4cb;
  transform: translateY(-2px);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}




/* 🦶 Footer */
.footer {
  background: #000000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 60px 0 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 185, 225, 0.15), rgba(255, 255, 255, 0.05));
  z-index: -1;
}

.footer-logo {
  width: 120px;
  margin-bottom: 12px;
}

.footer .tagline {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: smaller;
}

.footer ul li a:hover {
  color: #2bb9e1;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ffffff;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #2bb9e1;
  transform: scale(1.15);
}

.footer-bottom {
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
  margin-top: 20px;
}

.my-5{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}