@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --primary-background-color: #020d1f;
  --secondary-background-color: #031a33;
  --font-hindi: "Noto Sans", sans-serif;
  --font-phone: "TASA Explorer", sans-serif;
  --font-smallHeading: "Geologica", sans-serif;
  --font-DM-sans: "DM Sans", sans-serif;
  --hover-color: #f7c600;
  --font-main-heading: "Lato", sans-serif;
}

#top-bar {
  width: 100%;
  height: auto;
  background-color: var(--primary-background-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.left-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.left-container a {
  color: #ffff;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-phone);
  transition: all 0.3s ease-in-out;
}

.left-container a:hover {
    color: var(--hover-color);
}
.left-container a i {
  font-size: 1.1em;
}

.right-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-container span {
  color: #ffff;
  background-color: var(--secondary-background-color);
  padding: 10px 25px;
  border-radius: 25px 0px 25px 0px;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.4);
  font-family: var(--font-hindi);
  font-size: 1.2em;
  animation: colorPulse 0.9s infinite;
  font-weight: 500;
  cursor: pointer;
}

@keyframes colorPulse {
  0% {
    color: var(--initial-color, #ffffff);
  }
  50% {
    color: var(--mid-color, #f7c600);
  }
  100% {
    color: var(--final-color, #ffffff);
  }
}


#header {
    width: 100%;
    height: auto;
    background-color: var(--primary-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 40px;
}

.header-left-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-mid-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.header-mid-container span {
    font-size: 2em;
    font-weight: 600;
    font-family: var(--font-smallHeading);
    text-transform: uppercase;
    color: #ffff;
    margin-bottom: 5px;
    animation: colorPulse 0.9s infinite;
}

.flags-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 4px;
    row-gap: 1px;
}

.header-left-container img {
    max-width: 100%; 
    height: auto;
}
.flags-container img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.flags-container img:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.header-right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}


.header-right-container span:nth-child(1) {
    font-size: 2em;
    color: #ffff;
    font-family: var(--font-hindi);
}

.header-right-container a {
    font-size: 3.5em;
    color: #ffffff;
    font-family: var(--font-phone);
    font-weight: 700;
    animation: colorPulse 0.9s infinite;
}

.header-right-container span:nth-child(3) {
    font-size: 1.6em;
    color: #fb8500;
    font-weight: 500;
    font-family: var(--font-phone);
    
}
.header-right-container span:last-child {
    font-size: 1.4em;
    color: #ffff;
    font-weight: 500;
    font-family: var(--font-DM-sans);
}

#header-bottom-bar {
    width: 100%;
    text-align: center;
    background-color: #f7c600;
    padding: 8px 0px;
}

#header-bottom-bar span {
    font-size: 1.5em;
    color: var(--primary-background-color);
    font-weight: 600;
    font-family: var(--font-hindi);
    --initial-color: var(--primary-background-color);
    --mid-color: #cd0000;
    --final-color: var(--primary-background-color);
    animation: colorPulse 0.9s infinite;
}


#hero-banner {
    width: 100%;
    height: auto;
    background-color: var(--primary-background-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#services {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: var(--primary-background-color);
    gap: 50px;
    padding: 50px 0px 120px 0px;
}

.svc-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50px 50px 0px 0px;
    transition: all 0.3s ease-in-out;
}

.services-container {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    column-gap: 20px;
    z-index: 1;
}

.svc-stats {
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-count-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
}

.svc-icon {
    width: 20px;
    height: auto;
}

.svc-count {
    color: var(--primary-background-color);
    font-size: 1em;
    font-weight: 500;
    font-family: var(--font-phone);
}

.services-container h1{
    color: #000000;
    text-align: center;
    font-size: 1.5em;
    width: 100%;
    text-align: start;
    margin-top: 10px;
    font-family: var(--font-smallHeading);
    font-weight: 400;
}

.services-container p{
    color: #000000;
    text-align: center;
    font-size: 1em;
    width: 100%;
    text-align: justify;
    margin-top: 10px;
    font-family: var(--font-DM-sans);
    font-weight: 400;
    margin-bottom: 20px;
}

.services-container a {
    background-color: #015506;
    color: #ffff;
    font-size: 1.3em;
    font-family: var(--font-phone);
    margin-top: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 5px;
    border-radius: 50px 50px 50px 0px;
}

.svc-rating {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    color: #f7c600;
}

.outer-svc-box {
    width: auto;
    height: auto;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #f7c600;
    padding: 15px;
    border-radius: 50px 50px 50px 0px;
    position: relative;

}

.no-1-tntrk {
    position: absolute;
    color: #000000;
    font-size: 1em;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #f7c600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--font-DM-sans);
}
.service-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}


.svc-heading {
    z-index: 1;
    color: #ffff;
    font-size: 2.5em;
    font-weight: 600;
    font-family: var(--font-main-heading);
    margin-bottom: 50px;
}

.svc-img {
    position: relative;
}

.svc-img::after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.svc-img-container {
    width: 100%;
    height: auto;
    position: relative;
}

.hover-cont {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px 50px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transform: scale(2);
    transition: all 0.3s ease-in-out;
}

.svc-img-container a {
    position: relative;              /* needed for ::after positioning */
    color: #fff;
    font-size: 2.5em;
    background-color: #015506;
    display: inline-flex;
    padding: 15px;
    border-radius: 50%;
    font-weight: 400;
    z-index: 1; /* keeps icon above the pulse */
}

.svc-count::before {
    content: "Cases Solved: ";
    font-weight: 500;
}

.svc-img-container a::after {
    content: "";
    position: absolute;
    inset: 0;                        /* same size as span */
    border-radius: 50%;
    background-color: rgba(1, 85, 6, 0.6);  /* semi-transparent green */
    z-index: -1;                     /* place behind icon */
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75% {
    transform: scale(2);  /* expands outward */
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


.outer-svc-box:hover .hover-cont {
    visibility: visible;
    transform: scale(1);
}

.outer-svc-box:hover .svc-img {
    transform: scale(1.1);
}

.svc-img-container {
    overflow: hidden;
    border-radius: 50px 50px 0px 0px;
}

#about-us {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-image: url(./assests/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 40px 0px;
    gap: 50px;
    overflow: hidden;
}

#about-us::after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(4px);
}

.about-us-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin: 30px 0px
}

.about-us-left-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    padding-right: 100px;
}


.about-us-left-container img  {
    width: 300px;
    height: auto;
    border-radius: 50px 0px 50px 0px;
    border: 4px solid #f7c600;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.about-us-left-container img:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6);
}

#about-us span:first-child {
    z-index: 1;
    color: #ffff;
    font-size: 2.5em;
    font-family: var(--font-main-heading);
    font-weight: 600;
}

.about-us-right-container h1 {
    color: #fb8500;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-smallHeading);
    margin-bottom: 20px;
}


.about-us-right-container p {
    color: #ffff;
    font-size: 1.2em;
    text-align: justify;
    margin-top: 10px;
    font-family: var(--font-DM-sans);
}

.about-us-right-container span {
    color: #f7c600;
    font-size: 1.3em;
    text-align: start;
    margin-top: 20px;
    width: 100%;
    font-weight: 500;
    font-family: var(--font-smallHeading);
}

.about-us-right-container > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: flex-start;
    gap: 5px;
    margin-top: 10px;
}

.about-us-right-container a{
    color: #ffff;
    font-size: 1em;
    padding-left: 10px;
    margin-top: 10px;
    font-family: var(--font-DM-sans);
}

.about-us-right-container a {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
}

.about-us-right-container a:hover {
  transform: translateX(15px);
  color:#f7c600;
}

.about-us-right-container img{
    width: 30px;
    height: auto;
    margin-right: 8px;
    transition: all 0.3s ease-in-out;
}

.about-us-right-container a:hover img{
    transform: rotateY(180deg);
}


#awards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

#awards span {
  font-size: 2.5rem;
  margin-top: 30px;
  margin-bottom: 100px;
  text-align: center;
  font-family: var(--font-main-heading);
  font-weight: 600;
}


.swiper {
  width: 100%;
  max-width: 1200px; 
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;

}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Testimonials container */
#testimonials {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(/assests/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

#testimonials::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  backdrop-filter: blur(6px);
}

#testimonials > span {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffffff;
  font-family: var(--font-main-heading);
  z-index: 1;
}

#testimonials > span::after {
    content: "What Our Clients Say";
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-family: var(--font-smallHeading);
        color: #f7c600;
}

/* Swiper wrapper just for testimonials */
.testimonial-swiper {
  width: 100%;
  max-width: 1000px;
  padding: 30px 10px;
}

.testimonial-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Each testimonial card */
.client-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
    width: 100%;
}

.client-testimonial .stars {
  color: #f6b400;
  margin-bottom: 10px;
}

.client-testimonial .headline {
  font-size: 1.1em;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
  font-family: var(--font-smallHeading);
}

.client-testimonial p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
  font-family: var(--font-DM-sans);
}

/* Client info (photo + name) */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* make it round */
  border: 3px solid #f6b400;
  object-fit: cover;
}

.client-info h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #222;
  font-family: var(--font-smallHeading);
}

.client-info span {
  font-size: 0.85rem;
  font-family: var(--font-DM-sans);
  color: #777;
}

.testimonial-swiper .swiper-slide {
  display: flex; /* let the card inside stretch */
  height: auto;  /* important: no fixed height */
}

#baba-sadhna {
  text-align: center;
  margin: 40px 20px;
  
}

#baba-sadhna h2 {
  font-size: 2.5em;
  margin-top: 30px;
  margin-bottom: 100px;
  font-weight: 600;
  font-family: var(--font-main-heading);

}

.videos-row {
  display: flex;
  gap: 20px; /* space between videos */
  justify-content: center;
  flex-wrap: wrap; /* stack on smaller screens */
  margin-bottom: 100px;
}

.video-container {
  flex: 1 1 45%; /* take about 45% width each, shrink on smaller screens */
  max-width: 560px; /* optional: limit max width */
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer overall */
#footer {
  background-color: var(--primary-background-color);
  color: #fff;
  padding: 50px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

/* Inner footer: 1 row, 4 columns */
.inner-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 90%;
  margin: auto;
  justify-content: space-between;
}

/* Each column */
.inner-footer > div {
  flex: 1 1 220px; /* grow, shrink, basis */
  min-width: 200px;
}

/* Logo and description */
.inner-footer > div:first-child img {
  max-width: 100%;
  margin-bottom: 10px;
}

.inner-footer > div:first-child p {
  font-size: 1rem;
  color: #ccc;
  text-align: justify;
  font-family: var(--font-DM-sans);
}

/* Column titles */
.inner-footer span {
  display: block;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f6b400;
  font-family: var(--font-main-heading);
}

/* Lists */
.inner-footer ul {
  list-style: none;
  padding: 0;
}

.inner-footer ul li {
  margin-bottom: 8px;
}

.inner-footer ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-DM-sans);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}

.inner-footer ul li a i{
  font-size: 1.2em;
}

.inner-footer ul li a:hover {
  color: #f6b400;
  transform: translateX(8px)
}

.inner-footer div:last-child div {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.inner-footer div:last-child div a{
  font-size: 2em;
  color: #ffff;
  transition: all 0.3s ease-in-out;
}

.inner-footer div:last-child div a:hover {
  color: #f7c600;
  transform: scale(1.2);
}

/* Disclaimer section */
#footer .disclaimer {
  padding: 10px 15px;
  margin-top: 50px;
  max-width: 90%;
  background-color: #f7c600;
}

#footer .disclaimer span {
  display: block;
  font-weight: 600;
  color: #f60c00;
  margin-bottom: 5px;
  text-align: center;
  font-family: var(--font-main-heading);
  font-size: 0.9rem;
}

#footer .disclaimer p {
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  font-family: var(--font-DM-sans);
}
/* Copyright */
#footer .copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #777;
  font-family: var(--font-DM-sans);
  margin-top: 30px;
  margin-bottom: 50px;
}

#footer .copyright a {
  color: #f6b400;
  text-decoration: none;
  margin: 0 5px;
}

#footer .copyright a:hover {
  text-decoration: underline;
}
.floating-icons {
  position: fixed;
  bottom: 50px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
  transform: translateY(250px);
}

.icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.icon-wrap:hover {
  transform: scale(1.15) rotate(8deg);
}

.whatsapp {
  background: #25D366;
}

.call {
  background: #007BFF;
}

.ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: ping 1.6s infinite;
  z-index: -1;
}

@keyframes ping {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}


@media (max-width: 420px) and (min-width: 0px) {
  #top-bar {
    flex-direction: column;
    justify-items: center;
    gap: 20px;
  }
  .left-container {
    gap: 20px;
  }
  .left-container a {
    font-size: 4.5vw;
  }
  .right-container span{
    font-size: 3.7vw;
  }
  #header {
    flex-direction: column;
    justify-items: center;
    padding: 5px;
    gap: 10px;
  }
  .header-left-container img {
    width: 100%;
    object-fit: cover;

  }
  .flags-container img {
    width: 100%;
    border-radius: 2px;
  }
  .header-right-container {
    margin-bottom: 10px;
  }
  .header-mid-container span {
    font-size: 5vw;
  }
  .header-right-container span:nth-child(1) {
    font-size: 7vw;
  }
  .header-right-container a {
    font-size: 11vw;
  }
  .header-right-container span:nth-child(3) {
    font-size: 6vw;
  }
  .header-right-container span:last-child {
    font-size: 5vw;
  }
  #header-bottom-bar span {
    font-size: 3.8vw;
  }
  #services {
    gap: 10px;
    padding: 25px 10px 60px 10px;
  }
  .services-container h1 {
    font-size: 5vw;
  }
  .services-container p {
    font-size: 4vw;
    margin-bottom: 5px;
  }
  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .svc-count {
    font-size: 3vw;
  }
  .services-container a {
    font-size: 5vw;
  }
  .svc-rating {
    gap: 1px;
  }
  .outer-svc-box {
    padding: 10px;
  }
  .no-1-tntrk {
    font-size: 3vw;
  }
  .svc-heading {
    font-size: 7vw;
    margin-bottom: 20px;
  }
  #about-us {
    padding: 10px;
    gap: 10px;
  }
  .about-us-container {
    flex-direction: column;
    justify-items: center;
  }
  .about-us-right-container {
    padding: 10px;
  }
  #about-us span:first-child {
    font-size: 7vw;
  }
  .about-us-right-container h1 {
    font-size: 5.5vw;
    margin-top: 20px;
  }
  .about-us-right-container p {
    font-size: 4.5vw;
  }
  .about-us-right-container span {
    font-size: 5vw;
  }
  .about-us-right-container a{
    font-size: 3.5vw;
    padding-left: 5px;
    margin-top: 5px;
  }
  .about-us-right-container a {
    gap: 2px;
  }
  .about-us-right-container img {
    width: 20px;
  }
  #awards {
    padding: 20px;
  }
  #awards span {
    font-size: 7vw;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  #testimonials {
    padding: 20px;
  }
  #testimonials > span {
    font-size: 7vw;
    margin-bottom: 20px;
  }
  #testimonials > span::after {
    font-size: 5vw;
  }
  #baba-sadhna {
    margin: 20px;
  }
  #baba-sadhna h2 {
    font-size: 7vw;
    margin-bottom: 50px;
  }
  .videos-row {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .inner-footer > div:first-child img {
    width: 100%;
  }

}

@media (min-width: 421px) and (max-width: 767px){
  #top-bar {
    flex-direction: column;
    justify-items: center;
    gap: 20px;
  }
  .left-container {
    margin-top: 10px;
    width: 100%;
    justify-content: space-evenly;
  }
  .left-container a {
    font-size: 4vw;
  }
  .right-container span{
    font-size: 3.7vw;
    width: 100%;
  }
   #header {
    flex-direction: column;
    justify-items: center;
    padding: 20px;
    gap: 20px;
    width: 100%;
    height: auto;
  }
  .header-left-container {
    width: 100%;
    height: auto;
  }
  .header-left-container img {
    max-width: 100%;
    height: auto;
  }
  .flags-container img {
    max-width: 100%;
    border-radius: 3px;
  }
  .header-mid-container span {
    font-size: 4.5vw;
  }
  .header-right-container span:nth-child(1) {
    font-size: 5vw;
  }
  .header-right-container a {
    font-size: 10vw;
  }
  .header-right-container span:nth-child(3) {
    font-size: 5vw;
  }
  .header-right-container span:last-child {
    font-size: 5vw;
  }
  #header-bottom-bar span {
    font-size: 3vw;
    padding: 0px 10px;
  }
  #services {
    gap: 10px;
    padding: 25px 10px 60px 10px;
  }
  .svc-heading {
    font-size: 6vw;
    margin-bottom: 20px;
  }
  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .svc-count {
    font-size: 3.2vw;
  }
  .services-container h1 {
    font-size: 4vw;
  }
  .services-container p {
    font-size: 3vw;
    margin-bottom: 5px;
  }
  .services-container a {
    font-size: 4vw;
  }
  .svc-rating {
    gap: 2px;
  }
  .outer-svc-box {
    padding: 10px;
  }
  .no-1-tntrk {
    font-size: 3vw;
  }
  #about-us {
    padding: 10px;
    gap: 10px;
  }
  .about-us-container {
    flex-direction: column;
    justify-items: center;
  }
  .about-us-right-container {
    padding: 10px;
  }
  #about-us span:first-child {
    margin-top: 10px;
    font-size: 7vw;
  }
  .about-us-right-container h1 {
    font-size: 5.5vw;
    margin-top: 20px;
  }
  .about-us-right-container p {
    font-size: 4vw;
  }
  .about-us-right-container span {
    font-size: 5vw;
  }
  .about-us-right-container a{
    font-size: 3.5vw;
    padding-left: 5px;
    margin-top: 5px;
  }
  .about-us-right-container a {
    gap: 2px;
  }
  .about-us-right-container img {
    width: 20px;
  }
  #awards {
    padding: 20px;
  }
  #awards span {
    font-size: 7vw;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  #testimonials {
    padding: 20px;
  }
  #testimonials > span {
    font-size: 7vw;
    margin-bottom: 20px;
  }
  #testimonials > span::after {
    font-size: 5vw;
  }
  #baba-sadhna {
    margin: 20px;
  }
  #baba-sadhna h2 {
    font-size: 7vw;
    margin-bottom: 50px;
  }
  .videos-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px; /* maintain spacing between stacked videos */
  }

  .video-container {
    flex: 1 1 100%; /* full width */
  }

  .video-container iframe {
    height: auto; /* optional: maintain aspect ratio automatically */
  }
  #header {
    padding: 5px;
  }
  .header-left-container img {
    max-width: 100%;
    height: auto;
  }
  .flags-container img {
    max-width: 100%;
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .left-container a {
    font-size: 2.2vw;
  }
  .right-container span{
    font-size: 1.9vw;
  }
  #header {
    padding: 10px;
    gap: 10px;
  }
  .flags-container {
    row-gap: 2px;
  }
  .flags-container img {
    border-radius: 3px;
  }
  .header-mid-container span {
    font-size: 1.5vw;
  }
  .header-right-container span:nth-child(1) {
    font-size: 1.5vw;
  }
  .header-right-container a {
    font-size: 3vw;
  }
  .header-right-container span:nth-child(3) {
    font-size: 1.5vw;
  }
  .header-right-container span:last-child {
    font-size: 1.5vw;
  }
  #header-bottom-bar span {
    padding: 0px 10px;
    font-size: 2vw;
  }
  #services {
    gap: 10px;
    padding: 25px 10px 60px 10px;
  }
  .svc-heading {
    font-size: 3vw;
    margin-bottom: 20px;
  }
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-count {
    font-size: 1.5vw;
  }
  .services-container h1 {
    font-size: 2vw;
  }
  .services-container p {
    font-size: 1.5vw;
    margin-bottom: 5px;
  }
  .services-container a {
    font-size: 2vw;
  }
  .svc-rating {
    gap: 1px;
  }
  .no-1-tntrk {
    font-size: 2vw;
  }
  #about-us {
    padding: 10px;
    gap: 10px;
  }
  .about-us-container {
    flex-direction: column;
    justify-items: center;
  }
  .about-us-right-container {
    padding: 10px;
  }
  #about-us span:first-child {
    font-size: 5vw;
  }
  .about-us-right-container h1 {
    font-size: 4vw;
    margin-top: 20px;
  }
  .about-us-right-container p {
    font-size: 2.4vw;
  }
  .about-us-right-container span {
    font-size: 3vw;
  }
  .about-us-right-container a{
    font-size: 2vw;
    padding-left: 5px;
    margin-top: 5px;
  }
  .about-us-right-container a {
    gap: 2px;
  }
  .about-us-right-container img {
    width: 20px;
  }
  #awards {
    padding: 20px;
  }
  #awards span {
    font-size: 5vw;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  #testimonials {
    padding: 20px;
  }
  #testimonials > span {
    font-size: 4vw;
    margin-bottom: 20px;
  }
  #testimonials > span::after {
    font-size: 3vw;
  }
  #baba-sadhna {
    margin: 20px;
  }
  #baba-sadhna h2 {
    font-size: 4vw;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1392px) {
  .left-container a {
    font-size: 2.2vw;
  }
  .right-container span{
    font-size: 1.9vw;
  }
  #header {
    padding: 10px;
    gap: 10px;
  }
  .flags-container {
    row-gap: 2px;
  }
  .flags-container img {
    border-radius: 3px;
  }
  .header-mid-container span {
    font-size: 1.7vw;
  }
  .header-right-container span:nth-child(1) {
    font-size: 1.5vw;
  }
  .header-right-container a {
    font-size: 3vw;
  }
  .header-right-container span:nth-child(3) {
    font-size: 1.5vw;
  }
  .header-right-container span:last-child {
    font-size: 1.5vw;
  }
  #header-bottom-bar span {
    padding: 0px 10px;
    font-size: 2.2vw;
  }
  .svc-heading {
    font-size: 3vw;
    margin-bottom: 20px;
  }
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-count {
    font-size: 1.5vw;
  }
  .services-container h1 {
    font-size: 2vw;
  }
  .services-container p {
    font-size: 1.5vw;
    margin-bottom: 5px;
  }
  .services-container a {
    font-size: 2vw;
  }
  .svc-rating {
    gap: 1px;
  }
  .no-1-tntrk {
    font-size: 2vw;
  }
  #about-us {
    padding: 10px;
    gap: 10px;
  }
  #about-us span:first-child {
    font-size: 3vw;
  }
  .about-us-right-container h1 {
    font-size: 2.4vw;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1393px) and (max-width: 1884px) {
  
  .left-container a {
    font-size: 2vw;
  }
  .right-container span{
    font-size: 1.7vw;
  }
  .header-mid-container span {
    font-size: 1.5vw;
  }
  .header-right-container span:nth-child(1) {
    font-size: 2vw;
  }
  .header-right-container a {
    font-size: 3.5vw;
  }
  .header-right-container span:nth-child(3) {
    font-size: 1.7vw;
  }
  .header-right-container span:last-child {
    font-size: 1.5vw;
  }
  #header-bottom-bar span {
    font-size: 2vw;
    padding: 0px 10px;
  }
}