* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2937;
  min-height: 100vh;
  background: linear-gradient(180deg, #27292e 0%, #28334c 50%, #142c3a 100%);
  background-repeat: no-repeat;
  background-attachment: scroll; 
  color: #f8fafc;
  scroll-behavior: smooth;
}



a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 0.15px solid #0284c7 ;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  color: #2563eb;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
   color: whitesmoke;
   
}
.nav-link:hover{
  color:#0066ff;
}
.btn-link {
  padding: 10px 16px;
   background: whitesmoke;
   color: #418db6; 
  border-radius: 10px;
  transition: color 0.3s;
}
.btn-link:hover{
  transform: translateY(-2px);
  background-color:#418db6;
  color:whitesmoke;
}
.menu-icon{
  display: none;
}
.hero {
  padding: 80px 0;

}
  
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
}

.tag {
  display: inline-block;
  color: #184fe8;
  padding: 8px 14px;
  border: solid  0.5px #0284c7;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
  background: transparent;
  backdrop-filter: calc(10px blur);
  /* Animation properties */
  animation: floatTransform 3s infinite ease-in-out;
}

@keyframes floatTransform {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px); /* Automatic 6px upar shift hoga */
  }
  100% {
    transform: translateY(0px);
  }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.subtitle {
  font-size: 1.05rem;
   color: #cbd5e1; /* Smooth grey-white text readability behtar karne ke liye */
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  
}
.primary{
   background: #046092 !important;
  color: whitesmoke;
  border: solid 0.5px #0284c7;
}
.secondary{
  background-color: whitesmoke !important;
  color:#2e576d ;
  border: solid 1px rgb(86, 84, 84);
}
.primary,.secondary {
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  transition: all 0.2s ease !important;
 }
  .primary:hover{
      background: #418db6 !important; /* Hover par rich navy tone */
  transform: scale(1.02); 
  }
 .secondary:hover{
   color: #418db6;
  background:rgb(224, 221, 221) !important; /* Hover par rich navy tone */
  transform: scale(1.02); 
 }

.hero-card,
.card {
  border-radius: 18px;
  box-shadow: black 2px 3px 3px;
   background: rgba(30, 41, 59, 0.7) !important; /* Semi-transparent dark background */
  backdrop-filter: blur(12px); /* Premium Glassmorphism blur effect */
  -webkit-backdrop-filter: blur(12px);
  
  border: 1px solid rgba(56, 189, 248, 0.15) !important; /* Halka sa sky blue border line */
  border-radius: 16px !important; /* Rounded corners stylish look ke liye */
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important; /* Soft card shadow */
  transition: all 0.3s ease-in-out !important;
}
.card:hover{
   transform: translateY(-5px); /* Card halka sa upar uthega */
  border-color: #38bdf8 !important; /* Border sky blue highlight ho jayega */
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15) !important; /* Soft sky blue glow */
}
.hero-card:hover{
 transform: translateY(-5px); /* Card halka sa upar uthega */
  border-color: #38bdf8 !important; /* Border sky blue highlight ho jayega */
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15) !important; /* Soft sky blue glow */
}
.hero-card {
  padding: 32px;
}

.section {
  padding: 70px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 26px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0699d8; /* Pure white ke bajaye stylish sky blue color sections ke naam par */
  font-weight: 700;
  border-left: 4px solid #0699d8; /* Side par ek aesthetic line bar */
  padding-left: 12px;
  margin-bottom: 20px;

}
 .container button{
  height: 40px;
  width: 80px;
  border: none;
  border-radius: 8px;
  background-color :#046092;
  color:whitesmoke;
  font-weight: bold;
  transition: 0.3s;
 }
 .container button:hover{
  transform: translateY(-2px);
  background-color:#418db6;
 } 
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 4%;
    margin-left: 50px;
    width: 85%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    display: none;
  }

  .nav.show {
    display: flex;
      background: 
      linear-gradient(180deg, #27292e 0%, #28334c 50%, #142c3a 100%);
  }
    .menu-icon{
      display: block;
      cursor: default;
      font-size: large;
    }
  .btn-link {
    text-align: center;
  }

  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }
}