/* ===============================
   GLOBAL RESET (PREMIUM FEEL)
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* NAVBAR FIX */
header, nav, .navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin: 0 !important;
}

/* ===============================
   PAGE BANNER (PROFESSIONAL CENTERED)
================================ */
.page-banner {
  position: relative;
  width: 100%;
  height: 450px; /* Standard Premium Height */
  background: url("img/img/bnner.png") center / cover no-repeat;
  margin: 0 !important; /* Gap Fix */
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

/* Dark Gradient Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Banner Content */
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 60px; /* Navbar Spacing */
  padding: 0 20px;
}

/* Banner Title */
.banner-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Banner Subtitle */
.banner-subtitle {
  font-size: 18px;
  color: #eaeaea;
  margin-bottom: 25px;
  font-weight: 400;
}

.banner-subtitle span {
  color: #f4c430; /* Highlight Color */
  font-weight: 600;
}

/* Breadcrumb (Pill Shape) */
.banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.banner-breadcrumb a:hover {
  color: #f4c430;
}

.banner-breadcrumb span {
  margin: 0 10px;
  color: #ccc;
}

.banner-breadcrumb .active {
  color: #f4c430;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===============================
   CONTACT CONNECT SECTION (CLEAN LAYOUT)
================================ */
.contact-connect-section {
  padding: 100px 0;
  background: #f9fbfd;
}

/* Left Side - Sticky Title */
.contact-left {
  position: sticky;
  top: 120px; /* Navbar खाली चिकटेल */
}

.connect-title {
  font-size: 48px; /* Balanced Size */
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
}

.connect-title span {
  color: #1c7c54; /* Arpinox Green */
  display: block; /* New Line Effect */
}

.contact-left p {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
  max-width: 350px;
  line-height: 1.7;
}

/* Right Side - Information Blocks */
.contact-right {
  padding-left: 50px;
  border-left: 1px solid #e0e0e0;
}

.contact-block {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 35px 0;
  transition: transform 0.3s ease;
  border-bottom: 1px solid #f0f0f0; /* Subtle Divider */
}

.contact-block:last-child {
  border-bottom: none;
}

.contact-block:hover {
  transform: translateX(10px); /* Subtle Move Effect */
}

/* Numbering (01, 02...) */
.block-number {
  font-size: 28px;
  font-weight: 800;
  color: #e0e0e0; /* Subtle Grey */
  min-width: 40px;
  transition: color 0.3s ease;
}

.contact-block:hover .block-number {
  color: #1c7c54; /* Active Green on Hover */
}

/* Block Content */
.block-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.block-content h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1c7c54;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.block-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Links (Email/Phone) */
.block-content a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.block-content a:hover {
  color: #1c7c54;
  border-bottom: 1px solid #1c7c54;
}

/* ===============================
   FULL MAP SECTION (MODERN)
================================ */
.contact-map-section {
  width: 100%;
  padding: 0 20px 80px; /* Side padding added */
}

.map-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 20px; /* Soft Rounded Corners */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Floating Effect */
  filter: grayscale(20%); /* Artistic Touch */
  transition: filter 0.3s ease;
}

.map-wrapper:hover {
  filter: grayscale(0%); /* Full Color on Hover */
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===============================
   RESPONSIVE (MOBILE CENTER FIX)
================================ */
@media (max-width: 991px) {
  /* Contact Layout Change */
  .contact-connect-section {
    padding: 60px 0;
  }

  .contact-right {
    padding-left: 0;
    border-left: none; /* रेषा काढली */
    margin-top: 50px;
    border-top: 1px solid #e0e0e0; /* Top border दिली */
    padding-top: 40px;
  }
  
  /* Left Content Center */
  .contact-left {
    position: static;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-left p {
    margin: 15px auto 0;
    text-align: center;
  }
  
  .connect-title span {
    display: inline;
  }
}

@media (max-width: 768px) {
  /* Banner Fix */
  .page-banner {
    height: 350px;
  }
  
  .banner-content {
    margin-top: 70px;
  }

  .banner-title {
    font-size: 36px;
  }
  
  .banner-subtitle {
    font-size: 15px;
  }

  /* Contact Fixes */
  .connect-title {
    font-size: 36px;
  }

  /* 🔥 All Content Center Aligned */
  .contact-block {
    flex-direction: column; /* Items एका खाली एक */
    gap: 15px;
    text-align: center; /* Text Center */
    align-items: center; /* Items Center */
    padding: 30px 20px;
  }

  .contact-block:hover {
    transform: none; /* Mobile वर slide नको */
  }

  .block-number {
    font-size: 24px;
    margin-bottom: 5px;
    color: #1c7c54; /* Mobile वर Green दिसेल */
  }
  
  /* Map Fix */
  .map-wrapper {
    height: 150px;
    border-radius: 15px;
  }
}


/* ===============================
   FULL MAP SECTION (ADJUSTED SIZE)
================================ */
.contact-map-section {
  width: 100%;
  padding: 0 20px 60px; /* 
}

.map-wrapper {
  width: 100%;
  max-width: 1200px; /*
  margin: 0 auto;
  height: 300px; /*
  overflow: hidden;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Soft shadow */
  filter: grayscale(100%); /* 
  transition: all 0.4s ease;
}

.map-wrapper:hover {
  filter: grayscale(0%); /* 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===============================
   RESPONSIVE (MOBILE MAP FIX)
================================ */
@media (max-width: 991px) {
  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 300px; 
    border-radius: 10px;
  }
  
  .contact-map-section {
    padding-bottom: 40px;
  }
}
}