/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00f2fe;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  transform: translateX(-1cm);
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00f2fe;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  min-width: 180px;
}

.nav-links li:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #fff;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #00f2fe;
  color: #000;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(-45deg, #4facfe, #00f2fe, #43e97b, #38f9d7);
  background-size: 400% 400%;
  animation: gradientFlow 12s ease infinite;
  color: #000;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-in-out;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; /* spacing thoda kam */
  padding: 3rem 2rem; /* thoda compact padding */
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 1.5rem; /* thoda kam padding */
  border-radius: 15px;
  color: #fff;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  animation: zoomIn 1s ease;
}

.feature-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
  background: rgba(255, 255, 255, 0.15);
}


.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 1rem;
  opacity: 0.9;
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
/* Why Section (Description Style) */
.why {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  color: #eaeaea;
}

.why h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #00f2fe;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease-in-out;
}

.why p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1.2s ease-in-out;
}

.why strong {
  color: #00f2fe;
  font-weight: 600;
}
.why {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.05), rgba(255, 255, 255, 0.02));
}
/*footer meanu*/


.footer {
  background: #0f172a; /* dark blue/black shade */
  color: #f1f5f9;
  padding: 10px 5px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #38bdf8; /* sky blue heading */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #334155;
  font-size: 14px;
  color: #94a3b8;
}
/* ==== Compact Footer Override ==== */
.footer {
  padding: 24px 16px;
}

.footer-container {
  gap: 16px; 
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* zyada columns fit honge */
}

.footer-column h3 {
  font-size: 16px; 
  margin-bottom: 8px;
}

.footer-column ul li {
  margin: 4px 0; 
}

.footer-column ul li a {
  font-size: 14px; 
  line-height: 1.3;
}

.footer-bottom {
  margin-top: 16px; 
  padding-top: 12px;
  font-size: 13px;
}
