body {
  margin: 0;
  font-family: Arial;
}

body {
    overflow-x: hidden;
}







/* HERO BASE */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 1s ease-in-out;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* TEXT */
.text-area {
  color: white;
  z-index: 2;
  position: relative;
}


/* Logo Image */
.logo {
   width: 70px;
    /* height: 100%; */
    margin-right: 10px;
    position: absolute;
    /* margin-top: 53px; */
}

/* Brand Name */
.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;  /* dark navbar ke liye */
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 65px;
        margin-left: 30px;
    }
    .brand-name {
        font-size: 16px;
    }
}





/* ANIMATION */
h1, p {
  transition: all 0.6s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== */
/* 💻 DESKTOP VIEW */
/* ===================== */
@media (min-width: 992px) {

  .text-area {
    text-align: left;
  }

  h1 {
    font-size: 60px;
    font-weight: 700;
  }

  p {
    font-size: 18px;
    /* width: 80%; */
  }

  .btns {
    margin-top: 20px;
  }
}

/* ===================== */
/* 📱 MOBILE VIEW */
/* ===================== */
@media (max-width: 991px) {

  .text-area {
    text-align: center;
  }

  h1 {
    font-size: 32px;
    font-weight: 700;
  }

  p {
    font-size: 14px;
  }

  .btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}


.custom-nav {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 10;
}

/* nav links */
.nav-link {
  color: black !important;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: #f4c542 !important;
}





/* part2 */

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
}

/* CATEGORY CARD */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}


.cat-btn{
  padding:8px 18px;
  border:none;
  background:#eee;
  border-radius:20px;
  cursor:pointer;
  font-weight:500;
}

.cat-btn.active{
  background:#0d6efd;
  color:#fff;
}
.category-card h5 {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.category-card:hover img {
  transform: scale(1.1);
}

/* ABOUT */
.about-section {
  background: #fff;
}

.text-gradient {
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* INFO CARD */
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card h6 {
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #6c757d;
}

/* RESPONSIVE */
@media(max-width:768px){
  .category-card img {
    height: 180px;
  }
}


/* 3rd  part*/
body {
  font-family: 'Poppins', sans-serif;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PROCESS BOX */
.process-box {
  text-align: center;
  padding: 10px;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9f3ff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.process-box:hover .circle {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.1);
}

.process-box h6 {
  font-weight: 600;
}

.process-box p {
  font-size: 14px;
  color: #6c757d;
}

/* BUTTON */
.btn-gradient {
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
}

.btn-gradient:hover {
  opacity: 0.9;
}

/* BADGES */
.badge-box {
  padding: 10px 16px;
  background: #f1f3f5;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.badge-box:hover {
  background: #0d6efd;
  color: #fff;
}

/* STATS */
h2 {
  font-size: 40px;
}

/* MOBILE */
@media(max-width:768px){
  h2 {
    font-size: 28px;
  }
}

/* 4part */
body {
    background: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
}

/* Card */
.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-card h2 {
    font-weight: 700;
}

.sub-text {
    color: #666;
    margin-bottom: 25px;
}

/* Inputs */
.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #c9a74d;
}

/* Button */
.btn-submit {
    background: linear-gradient(135deg, #c9a74d, #a8842e);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: scale(1.05);
}

/* Map */
.map-card {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .map-card iframe {
        min-height: 300px;
    }
}


/* 5part */
body {
    background: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
}

/* Title */
.title {
    font-weight: 800;
    letter-spacing: 2px;
}
.underline {
    width: 100px;
    height: 4px;
    background: #e63946;
    /* margin: 10px auto; */
    border-radius: 5px;
}
.underline1 {
    width: 80px;
    height: 4px;
    background: #e63946;
    margin: 10px auto;
    border-radius: 5px;
}

/* Testimonial */
.testimonial-item {
    padding: 20px;
}

.img-box {
    position: relative;
    display: inline-block;
}

.img-box img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

/* Red Border Effect */
.img-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e63946;
    top: 15px;
    left: -15px;
    z-index: 1;
    border-radius: 8px;
}

/* Content Box */
.content-box {
    background: #1d1d1d;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    position: relative;
}

.content-box h4 {
    margin-bottom: 15px;
}

.content-box p {
    font-size: 15px;
    line-height: 1.7;
}

/* Quotes */
.content-box::before {
    content: "“";
    font-size: 60px;
    position: absolute;
    top: 10px;
    left: 20px;
    color: #ccc;
}

.content-box::after {
    content: "”";
    font-size: 60px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #ccc;
}

/* Owl Dots */
.owl-dots {
   margin-top: 25px;
    justify-content: center;
    display: flex
}
.owl-dot span {
    width: 30px !important;
    height: 6px !important;
    background: #ccc !important;
    display: block;
    border-radius: 10px;
}
.owl-dot.active span {
    background: #e63946 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .content-box {
        margin-top: 20px;
        padding: 25px;
    }
}


/* 6 month */
body {
    background: #f3f3f3;
    font-family: 'Segoe UI', sans-serif;
}

/* Image */
.image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Content */
.content-box {
    padding-right: 20px;
}

.tag-line {
    color: #c9a74d;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.content-box h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.content-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .content-box h1 {
        font-size: 24px;
    }
    .footer-section{
        align-items: center;
    text-align: center;
    }
}


/* 7part */
.footer-section {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Titles */
.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #c9a74d;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #c9a74d;
    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #888;
}
