/* =================== GLOBAL STYLES =================== */
:root {
  --primary: #1E293B;        /* Deep Logo Blue */
  --primary-light: #1E293B;  /* Bright Logo Blue */
  --primary-dark: #fffaff;   /* Hover Blue */
  --secondary: #fffaff;      /* WHITE BACKGROUND */
  --accent-dark: #1E293B;    /* Header/Footer */
  --text-dark: #fffafa;      /* Main Text Dark */
  --text-muted: #fffaff;     
}

/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

body {
  background-color: var(--secondary);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  background-color: #1E293B;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 650;
  color: #fff;
  letter-spacing: 1px;
}

/* ================= NAVIGATION ================= */

nav.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* hover */
nav.main-nav a:hover {
  background-color: rgba(255,255,255,0.2);
  color: #ffffff;
}

/* clicked / active link */
nav.main-nav a:active {
  color: #ffffff;
  background-color: rgba(255,255,255,0.25);
}

/* visited link */
nav.main-nav a:visited {
  color: #ffffff;
}

/* remove browser blue outline */
nav.main-nav a:focus {
  outline: none;
  color: #ffffff;
}


/* ================= HEADINGS ================= */

h1, h2, h3 {
  color: var(--primary);
}

/* ================= HERO ================= */

.slide .overlay {
  background: rgba(0, 0, 0, 0.55);
}

.hero-inner {
  color: #ffffff;
}

.hero-inner h1 {
  color: #ffffff;
}

/* ================= BUTTONS ================= */

.btn,
.btn.primary,
.btn.secondary,
#contactForm button,
#joinForm button,
.contact-btn,
.nts-footer-btn {
  background-color: var(--primary-light);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover,
#contactForm button:hover,
#joinForm button:hover,
.contact-btn:hover,
.nts-footer-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

/* ================= SERVICES ================= */

.services-preview {
  padding: 80px 20px;
  text-align: center;
}

.service-card {
  background: #F8FAFC;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(20,121,201,0.2);
}

/* ================= ABOUT ================= */

.about-preview {
  padding: 70px 20px;
  background: #F1F5F9;
  border-radius: 14px;
  text-align: center;
  margin: 60px auto;
}

.about-preview p {
  color: var(--text-muted);
}

/* ================= CONTACT ================= */

.contact-section::before {
  background: rgba(0, 0, 0, 0.75);
}

.contact-content {
  width: 60%;
  margin: 60px auto;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#contactForm input,
#contactForm textarea,
#joinForm input {
  width: 100%;
  padding: 12px;
  background: #F8FAFC;
  border: 2px solid #CBD5E1;
  border-radius: 6px;
}

#contactForm input:focus,
#contactForm textarea:focus,
#joinForm input:focus {
  border-color: var(--primary-light);
  outline: none;
}

/* ================= FOOTER ================= */

.nts-footer {
  background: var(--primary);
  padding: 70px 40px;
  color: #ffffff;
}

.nts-footer h3 {
  color: #ffffff;
}

.nts-footer a {
  color: #E2E8F0;
  text-decoration: none;
}

.nts-footer a:hover {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .contact-content {
    width: 90%;
  }

  .logo img {
    height: 45px;
  }

  nav.main-nav {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 15px;
    display: none;
    background-color: #1E293B;
    padding: 15px 20px;
    border-radius: 8px;
  }

  nav.main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}



/* ============================================================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

body {
  background-color: var(--secondary);
  color: var(--text-light);
  line-height: 1.6;
}

/* =================== HEADER =================== */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* HEADER LOGO IMAGE */
.logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* LOGO TEXT */
.logo span {
  font-size: 20px;
  font-weight: 650;
  color: #fff; /* white text */
 letter-spacing: 1px;
}



/* Align logo + navigation properly */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 0;
}

@media (max-width: 700px) {
  .logo img {
    height: 45px;
  }
}

header {
  background-color: var(--accent-dark);
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 2.1rem;
  color: var(--primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px; /* emoji spacing */
}

/* Menu centered */
nav.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}
nav.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  transform: translateY(-2px);
}

nav.main-nav a:visited {
  color: #ffffff;
}


/* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

@media(max-width: 768px){
  nav.main-nav {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 15px;
    display: none;
    background-color: var(--accent-dark);
    padding: 15px 20px;
    border-radius: 8px;
  }
  nav.main-nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
/* ===================== HERO SLIDER ================== */

.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: #000; /* prevents white flash when slide changes */
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #000; /* fallback to avoid white flash */
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark transparent overlay */
.slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(2px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  color: #fffafa;
}

.hero-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-inner p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ===================== BUTTONS ================== */

.btn,
.btn.primary,
.btn.secondary {
  display: inline-block;
  background-color: #1E293B;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* SAME hover effect for all buttons */
.btn:hover,
.btn.primary:hover,
.btn.secondary:hover {
  transform: translateY(-3px); /* same bounce */
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* ======================== ABOUT BLOCK ============================= */
.about-preview {
  background: rgba(255, 255, 255, 0.2); /* transparent background */
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(13px); /* optional: soft blur behind transparent bg */
}

.about-preview:hover {
  box-shadow: 0 0 25px rgba(27, 60, 112, 0.6); /* glow on hover */
  transform: scale(1.02);
}

.about-preview h2 {
  color: #1b3c70; /* light navy heading */
  margin-bottom: 15px;
}

.about-preview p {
  color: #f0f4ff; /* light text for better contrast */
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* ===== BUTTONS IN ABOUT BLOCK ===== */
.about-preview .btn {
  background-color: #1E293B ; /* light gold */      
  color: beige;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-preview .btn:hover {
  background-color: #1E293B;
  color: #Fff;
  box-shadow: 0 0 0px rgba(244,192,125,0.8); /* glow on hover */
  transform: scale(1.05);
}


/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 80px 20px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(27, 60, 112, 0.3);
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  color: #1b3c70;
  backdrop-filter: blur(2px);
}

.service-card:hover {
  background: #1E293B;
  box-shadow: 0 0 15px rgba(27, 60, 112, 0.4);
  transform: translateY(-6px);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
/* =========================== CTA SECTION ========================= */
/* CTA SECTION BACKGROUND */
.cta-section{
  background: rgba(158, 158, 143, 0.4);   /* white background */
  padding:5px 10px;
  text-align:center;
}

/* INNER BOX WITH IMAGE */
.cta-content{
  position:relative;
  display:inline-block;
  padding:60px 80px;
  border-radius:14px;
  overflow:hidden;
  color:#fff;
}

/* IMAGE BACKGROUND *
.cta-content::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('/Truck/a4.jpeg') center/cover no-repeat;
  z-index:-2;
}

/* DARK TRANSPARENT OVERLAY *
.cta-content::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(10,20,40,0.65);
  z-index:-1;
}

/* TEXT STYLING */
.cta-content h3{
  font-size:2.2rem;
  margin-bottom:15px;
  color: #1E293B;
}

.cta-content p{
  font-size:1.1rem;
  margin-bottom:25px;
  color: #1E293B;
}

/* BUTTON */
.btn.primary{
  display:inline-block;
  background:#1E293B;
  color:#fff;
  padding:12px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 12px rgba(0,0,0,0.25);
}

/* ===== BUTTON ===== */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.btn.primary {
  background-color: rgb(159, 42, 42);
  color: #Fff;
}

.btn.primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #Fff;
  box-shadow: 0 0 30px rgba(20, 18, 15, 0.9);
  transform: scale(1.08);
}

/*   hover:#92433d   text:#F4C07D */
/* =================== SECTIONS =================== */
/*section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

p {
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

/* =========================================== SERVICES PAGE ============================================= */
.services-preview {
  position: relative;
  max-width: 1800px;
  margin: 0px auto;
  padding: 70px 40px;
  text-align: center;
  border-radius: 0px;
  overflow: hidden;
  color: #f0f4ff;
  z-index: 1;
}

/* Background truck image with dark overlay */
.services-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('t2.jpg') center/cover no-repeat;
  z-index: -1;
}

/* Grid layout for cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Individual cards */
.service-card {
  background: rgba(28, 29, 34, 0.7); /* translucent navy */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  background: rgba(28, 29, 34, 0.9); /* slightly darker on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* optional subtle glow */
  border-color: #151a24; /* blue glow on border */
  transform: translateY(-9px); /* bounce effect */
}

/* Icon and text styling */
.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #d9e8ff;
  margin-bottom: 10px;
}

.service-card p {
  color: #cdd4e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA Row */
.cta-row {
  margin-top: 60px;
  text-align: center;
}

.cta-row p {
  font-size: 1.2rem;
  color:#fff ;
  margin-bottom: 20px;
}

.btn.primary {
  background-color: #1E293B;  
  color: #fffaff;
  padding: 12px 22px;
    border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn.primary:hover {
  background-color:  #1E293B;
   transform: scale(1.03);
}

/* =========================================== ABOUT PAGE ================================================ */
.about-hero {
  position: relative;
  background-image: url('/Images/truck-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4c07d;
  text-align: center;
  overflow: hidden;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(2px);
}

.about-hero .hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-in-out;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  color: #dbd8d0;
}

/* WHO WE ARE SECTION */

.about-preview {
  text-align: center;
  padding: 70px 20px;
  background: rgba(20, 30, 50, 0.7);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  margin: 60px auto;
  animation: slideUp 1s ease-out;
  max-width: 1000px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-preview h2 {
  font-size: 2rem;
  color: #d2cbc2;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.about-preview h2:hover {
  color: #e7d9c0;
}

.about-preview p {
  color: #dbd8d0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.who-text {
  flex: 1 1 400px;
  color: #dbd8d0;
  font-size: 1rem;
}

.values {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.values li {
  background-color: rgba(29, 49, 74, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  color: #f4c07d;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.values li:hover {
  background-color: #20293c;
  color: #20293c;
  transform: scale(1.05);
}

/* ================================
   PHOTO BLOCK WITH BACKGROUND IMAGE
   ================================ *

.who-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-photo .photo-placeholder {
  width: 260px;
  height: 200px;
  border-radius: 12px;

  /* ⭐ Add background image here *
  background: url("team.jpg") center/cover no-repeat;
  /* Replace team-photo.jpg with your actual image *

  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect *
.who-photo .photo-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}


/* MISSION SECTION *
.mission-section {
  position: relative;
  background-image: url('/Images/truck-mission.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: beige;
  padding: 90px 20px;
  animation: fadeIn 1.2s ease-in;
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:#1d2738 ;
  backdrop-filter: blur(4px);
}

.mission-section .container {
  position: relative;
  z-index: 1;
}

.mission-section h2 {
  color: #f4c07d;
  font-size: 2rem;
  margin-bottom: 15px;
}

.mission-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}*/
.contact-btn {
  background-color: #1d2738;
  color: #Fff;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
  background-color: #1d2738 ;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =================== FORMS =================== */
form input, form select, form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background-color: var(--secondary);
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1rem;
}

form textarea {
  min-height: 100px;
}

form button {
  cursor: pointer;
}


/* ========================================= CONTACT SECTION ============================================== */
.contact-section { 
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: url('contact.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Background ko transparent/dark banane ke liye overlay */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 39, 56, 0.10); /* navy transparent overlay */
  z-index: 0;
}
#joinForm label {
  color: #ffff;
  font-weight: 600;
  margin-bottom: 5px;
}
#joinForm input {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #606467;
  border-radius: 8px;
  background-color: #1C1D22;
  color: #DBD8D0;
  transition: all 0.3s ease;
}
#joinForm input:focus {
  border-color:#ffff ;
  box-shadow: 0 0 10px rgba(244,192,125,0.3);
  outline: none;
  background-color: #1d2831;
}

/* ================= MAP ================= */

.map-container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

/* ================= CONTACT CONTENT ================= */

.contact-content {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 1300px;
  margin: 60px auto;
  text-align: center;

  /* DARK NAVY TRANSPARENT BOX */
  background: rgba(14, 18, 26, 0.760);

  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-content h1 {
  font-size: 2rem;
  color: rgb(222, 209, 193);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-content p {
  font-size: 1.2rem;
  color: rgb(222, 209, 193);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ================= FORM ================= */

#contactForm {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 7px;
  margin-bottom: 30px;
}

#contactForm label {
  color: beige;
  font-weight: 700;
}

#contactForm input,
#contactForm textarea {
  padding: 12px 14px;
  font-size: 15px;
  border:2px solid #606467;
  border-radius: 6px;

  /* transparent inputs */
  background-color: rgba(255,255,255,0.05);

  color: #ffff;
  transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #F4C07D;
  background-color: rgba(255,255,255,0.08);
  outline: none;
}

/* ================= BUTTON ================= */

#contactForm button {
  background-color: #1d2738;
  color: beige;
  font-weight: 700;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

#contactForm button:hover {
  background-color: #1d2738;
  transform: scale(1.03);
}

/* ================= CONTACT INFO (UNCHANGED STYLE) ================= */

.contact-info {
  background: rgba(17, 24, 39, 0.75);
  color: #DBD8D0;
  padding: 18px 22px;
  border-radius: 8px;
  margin-top: 25px;
}

.contact-info h3 {
  color: #F4C07D;
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 15px;
  margin: 4px 0;
}

.contact-info a {
  color: #F4C07D;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .contact-content {
    width: 90%;
    padding: 30px 20px;
  }

}

/* ======================================= JOIN SECTION ================================================== */
.join-preview {
  position: relative;
  background-image: url('truck1.jpg'); /* truck background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-overlay {
  background: rgba(28, 29, 34, 0.85); /* dark overlay */
  padding: 40px 35px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.join-overlay h2 {
  font-size: 2rem;
  color: #ffff;
  margin-bottom: 10px;
}

.join-overlay p {
  color: #DBD8D0;
  margin-bottom: 25px;
  line-height: 1.6;
}

#joinForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

#joinForm label {
  color: #ffff;
  font-weight: 600;
  margin-bottom: 5px;
}

#joinForm input {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #606467;
  border-radius: 8px;
  background-color: #1C1D22;
  color: #DBD8D0;
  transition: all 0.3s ease;
}

#joinForm input:focus {
  border-color:#ffff ;
  box-shadow: 0 0 10px rgba(244,192,125,0.3);
  outline: none;
  background-color: #1d2831;
}

#joinForm button {
  background-color: #1d2738;
  color: #Fff;
  font-size: 16px;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#joinForm button:hover {
  background-color: #1d2738;
  transform: scale(1.03);
}


/* ============================================= Pricing ======================================================= */

.knowledge-hero {
  width: 100%;
  height: 460px;
  background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)),
    url("kkk.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
  color: #fffaff;
}

.kb-content {
  max-width: 850px;
}

.kb-content h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.kb-content p {
  font-size: 18px;
  line-height: 1.5;
  color: #ffff;
}

/* Responsive */
@media (max-width: 900px) {
  .knowledge-hero {
    height: 380px;
    padding: 30px;
  }

  .kb-content h1 {
    font-size: 42px;
  }

  .kb-content p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .knowledge-hero {
    height: 350px;
  }
  .kb-content h1 {
    font-size: 32px;
  }
  .kb-content p {
    font-size: 16px;
  }
}

/* ================= Grid Section ================= */
.resource-grid-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.resource-grid-container h2 {
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: #0d1320; /* deep navy heading */
  font-weight: 700;
}

/* Grid layout */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* Grid cards */
.grid-item {
  background-color: rgba(77, 163, 255, 0); /* navy card */
  padding: 20px;
  border-radius: 14px;
  color: #0d1320; /* light text */
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(16, 44, 75, 0.25); /* soft blue border */
}

/* Images inside the grid */
.grid-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* Grid text */
.grid-item p {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hover Effects */
.grid-item:hover {
  transform: translateY(-6px);
  background-color: rgba(158, 158, 143, 0.4);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}



/* =========================================== Footer 1 =============================================== */
/* =========== TWO BLOCK NAVY TRANSPARENT SECTION ============ */

.nts-duo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 400px;
}

.nts-duo-block {
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Add your background images here */
.nts-duo-block.left {
  background: url("back1.jpg") center/cover no-repeat;
}

.nts-duo-block.right {
  background: url("back2.jpg") center/cover no-repeat;
}

/* Transparent Navy Overlay */
.nts-duo-block .overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 20, 40, 0.65); /* Navy transparent */
  z-index: 1;
}

.nts-duo-block .content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 80%;
}

.quote-icon {
  font-size: 70px;
  line-height: 0;
  margin-bottom: 20px;
  opacity: 0.9;
}

.quote-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}

.linkedin-icon {
  width: 55px;
  margin-bottom: 20px;
}

.nts-duo-block h2 {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 900px) {
  .nts-duo-section {
    grid-template-columns: 1fr;
    height: auto;
  }
  .nts-duo-block {
    height: 300px;
  }
}



/* ========================================== Footer ============================================ */
.nts-footer {
  background: #0d1320;
  background-image: url("footer-bg.png");
  background-size: cover;
  background-position: center;
  padding: 70px 40px;
  color: #0d1320;
  font-family: Arial, sans-serif;
}

.nts-footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.nts-footer-col h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.nts-footer p,
.nts-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.nts-footer a:hover {
  color: #fbd9ad;
}

.nts-footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.nts-footer-btn {
  display: inline-block;
  background: #0d1320;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff !important;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s ease;
}

.nts-footer-btn:hover {
  background: #F4C07D;
}

/* Icons */
.nts-footer i {
  margin-right: 8px;
  color: #F4C07D;
}

.nts-footer {
  position: relative;
  background: #0d1320;
  padding: 70px 40px;
  color: #0d1320;
  overflow: hidden;
}

/* Transparent background image */
.nts-footer::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 95%;
  height: 100%;
  background-image: url("RL1.png"); /* your PNG */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;  /* transparency level */
  pointer-events: none; /* prevents clicking issues */
  z-index: 1;
}

/* Content on top */
.nts-footer-container {
  position: relative;
  z-index: 2;
}


/* Footer adjustments */
footer { background-color: var(--footer-bg); color: var(--text-dark); text-align:center; padding:15px 10px; font-size:16px; border-top: 1px solid rgba(16,24,40,0.03); }
footer a { color: var(--text-dark); text-decoration:none; }
footer a:hover { text-decoration: underline; }

.social-links a { color: var(--text-dark); margin:0 10px; font-size:1.3rem; text-decoration:none; transition: color .3s; }
.social-links a:hover { color: #374151; }

.footer-section {
  background-color: var(--footer-bg);
  color: var(--text-dark);
  text-align:center;
  padding:20px 0;
  position:relative;
  width:100%;
  bottom:0;
}

.footer-section p { margin-bottom:12px; font-weight:bold; }

.social-links { display:flex; justify-content:center; gap:15px; }

.social-links a {
  display:inline-block;
  color: var(--text-dark);
  font-size:1.3rem;
  width:40px;
  height:40px;
  line-height:40px;
  border-radius:50%;
  text-align:center;
  background-color: transparent;
  transition: all .3s ease;
}
.social-links a:hover { background-color: rgba(16,24,40,0.04); color: var(--text-dark); transform: scale(1.1); }

/* =================== RESPONSIVE =================== */
@media(max-width:768px){
  .who-grid { flex-direction:column; text-align:center; }
  .who-photo { margin-top:20px; }
  .services-grid, .cta-row { flex-direction:column; gap:20px; }
  .hero h1 { font-size:2rem; }
}

/* Footer adjustments *
footer {
  background-color: #111827;
  color: #DBD8D0;
  text-align: center;
  padding: 20px 10px;
  font-size: 15px;
}

footer a {
  color: #F4C07D;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


.social-links a {
  color: #D9D8D9;
  margin: 0 10px;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #B3A3BA;
}

.footer-section {
  background-color: #111827; 
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  width: 100%;
  bottom: 0;
}

.footer-section p {
  margin-bottom: 12px;
  font-weight: bold;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: #111827; 
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #1C1D22; 
  color: #fff;
  transform: scale(1.1);
}

/* =================== RESPONSIVE =================== */
@media(max-width: 768px){
  .who-grid {
    flex-direction: column;
    text-align: center;
  }

  .who-photo {
    margin-top: 20px;
  }

  .services-grid, .cta-row {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}
