*{
          margin: 0;
          padding: 0;
}
 
/* .header{
        min-height: 100vh;
         width: 100%;
          background-image: url(images/courierd.jpg); 
          background-position: center; 
          background-size: cover;
          position:relative;
}
@media(min-width:320px){
       .header{
              background-size: cover;
          background-image: url(images/courierd.jpg); 
              background-position: center;
       }
}   */
   .header {
  width: 100%;
  min-height: 100vh;
  background-image: url('images/courierd.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}


@media (max-width: 768px) {
  .header {
    min-height: 70vh; 
    background-position: top center; 
  }
}

@media (max-width: 480px) {
  .header {
    min-height: 26vh; 
        background-position : center top;
        margin-top: 83px;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
}

nav img {
  width: 120px;
}

.nav-links {
  flex: 1;
  text-align: right;
}

/* Desktop menu */
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  display: inline-block;
  margin: 0 15px;
}

.nav-links ul li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links ul li a:hover {
  color:#f44336;
}

/* Hide icons on desktop */
nav .fa-solid {
  display: none;
}

/* ---- Responsive Styles ---- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    background: rgb(225, 217, 217);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    transition: 0.2s;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding-top: 60px;
  }

  .nav-links ul li {
    display: block;
    margin: 20px 0;
  }

  nav .fa-solid {
    display: block;
    color: #514c4c;
    font-size: 25px;
    cursor: pointer;
  }

  .nav-links .fa-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* prevents items from overflowing */
  box-sizing: border-box;
}



.text-box{
          width:90%;
          color:#fff;
          position:absolute;
          top:50%;
          left:50%;
          transform:translate(-50%,-50%);
          text-align:center;
}
.text-box h1{
          color:black;
          font-size: 62px;
}
.text-box p{
          margin:10px 0 40px;
          font-size: 18px;
          color:#444;
}
.hero-btn{
          display:inline-block;
          text-decoration:none;
          color:#fff;
          border:1px solid #fff;
          padding: 12px 34px;
          font-size: 13px;
          background:transparent;
          position:relative;
          cursor:pointer;
}
.hero-btn:hover{
          border:1px solid #f44336;
          background:#f44336;
          transition :1s;
}
nav .fa{
          display:none;
}
@media(max-width: 700px){
        .text-box h1{
         font-size: 28px;
         position:relative;
         top:12px;
}
        .nav-links ul li{
          display:block;
 }
   .nav-links{
          position: fixed;
          background:#dacccb;
          height:100vh;
          width:200px;
          top:0;
          right:-200px;
          text-align: left;
          z-index :2;
          transition:1s; 
   }
   nav .fa{
          display:block;
          color:#333;
          margin:10px;
          font-size:22px;
          cursor:pointer;
   }
   .nav-links ul{
       padding:30px;

   }
}
/* facilities */
.facilities{
       width:80%;
       margin:auto;
       text-align: center;
       padding-top:77px;
}
h1{
       font-size:36px;
       font-weight:600; 
}
p{
       color:#777;
       font-size:14px;
       font-weight:300;
       line-height:22px;
       padding:10px;
}
.row{
       margin-top: 5%;
       display:flex;
       justify-content: space-between;
}
.faci-col{
       flex-basis:31%;
       background:#fff3f3;
       border-radius: 10px;
       margin-bottom: 5%;
       padding:20px 12px;
       box-sizing: border-box;
       transition:0.5s;
}
h3{
       text-align:center;
       font-weight:600;
       margin:10px 0;
}
.faci-col:hover{
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width:700px){
       .row{
              flex-direction:column;
       }
}
/* -----campus----- */
.campus {
  text-align: center;
  padding: 50px 20px;
}

.campus h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.campus p {
  color: #555;
  margin-bottom: 40px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.campus-col {
  position: relative;
  flex-basis: 80%;  /* adjusts to screen size */
  max-width: 600px;
  margin: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.campus-col img {
  width: 100%;         /* makes image responsive */
  height: auto;        /* keeps aspect ratio */
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease;
  margin-top:20px ;
}

.campus-col:hover img {
  transform: scale(1.05); /* smooth zoom on hover */
}

.layer {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6); /* semi-transparent overlay */
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.campus-col:hover .layer {
  opacity: 1;
}

.layer h2 {
  font-size: 24px;
  font-weight: 600;
}

/* -----profile---- */
.profile{
       width:80%;
       margin: auto;
       text-align: center;
       padding-top: 80;
       margin-bottom:10px;
       
}
.profile p{
       display: flex;
       padding:15px 0 25px;
       line-height: 1.8;
       text-align: justify;
       /* padding:0; */
}
.profile h1{
       margin-top: 50px;
       margin-bottom:15px;
}
/* -----testimonials------ */
.testimonials{
        width:80%;
        margin:auto;
       padding-top:40px;
       text-align: center;
}
.testimonial-col{
       flex-basis: 44%;
       border-radius:10px;
       margin-bottom:5%;
       text-align: left;
       background:#fff3f3;
       padding:25px;
       cursor:pointer;
       display:flex;
}
.testimonial-col p{
       padding: 0;

}
.testimonial-col h3{
       margin-top: 15px;
       text-align: left;
}
.testimonial-col .fa{
       color:#f44336;
}
/* -----cal to action----- */
.cta{
    margin:100px auto;
    width:80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/delivery.jpg);
    background-position:center;
    background-size:cover;
    border-radius:10px;
    text-align:center;
    padding:100px 0;
}
.cta h1{
       color:#fff;
       margin-bottom:40px;
       padding:0;
}
@media(max-width:700px){
     .cta h1{
       font-size:24px;
     }
}
/* <-----footer------> */
/* ✅ Responsive t
    height: 60vh; /* smaller height for tablets */
.sub-header {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full screen height */
  background: url('images/about4.jpg')no-repeat center center;
  background-size: cover;
  background-attachment: scroll; /* fixed breaks responsiveness on mobile */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px; /* prevent nav overlap */
  box-sizing: border-box;
}

.sub-header h1 {
  color:#111;
  font-size: 3rem;
}


@media (max-width: 700px) {
      .sub-header {
        min-height: 19vh;
        background-position: top center;
        padding-top: 0px;
        margin-top: 83px;
        margin-bottom: -39px;
    }

  .sub-header h1 {
    font-size: 2rem;
    position: relative;
    top: -25px;
   
  }
}

/* Mobile responsiveness */

.about-us{
       width:80%;
       margin:auto;
       padding-top:200px;
       padding-bottom:50px;
}
.about-col{
       flex-basis:48%;
       padding:30px 2px;
}
.about-col img{
       width:100%;
}
 .about-col h1{
       padding-top:0;
} 
.about-col p{
       display: flex;
       padding:15px 0 25px;
       line-height: 1.8;
       text-align: justify;
}
.about-col a{
       display:flex;
       justify-content:center;
}
.red-btn{
       border:1px solid #f44336;
       background:transparent;
       color:#f44336;
}
.red-btn:hover{
       color:#fff;
}

/* ----blog-content----- */
.blog-content{
       width:80%;
       margin:auto;
       padding:60px 0;
}
.blog-left{
       flex-basis:65%;
}
.blog-left img{
       width:50%;
}
.blog-left h2{
       color:#222;
       font-weight:600;
       margin:30px 0;
}
.blog-left p{
       color:#999;
       padding:0;
}
.blog-right{
       flex-basis:32%;
}
.blog-right h3{
       background:#f44336;
       color:#fff;
       padding:7px 0;
       font-size:16px;
       margin-bottom:20px;
}
.blog-right div{
       display:flex;
       align-items: center;
       justify-content: space-between;
       color:#555;
       padding:8px;
       box-sizing: border-box;
}
.comment-box{
       border:1px solid #ccc;
       margin:50px 0;
       padding:10px 20px;
}
.comment-box h3{
       text-align:left;
}
.comment-form input,.comment-form textarea{
       width:100%;
       padding:10px;
       margin:15px 0;
       box-sizing:border-box;
       border:none;
       outline:none;
       background:#f0f0f0;
}
.comment-form button{
       margin:10px 0;
}
@media(max-width:700px){
       .sub-header h1{
              font-size:24px;
       }
}
/* ----contact us page----- */
.location{
       width:80%;
       margin:auto;
       padding:80px 0;
}
.location iframe{
       width:100%;
}
.contact-us{
       width:80%;
       margin:auto;
}
.contact-col{
       flex-basis:48%;
       margin-bottom:30px;
}
.contact-col div{
       display:flex;
       align-items:center;
       margin-bottom:40px;
}
.contact-col div .fa{
       font-size:28px;
       color:#f44336;
       margin:10px;
       margin-right:30px;
}
.contact-col div p{
         padding:0;
}
.contact-col div h5{
       font-size:20px;
       margin-bottom:5px;
       color:#555;
       font-weight:400;
}
  .contact-col input, textarea{ 
       width:100%;
       padding:15px 3px;
       margin-bottom:17px;
       outline:none;
       border:1px solid #ccc;
} 
.refund h2,p{
     text-align:center;
}

 .fa-bars {
  font-size: 28px;
  color: #eae4e4;
  cursor: pointer;
  display: inline-block;
  margin: 10px;
}
.footer {
  background-color: #111;
  color: #ddd;
  padding: 50px 0 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  margin: 10px 20px;
}

.footer-logo {
  color: #ccc;
  font-weight: 700;
  font-size: 22px;
}

.footer-location {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.footer-col p {
  margin: 8px 0;
}

.footer-col i {
  color: #ffcc00;
  margin-right: 10px;
}

.social-icons i {
  font-size: 20px;
  margin: 10px;
  color: #ddd;
  transition: 0.3s;
  cursor: pointer;
}

.social-icons i:hover {
  color: #ffcc00;
}

.footer-bottom {
  margin-top: 20px;
  color: #888;
  font-size: 14px;
}
 
/* ===== Terms & Conditions page styles ===== */
.topbar{
  position:fixed;left:0;right:0;top:0;z-index:1200;background:linear-gradient(90deg,#ffffffcc,#ffffffcc);backdrop-filter: blur(4px);box-shadow:0 2px 8px rgba(0,0,0,0.06);
}
.topbar .nav-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:12px 20px;box-sizing:border-box}
.topbar .brand{font-weight:700;color:#e23b2a;text-decoration:none;font-size:20px}
.topbar .nav-menu{list-style:none;display:flex;gap:18px;margin:0;padding:0}
.topbar .nav-menu a{color:#333;text-decoration:none;font-weight:600}

.terms-hero{background:linear-gradient(180deg,rgba(226,59,42,0.08),rgba(0,0,0,0.5)),url('images/about4.jpg') center/cover no-repeat;padding:110px 16px 40px 16px;margin-top:64px}
.terms-hero .hero-inner{max-width:1100px;margin:0 auto;text-align:center}
.terms-hero h1{font-size:34px;margin-bottom:8px;color:#fff;font-weight:700}
.terms-hero .lead{color:#fff;max-width:900px;margin:0 auto;font-size:15px}

.terms-container{max-width:1100px;margin:30px auto;padding:20px}
.terms-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.term-card{background:#fff;border-radius:12px;padding:18px;box-shadow:0 10px 30px rgba(14,14,14,0.04);overflow:hidden;display:flex;flex-direction:column}
.term-head h2{margin:0;font-size:18px;color:#e23b2a;padding-bottom:8px;font-weight:700}
.term-head{border-bottom:1px solid #f0f0f0;padding-bottom:10px;margin-bottom:12px}
.term-body ul{list-style:none;padding-left:0;margin:0;display:block}
.term-body ul li{position:relative;padding-left:34px;padding-bottom:10px;color:#444;line-height:1.45}
.term-body ul li:before{content:'\f058';font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;left:0;top:0;color:#2bb673}
.term-body p.text-justify{color:#555}

.refund-card{border-left:4px solid #e23b2a}

/* responsive */
@media (max-width: 900px){
  .terms-grid{grid-template-columns:1fr}
  .terms-hero{padding-top:90px}
}

@media (max-width:480px){
  .topbar .nav-inner{padding:8px 12px}
  .terms-hero h1{font-size:22px}
  .terms-hero .lead{font-size:14px}
  .term-body ul li{padding-left:32px;font-size:14px}
}

/* subtle card hover */
.term-card:hover{transform:translateY(-6px);transition:all .28s ease;box-shadow:0 18px 40px rgba(25,25,25,0.06)}

/* small utility */
.terms-footer{margin-top:30px;padding:22px 0;text-align:center;color:#666}


