* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0c14;
  color: #e0e0ff;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

/* Navbar - Pakistan-Vietnam Gradient */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 6%;
  background: linear-gradient(90deg, rgba(17,87,64,0.92), rgba(218,37,29,0.88));
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}

.highlight {
  background: linear-gradient(90deg, #FFCD00, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFCD00;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background: #FFCD00;
  transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.9rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  background: linear-gradient(rgba(10,12,20,0.85), rgba(10,12,20,0.9)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80') center/cover;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.hero-content h1 span {
  color: #FFCD00;
}

.hero-desc {
  font-size: 1.35rem;
  max-width: 820px;
  margin: 0 auto 3rem;
  color: #e0e0ff;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s;
}

.primary {
  background: #DA251D;
  color: white;
  box-shadow: 0 10px 30px rgba(218,37,29,0.4);
}

.primary:hover {
  background: #c71e18;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(218,37,29,0.6);
}

.secondary {
  background: transparent;
  border: 2px solid #FFCD00;
  color: #FFCD00;
}

.secondary:hover {
  background: rgba(255,205,0,0.15);
  transform: translateY(-5px);
}

/* Facilities */
.facilities-section {
  padding: 120px 0;
  background: #0b0e17;
}

.facilities-section h2 {
  text-align: center;
  font-size: 3rem;
  color: white;
  margin-bottom: 70px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.facility-card {
  background: rgba(17,87,64,0.18);
  border: 1px solid rgba(218,37,29,0.25);
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
}

.facility-card:hover {
  transform: translateY(-15px);
  border-color: #FFCD00;
  box-shadow: 0 25px 70px rgba(218,37,29,0.3);
}

.facility-card i {
  font-size: 3.5rem;
  color: #DA251D;
  margin-bottom: 25px;
  transition: transform 0.4s;
}

.facility-card:hover i {
  transform: scale(1.15);
}

.facility-card h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 18px;
}

.facility-card p {
  color: #d0d0ff;
  font-size: 1.08rem;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #115740, #DA251D);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.footer p {
  margin-bottom: 20px;
}

.social-links a {
  color: white;
  font-size: 1.8rem;
  margin: 0 20px;
  transition: all 0.3s;
}

.social-links a:hover {
  color: #FFCD00;
  transform: translateY(-5px);
}

/* Responsive Hamburger */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #115740, #DA251D);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 200px;                /* desktop pe perfect size */
  width: auto;
  max-height: 65px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(218,37,29,0.4));
}

.logo-img:hover {
  transform: scale(1.08) translateY(-3px);
  filter: drop-shadow(0 10px 25px rgba(218,37,29,0.6));
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .logo-img {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 42px;
  }
}

/* Feedback Section - Sample 2 Premium Gradient Theme */
.feedback-section {
  padding: 140px 0 160px;
  background: #0b0e17;
  position: relative;
  overflow: hidden;
}

.feedback-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(218,37,29,0.12) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(17,87,64,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 90px;
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff, #DA251D, #FFCD00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientFlow 12s ease infinite;
  margin-bottom: 1rem;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.subtitle {
  font-size: 1.4rem;
  color: #b0b0ff;
  max-width: 900px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 6rem 5% 4rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #FFCD00, #DA251D, #115740);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.contact-section p.intro {
  font-size: 1.3rem;
  color: #FFCD00;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-card {
  background: rgba(17, 87, 64, 0.18);
  border: 1px solid #115740;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(218, 37, 29, 0.25);
  border-color: #DA251D;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: #FFCD00;
}

.info-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #DA251D;
  margin-bottom: 1rem;
}

.info-card p {
  color: #d0d0d0;
  margin-bottom: 1.2rem;
}

.card-link {
  display: inline-block;
  background: linear-gradient(90deg, #115740, #DA251D);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem 0.3rem;
  transition: all 0.3s;
}

.card-link:hover {
  background: linear-gradient(90deg, #DA251D, #115740);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(218, 37, 29, 0.4);
}

/* Form Side */
.contact-form-wrapper {
  background: rgba(218, 37, 29, 0.08);
  border: 1px solid #DA251D;
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(6px);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #FFCD00;
  margin-bottom: 0.6rem;
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid #115740;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #DA251D;
  box-shadow: 0 0 12px rgba(218, 37, 29, 0.35);
}

.btn-submit {
  background: linear-gradient(90deg, #115740, #DA251D, #115740);
  color: #fff;
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #DA251D, #115740, #DA251D);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(218, 37, 29, 0.45);
}

/* Footer */
.main-footer {
  background: linear-gradient(to bottom, #0a0e17, #0f1622);
  border-top: 2px solid #115740;
  padding: 4rem 5% 2rem;
  color: #d0d0d0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFCD00;
  text-decoration: none;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #FFCD00;
  font-size: 1.4rem;
  transition: all 0.3s;
}

.social-icons a:hover {
  color: #DA251D;
  transform: translateY(-3px);
}

/* Links */
.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  color: #DA251D;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: #FFCD00;
  padding-left: 8px;
}

/* Contact List */
.contact-list {
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.contact-list i {
  color: #FFCD00;
  font-size: 1.1rem;
}

/* Newsletter */
.newsletter {
  margin-top: 1.5rem;
}

.newsletter h5 {
  color: #FFCD00;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid #115740;
  color: #fff;
  border-radius: 50px;
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  border-color: #DA251D;
  outline: none;
}

.newsletter-form button {
  background: linear-gradient(90deg, #115740, #DA251D);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: linear-gradient(90deg, #DA251D, #115740);
  transform: scale(1.05);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #115740;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* Footer Bottom Credit Link Styling */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #115740;
  font-size: 0.95rem;
  color: #aaa;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit-link {
  color: #20b1f9;                    /* Gold color for your name */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-credit-link:hover,
.footer-credit-link:focus {
  color: #DA251D;                    /* Vietnam red on hover */
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Optional: subtle underline animation on hover */
.footer-credit-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #DA251D;
  transition: width 0.3s ease;
}

.footer-credit-link:hover::after {
  width: 100%;
}

/* Make heart pulse slightly (fun subtle effect) */
.footer-bottom span[style*="color: #FFCD00"] {
  display: inline-block;
  animation: heart-pulse 2s infinite;
}

@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Privacy Policy Section */
.privacy-section {
  padding: 7rem 5% 5rem;
  background: #0a0e17;
  color: #e0e0e0;
  min-height: 100vh;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #FFCD00, #DA251D, #115740);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 0.5rem;
}

.last-updated {
  text-align: center;
  color: #FFCD00;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  font-style: italic;
}

.privacy-content {
  background: rgba(17, 87, 64, 0.12);
  border: 1px solid #115740;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(8px);
}

.privacy-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: #DA251D;
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 2px solid #115740;
  padding-bottom: 0.8rem;
}

.privacy-content p {
  margin-bottom: 1.4rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
}

.privacy-content ul li {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.privacy-content ul li::before {
  content: "•";
  color: #FFCD00;
  position: absolute;
  left: -1.5rem;
  font-size: 1.4rem;
}

.privacy-content a {
  color: #FFCD00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.privacy-content a:hover {
  color: #DA251D;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-section {
    padding: 5rem 4% 4rem;
  }
  .privacy-content {
    padding: 2rem 1.5rem;
  }
  .privacy-section h1 {
    font-size: 2.8rem;
  }
}

/* Terms of Service Section */
.terms-section {
  padding: 7rem 5% 5rem;
  background: #0a0e17;
  color: #e0e0e0;
  min-height: 100vh;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #FFCD00, #DA251D, #115740);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 0.5rem;
}

.last-updated {
  text-align: center;
  color: #FFCD00;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  font-style: italic;
}

.terms-content {
  background: rgba(17, 87, 64, 0.12);
  border: 1px solid #115740;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(8px);
}

.terms-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: #DA251D;
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 2px solid #115740;
  padding-bottom: 0.8rem;
}

.terms-content p {
  margin-bottom: 1.4rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.terms-content ul {
  list-style: none;
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
}

.terms-content ul li {
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.terms-content ul li::before {
  content: "•";
  color: #FFCD00;
  position: absolute;
  left: -1.5rem;
  font-size: 1.4rem;
}

.terms-content a {
  color: #FFCD00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.terms-content a:hover {
  color: #DA251D;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-section {
    padding: 5rem 4% 4rem;
  }
  .terms-content {
    padding: 2rem 1.5rem;
  }
  .terms-section h1 {
    font-size: 2.8rem;
  }
}

/* Facilities Section */
.facilities-section {
  padding: 7rem 5% 5rem;
  background: #0a0e17;
  color: #e0e0e0;
  text-align: center;
}

.facilities-container {
  max-width: 1400px;
  margin: 0 auto;
}

.facilities-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #FFCD00, #DA251D, #115740);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.3rem;
  color: #FFCD00;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: rgba(17, 87, 64, 0.18);
  border: 1px solid #115740;
  border-radius: 16px;
  padding: 2.5rem 1.8rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.facility-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(218, 37, 29, 0.25);
  border-color: #DA251D;
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  color: #FFCD00;
}

.facility-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: #DA251D;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.facility-card p {
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-explore {
  display: inline-block;
  margin-top: 4rem;
  background: linear-gradient(90deg, #115740, #DA251D, #115740);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.4s;
}

.btn-explore:hover {
  background: linear-gradient(90deg, #DA251D, #115740, #DA251D);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(218, 37, 29, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .facilities-section {
    padding: 5rem 4% 4rem;
  }
  .facilities-section h1 {
    font-size: 2.8rem;
  }
  .intro {
    font-size: 1.1rem;
  }
}

.social-icons {
  display: flex;
  justify-content: center;          /* or flex-start if left-aligned */
  gap: 1.8rem;                      /* thora zyada gap – you can adjust to 1.5rem or 2rem */
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);   /* subtle dark bg circle */
  color: #ffffff;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Original brand colors on hover/active */
.social-link.linkedin:hover {
  border-color: #0A66C2;
}

.social-link.facebook:hover {
  border-color: #1877F2;
}

.social-link.instagram:hover {
  border-color: #bc1888;
}

.social-link.whatsapp:hover {
  border-color: #25D366;
}

/* Optional: keep icons white normally, only change bg on hover */
.social-link i {
  transition: all 0.3s ease;
}

/* If you want icons to change color too (more vibrant) */
.social-link.linkedin i { color: #0A66C2; }
.social-link.facebook i { color: #1877F2; }
.social-link.instagram i { 
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-link.whatsapp i { color: #25D366; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: linear-gradient(135deg, #115740 0%, #DA251D 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Desktop links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFCD00;
}

/* Hamburger / Close Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Mobile Menu */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #a70a0a 0%, #0d3e05 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    transition: right 0.45s ease;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.6);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.6rem;
    padding: 1rem 0;
  }

  /* Hamburger → X animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #FFCD00;
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #FFCD00;
  }
}

/* Modal Popup Styles */
.modal {
  display: none;                  /* hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.65); /* dark overlay */
  backdrop-filter: blur(4px);
}

.modal-content {
  background: linear-gradient(135deg, #7e0404, #073e0b);
  margin: 15% auto;
  padding: 2.5rem 2rem;
  border: 2px solid #FFCD00;      /* gold border */
  width: 90%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(218, 37, 29, 0.4);
  text-align: center;
  color: #fff;
  position: relative;
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content h2 {
  color: #FFCD00;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #FFCD00;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.close-modal:hover,
.close-modal:focus {
  color: #DA251D;
  transform: rotate(90deg);
}

.modal-ok-btn {
  background: linear-gradient(90deg, #115740, #DA251D);
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-ok-btn:hover {
  background: linear-gradient(90deg, #DA251D, #115740);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(218, 37, 29, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    margin: 20% auto;
    padding: 2rem 1.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 195px !important;          /* force bada karo – 80px se start karo, agar chahiye to 100px kar lo */
  width: auto !important;           /* aspect ratio safe rakho */
  max-height: 195px;                /* overflow na ho */
  object-fit: contain !important;   /* image stretch na ho */
  display: block;
  transition: all 0.3s ease;
}

/* Force navbar ko adjust karo taake logo fit ho */
.navbar {
  padding: 1.5rem 5% !important;    /* zyada padding do */
  min-height: 100px !important;     /* minimum height fix */
  display: flex !important;
  align-items: center !important;
}

/* Mobile pe thoda control */
@media (max-width: 992px) {
  .logo-img {
    height: 60px !important;        /* mobile pe manageable */
  }
  .navbar {
    padding: 1rem 5% !important;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: linear-gradient(135deg, #115740, #DA251D);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFCD00;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 35px;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* Mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #780c0c 0%, #104608 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    transition: right 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.8rem;
  }

  /* Hamburger to X */
  .menu-toggle.active .bar1 {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active .bar2 {
    opacity: 0;
  }

  .menu-toggle.active .bar3 {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #115740, #0a192f);
  margin: 15% auto;
  padding: 2.5rem;
  border: 2px solid #FFCD00;
  width: 90%;
  max-width: 480px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.close-modal {
  color: #FFCD00;
  float: right;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #DA251D;
}

.modal-ok-btn {
  background: linear-gradient(90deg, #115740, #DA251D);
  color: white;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
}

.modal-ok-btn:hover {
  background: linear-gradient(90deg, #DA251D, #115740);
}