/* ===== PRELOADER ===== */

.preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    z-index:999999;
    transition:transform 0.9s ease-in-out;
}

.preloader.hide{
    transform:translateY(-100%);
}



/* html,
body{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
} */

.custom-nav{
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

/* ===== DIAMOND ===== */

.diamond{
    position:relative;
    width:160px;
    height:160px;
    transform:rotate(45deg);
    border:4px solid #0183C6;
    display:flex;
    justify-content:center;
    align-items:center;
    animation:morph 3s ease-in-out infinite;
}

@keyframes morph{

0%{
transform:rotate(45deg) scale(1);
border-radius:0;
}

50%{
transform:rotate(45deg) scale(1.2);
border-radius:20%;
}

100%{
transform:rotate(45deg) scale(1);
border-radius:0;
}

}

.diamond::before{
content:"";
position:absolute;
inset:10px;
filter:blur(10px);
animation:pulse 2s infinite;
}

@keyframes pulse{

0%,100%{
opacity:.4;
}

50%{
opacity:1;
}

}

/* ===== OUTER FRAME ===== */

.frame{
position:absolute;
width:220px;
height:220px;
border:2px dashed rgba(15,187,239,.75);
transform:rotate(45deg);
animation:rotateFrame 10s linear infinite;
}

@keyframes rotateFrame{

from{
transform:rotate(45deg);
}

to{
transform:rotate(405deg);
}

}

/* ===== LOGO ===== */

.logo{
width:200px;
transform:rotate(-45deg);
filter:blur(10px);
animation:zoomIn 1.5s ease forwards;
z-index:2;
}

@keyframes zoomIn{

to{
filter:blur(0);
transform:rotate(-45deg) scale(1);
}

}

/* ============================
   BOTTOM HORIZONTAL LINES
============================ */

.loading-lines{
    position:absolute;
    left:50%;
    bottom:50px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;

    gap: 400px;   /* Space increase */
}

.loading-lines span{
    width: 140px;
    height:6px;
    background:#0183C6;
    border-radius:100px;
}

/* .loading-lines span:nth-child(2){

animation-delay:2.15s;

}

.loading-lines span:nth-child(3){

animation-delay:2.3s;

} */

@keyframes lineMove{

0%{

transform:translateY(0);

}

100%{

transform:translateY(-120vh);

}

}









/* html,
body {
  width: 100%;
  overflow-x: hidden;
} */











* {
  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;
  }

}







/* ================= 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;
}

}




/* EMAIL SECTION */
.emailbox {
  background: #000;
  overflow: hidden;
  padding: 10px 0;
}

/* RUNNER */
.runner {
  white-space: nowrap;
}

/* TRACK */
.track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

/* TEXT */
.track a {
  font-size: 50px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  margin-right: 80px;
  display: inline-block;
  transition: 0.3s;
}

/* HOVER */
.track a:hover {
  opacity: 0.7;
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ----------- RESPONSIVE ----------- */

/* Large tablets */
@media (max-width: 1024px) {
  .track a {
    font-size: 60px;
    margin-right: 60px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .track a {
    font-size: 40px;
    margin-right: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .track a {
    font-size: 28px;
    margin-right: 25px;
  }

  .emailbox {
    padding: 20px 0;
  }
}













/* WRAPPER */
.c1 {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
}

/* GRID */
.c2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* MAP */
.c4 {
  position: relative;
  width: 100%;
  height: 400px;
}

.c4 iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* OVERLAY */
.c5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* HEART BOX */
.c6 {
  text-align: center;
}

/* HEART */
.c7 {
  width: 80px;
  height: 80px;
  background: #0154a0;
  transform: rotate(45deg);
  margin: auto;
  position: relative;
}

.c7::before {
  content: "❤";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  color: #fff;
  font-size: 30px;
}

/* TEXT */
.c6 a {
  display: block;
  margin-top: 15px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

/* ADDRESS */
.c9 {
  font-size: 20px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .c2 {
    grid-template-columns: 1fr;
  }

  .c4 {
    height: 300px;
  }

  .c9 {
    text-align: center;
  }
}










/*==========================
        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;
}

}