/* ==========================================
NIAZI AMBULANCE SERVICE
STYLE.CSS
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#f7f9fc;

color:#222;

line-height:1.7;

}

/* Container */

.container{

width:90%;

max-width:1200px;

margin:auto;

}

/* ======================
HEADER
====================== */

header{

background:#ffffff;

box-shadow:0 3px 15px rgba(0,0,0,.08);

position:sticky;

top:0;

z-index:1000;

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo h2{

color:#d60000;

font-size:30px;

font-weight:700;

}

.logo p{

font-size:14px;

color:#666;

}

nav ul{

display:flex;

list-style:none;

gap:30px;

}

nav ul li a{

text-decoration:none;

color:#222;

font-weight:600;

transition:.3s;

}

nav ul li a:hover{

color:#d60000;

}

.call-btn{

background:#d60000;

color:#fff;

padding:12px 22px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.call-btn:hover{

background:#a60000;

}

/* ======================
HERO
====================== */

.hero{

display:flex;

justify-content:space-between;

align-items:center;

padding:80px 0;

gap:60px;

}

.hero-left{

flex:1;

}

.hero-left h1{

font-size:54px;

font-weight:700;

color:#111;

margin-bottom:20px;

line-height:1.2;

}

.hero-left p{

font-size:20px;

color:#555;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:40px;

}

.btn{

display:inline-block;

padding:14px 28px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.red{

background:#d60000;

color:#fff;

}

.green{

background:#16a34a;

color:#fff;

}

.blue{

background:#0077ff;

color:#fff;

}

.btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.hero-info{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.hero-info div{

background:#fff;

padding:20px;

border-radius:15px;

text-align:center;

box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.hero-info h3{

font-size:26px;

color:#d60000;

margin-bottom:8px;

}

.hero-right{

flex:1;

text-align:center;

}

.hero-right img{

width:100%;

max-width:520px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.15);

margin-bottom:20px;

}/* ===========================
SECTION TITLE
=========================== */

.section-title{

text-align:center;

font-size:42px;

font-weight:700;

color:#d60000;

margin-bottom:15px;

}

.section-subtitle{

text-align:center;

font-size:18px;

color:#666;

margin-bottom:50px;

}

/* ===========================
SERVICES
=========================== */

.services{

padding:90px 0;

background:#ffffff;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.35s;

border-top:5px solid #d60000;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.service-card .icon{

font-size:60px;

margin-bottom:20px;

}

.service-card h3{

font-size:24px;

margin-bottom:15px;

color:#d60000;

}

.service-card p{

font-size:16px;

color:#666;

}

/* ===========================
WHY CHOOSE US
=========================== */

.why-us{

padding:90px 0;

background:#f4f7fb;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.why-card:hover{

transform:translateY(-8px);

}

.why-card h3{

font-size:22px;

color:#d60000;

margin-bottom:15px;

}

.why-card p{

color:#666;

line-height:1.8;

}

/* ===========================
OUR FLEET
=========================== */

.fleet{

padding:90px 0;

background:#fff;

}

.fleet-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

.fleet-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.10);

transition:.3s;

}

.fleet-card:hover{

transform:translateY(-8px);

}

.fleet-card img{

width:100%;

height:260px;

object-fit:cover;

}

.fleet-card h3{

font-size:26px;

color:#d60000;

padding:20px 25px 10px;

}

.fleet-card p{

padding:0 25px 25px;

color:#666;

line-height:1.8;

}

/* ===========================
GALLERY
=========================== */

.gallery{

padding:90px 0;

background:#f4f7fb;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:220px;

object-fit:cover;

border-radius:15px;

box-shadow:0 8px 18px rgba(0,0,0,.10);

transition:.3s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}/* ===========================
EMERGENCY BANNER
=========================== */

.emergency-banner{

background:linear-gradient(135deg,#d60000,#ff2b2b);

padding:80px 20px;

text-align:center;

color:#fff;

}

.emergency-banner h2{

font-size:44px;

margin-bottom:15px;

font-weight:700;

}

.emergency-banner p{

font-size:20px;

margin-bottom:30px;

opacity:.95;

}

.emergency-banner .btn{

margin:10px;

}

/* ===========================
CONTACT
=========================== */

.contact{

padding:90px 0;

background:#ffffff;

}

.contact-box{

max-width:700px;

margin:auto;

background:#fff;

padding:45px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.contact-box h3{

font-size:34px;

color:#d60000;

margin-bottom:25px;

}

.contact-box p{

font-size:18px;

margin:15px 0;

color:#555;

line-height:1.8;

}

.contact-box .btn{

margin-top:25px;

display:inline-block;

}

/* ===========================
FOOTER
=========================== */

footer{

background:#111;

color:#fff;

text-align:center;

padding:50px 20px;

}

footer h2{

font-size:32px;

margin-bottom:15px;

color:#fff;

}

footer p{

color:#ccc;

margin:8px 0;

font-size:16px;

}

/* ===========================
RESPONSIVE DESIGN
=========================== */

@media(max-width:992px){

header .container{

flex-direction:column;

gap:20px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.hero{

flex-direction:column;

text-align:center;

padding:60px 0;

}

.hero-left h1{

font-size:42px;

}

.hero-info{

grid-template-columns:repeat(2,1fr);

}

.hero-right img{

max-width:100%;

}

}

@media(max-width:768px){

.section-title{

font-size:32px;

}

.hero-left h1{

font-size:34px;

}

.hero-left p{

font-size:17px;

}

.hero-buttons{

justify-content:center;

}

.hero-info{

grid-template-columns:1fr;

}

.service-grid,

.why-grid,

.fleet-grid,

.gallery-grid{

grid-template-columns:1fr;

}

.call-btn{

width:100%;

text-align:center;

}

.contact-box{

padding:30px 20px;

}

.contact-box h3{

font-size:28px;

}

.emergency-banner h2{

font-size:32px;

}

}

@media(max-width:480px){

.logo h2{

font-size:22px;

}

nav ul{

flex-direction:column;

align-items:center;

}

.btn{

width:100%;

text-align:center;

}

.hero-left h1{

font-size:28px;

}

.hero-left p{

font-size:16px;

}

.section-title{

font-size:28px;

}

} 
/* Social Media Buttons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 22px;
  border-radius: 10px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
  opacity: 0.88;
} 
/* =================================
   TOP EMERGENCY CONTACT PANEL
================================= */

.quick-emergency {
  background: #f5f7fa;
  padding: 25px 15px;
}

.quick-emergency-card {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.quick-emergency-card h2 {
  margin: 0 0 6px;
  font-size: 28px;
  color: #d60000;
  font-weight: 800;
}

.quick-subtitle {
  margin: 0 0 22px;
  color: #555;
  font-size: 16px;
}

/* Main emergency buttons */

.quick-action {
  width: 100%;
  min-height: 68px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 20px;
  margin: 12px 0;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  text-align: left;
  box-shadow: 0 5px 12px rgba(0,0,0,0.16);
}

.quick-action > span {
  font-size: 27px;
}

.quick-action div {
  display: flex;
  flex-direction: column;
}

.quick-action strong {
  font-size: 17px;
  font-weight: 800;
}

.quick-action small {
  margin-top: 3px;
  font-size: 13px;
  color: #ffffff;
  opacity: 0.95;
}

.quick-call {
  background: #e00000;
}

.quick-whatsapp {
  background: #16a34a;
}

.quick-directions {
  background: #1683f3;
}

.quick-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

.quick-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.quick-social a {
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 600;
}

.quick-info {
  margin-top: 20px;
  line-height: 1.8;
  color: #555;
}
/* ===== FOLLOW US - CARD DESIGN ===== */

.quick-social {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin: 55px 0 25px !important;
  position: relative !important;
  padding-top: 30px !important;
  overflow: visible !important;
}

/* FOLLOW US heading */
.quick-social::before {
  content: "FOLLOW US";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 15px;
  color: #222;
  font-size: 15px;
  font-weight: 700
  ;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* horizontal line */
.quick-social::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: -1;
}

.quick-social a {
  background: #fff !important;
  color: #222 !important;
  border-radius: 14px !important;
  padding: 18px 5px !important;
  min-width: 0 !important;
  min-height: 105px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  text-decoration: none !important;
  box-shadow: 0 5px 18px rgba(0,0,0,0.10) !important;
  font-weight: 500 !important;
}

.quick-social a i {
  font-size: 42px !important;
}

.quick-social .social-instagram i {
  color: #e1306c !important;
}

.quick-social .social-facebook i {
  color: #1877f2 !important;
}

.quick-social .social-tiktok i {
  color: #000 !important;
}

.quick-social a span {
  display: block !important;
  font-size: 14px !important;
  color: #222 !important;
}

/* CONTACT INFORMATION BOX */
.quick-info {
  background: #fff !important;
  border-radius: 15px !important;
  margin-top: 25px !important;
  overflow: hidden !important;
  box-shadow: 0 5px 18px rgba(0,0,0,0.10) !important;
  color: #222 !important;
  text-align: left !important;
  line-height: 1.4 !important;
}

.quick-info p {
  margin: 0 !important;
  padding: 15px 16px !important;
  border-bottom: 1px solid #e5e5e5 !important;
  font-size: 14px !important;
  color: #222 !important;
  display: flex !important;
  align-items: center !important;
  min-height: 48px !important;
}

.quick-info p:last-child {
  border-bottom: none !important;
}

.quick-info strong {
  color: #222 !important;
}
/* ===== FINAL EMERGENCY PANEL POLISH ===== */

/* Social cards */
.quick-social {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin: 55px 0 22px !important;
  position: relative !important;
  padding-top: 28px !important;
}

.quick-social::before {
  content: "FOLLOW US";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #222;
  background: #fff;
  padding: 0 12px;
}

.quick-social a {
  background: #fff !important;
  color: #222 !important;
  min-height: 82px !important;
  padding: 12px 5px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
}

.quick-social a i {
  font-size: 30px !important;
}

.quick-social a span {
  font-size: 12px !important;
  font-weight: 500 !important;
}

.social-instagram i {
  color: #e1306c !important;
}

.social-facebook i {
  color: #1877f2 !important;
}

.social-tiktok i {
  color: #000 !important;
}

/* Information box */
.quick-info {
  margin-top: 18px !important;
  background: #fff !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.10) !important;
  text-align: left !important;
}

.quick-info p {
  margin: 0 !important;
  padding: 13px 14px !important;
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid #e8e8e8 !important;
  color: #222 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.quick-info p:last-child {
  border-bottom: none !important;
}

.quick-info p strong {
  font-weight: 700 !important;
}

/* Mobile polish */
@media (max-width: 600px) {
  .quick-emergency-card {
    width: calc(100% - 30px) !important;
    max-width: 430px !important;
  }

  .quick-social {
    gap: 9px !important;
  }

  .quick-social a {
    min-height: 78px !important;
  }
  }
/* ===== HERO MAIN TEXT DESIGN ===== */

.hero-left {
    text-align: center;
    padding: 35px 15px;
}

.hero-main-title {
    margin: 0 0 22px;
    text-align: center;
    line-height: 1.12;
    font-weight: 800;
}

.hero-main-title span {
    display: block;
}

.hero-247 {
    font-size: 42px;
    color: #d60000;
}

.hero-emergency {
    font-size: 34px;
    color: #111;
}

.hero-ambulance {
    font-size: 31px;
    color: #111;
}

.hero-pakistan {
    font-size: 29px;
    color: #d60000;
    margin-top: 5px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    max-width: 650px;
    margin: 0 auto 18px;
    text-align: center;
}

.hero-services-line {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    max-width: 650px;
    margin: 0 auto 28px;
    text-align: center;
}

/* Mobile */
@media (max-width: 600px) {
    .hero-247 {
        font-size: 38px;
    }

    .hero-emergency {
        font-size: 31px;
    }

    .hero-ambulance {
        font-size: 27px;
    }

    .hero-pakistan {
        font-size: 25px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-services-line {
        font-size: 16px;
    }
}
/* ===== 24/7 EMERGENCY HERO DESIGN ===== */

.emergency-hero-text {
    text-align: center;
    padding: 35px 15px 25px;
    background: #f7f9fc;
}

.big-247 {
    font-size: 90px;
    line-height: 0.95;
    font-weight: 900;
    color: #e00000;
    letter-spacing: -3px;
}

.big-emergency {
    font-size: 55px;
    line-height: 1;
    font-weight: 900;
    color: #071a30;
    margin-top: 15px;
}

.big-ambulance {
    font-size: 43px;
    line-height: 1.05;
    font-weight: 900;
    color: #e00000;
    margin-top: 8px;
}

.pakistan-strip {
    display: inline-block;
    background: #071a30;
    color: white;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 7px;
    padding: 8px 35px;
    border-radius: 30px;
    margin: 20px auto;
}

.emergency-description {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 500;
    color: #222;
    margin: 10px auto 22px;
}

.emergency-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.emergency-services span {
    display: inline-block;
}

/* ===== MOBILE ===== */

@media (max-width: 600px) {

    .emergency-hero-text {
        padding: 28px 10px 22px;
    }

    .big-247 {
        font-size: 72px;
    }

    .big-emergency {
        font-size: 39px;
    }

    .big-ambulance {
        font-size: 31px;
    }

    .pakistan-strip {
        font-size: 17px;
        letter-spacing: 4px;
        padding: 7px 25px;
    }

    .emergency-description {
        font-size: 17px;
    }

    .emergency-services {
        font-size: 15px;
        gap: 10px 16px;
    }
}
/* ===== 6 PHOTO GALLERY FINAL DESIGN ===== */

.Gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.Gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Tablet */
@media (max-width: 900px) {
    .Gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .Gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .Gallery-grid img {
        border-radius: 8px;
    }
}
/* ===== EMERGENCY BANNER IMAGE ===== */

.hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emergency-banner {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin: 20px auto;
}

/* Mobile */
@media (max-width: 600px) {
    .emergency-banner {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 15px auto;
        border-radius: 8px;
    }
}
/* ===== City Pages Cards ===== */

.city-pages{
  padding:60px 20px;
  background:#f8fafc;
}

.city-pages h2{
  text-align:center;
  margin-bottom:10px;
}

.city-pages .sub{
  text-align:center;
  max-width:700px;
  margin:0 auto 30px;
  color:#666;
}

.city-pages .gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.city-pages figure{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.3s;
}

.city-pages figure:hover{
  transform:translateY(-8px);
}
.city-pages .card img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:top;
    display:block;
    border-radius:12px 12px 0 0;
}

.city-pages figcaption{
  padding:18px;
  text-align:center;
  line-height:1.7;
}

.city-pages a{
  color:inherit;
  text-decoration:none;
}
/* =========================================
   NIAZI PREMIUM MOBILE MENU
========================================= */

.niazi-menu-btn {
    display: none;
}

@media (max-width: 768px) {

    header .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        padding: 10px 16px;
        box-sizing: border-box;
    }

    header .logo {
        margin: 0 !important;
        padding: 0 !important;
        text-align: left;
    }

    header .logo h2 {
        margin: 0 !important;
        font-size: 19px !important;
        line-height: 1.1;
    }

    header .logo p {
        margin: 4px 0 0 !important;
        font-size: 10px !important;
    }

    /* PREMIUM HAMBURGER */
    .niazi-menu-btn {
        display: flex !important;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;

        background: #071b33 !important;
        color: #ffffff !important;

        border: none !important;
        border-radius: 12px;

        font-size: 25px;
        line-height: 1;

        cursor: pointer;

        box-shadow: 0 5px 18px rgba(0,0,0,.18);

        position: relative;
        z-index: 100002;
    }

    /* MENU CLOSED */
    #niazi-navigation {
        display: none !important;

        position: absolute !important;

        top: calc(100% + 8px) !important;
        left: 14px !important;
        right: 14px !important;

        background: #ffffff !important;

        border-radius: 16px !important;

        padding: 8px 0 !important;

        box-shadow: 0 15px 35px rgba(0,0,0,.18) !important;

        z-index: 100001 !important;

        overflow: hidden;
    }

    /* MENU OPEN */
    #niazi-navigation.niazi-menu-open {
        display: block !important;
    }

    #niazi-navigation ul {
        display: block !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #niazi-navigation li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #niazi-navigation li a {
        display: block !important;

        padding: 15px 20px !important;

        color: #071b33 !important;
        background: #ffffff !important;

        text-decoration: none !important;

        font-size: 16px !important;
        font-weight: 700 !important;

        border-bottom: 1px solid #eeeeee !important;
    }

    #niazi-navigation li:last-child a {
      
        border-bottom: none !important;
    }

    #niazi-navigation li a:active {
        background: #f4f7fa !important;
    }
}
/* =========================================
   NIAZI PREMIUM HERO
========================================= */

.niazi-premium-hero {
    position: relative;
    min-height: 620px;

    background-image: url("./ambulance-hero.png");

    background-size: cover;
    background-position: center right;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Dark premium overlay */
.niazi-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 38, 0.94) 0%,
            rgba(3, 18, 38, 0.78) 38%,
            rgba(3, 18, 38, 0.18) 72%,
            rgba(3, 18, 38, 0.05) 100%
        );

    z-index: 1;
}


/* Hero content */
.niazi-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 70px 40px;

    box-sizing: border-box;
}


/* Left text */
.niazi-hero-copy {
    width: 52%;
    max-width: 600px;
}


/* 24/7 */
.niazi-247 {
    display: inline-block;

    background: #e00000;
    color: #ffffff;

    font-size: 64px;
    font-weight: 900;
    line-height: 0.95;

    padding: 8px 20px;

    border-radius: 10px;

    margin-bottom: 18px;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}


/* Main heading */
.niazi-hero-copy h1 {
    margin: 0;

    color: #ffffff;

    font-size: 58px;
    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -1px;
}


/* Red heading part */
.niazi-hero-copy h1 span {
    display: block;

    color: #e00000;

    margin-top: 5px;
}


/* All Pakistan */
.niazi-all-pakistan {
    display: inline-block;

    margin-top: 24px;

    padding: 10px 20px;

    background: #071b33;

    color: #ffffff;

    border-radius: 8px;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: .8px;

    border-left: 5px solid #e00000;
}


/* Description */
.niazi-hero-description {
    color: #ffffff;

    font-size: 18px;

    line-height: 1.6;

    max-width: 540px;

    margin: 22px 0;
}


/* Services */
.niazi-hero-services {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}


.niazi-hero-services span {
    display: inline-flex;

    align-items: center;

    padding: 10px 14px;

    background: rgba(255,255,255,.95);

    color: #071b33;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0,0,0,.12);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .niazi-premium-hero {

        min-height: auto;

        background-position: 62% center;

        align-items: flex-end;
    }


    .niazi-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(3,18,38,.12) 0%,
                rgba(3,18,38,.30) 30%,
                rgba(3,18,38,.88) 70%,
                rgba(3,18,38,.97) 100%
            );
    }


    .niazi-hero-content {

        padding: 270px 20px 35px;

    }


    .niazi-hero-copy {

        width: 100%;

        max-width: none;

        text-align: left;
    }


    .niazi-247 {

        font-size: 43px;

        padding: 7px 15px;

        margin-bottom: 12px;
    }


    .niazi-hero-copy h1 {

        font-size: 38px;

        line-height: 1;

        letter-spacing: -.5px;
    }


    .niazi-all-pakistan {

        margin-top: 17px;

        font-size: 15px;

        padding: 9px 15px;
    }


    .niazi-hero-description {

        font-size: 15px;

        line-height: 1.5;

        margin: 17px 0;
    }


    .niazi-hero-services {

        gap: 7px;

        margin-top: 12px;
    }


    .niazi-hero-services span {

        font-size: 12px;

        padding: 8px 10px;

        border-radius: 7px;
    }

}
/* =========================================
   FINAL MOBILE HEADER + HERO POLISH
========================================= */

@media (max-width: 768px) {

    /* ---------- HEADER ---------- */

    header {
        position: sticky !important;
        top: 0 !important;
        z-index: 100000 !important;
    }

    header .container {
        width: 100% !important;
        min-height: 64px !important;
        height: 64px !important;
        padding: 8px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    header .logo {
        flex: 1 !important;
        min-width: 0 !important;
    }

    header .logo h2 {
        font-size: 18px !important;
        line-height: 1.05 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    header .logo p {
        font-size: 9px !important;
        line-height: 1.1 !important;
        margin-top: 3px !important;
        white-space: nowrap !important;
    }

    .niazi-menu-btn {
        flex: 0 0 42px !important;
        width: 42px !important;
        height: 42px !important;

        background: #071b33 !important;
        color: #fff !important;

        border: 0 !important;
        border-radius: 11px !important;

        font-size: 22px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,.16) !important;
    }

    /* ---------- MOBILE DROPDOWN ---------- */

    #niazi-navigation {
        top: calc(100% + 6px) !important;
        left: 10px !important;
        right: 10px !important;

        border-radius: 14px !important;
        padding: 5px 0 !important;

        box-shadow:
            0 18px 40px rgba(0,0,0,.20) !important;

        border: 1px solid #eeeeee !important;
    }

    #niazi-navigation li a {
        padding: 13px 18px !important;

        font-size: 15px !important;
        font-weight: 700 !important;

        text-align: left !important;

        border-bottom: 1px solid #f0f0f0 !important;
    }


    /* ---------- HERO ---------- */

    .niazi-premium-hero {
        min-height: 0 !important;

        background-size: cover !important;

        /* ambulance ko mobile par centre/right rakhein */
        background-position: 68% center !important;

        align-items: flex-end !important;
    }

    .niazi-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,18,38,.02) 0%,
                rgba(3,18,38,.12) 32%,
                rgba(3,18,38,.72) 67%,
                rgba(3,18,38,.96) 100%
            ) !important;
    }

    .niazi-hero-content {
        width: 100% !important;

        /* 270px ko reduce kiya */
        padding: 205px 18px 28px !important;
    }

    .niazi-hero-copy {
        width: 100% !important;
        max-width: 100% !important;

        text-align: left !important;
    }

    .niazi-247 {
        font-size: 40px !important;
        padding: 6px 13px !important;

        border-radius: 8px !important;

        margin-bottom: 10px !important;
    }

    .niazi-hero-copy h1 {
        font-size: 34px !important;
        line-height: 1.02 !important;

        letter-spacing: -.6px !important;
    }

    .niazi-hero-copy h1 span {
        margin-top: 4px !important;
    }

    .niazi-all-pakistan {
        margin-top: 14px !important;

        font-size: 14px !important;

        padding: 8px 14px !important;

        border-left-width: 4px !important;

        border-radius: 7px !important;
    }

    .niazi-hero-description {
        font-size: 14px !important;

        line-height: 1.45 !important;

        margin: 14px 0 !important;

        max-width: 100% !important;
    }

    .niazi-hero-services {
        gap: 6px !important;
        margin-top: 10px !important;
    }

    .niazi-hero-services span {
        font-size: 11px !important;

        padding: 7px 9px !important;

        border-radius: 6px !important;

        line-height: 1.2 !important;
    }
}


/* VERY SMALL PHONES */

@media (max-width: 380px) {

    header .logo h2 {
        font-size: 16px !important;
    }

    .niazi-hero-content {
        padding-top: 185px !important;
    }

    .niazi-247 {
        font-size: 36px !important;
    }

    .niazi-hero-copy h1 {
        font-size: 30px !important;
    }

    .niazi-hero-description {
        font-size: 13px !important;
    }
}
/* =========================================
   FINAL MOBILE HEADER FIX
========================================= */

@media (max-width: 768px) {

    header {
        position: relative !important;
        height: 72px !important;
        min-height: 72px !important;
        padding: 0 !important;
        background: #ffffff !important;
        z-index: 100000 !important;
    }

    header > .container {
        position: relative !important;

        width: 100% !important;
        height: 72px !important;
        min-height: 72px !important;

        padding: 8px 14px !important;

        box-sizing: border-box !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }


    /* Logo */

    header .logo {
        margin: 0 !important;
        padding: 0 !important;

        flex: 1 !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;

        min-width: 0 !important;
    }

    header .logo h2 {
        margin: 0 !important;

        font-size: 18px !important;
        line-height: 1.05 !important;

        white-space: nowrap !important;
    }

    header .logo p {
        margin: 3px 0 0 !important;

        font-size: 9px !important;
        line-height: 1 !important;

        white-space: nowrap !important;
    }


    /* Remove empty space created by outer nav */

    header > nav {
        display: contents !important;
    }


    /* Hamburger */

    .niazi-menu-btn {
        position: absolute !important;

        top: 15px !important;
        right: 14px !important;

        width: 42px !important;
        height: 42px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #071b33 !important;

        color: #ffffff !important;

        border: none !important;
        border-radius: 11px !important;

        font-size: 23px !important;
        line-height: 1 !important;

        box-shadow: 0 5px 16px rgba(0,0,0,.18) !important;

        z-index: 100002 !important;
    }


    /* Navigation dropdown */

    #niazi-navigation {
        position: absolute !important;

        top: 68px !important;
        left: 12px !important;
        right: 12px !important;

        width: auto !important;

        margin: 0 !important;

        background: #ffffff !important;

        border-radius: 14px !important;

        box-shadow: 0 15px 35px rgba(0,0,0,.20) !important;

        border: 1px solid #eeeeee !important;

        z-index: 100001 !important;
    }

    #niazi-navigation ul {
        margin: 0 !important;
        padding: 5px 0 !important;
    }

    #niazi-navigation li {
        margin: 0 !important;
        padding: 0 !important;
    }

    #niazi-navigation li a {
        display: block !important;

        padding: 13px 18px !important;

        font-size: 15px !important;
        font-weight: 700 !important;

        text-align: left !important;

        border-bottom: 1px solid #eeeeee !important;
    }

    #niazi-navigation li:last-child a {
        border-bottom: none !important;
    }


    /* Hero starts immediately after header */

    .niazi-premium-hero {
        margin-top: 0 !important;
    }
}
/* FINAL MOBILE HEADER FIX */

@media (max-width: 768px) {

    header {
        height: 72px !important;
        min-height: 72px !important;
        padding: 0 !important;
    }

    header .container {
        width: 100% !important;
        height: 72px !important;
        min-height: 72px !important;

        padding: 8px 14px !important;

        display: flex !important;

        /* THIS WAS MISSING */
        flex-direction: row !important;

        align-items: center !important;
        justify-content: space-between !important;

        box-sizing: border-box !important;
        gap: 10px !important;
    }

    header .logo {
        flex: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        min-width: 0 !important;
    }

    header .logo h2 {
        margin: 0 !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    header .logo p {
        margin: 3px 0 0 !important;
        font-size: 9px !important;
        line-height: 1 !important;
    }

    .niazi-menu-btn {
        display: flex !important;

        flex: 0 0 44px !important;

        width: 44px !important;
        height: 44px !important;

        margin: 0 !important;
        padding: 0 !important;

        align-items: center !important;
        justify-content: center !important;

        background: #071b33 !important;
        color: #ffffff !important;

        border: none !important;
        border-radius: 11px !important;

        font-size: 24px !important;

        position: relative !important;
        z-index: 100002 !important;
    }

    #niazi-navigation {
        top: 72px !important;
        left: 12px !important;
        right: 12px !important;

        width: auto !important;
    }

    /* Hero immediately after header */
    .niazi-premium-hero {
        margin-top: 0 !important;
    }
}
/* Navigation links */
#niazi-navigation ul li a {
    color: #222 !important;
    text-decoration: none !important;
}

/* Navigation hover */
#niazi-navigation ul li a:hover {
    color: #d71920 !important;
    text-decoration: none !important;
}
