
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

.custom-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px; /* 🔥 kam height */
  height: 80px; /* 🔥 fixed slim navbar */
}

/* LOGO */
.nav-logo {
  flex: 0 0 auto; /* No flex-grow, align logo to left */
  margin-left: 0px; /* Adjusted to zero to ensure logo aligns perfectly to left */
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* LOGO IMAGE */

.nav-logo img {
  height: 100%; /* 🔥 wrapper ke andar fit */
  max-height: 150px;
  width: auto;
  display: block;
}

/* hover effect (optional) */
.nav-logo img:hover {
  opacity: 0.8;
  transition: 0.3s ease;
}

/* MENU */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center; /* Center the menu items */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 180px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-content li {
  padding: 10px;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

/* RIGHT MENU */
.right-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.right-menu a {
  text-decoration: none;
  color: #000;
}

.contact-btn {
  background: #0154a0;
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 4px;
}

/* MOBILE BUTTON */
.hamburger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
.mobile-only-item {
  display: none;
}

@media (max-width: 900px) {
  .hamburger-menu {
    display: block;
  }

  /* NAV CONTAINER */
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  /* OPEN MENU */
  .nav-menu.active {
    max-height: 100vh;
    overflow-y: auto;
  }

  /* VERTICAL LEFT ALIGNED MENU */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left align */
    padding: 10px 20px;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #eee;
  }

  /* LINKS FULL WIDTH */
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: left;
  }

  .nav-logo img {
    height: 100px; /* mobile size */
  }

  /* DROPDOWN MOBILE */
  .dropdown-content {
    position: static;
    display: none;
    background: #f5f5f5;
    box-shadow: none;
    padding-left: 15px;
  }

  /* JS CONTROL */
  .nav-dropdown.active .dropdown-content {
    display: block;
  }

  /* IMPORTANT FIX: remove hover conflict */
  /* Removed .nav-dropdown:hover .dropdown-content as hover is not needed in mobile */

  /* RIGHT SIDE HIDE */
  .right-menu {
    display: none;
  }

  /* MOBILE ITEMS */
  .mobile-only-item {
    display: block;
  }

  /* ================= SERVICES FIX ================= */
  .services {
    width: 100%;
    padding: 0;
  }

  .services li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .title {
    font-size: 26px;
    line-height: 1.2;
  }

  .number {
    font-size: 12px;
    color: #999;
  }
}













                                     /* HERO */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 0 clamp(20px, 6vw, 80px); /* responsive padding */
  overflow: hidden;
  text-align: left;
}

/* CONTENT */
.content-container {
  max-width: 1200px;
  z-index: 2;
  width: 100%;
}

/* HEADING */
.hero h1 {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  margin-left: 55px; /* tighter look */
  color: #000;
  letter-spacing: -2px;
}

/* ================= IMAGE RESPONSIVE ================= */
.hero img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= BACKGROUND LINES ================= */
.bg-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;

  --x: 0px;
  --y: 0px;
  transform: translate(var(--x), var(--y));

  overflow: hidden; /* fix overflow */
}

.bg-lines::before,
.bg-lines::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background: black;
  top: 40%;
  left: -20%;
}

.bg-lines::before {
  transform: rotate(30deg);
}
.bg-lines::after {
  transform: rotate(-30deg);
}


/* ================= TABLET ================= */
@media (max-width: 992px) {
  .hero {
    justify-content: center;
    text-align: center;
  }

  .content-container {
    margin: auto;
  }

  .hero h1 {
    margin-top: 40px;
    margin-left: 0; /* ✅ FIX (important) */
    max-width: 90%;
  }

}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .hero {
    min-height: 40vh;
    justify-content: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.15;

    margin-left: 0;
    padding-left: 10px;

    /* ✅ top se neeche proper spacing */
    margin-top: 60px;
  }


}


@media (max-width: 430px) {

  .hero {
    min-height: 30vh; /* thoda compact */
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 42px;   /* ✅ bigger & premium look */
    line-height: 1.1;

    /* margin-top: 200px;  ✅ top se neeche proper spacing */
    padding-left: 10px;
        /* padding-top: 40px; */
  }

  .content-container {
    max-width: 100%;
  }


  .bg-lines::before,
  .bg-lines::after {
    opacity: 0.3; /* soft background on small screen */
  }
}





/* ==========================
   Moving Line Marquee
========================== */

.custom-marquee{
    width:100%;
    overflow:hidden;
    background: #0154a0;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    padding: 6px 0;
    position:relative;
}

.marquee-runner{
    display:flex;
    width:max-content;
    animation:marqueeMove 15s linear infinite;
}

.marquee-line{
    width:100vw;
    height:2px;
    background:#fff;
    margin-right:80px;
}

/* Hover Pause */
.custom-marquee:hover .marquee-runner{
    animation-play-state:paused;
}

/* Tablet */
@media (max-width:992px){
    .marquee-line{
        height:2px;
        margin-right:60px;
    }
}

/* Mobile */
@media (max-width:768px){
    .custom-marquee{
        padding:10px 0;
    }

    .marquee-line{
        height:2px;
        margin-right:40px;
    }

    .marquee-runner{
        animation-duration:12s;
    }
}

/* Small Mobile */
@media (max-width:480px){
    .marquee-line{
        margin-right:30px;
    }

    .marquee-runner{
        animation-duration:10s;
    }
}

@keyframes marqueeMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}












/* ================= CONTACT SECTION ================= */

.contact{
    max-width:1300px;
    margin:auto;
    padding:80px 20px;
}

.contact h1{
    text-align:center;
    font-size:42px;
    font-weight:500;
    margin-bottom:60px;
    line-height:1.3;
}

/* ================= FORM ================= */

.contact form{
    width:100%;
}

.contact-wrap{
    display:flex;
    gap:80px;
    align-items:flex-start;
}

.form-left,
.form-right{
    flex:1;
}

/* ================= INPUTS ================= */

.field{
    position:relative;
    margin-bottom:40px;
}

.field input,
.field textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #111;
    background:transparent;
    outline:none;
    padding:14px 0;
    font-size:16px;
    color:#111;
    resize:none;
    font-family:inherit;
}

.field textarea{
    min-height:120px;
}

.field input::placeholder,
.field textarea::placeholder{
    color:transparent;
}

.field label{
    position:absolute;
    left:0;
    top:14px;
    color:#888;
    pointer-events:none;
    transition:.3s;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label{
    top:-12px;
    font-size:12px;
    color: black;
}

/* ================= ERROR ================= */

.error{
    display:none;
    margin-top:8px;
    color:#0154a0;
    font-size:13px;
}

/* ================= RIGHT ================= */

.form-right h3{
    margin-bottom:25px;
    font-size:22px;
    font-weight:600;
}

/* ================= TAGS ================= */

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#efefef;
    border-radius:30px;
    padding:12px 22px;
    cursor:pointer;
    transition:.3s;
    user-select:none;
    font-size:15px;
}

.tag input{
    display:none;
}

.tag:hover{
    background:#dcdcdc;
}

.tag.active,
.tag input:checked + span{
    background:#0154a0;
    color:#fff;
}

/* ================= BUTTON ================= */

.send-wrap{
    display:flex;
    justify-content:center;
    margin-top:80px;
}

.send-wrap button{
    width:120px;
    height:120px;
    border:none;
    background:#0154a0;
    cursor:pointer;
    transform:rotate(45deg);
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;
}

.send-wrap button:hover{
    transform:rotate(45deg) scale(1.08);
}

.send-wrap button span{
    transform:rotate(-45deg);
    color:#fff;
    font-size:18px;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

.contact-wrap{
    flex-direction:column;
    gap:50px;
}

.contact h1{
    font-size:34px;
}

.form-left,
.form-right{
    width:100%;
}

}

@media(max-width:768px){

.contact{
    padding:60px 20px;
}

.contact h1{
    font-size:28px;
}

.tags{
    gap:10px;
}

.tag{
    font-size:14px;
    padding:10px 16px;
}

.send-wrap{
    margin-top:60px;
}

.send-wrap button{
    width:95px;
    height:95px;
}

.send-wrap button span{
    font-size:15px;
}

}

@media(max-width:480px){

.contact h1{
    font-size:24px;
}

.field input,
.field textarea{
    font-size:15px;
}

.tag{
    width:100%;
    justify-content:center;
}

.send-wrap button{
    width:85px;
    height:85px;
}

.send-wrap button span{
    font-size:14px;
}

}




























                                   /* ///////////////////// FAQ SECTION //////////////////////////////// */

.faq-main-sec {
  padding: 80px 20px;
  background: #f8f8f8;
  font-family: Arial;
}

.faq-container03 {
  max-width: 1300px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-check {
  display: none;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 30px;
  font-weight: 600;
  cursor: pointer;
}

.faq-plus {
  font-size: 26px;
  transition: 0.3s;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-check:checked ~ .faq-content {
  max-height: 600px;
  margin-top: 20px;
}

.faq-check:checked + .faq-title .faq-plus {
  transform: rotate(45deg);
}

.faq-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.faq-image img {
  width: 260px;
  border-radius: 10px;
}

.faq-text {
  flex: 1;
}

.faq-text ul {
  margin-top: 10px;
  padding-left: 20px;
}

.faq-text li {
  margin-bottom: 6px;
}

/* TABLET FIX */
@media (max-width: 1024px) {
  .faq-heading {
    font-size: 30px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-image img {
    width: 220px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .faq-image img {
    width: 100%;
  }

  .faq-title {
    font-size: 18px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-main-sec {
    padding: 60px 15px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .faq-heading {
    font-size: 20px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-text {
    font-size: 14px;
  }
}



/*==========================
        FOOTER
==========================*/

.site-footer{
    background:#111;
    color:#fff;
    padding:80px 20px 40px;
    font-family:Arial,sans-serif;
}

.footer-wrapper{
    max-width:1300px;
    margin:auto;
}

/*==========================
        TOP
==========================*/
.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    margin-bottom:30px;      /* 10px se 30px kar dein */
    padding-bottom:30px;     /* 20px se 30px kar dein */
    border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-title h2{
    font-size:32px;
    line-height:1.3;
    max-width:750px;
    margin-bottom: 20px;
}

.footer-btn{
    display:inline-block;
    padding:12px 30px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-btn:hover{
    background:#0158A7;
    border-color:#0158A7;
}

.footer-email a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

.footer-email a:hover{
    color:#0158A7;
}

/*==========================
        GRID
==========================*/

.footer-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:40px;
    padding:60px 0;
}

.footer-col h4{
    font-size:22px;
    margin-bottom:18px;
    color:#fff;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
    line-height:1.7;
    color:#ccc;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#0158A7;
    padding-left:5px;
}

/*==========================
      SOCIAL ICONS
==========================*/

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid #444;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff !important;
    transition:.3s;
}

.footer-social a i{
    color:#fff !important;
    font-size:17px;
}

.footer-social a:hover{
    background:#0158A7;
    border-color:#0158A7;
    transform:translateY(-3px);
}

/*==========================
        BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:35px;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:30px;
}

.footer-copy{
    justify-self:start;
}

.footer-copy p{
    margin:4px 0;
    font-size:14px;
    color:#999;
    line-height:1.6;
}

.footer-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.footer-logos img{
    height:42px;
    width:auto;
}

.footer-right{
    justify-self:end;
    color:#999;
    font-size:14px;
}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.footer-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:900px){

.footer-top{
    flex-direction:column;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.footer-bottom{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-copy{
    justify-self:center;
}

.footer-logos{
    justify-content:center;
}

.footer-right{
    justify-self:center;
    text-align:center;
}

}

@media(max-width:600px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-title h2{
    font-size:26px;
}

.footer-btn{
    width:100%;
    text-align:center;
}

.footer-email{
    margin-top:15px;
}

.footer-email a{
    font-size:17px;
}

.footer-social{
    flex-wrap:wrap;
}

}

@media(max-width:400px){

.site-footer{
    padding:60px 15px 30px;
}

.footer-title h2{
    font-size:22px;
}

.footer-col h4{
    font-size:18px;
}

.footer-col ul li,
.footer-col ul li a{
    font-size:15px;
}

.footer-logos img{
    height:32px;
}

.footer-copy p,
.footer-right{
    font-size:13px;
}

}