@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #FF8906;
  --secondary-color: #FF8906;
  --text-dark: #1C3C69;
  --text-light: #767268;
  --extra-light: #f7f8fd;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .header__btns {
    flex-wrap: wrap;
  }
}


img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
    padding-top: 95px;
}

/* Desktop + Mobile */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff !important;
    z-index: 9999;
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* Mobile */
@media (max-width: 768px){

    nav{
        background: #fff !important;
    }

    .nav__links{
        background: #fff !important;
    }

    .nav__links a{
        color: #1C3C69 !important;
    }

    .nav__menu__btn{
        color: #1C3C69 !important;
    }
}

@media(max-width:768px){

.header__image img{
    width:100%;
    height:auto;
}

}




.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.5rem;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
 
  background:#FF8906;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}


.nav__links.open{
transform:translateY(100%);
}




.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: none;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  
}

.section__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5rem;
  text-align: center;
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  
}

/* .header__image img {
  max-width: 550px;
  margin-inline: auto;
} */

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 4.75rem;
  text-align: center;
}

.header__content h1 span {
  color: var(--secondary-color);
}

.header__btns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__btns a span {
  margin-right: 0.5rem;
  width: 2.5rem;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid var(--text-dark);
  border-radius: 100%;
}

@media (max-width: 768px) {
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.dmtservice{
    background: var(--extra-light);
    padding: 80px 0;
}

.dmtservice__container .section__header{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.dmtservice__grid{
    margin-top:3rem;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* CARD */

.dmtservice__card{
    background:#fff;
    border-radius:16px;
    padding:18px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-bottom:3px solid transparent;
    overflow:hidden;
}

.dmtservice__card:hover{
    transform:translateY(-6px);
    border-color:var(--primary-color);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* IMAGE */

.dmtservice__card img{
    width:60px !important;
    height:60px !important;
    max-width:60px !important;
    object-fit:contain;
    display:block;
    margin:0 auto 15px;
}

/* HEADING */

.dmtservice__card h4{
    font-size:1.1rem;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:10px;
}

/* DESCRIPTION */

.dmtservice__card .section__description{
    text-align:center;
    font-size:.92rem;
    line-height:1.6;
}

/* TABLET */

@media(max-width:991px){

.dmtservice__grid{
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.dmtservice__card img{
width:55px !important;
height:55px !important;
max-width:55px !important;
}

}

/* MOBILE */

@media(max-width:767px){

.dmtservice{
padding:60px 0;
}

.dmtservice__grid{
grid-template-columns:1fr;
}

.dmtservice__card{
padding:16px;
}

.dmtservice__card img{
width:50px !important;
height:50px !important;
max-width:50px !important;
}

.dmtservice__card h4{
font-size:1rem;
}

.dmtservice__card .section__description{
font-size:.88rem;
}

}









.about__container {
  display: grid;
  gap: 2rem;
  
}

.about__image img {
  max-width: px;
  margin-inline: auto;
}

.about__content .section__header {
  margin-bottom: 2rem;
  text-align: left;
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__list li span {
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.about__list li:nth-child(1) span {
  color: #ff8906;
  background-color: #fff1f2;
}

.about__list li:nth-child(2) span {
  color: #ff8906;
  background-color: #fff1f2;
}

.about__list li:nth-child(3) span {
  color: #ff8906;
  background-color: #fff1f2;
}

.about__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about__list .section__description {
  text-align: left;
}


/* ==========================
   ABOUT PAGE SERVICE SECTION
========================== */

/* .service{
    padding-top:40px !important;
    margin-top:0 !important;
}

.service__container{
    padding-top:0 !important;
} */


.portfolio {
  background-color: var(--extra-light);
  overflow: hidden;
}

.portfolio__header {
  margin-bottom: 2rem;
  display: grid;
  gap: 2rem;
}

.portfolio__image {
  position: relative;
  isolation: isolate;
  
}

.portfolio__image__content {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
  z-index: 1;
}

.portfolio__image__content div {
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portfolio__image__content div:nth-child(1) {
  border-right: 1px solid var(--extra-light);
}

.portfolio__image img {
  border-radius: 0.5rem;
}

.portfolio__image__content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.portfolio__image__content p {
  font-size: 0.9rem;
  color: var(--extra-light);
}

.portfolio__content {
  
  display: grid;
  gap: 2rem;
}

.portfolio__list {
  display: grid;
  gap: 2rem;
}

.portfolio__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.portfolio__list li span {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
}

.portfolio__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.portfolio__list .section__description {
  text-align: left;
}

@media(max-width:768px){

.portfolio__image__content{
position:relative;
right:0;
top:0;
transform:none;
margin-top:15px;
width:100%;
justify-content:center;
flex-wrap:wrap;
}

}







.feedback__container {
  padding-bottom: 3rem;
}

.swiper {
  padding-block: 4rem 2rem;
  width: 100%;
  
}

.swiper-slide{
    min-width:0;
    width:100%;
}

.feedback__card {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.feedback__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feedback__card .section__description {
  text-align: left;
}

.feedback__details {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback__user img {
  max-width: 50px;
  border-radius: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback__user h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feedback__user h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.feedback__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feedback__rating span {
  font-size: 1rem;
  color: goldenrod;
}

.subscribe__content {
  padding: 5rem 1rem;
  border-radius: 1rem;
  background-color: var(--secondary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subscribe__content .section__header {
  margin-bottom: 2rem;
  max-width: 750px;
  margin-inline: auto;
  color: var(--white);
}

.subscribe__content form {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 0.5rem;
}

.subscribe__content input {
  width: 100%;
  padding-inline: 1rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.footer__logo a span {
  color: var(--secondary-color);
}

.footer__col .section__description {
  margin-bottom: 2rem;
  text-align: left;
}

.footer__col h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__socials a {
  padding: 4px 6px;
  font-size: 1.125rem;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__links a span {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

/* @media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (width > 768px) {
  nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 100%;
    padding: 18px 50px;

    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    color: var(--text-dark);
  }

  .nav__logo a span {
    color: var(--secondary-color);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-light);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-top: 40px;
    gap: 0;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  /* .service__grid {
    grid-template-columns: repeat(4, 1fr);
  } */

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__header {
    grid-template-columns: repeat(2, 1fr);
      padding-top:px;
  }

  .portfolio__header :is(.section__header, .section__description) {
    text-align: left;
  }

  .portfolio__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__image {
    grid-area: 1/2/2/3;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
    max-width: 350px;
  }
}

.footer__col:last-child .footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}


.footer__col:last-child .footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}



/* @media (width > 1024px) {
  .service__grid {
    gap: 1.5rem;
  }

  .feedback__card {
    padding: 2rem 1.5rem;
  }
} */


/* logo */
/* CORRECT CSS */
.logo {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo {
    width: 160px;
  }
}


.subscribe-message {
  margin-top: 15px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .subscribe__content form {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe__content button {
    width: 100%;
  }
}

html {
  /* scroll-padding-top: 110px; */
  scroll-behavior: smooth;
}

section,
header {
  scroll-margin-top: 110px;
}


/* About */
/* ==========================
   ABOUT PAGE HEADER
========================== */

/* ===============================
   ABOUT PAGE HERO BANNER
================================ */

.about_header__container{
    width:100%;
    max-width:100% !important;
    /* margin-top:20px !important;   0px, 10px, 15px ya 20px apne hisaab se */
    margin-right:0 !important;
    margin-bottom:0 !important;
    margin-left:0 !important;
    padding:0 !important;
    overflow:hidden;
}

.about_header__container .header__image{
    width:100%;
    line-height:0;
}

.about_header__container .header__image img{
    width:100% !important;
    height:550px !important;      /* Height change karni ho to yahan value badlo */
    object-fit:cover !important;
    object-position:center center;
    display:block !important;
}

/* Responsive */
@media (max-width:992px){
    .about_header__container .header__image img{
        height:420px !important;
    }
}

@media (max-width:768px){
    .about_header__container{
        margin-top:0px !important;
    }

    .about_header__container .header__image img{
        height:auto !important;
    }
}


.about_header__container {
  margin-top: 15px;
  padding: 0;
  max-width: 100%;
}


  .about__image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;

}

._header__container {
  margin-top: 15px;
  padding: 0;
  max-width: 100%;
}

.portfolio_header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

._header__container {
  margin-top: 15px;
  padding: 0;
  max-width: 100%;
}

.client_header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}


/* MAP  */
  .map-section {
    padding: 5rem 1rem;
    background-color: #f7f8fd;
  }

  .map-section .section__container {
    max-width: 1200px;
    margin: auto;
  }

  .map-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }

  .map-heading > span {
    
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    background-color: #ff8906;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .map-heading .section__header {
    margin-bottom: 1rem;
    color: #1c3c69;
    font-size: 2.5rem;
    font-weight: 800;
  }

  .map-heading .section__description {
    color: #767268;
    font-size: 1rem;
    line-height: 1.7;
  }

  .map-wrapper {
    overflow: hidden;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  }

  .map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
  }

  .map-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .map-btn {
    min-width: 190px;
    padding: 0.9rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .map-btn i {
    font-size: 1.2rem;
  }

  .whatsapp-btn {
    background-color: #25d366;
  }

  .direction-btn {
    background-color: #ff8906;
  }

  .map-btn:hover {
    background-color: #1c3c69;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 768px) {
    .map-section {
      padding: 3.5rem 1rem;
    }

    .map-heading .section__header {
      font-size: 2rem;
    }

    .map-wrapper iframe {
      height: 340px;
    }

    .map-btn {
      width: 100%;
      min-width: 0;
    }
  }

  @media (max-width: 480px) {
    .map-heading .section__header {
      font-size: 1.7rem;
    }

    .map-wrapper iframe {
      height: 280px;
    }
  }




  /* CONTACT  */
  .contact-section {
    
  padding: 5rem 1rem;
  background-color: var(--extra-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 3rem;
}

.contact-info {
  padding-top: 1rem;
}

.contact-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.55rem 1.1rem;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-details {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.contact-item > span {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.3rem;
}

.contact-item h4 {
  margin-bottom: 0.2rem;
  color: var(--text-dark);
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.contact-form-box {
  margin-top: 80px;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #dfe3eb;
  border-radius: 0.6rem;
  outline: none;
  color: var(--text-dark);
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  transition: 0.3s;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 137, 6, 0.12);
}

.contact-submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 0.6rem;
  color: #ffffff;
  background-color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background-color: var(--text-dark);
  transform: translateY(-2px);
}

.contact-status {
  margin-top: 1rem;
  color: var(--text-dark);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 3.5rem 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }


  .contact-form-box {
    padding: 1.3rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-item {
    align-items: flex-start;
  }
}

.contact-info,
.contact-form-box{
    width:100%;
    margin-top:0;
}
@media(max-width:900px){

.contact-form-box{
    margin-top:30px;
}

}






/* MAP AND CONTACT */
/* MAP AND CONTACT */

.contact-container,
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact-section {
  width: 100%;
  padding: 40px 0 20px;
}

.map-section {
  width: 100%;
  padding: 20px 0 60px;
}

/* TABLET */

@media screen and (max-width: 991px) {
  .contact-container,
  .map-container {
    max-width: 100%;
    padding: 1.5rem 1.25rem;
  }

  .contact-section {
    padding: 35px 0 20px;
  }

  .map-section {
    padding: 20px 0 45px;
  }
}

/* MOBILE */

@media screen and (max-width: 767px) {
  .contact-container,
  .map-container {
    width: 100%;
    padding: 1.25rem 1rem;
  }

  .contact-section {
    padding: 25px 0 15px;
  }

  .map-section {
    padding: 15px 0 35px;
  }
}

/* SMALL MOBILE */

@media screen and (max-width: 480px) {
  .contact-container,
  .map-container {
    padding: 1rem 15px;
  }

  .contact-section {
    padding: 20px 0 10px;
  }

  .map-section {
    padding: 10px 0 30px;
  }
}



/* NEW CSS  */
/* =================================================
   FINAL RESPONSIVE CSS
   FILE KE BILKUL LAST MEIN PASTE KARO
================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  padding-top: 90px;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.section__container,
.contact-container,
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 0;
}

/* Invalid CSS fix */
.about__image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  margin: 0 auto;
}

/* Grid children overflow fix */
.header__content,
.header__image,
.about__content,
.about__image,
.portfolio__image,
.portfolio__list,
.contact-info,
.contact-form-box {
  min-width: 0;
}

/* SWIPER FIX */
.swiper,
.swiper-wrapper {
  width: 100%;
  max-width: 100%;
}

.swiper-slide {
  width: 100%;
  min-width: 0 !important;
}

/* =================================================
   TABLET AND MOBILE NAVBAR
================================================= */

@media screen and (max-width: 768px) {

  body {
    padding-top: 75px;
  }

  nav {
    width: 100%;
    height: 75px;
    padding: 0 !important;
    display: block;
    background-color: #ffffff !important;
  }

  .nav__header {
    position: relative;
    z-index: 10001;
    width: 100%;
    height: 75px;
    padding: 10px 16px;
    background-color: #ffffff !important;
  }

  .logo {
    width: 150px;
    max-width: 150px;
  }

  .nav__menu__btn {
    display: block;
    color: #1c3c69 !important;
    font-size: 1.8rem;
  }

  .nav__links {
    position: fixed;
    top: 75px;
    left: 0;
    bottom: auto;
    z-index: 10000;

    width: 100%;
    height: auto;
    max-height: calc(100vh - 75px);
    padding: 25px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    overflow-y: auto;
    background-color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

    transform: translateY(-150%);
    transition: transform 0.35s ease;
  }

  .nav__links.open {
    transform: translateY(0) !important;
  }

  .nav__links a {
    color: #1c3c69 !important;
  }

  .nav__btns {
    display: none !important;
  }
}

/* =================================================
   TABLET
================================================= */

@media screen and (max-width: 991px) {

  .header__container,
  .about__container,
  .portfolio__header,
  .portfolio__content,
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  .header__image,
  .portfolio__image {
    grid-area: auto !important;
  }

  .dmtservice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer__col:nth-child(1) {
    grid-column: auto !important;
    max-width: 100% !important;
  }

  .contact-info,
  .contact-form-box {
    width: 100%;
  }

  .contact-form-box {
    margin-top: 20px !important;
  }

  .contact-section {
    width: 100%;
    padding: 50px 0;
  }

  .map-section {
    width: 100%;
    padding: 30px 0 50px;
  }

  .contact-container,
  .map-container {
    padding: 20px;
  }
}

/* =================================================
   MOBILE
================================================= */

@media screen and (max-width: 767px) {

  .section__container {
    padding: 50px 16px;
  }

  .section__header {
    font-size: 2rem;
    line-height: 1.25;
  }

  .section__description {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  /* HERO */

  .header__container {
    padding-top: 30px;
    gap: 30px;
  }

  .header__content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
  }

  .header__content .section__description {
    text-align: center;
  }

  .header__btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header__btns .btn,
  .header__btns > a {
    width: 100%;
    text-align: center;
  }

  .header__image img,
  .about__image img,
  .portfolio__image img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
  }

  /* SERVICE */

  .dmtservice {
    padding: 50px 0;
  }

  .dmtservice__grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .dmtservice__card {
    width: 100%;
  }

  /* ABOUT */

  .about__content .section__header {
    text-align: center;
  }

  .about__list li {
    width: 100%;
    gap: 12px;
  }

  .about__list li > div {
    min-width: 0;
  }

  /* PORTFOLIO */

  .portfolio__header .section__header,
  .portfolio__header .section__description {
    text-align: center !important;
  }

  .portfolio__image__content {
    position: static !important;
    top: auto;
    right: auto;

    width: 100%;
    margin-top: 15px;
    padding: 15px 10px;

    transform: none !important;
    justify-content: center;
    flex-wrap: wrap;
  }

  .portfolio__image__content div {
    width: 50%;
    padding: 10px;
    justify-content: center;
  }

  .portfolio__image__content h4 {
    font-size: 1.4rem;
  }

  .portfolio__list li {
    width: 100%;
    gap: 12px;
  }

  .portfolio__list li span {
    width: 55px;
    min-width: 55px;
    height: 55px;
    aspect-ratio: auto;
  }

  /* BANNERS */

  .about_header__container,
  ._header__container {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .about_header__container .header__image img,
  .portfolio_header img,
  .client_header img {
    width: 100%;
    height: auto !important;
    min-height: 0;
    object-fit: contain !important;
  }

  /* CONTACT */

  .contact-section {
    padding: 35px 0;
  }

  .contact-container {
    width: 100%;
    padding: 20px 16px;
    gap: 25px;
  }

  .contact-form-box {
    width: 100%;
    margin-top: 0 !important;
    padding: 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    min-width: 0;
  }

  .contact-item {
    width: 100%;
    align-items: flex-start;
  }

  .contact-item > div {
    min-width: 0;
  }

  .contact-item p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* MAP */

  .map-section {
    padding: 25px 0 40px;
  }

  .map-container {
    width: 100%;
    padding: 15px 16px;
  }

  .map-heading .section__header {
    font-size: 2rem;
  }

  .map-wrapper {
    width: 100%;
    border-radius: 12px;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 320px;
  }

  .map-actions {
    width: 100%;
    flex-direction: column;
  }

  .map-btn {
    width: 100%;
    min-width: 0;
  }

  /* SUBSCRIBE */

  .subscribe__content {
    padding: 45px 16px;
  }

  .subscribe__content form {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    background-color: transparent;
  }

  .subscribe__content input {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    background-color: #ffffff;
    border-radius: 6px;
  }

  .subscribe__content button {
    width: 100%;
    min-height: 48px;
  }

  /* FEEDBACK */

  .feedback__details {
    flex-wrap: wrap;
  }

  /* FOOTER */

  .footer__container {
    grid-template-columns: 1fr !important;
    gap: 35px;
  }

  .footer__col,
  .footer__links {
    width: 100%;
  }

  .footer__col:last-child .footer__links a {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

/* =================================================
   SMALL MOBILE
================================================= */

@media screen and (max-width: 480px) {

  .section__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo {
    width: 135px;
  }

  .header__content h1 {
    font-size: 1.85rem;
  }

  .section__header {
    font-size: 1.7rem;
  }

  .portfolio__image__content div {
    width: 100%;
    border-right: 0 !important;
  }

  .feedback__details {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-container,
  .map-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .map-wrapper iframe {
    height: 280px;
  }
}



/* ==============================
   RESPONSIVE FEEDBACK SECTION
============================== */

.feedback__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem;
  overflow: hidden;
}

.feedback__container .section__header {
  margin-bottom: 1rem;
  text-align: center;
}

.swiper {
  width: 100%;
  max-width: 100%;
  padding: 3rem 0 2rem;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  align-items: stretch;
}

.swiper-slide {
  width: 300PX !important;
  min-width: 0 !important;
  height: auto;
  display: flex;
}

.feedback__card {
  width: 100%;
  height: 100%;
  padding: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(28, 60, 105, 0.12);
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.feedback__card .section__description {
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.7;
}

.feedback__details {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__user {
  min-width: 0;
}

.feedback__user h4 {
  color: var(--text-dark);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.feedback__rating {
  display: flex;
  flex-shrink: 0;
  gap: 3px;
}

.feedback__rating span {
  color: goldenrod;
  font-size: 1rem;
}

/* TABLET */

@media screen and (max-width: 991px) {
  .feedback__container {
    padding: 4rem 1.25rem;
  }

  .feedback__card {
    padding: 1.3rem;
  }
}

/* MOBILE */

@media screen and (max-width: 767px) {
  .feedback__container {
    padding: 3.5rem 1rem;
  }

  .feedback__container .section__header {
    font-size: 2rem;
    line-height: 1.25;
  }

  .swiper {
    padding: 2rem 0 1rem;
  }

  .feedback__card {
    padding: 1.2rem;
  }

  .feedback__card .section__description {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .feedback__details {
    flex-wrap: wrap;
  }
}

/* SMALL MOBILE */

@media screen and (max-width: 480px) {
  .feedback__container {
    padding: 3rem 15px;
  }

  .feedback__container .section__header {
    font-size: 1.7rem;
  }

  .feedback__details {
    flex-direction: column;
    align-items: flex-start;
  }

  .feedback__rating span {
    font-size: 0.95rem;
  }
}