* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #0a2a66;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #0a2a66;
  color: #fff;
  flex-wrap: wrap;
}


/* CONTACT & SEVA */
#contact {
  background: #f5f9ff;
  border-top: 3px solid #ffd400;
}

.contact-box {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-box .name {
  font-size: 22px;
  font-weight: 600;
  color: #0a2a66;
  margin-bottom: 10px;
}

.contact-box .desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-links a {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  background: #0a2a66;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.contact-links a:hover {
  background: #ffd400;
  color: #0a2a66;
}

/* Mobile fine tuning */
@media (max-width: 600px) {
  .contact-box {
    padding: 18px;
  }

  .contact-box .name {
    font-size: 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

nav a {
  color: #ffd400;
  margin: 0 8px;
  text-decoration: none;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(#f5f9ff, #ffffff);
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.buttons .btn {
  display: inline-block;
  padding: 10px 18px;
  margin: 5px;
  background: #0a2a66;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.btn.outline {
  background: transparent;
  border: 2px solid #0a2a66;
  color: #0a2a66;
}

/* SECTIONS */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  color: #0a2a66;
}

/* VIDEO */
.video-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

/* AUDIO */
.audio-list li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* ABOUT */
.about-box {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.about-box img {
  width: 120px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  background: #0a2a66;
  color: #ffd400;
  margin-top: 30px;
}

/* MOBILE */
@media (max-width: 600px) {
  nav {
    margin-top: 10px;
  }

  .video-box iframe {
    height: 200px;
  }

  .hero h1 {
    font-size: 22px;
  }
}

/*sewa*/
/* SEVA SECTION UPDATED */
#seva {
  background: #ffffff;
  border-top: 3px solid #0a2a66;
}

.seva-box {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.seva-main {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.seva-main li {
  background: #f5f9ff;
  padding: 12px 14px;
  border-left: 5px solid #ffd400;
  border-radius: 6px;
  font-size: 16px;
  color: #0a2a66;
  margin-bottom: 10px;
}

/* Sub section */
.seva-sub h3 {
  margin-bottom: 15px;
  color: #0a2a66;
  font-size: 20px;
}

.seva-sub ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.seva-sub ul li {
  background: #eef4ff;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 4px solid #ffd400;
  font-size: 15px;
  color: #0a2a66;
}

/* Mobile */
@media (max-width: 600px) {
  .seva-sub ul {
    grid-template-columns: 1fr;
  }
}




/* GURMAT BANNER */
.gurmat-banner {
  background: linear-gradient(90deg, #0a2a66,);
  padding: 18px 10px;
  text-align: center;
}

.gurmat-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ikonkar {
  font-size: 36px;
  font-weight: bold;
  color: #ffd400;
  line-height: 1;
}

.pangti {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Mobile fine tuning */
@media (max-width: 600px) {
  .ikonkar {
    font-size: 30px;
  }

  .pangti {
    font-size: 16px;
  }
}

/* GIANI PROFILE SECTION */
.giani-profile {
  padding: 50px 20px;
  background: #ffffff;
}

.giani-box {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
}

.giani-text {
  flex: 2;
}

.giani-text h2 {
  font-size: 28px;
  color: #0a2a66;
  margin-bottom: 15px;
}

.giani-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.giani-photo {
  flex: 1;
  text-align: center;
}

.giani-photo img {
  width: 100%;
  max-width: 260px;
  border-radius: 14px;
  ;
}

/* Mobile */
@media (max-width: 768px) {
  .giani-box {
    flex-direction: column-reverse;
    text-align: center;
  }

  .giani-text h2 {
    font-size: 24px;
  }
}

/* SUBSCRIBE HIGHLIGHT */
.subscribe-highlight {
  background: linear-gradient(90deg, #0a2a66, #123c8a);
  padding: 35px 15px;
  text-align: center;
  margin-top: 40px;
}

.subscribe-highlight p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.subscribe-highlight p strong {
  color: #ffd400;
}

.subscribe-highlight p span {
  text-decoration: underline;
  font-weight: 600;
}

.subscribe-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: #ffd400;
  color: #0a2a66;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  background: #ffffff;
  color: #0a2a66;
}

/* Mobile */
@media (max-width: 600px) {
  .subscribe-highlight p {
    font-size: 17px;
  }
}