

/* Banner Section */

.contact-banner {
  position: relative;
  margin-top: 13vh;
  width: 100%;
  height: 90vh;
  min-height: 350px; 
  overflow: hidden;
}

/* Image */
.contact-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;  
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4), 
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}


@media (max-width: 992px) {
  .contact-banner {
    height: 80vh;
  }
}

@media (max-width: 768px) {
  .contact-banner {
    height: 60vh;
  }
}


@media (max-width: 480px) {
  .contact-banner {
    margin-top: 10vh;
    height: 50vh;
  }
}


/*banar section start */





/* intro section start*/
.intro-section {
  padding: 120px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

/* MAIN CONTAINER */
.intro-content {
  max-width: 1300px;   
  width: 100%;
  text-align: center;
}

/* HEADING */
.intro-heading {
  font-size: 52px;
  font-weight: 500;
  color: #0099ff;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* PARAGRAPH */
.intro-content p {
  font-size: 19px;
  line-height: 1.8;
  color: #444;

  max-width: 850px;   
  margin: 0 auto;

  text-align: left;   
}


@media (max-width: 992px) {
  .intro-section {
    padding: 90px 20px;
  }

  .intro-heading {
    font-size: 40px;
  }

  .intro-content p {
    font-size: 16px;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .intro-section {
    padding: 70px 15px;
  }

  .intro-heading {
    font-size: 30px;
  }

  .intro-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}


@media (max-width: 480px) {
  .intro-heading {
    font-size: 24px;
  }

  .intro-content p {
    font-size: 14px;
  }
}





/* image form section start */

.popup-section-wrap {
    width: 100%;
    max-width: 1000px;
    min-height: 700px;
    margin: 60px auto 100px;
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    background: url('../images/home/pop-up.jpg') no-repeat center center/cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.55);
    position: relative;
    box-sizing: border-box;
}

/* dark overlay */
.popup-section-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* main */
.popup-main-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 35px;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.popup-left-area {
    flex: 1 1 260px;
    color: #fff;
    box-sizing: border-box;
}

.popup-social p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.6;
    text-shadow: 0 3px 10px rgba(0,0,0,0.9);
}

.popup-whatsapp-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.popup-whatsapp-icon i {
    font-size: 28px;
    color: #25D366;
    transition: 0.3s ease;
}

.popup-whatsapp-icon i:hover {
    transform: scale(1.1);
}

.popup-phone-text {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.popup-right-area {
    flex: 1 1 430px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    box-sizing: border-box;
}

/* form grid */
.popup-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* input box */
.popup-input-box {
    display: flex;
    flex-direction: column;
}

.popup-input-box label {
    font-size: 14px;
    color: #00d4ff;
    margin-bottom: 7px;
    font-weight: 600;
}

/* inputs */
.popup-input-box input {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.popup-input-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

/* focus */
.popup-input-box input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0,212,255,0.4);
    background: rgba(255,255,255,0.08);
}

/* note */
.popup-note {
    font-size: 13px;
    color: #ddd;
    margin-top: 18px;
    line-height: 1.6;
}

/* buttons */
.popup-btn-group {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.popup-submit-btn {
    padding: 12px 24px;
    min-width: 170px;
    background: linear-gradient(135deg, #00d4ff, #007bff);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* animation  */
.popup-left-area {
    opacity: 0;
    transform: translateX(-60px);
    transition: 0.8s ease;
}

.popup-right-area {
    opacity: 0;
    transform: translateX(60px);
    transition: 0.8s ease;
}

.popup-section-wrap.show .popup-left-area,
.popup-section-wrap.show .popup-right-area {
    opacity: 1;
    transform: translateX(0);
}



@media (max-width: 991px) {
    .popup-main-box {
        padding: 35px 30px;
        gap: 25px;
    }

    .popup-right-area {
        padding: 24px;
    }

    .popup-form-grid {
        gap: 16px;
    }
}


@media (max-width: 768px) {
    .popup-section-wrap {
        min-height: auto;
        background: none !important; 
        box-shadow: none !important;
        margin: 20px auto;
        border-radius: 1px !important;
        max-width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .popup-section-wrap::before {
        display: none;
    }

    .popup-main-box {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 24px;
        background: linear-gradient(145deg, #161a22, #1f2532);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 6px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        box-sizing: border-box;
    }

    .popup-left-area,
    .popup-right-area {
        flex: 1 1 100%;
        transform: none !important;
    }

    .popup-left-area {
        text-align: center;
    }

    .popup-whatsapp-box {
        justify-content: center;
    }

    .popup-form-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

.popup-right-area {
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-sizing: border-box;
        margin-left: -35px !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        align-self: flex-start !important;
    }

    .popup-social p {
        font-size: 16px;
        letter-spacing: 0.2px;
    }

    .popup-phone-text {
        font-size: 17px;
    }

    .popup-submit-btn {
        width: 100%;
        min-width: 100%;
        padding: 13px;
    }
}






/* form section + image start */

.contact-section {
  padding: 60px 20px;

  /* Extra safety: side scroll rokne ke liye */
  overflow-x: hidden; 
}

.contact-container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

/* LEFT FORM */
.contact-form {
  flex: 1;

  min-width: min(350px, 100%);
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 10px;
  box-sizing: border-box;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600; 
  color: #323232;
}

.form-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #007bff;
  color: #fff;
  border: none;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056d2;
}

/* RIGHT INFO */
.contact-info {
  flex: 1;
  min-width: min(300px, 100%);
  padding: 20px;
  background: #e1e1e1;
  box-sizing: border-box;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #323232;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 19px;
  color: #323232;
}

.contact-info i {
  color: #007bff;
  margin-right: 8px;
  font-size: 20px;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 26px;
  color: #333;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #007bff;
}

/* ANIMATION CLASSES */
.popup-left-area {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.8s ease;
}

.popup-right-area {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.8s ease;
}

.popup-section-wrap.show .popup-left-area,
.popup-section-wrap.show .popup-right-area {
  opacity: 1;
  transform: translateX(0);
}



@media (max-width: 768px) {
  .contact-section {
    padding: 50px 15px;

    background-image: none !important;
    background-color: #f5f7fa; 
  }

  .contact-container {
    gap: 20px;
  }

  .popup-left-area,
  .popup-right-area {
    transform: translateY(20px);
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 24px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 15px;
    padding: 12px;
  }

  .contact-info p {
    font-size: 15px;
  }

  .social-icons a {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 10px;
    background-image: none !important;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .form-grid {
    flex-direction: column;
    gap: 0;
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 14px;
    padding: 10px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .social-icons a {
    font-size: 20px;
    margin-right: 10px;
  }
}


/* form section end */





/* icon section start*/

.contact-section {
  display: flex;
  width: 100%;
  padding: 40px 20px; 
  background: #191919;
  justify-content: center;
  margin-bottom: 80px;
}

/* MAIN BOX */
.contact-container {
  display: flex;
  width: 100%;
  max-width: 1050px;
  background: #191919;
  border: 2px solid #0047b9;

  border-radius: 8px;
  overflow: hidden;

}


/* left heading company name*/
.contact-right h4 {
  font-size: 25px ;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 15px;
  letter-spacing: 1px;
  
}



/* LEFT */
.contact-left {
  width: 30%;
  padding: 20px; 
  border-right: 2px solid #ffffff;
  background: #191919;

  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}

.contact-left h2 {
  font-size: 25px;
  margin-bottom: 8px;
  color: #ffffff;
}

.contact-left p {
  font-size: 17px;
  line-height: 1.5;
  color: #ffffff;
}

/* RIGHT */
.contact-right {
  width: 70%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}

/* ITEMS */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px; 
  
}

/* ICON */
.contact-item i {
  width: 30px;
  height: 30px;
  background: #eef1f5;
  border-radius: 50%;
  font-size: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* TEXT */
.contact-item p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}





/* Tablet & Mobile */
@media (max-width: 992px) {

  .contact-section {
    display: block;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    display: block;
  }

  /* Get In Touch upar */
  .contact-left {
    border-right: none;
    border-bottom: 2px solid #fff;
    text-align: left; 
    margin-bottom: 15px;
  }

  /* Right niche */
  .contact-right {
    margin-top: 10px;
    text-align: left;
  }

  .contact-right h4 {
    text-align: left;
    margin-left: 0;
  }
}


@media (max-width: 768px) {

  .contact-item {
    display: flex;
    align-items: flex-start;
  }

  .contact-item p {
    font-size: 14px;
    word-break: break-word;
    white-space: normal;
    text-align: left;
  }
}

@media (max-width: 480px) {

  .contact-left h2 {
    font-size: 22px;
    text-align: left; 
  }

  .contact-left p {
    font-size: 14px;
    text-align: left;
  }

  .contact-item p {
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  }
}




/* Contact + Map Section  start */

.contact-map-section {
  width: 100%;
  display: flex;
  min-height: 450px;
  background: #fff;
  margin-bottom: 7vh;
  padding: 0;
}

.left-animation {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: #000000;
}

/* RIGHT SIDE – MAP */
.right-map {
  width: 50%;
}

.right-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
body {
  background: #f3f3f3;
}

@media (max-width: 1024px) {
  .contact-map-section {
    flex-direction: column;
  }

  .left-animation,
  .right-map {
    width: 100%;
  }

  .left-animation {
    min-height: 400px;
  }

  .right-map {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-map-section {
    flex-direction: column;
  }

  .left-animation {
    min-height: 300px;
  }

  .right-map {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .left-animation {
    min-height: 30vh;
  }

  .right-map {
    height: 35vh; 
  }
}

i {
  background: none !important;
  border-radius: 0 !important;
}

 /* map + animation section end */ 


























.info-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    gap: 20px;
    align-items: center;
}

/* LEFT (30%) → Heading + Paragraph */
.info-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-left h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.info-left p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* RIGHT (70%) → Contact Info */
.info-right {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact text */
.contact-info p {
    font-size: 13px;
    margin: 6px 0;
    color: #333;
    display: flex;
    align-items: center;
}

/* FIXED ICON STYLE (no white circle + perfect align) */
.contact-info i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important; /* ❌ remove unwanted circle */
    color: #007bff;
    font-size: 13px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Social Icons */
.social-icons {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

/* Proper circle icons */
.social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Icon inside circle perfectly centered */
.social-icons i {
    font-size: 15px;
    color: #555;
    line-height: 1;
}

/* Hover effect (professional feel) */
.social-icons a:hover {
    background: #007bff;
    transform: translateY(-2px);
}

.social-icons a:hover i {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .info-wrapper {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .info-left,
    .info-right {
        width: 100%;
    }

    .contact-info p {
        justify-content: center;
    }
}