/* default tamplate start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: 30px;
  background-color: #fff7ec;
  overflow-x: hidden;
}

html {
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

/* Remove all default focus/active highlights across the site */
* {
  outline: none !important;
  -webkit-tap-highlight-color: transparent; /* removes the mobile tap highlight */
}

button, a {
  outline: none !important;
  background: none;  /* optional, if some browsers add click highlight */
  -webkit-tap-highlight-color: transparent;
}

html, body {
  overflow-x: hidden;   /* keep horizontal scroll blocked */
  overflow-y: auto;     /* allow vertical scroll */
}

.c-scrollbar {
  display: none !important; /* hides locomotive scrollbar */
}

[data-scroll-container] {
  overflow: hidden;   /* Locomotive takes over scrolling */
}

a {
  all: unset;
}

body {
  transition: background-color 0.4s ease;
  font-family: "Poppins", sans-serif;
  background-color: #fff7ec;
  overflow-x: hidden;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h1,
h2,
h3,
h4 {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

hr {
  border: none;
  height: 0.8px;
  background-color: black;
}

/* loading animation */

.container-load {
  width: 100vw; /* full display width */
  height: 100vh; /* full display height */
  overflow: hidden;
  background-color: #ff0c00;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.5s ease-out;
  transform: scale(1);
  opacity: 1;
}

.container-load.hidden {
  transform: scale(0.01);
  /* Minimize/shrink effect */
  opacity: 0.6;
  pointer-events: none;
}

.load-ani {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.6s ease-out;
}

.container-load.hidden .load-ani {
  opacity: 0;
}

.text-load-ani p {
  font-size: 4.5em;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

.text-load-ani.active {
  font-family: "Raleway Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* default tamplate End */

/* menu start here */

/* menu-section */

.menu-section {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  padding: 0 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  background: transparent;
}

.menu-top-right-section {
  margin-left: 30px;
  padding-left: 3px;
  background-color: #000813;
  border-radius: 1.7px;
  cursor: pointer;
  font-size: 1em;
}

.menu-bottom-right-section {
  display: inline-block;
  margin-top: 10px;
  padding-left: 3px;
  background-color: #000813;
  border-radius: 1.7px;
  cursor: pointer;
  font-size: 1em;
}

.menu-top-right-section p,
.menu-bottom-right-section p {
  color: #000813;
}

.menu-left-section {
  margin-top: -30px;
  cursor: pointer;
  flex-direction: row-reverse;
}


.menu-left-section p {
  font-size: 1em;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.all-option-menu-left-section {
  display: none;
  position: absolute;
  overflow: hidden;
  z-index: 1000;
  top: -20px;
  right: 60px;
}

.menu-left-section:hover .all-option-menu-left-section {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.option-menu-left-section {
  display: flex;
  flex-direction: column;
  margin-top: 37px;
  padding-right: 25px;
  align-items: left;
  padding-left: 5px;

}

.option-menu-left-section a {
  font-size: 1em;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  /* padding-top: 1px; */
}

/* work */

.option-menu-left-section .work {
  position: relative;
  display: inline-block;
}

.option-menu-left-section .work::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 0;
  width: 65%;
  height: 0.6px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.option-menu-left-section .work:hover::after {
  width: 0;
}

/* about */

.option-menu-left-section .about {
  position: relative;
  display: inline-block;
}

.option-menu-left-section .about::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 0;
  width: 67%;
  height: 0.6px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.option-menu-left-section .about:hover::after {
  width: 0;
}

/* services */

.option-menu-left-section .services {
  position: relative;
  display: inline-block;
}

.option-menu-left-section .services::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 0;
  width: 94%;
  height: 0.6px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.option-menu-left-section .services:hover::after {
  width: 0;
}

/* contact */

.option-menu-left-section .contact {
  position: relative;
  display: inline-block;
}


.option-menu-left-section .contact::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 0;
  width: 100%;
  height: 0.6px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.option-menu-left-section .contact:hover::after {
  width: 0;
}

/* faq */

.option-menu-left-section .faq {
  position: relative;
  display: inline-block;
}

.option-menu-left-section .faq::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 0;
  width: 40%;
  height: 0.6px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.option-menu-left-section .faq:hover::after {
  width: 0;
}

/* Menu section end here */

/* footer-section start here */


.footer-section {
  background-image: url('../Images/homeImg/fotterBgImg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 101%;
  flex-direction: column;
  /* position: relative;
  z-index: 24; */
}

.compony-name-top-footer-section {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-footer-section h3 {
  font-size: 18vw;
  padding-bottom: 5vh;
  padding-top:5vh;
  color: #fff7ec;
  margin: 0;
  margin-top: -30px;
  margin-bottom: -20px;
  justify-content: center;

}

/* middle-footer-section */

.middle-footer-section {
  padding-bottom: 30px;
}

.left-middle-footer-section {
  background-color: #fff7ec;
  flex-direction: column;
  border-radius: 5px;
  padding-top: 25px;
  padding-left: 20px;
  margin-left: 20px;
  padding-bottom: 25px;
  width: 45%;
  padding-right: 20px;
  cursor: pointer;
  transform: background-color 0.5 ease-in;
}

.left-middle-footer-section:hover {
  background-color: #ff0c00;
}

.top-left-middle-footer-section p {
  font-size: 2.1em;
  padding-right: 30px;
  padding-bottom: 30px;
  width: 80%;
  line-height: 1.3em;
}

.left-text-bottom-top-left-middle-footer-section {
  background-color: #000813;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 13px;
  padding-left: 13px;
  border-radius: 3px;
}

.middle-arrow {
  color: #fff7ec;
}

/* right-middle-footer-section */

.right-middle-footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;

  justify-content: last baseline;
  gap: 60px;
  margin-right: 50px;
  margin-top: 80px;
}


.left-right-middle-footer-section p {
  color: #fff7ec;
  font-size: 0.7em;
  line-height: 1.8em;
  margin: 0;
  /* background-color: rgb(97, 207, 24); */
  cursor: pointer;
}

.right-right-middle-footer-section p {
  color: #fff7ec;
  font-size: 0.7em;
  line-height: 1.8em;
  margin: 0;
  /* background-color: rgb(97, 207, 24); */
  cursor: pointer;
}

/* bottom-footer-section */

.bottom-footer-section {
  padding-bottom: 5px;
}

.copyright {
  color: #fff7ec;
  font-size: 3em;
  padding-left: 20px;
}

.middle-bottom-footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* height: 50px; */
}

.middle-bottom-footer-section hr {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #fff7ec;
}

.right-bottom-footer-section p {
  color: #fff7ec;
  font-size: 3em;
  padding-right: 40px;
}

.last-footer-section p {
  color: #76726d;
  padding-bottom: 10px;
  font-size: 0.58em;
  padding-left: 19px;
}

/* fotter end here */


/* WORK PAGE CSS START HERE */

/* top-section */

.top-section{
  padding-top:200px;
  padding-bottom: 100px;
}

.top-left-top-section p{
  color:#76726d;
  font-size: 0.98em;
  margin-top: 0px;
}

.left-bottom-left-top-section{
  width: 41%;
}

.left-bottom-left-top-section h3{
  font-size: 3vw;
  font-weight: 500;
  margin-top: -180vh;
  line-height: 45px;
}


.img-right-bottom-left-top-section{
  margin-top: 40px;
  /* background-color: #ff0c00; */
  border-radius: 7px;
  height: 64vh;
  width: 47vw;
  position: relative;
  left:-40px;
}

.img-right-bottom-left-top-section img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.title-right-bottom-left-top-section{
  border-bottom: 1px solid black;
  position: relative;
  left: -40px;
  padding-top:8px;
  padding-bottom: 20px;
}

.title-right-bottom-left-top-section h5{
  font-size: 1.5em;
}

.frist-box-right-bottom-left-top-section{
  cursor: pointer;
}

.second-box-right-bottom-left-top-section{
  cursor: pointer;
}

.thrid-box-right-bottom-left-top-section{
  cursor: pointer;
}

/* WORK PAGE CSS END HERE */

/* ABOUT PAGE CSS START HERE */

/* ABOUT- top-section */

.about-top-section{
  padding-top:20px;
  padding-bottom: 40px;
  width: 100%;
  height: 100vh;
  gap: 20px;
}

.about-img-left-top-section{
  height: 54vh;
  width: 37vw;
  /* background-color: #ff0c00; */
  border-radius: 5px;
}

.about-img-left-top-section img{
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.about-name-left-top-section{
  margin-top: -9.5vh;
}

.about-name-left-top-section h3{
  font-size: 6.7vw;
  padding-left: 7px;
  width: 100%;
}

.about-right-top-section{
  margin-top: 15vh;
}

.about-right-top-section{
  font-size: 2.3vw;
  line-height: 37px;
  font-weight: 400;
  padding-top: 300px;
  text-align: justify;
  overflow: hidden;
}

/* VISION-MISSION-SECTION */

.vision-mission-section{
  border-top: 1px solid black;
  padding-top:50px;
  padding-bottom:50px;
}

.left-top-vision-mission-section h4{
 font-size: 4.5vw;
 font-weight: 400;
 word-spacing: -5px;
 margin-top: -25vh;
}

.top-vision-mission-section{
  gap:30px;
}

.right-top-vision-mission-section{
  width: 50%;
}

.vision-text-right-top-vision-mission-section h5{
  font-size: 1.7vw;
}

.vision-text-right-top-vision-mission-section p{
  font-size: 1.3vw;
  padding-bottom: 20px;
  text-align: justify;
}

.mission-text-right-top-vision-misssion-section h5{
  font-size: 1.7vw;
}

.mission-text-right-top-vision-misssion-section p{
  font-size: 1.3vw;
  padding-bottom: 30px;
  text-align: justify;
}

.bottom-vision-mission-section{
  width:100%;
  /* height: 170vh; */
  background-color: #ff0c00;
  border-radius: 7px;
  padding-left: 40px;
  padding-top:40px;
}

.top-bottom-vision-mission-section{
  /* background-color:chartreuse; */
  border-radius: 7px;
  width: 89vw;
  height: 105vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.img-top-bottom-vision-mission-section img{
  object-fit: cover;
  width:100%;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
}

.text-bottom-bottom-vision-mission-section h5{
  font-size: 3vw;
  padding-top:50px;
  width:60%;
  line-height: 45px;
  font-weight: 500;
  padding-bottom: 35px;
}

.about-btn-box-bottom-service-section {
  background-color:#ff0c00;
  border: 0.002px solid #474343;
  width: 230px;
  border-radius: 5px;
  color: #fff7ec;
}

.about-left-btn-box-bottom-service-section {
  padding: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

.about-left-btn-box-bottom-service-section p {
  font-size: 0.79em;
}

.about-right-btn-box-bottom-service-section {
  background-color: #000813;
  margin: 5px;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
}

.about-service-arrow {
  color: white;
  padding: 10px;
  padding-left: 11px;
  padding-right: 11px;
}

.about-work-btn-bottom-bottom-vision-mission-section{
  padding-bottom: 70px;
}

/* company-lines-section */

.company-lines-section{
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 20vw;
  padding-bottom: 20vw;
  overflow: hidden;
}

.company-lines-section h5{
  padding-left: 20px;
  font-size: 2.5vw;
  font-weight: 800;
  padding-right: 20px;
  /* width: 80%; */
  overflow: hidden;
}


/* QNA-SECTION */

.qna-section{
  padding-top: 5vw;
}

.top-qna-section{
  justify-content: right;
}

.top-qna-section p{
  font-size: 2.1vw;
  width: 50%;
  text-align: justify;
  padding-bottom: 20vh;
  line-height: 33px;
}

.bottom-qna-section{
  padding-top: 20px;
  padding-bottom: 30px;
  flex-direction: column;
  justify-content: right;
  align-items: end;
  gap:15px;
}

.about-question {
  background-color: #ff0c00;
  margin-bottom: 5px;
  width: 66vw;
  border-radius: 5px;
  padding: 20px;
}

.about-qus h5 {
  font-size: 1.9vw;
  font-weight: 400;
  padding-top: 5px;
}

.about-qus i{
  margin-top: -2vw;
  color: #fff7ec;
  font-size: 1.3vw;
  cursor: pointer;
}

.about-ans{
  font-size: 1.3vw;
  padding-top:5px;
}

.about-ans {
  overflow: hidden;
  height: 0; /* start hidden */
  opacity: 0;
}
.about-qus {
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.img-section-about-page{
  padding-top: 150px;
  padding-bottom: 50px;
}

.big-img-section-about-page{
  background-color: aqua;
  width: 100%;
  height: 130vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.big-img-section-about-page img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bottom-qna-section {
  overflow: hidden;
}


/* COMPANY-HISTORY-SECTION */

.company-history-section{
 gap:90px;
 padding-bottom: 30px;
}

.name-company-history-section h4{
 font-size: 5vw;
 padding-bottom: 20px;
 width: 30%;
 font-weight: 600;
 margin-top:-40vh;
}

.full-detlise-company-history-section p{
  font-size: 1.3vw;
  text-align: justify;
  padding-bottom: 20px;
}

#readMoreBtn{
  display: none;
}

/* BOTTTOM-LINES-SECTION */

.bottom-lines-section{
  gap: 35px;
}

.lines{
  border-top: 1px solid black;
  padding-bottom: 40px;
  margin-top: 30px;
  width: 26vw;
}

/* ABOUT PAGE CSS END HERE */

/* --------------------------------- */

/* CONTACT PAGE CSS START HERE */

/* CONTACT-TOP-SECTION */

.contact-top-section{
  padding-top: 15vw;
  padding-bottom: 40px;
}


.heading-contact-top-section h5{
  font-size: 4.5vw;
  padding-top: 30px;
  padding-bottom: 40px;
  font-weight: 600;
}

.heading-contact-top-section p{
  font-size: 1.5vw;
  color:#76726d;
  margin-top:-350px;
}

.left-form-contact-top-section{
  font-size: 1.5vw;
  padding-top:80px;
  padding-bottom: 20px;
}

.frist-right-form-contact-top-section{
  background-color: #ff0c00;
  margin-bottom: 20px;
  width: 50vw;
  border-radius: 7px;
  border: none;
}

.right-form-contact-top-section{
  flex-direction: column;
  align-items: end;
  margin-top:-30px;
}

input{
  width: 50vw;
  padding: 30px;
  background-color: #ff0c00;
  border-radius: 7px;
  outline: none;
  border: none;
  font-size: 1.8vw;
  font-family: "Poppins", sans-serif;
}

input:focus,
textarea:focus{
  background-color: #fff7ec;
  border: 1px solid black;
}

input::placeholder,
textarea::placeholder{
  color: #000813;
  font-size: 1.8vw;
  font-family: "Poppins", sans-serif;
}

/* input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
} */

.thrid-right-form-contact-top-section{
  margin-top: 20px;
  width: 50vw;
  /* background-color: #ff0c00; */
  border-radius: 7px;
  outline: none;
  border: none;
}

textarea{
  width: 50vw;
  background-color: #ff0c00;
  padding: 25px;
  border-radius: 7px;
  outline: none;
  border: none;
  resize: vertical;
  height: 37vh;
  font-size: 1.8vw;
  font-family: "Poppins", sans-serif;
  overflow: auto;      
  scrollbar-width: none;
}

textarea::-webkit-scrollbar {
  display: none;         
}

.bottom-service-section {
  padding-top: 20px;
  padding-bottom: 10px;
  justify-content: space-between;
  gap: 16.5vw;
}

.form-information-section{
  font-size: 1.1vw;
  margin-top: -30px;
}

.btn-box-bottom-service-section {
  background-color: #fff7ec;
  border: 0.002px solid rgb(230, 223, 223);
  width: 15vw;
  border-radius: 6px;
  /* justify-content: center; */
  cursor: pointer;
}

.left-btn-box-bottom-service-section {
  padding: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

.left-btn-box-bottom-service-section p {
  font-size: 0.98em;
}

.right-btn-box-bottom-service-section {
  background-color: #000813;
  margin: 5px;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
}

.service-arrow {
  color: white;
  padding: 10px;
  padding-left: 11px;
  padding-right: 11px;
}

/* BOTTTOM-LINES-SECTION */

.mobile-bottom-contact-section{
  display: none;
}

.bottom-lines-section{
  gap: 35px;
}

.lines{
  border-top: 1px solid black;
  padding-bottom: 30px;
  margin-top: 30px;
  width: 50vw;
}

.contact-detiles-section{
  padding-bottom: 40px;
  align-items: left;
  text-align: left;
}

.left-contact-detiles-section p{
  font-size: 2.2vw;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.left-contact-detiles-section p::after{
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 1.3px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.left-contact-detiles-section p:hover::after{
  width: 0;
}

.right-contact-detiles-section{
  margin-right: 33.5vw;
}

.right-contact-detiles-section p{
  font-size: 2.2vw;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.right-contact-detiles-section p::after{
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 1.3px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.right-contact-detiles-section p:hover::after{
  width:0;
}

/* BOTTOM-SECTION */
.bottom-section{
  margin-top: 40px;
  margin-bottom:30px;
}

.img-bottom-section{
  /* background-image: url('../Images/contactImg/bottomImg.jpg'); */
  width: 100%;
  height: 110vh;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.img-bottom-section img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
}

.contact-text-bottom-section{
  border-top: 1px solid black;
  margin-top: 30px;
  padding-top: 20px;
  width: 35vw;
  margin-left: 59vw;
  padding-bottom: 15px;
}

.contact-left-text-bottom-section{
  margin-top:-80px;
}

.contact-left-text-bottom-section p{
  font-size: 1vw;
}

.contact-right-text-bottom-section{
  width: 20vw;
}

.contact-right-text-bottom-section h5{
  font-size: 1.8vw;
  text-align: justify;
}

/* CONTACT PAGE CSS END HERE */

/* --------------------------------------- */

/*FAQ PAGE CSS START HERE */

/* FAQ-SECTION */

.faq-section {
  margin-top: 30vh;
  padding-bottom: 30px;
}

.all-questions-answers-faq-section {
  flex-direction: column;
  align-items: end;
  margin-top: 5vh;
}

.heading-faq-section h5 {
  font-size: 3.5vw;
  font-weight: 800;
  padding-top: 40px;
  padding-bottom: 80px;
}

.question {
  background-color: #ff0c00;
  margin-bottom: 15px;
  width: 66vw;
  border-radius: 5px;
  padding: 30px;
}

.qus h5 {
  font-size: 1.9vw;
  font-weight: 400;
  padding-top: 5px;
}

.qus i{
  margin-top: -4vw;
  color: #fff7ec;
  font-size: 1.3vw;
  cursor: pointer;
}

.ans{
  font-size: 1.3vw;
  padding-top:10px;
}

.ans {
  overflow: hidden;
  height: 0; /* start hidden */
  opacity: 0;
}
.qus {
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* BOTTOM-SECTION */
.bottom-section{
  padding-top: 40px;
  padding-bottom:40px;
}

.img-bottom-section{
  background-color:crimson;
  width: 100%;
  height: 110vh;
  border-radius: 7px;
  overflow: hidden;
}

.img-bottom-section img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  
}

.text-bottom-section{
  border-top: 1px solid black;
  margin-top: 30px;
  padding-top: 20px;
  width: 40vw;
  margin-left: 55.2vw;
  padding-bottom: 15px;
}

.text-bottom-section p{
  padding-left:21vw;
  font-size: 1.5vw;
}

.all-questions-answers-faq-section {
  overflow: hidden;
}

/* FAQ PAGE CSS END HERE */

/* ------------------------------------- */

/* SERVICE PAGE CSS START HERE */

/* top section */

.service-top-section{
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.service-image-top-section{
  position: absolute; inset: 0;
  z-index: -1;  
   background-image: 
    linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.2)),
    url("../Images/serviceImg/topImg.jpg");
  background-size: cover;
  background-position: center;
}

.service-image-top-section img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.information-top-section{
  position: relative;
  background-color: #a39b91;
  flex-direction: column;
  justify-content: left;
  width: 70vw;
  top:30vh;
  left: 10%;
  border-radius: 7px;
}

.service-infromation-top{
  padding-top: 60px;
  padding-bottom:30px;
  margin-left:-57vw;
  font-size: 1.4vw;
  color: #76726d;
}

.service-infromation-bottom{
  padding-left: 40px;
  padding-bottom: 60px;
  padding-right: 35px;
  font-size: 4.3vw;
  color: #fff7ec;
  line-height: 50px;
}

/* middle-section */

.service-middle-section{
  padding-top:50px;
  padding-bottom: 50px;
  flex-direction: column;
}

.service-left-top-middle-section p{
  font-size: 3.5vw;
}

.service-left-bottom-middle-section p{
 font-size: 3.5vw;
}

.service-bottom-middle-section{
  flex-direction: row-reverse;
  /* gap:10px; */
  padding-bottom: 30px;
  /* justify-content: center; */
}

.service-right-top-middle-section,
.service-right-bottom-middle-section{
  justify-content: center;
}

.service-left-bottom-middle-section{
  width: 100%;
  position: relative;
  left: -50px;
}

.vertical-line {
  width: 2px;             
  height: 100px;           
  background-color: black;

} 

.horizontal-line {
  height: 2px;             
  width: 481px;            
  background-color: black;
}

.new-hori{
  width:720px;
}

.service-right-bottom-middle-section-new{
  position: relative;
  left: -100px;
}

.service-middle-img-top-middle-section{
  position: relative;
  width: 480px;
  height: 300px;
  margin-top: 30px;
  margin-bottom: 40px;
  border-radius: 7px;
  overflow: hidden;
}

.service-middle-middle-section img{
  width:100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  transform: scale(1.4); /* start zoomed */
  opacity: 0;
}

.mask {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #fff7ec; /* match page background */
  z-index: 2;
}

.mask-left { left: 0; }
.mask-right { right: 0; }

.service-last-bottom-middle-section{
  background-color: #000813;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.service-last-bottom-middle-section p{
  display: inline;
  position: relative;
}

.service-last-bottom-middle-section p::after{
  content: '';
  position: absolute;
  top: 43vh;
  left: 0px;
  width: 90%;
  height: 2px;
  background-color:#ff0c00;
}

.service-last-bottom-middle-section p{
  color: #fff7ec;
  padding-top:100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  font-size:4.5vw;
  text-align: center;
  width: 60%;
  line-height: 55px;

}

/* Service Section */

.service-section{
  padding-top: 95px;
  padding-bottom: 65px;
  font-family: "Comfortaa";
}

.heading-service-section h4{
  font-size: 5vw;
  font-weight: 600;
  padding-bottom: 80px;
  font-family: "comfortaa";
  font-weight: 600;
}

.all-services-service-section{
  flex-wrap: wrap;
}

.services-box{
  border-top: 1px solid #000813 ;
  width: 45vw;
  padding-top: 20px;
  padding-bottom: 30px;
}

.services-box h5{
  font-size: 2vw;
  font-weight: 600;
  padding-bottom: 20px;
}

.services-box p{
  font-size: 1.1vw;
  width: 80%;
  text-align: justify;
}

.num-services-box{
  position: relative;
  left: 43vw;
  color: #a39b91;
}

.btn-know-more{
  padding-top:35px;
  padding-bottom: 20px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  display: inline;
}

.btn-know-more::after{
  content: '';
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: 0.8px;
  background-color: #000813;
  transition: width 0.3s ease;
}

.btn-know-more:hover::after{
  width: 0;
}

.text-delti{
  padding-bottom: 20px;
}

/* SERVICE PAGE CSS END HERE */

/* ------------------------------------------------ */

/* Responsive code Start here */

/* Mobile Version */

@media (max-width: 479px) {

  /* WORK PAGE RESPONSIVE CSS START HERE */

  /* COMMAN BILARE PLATE CODES */

  .container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 20px;
    background-color: #fff7ec;
    overflow-x: hidden;
  }

  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
  }


  .container,
  .container-load,
  .footer-section,
  .menu-section {
    max-width: 100vw;
    box-sizing: border-box;
    /* ensures padding doesn't break width */
  }


  .menu-section,
  .option-menu-left-section,
  .faq-section,
  .bottom-section,
  .footer-section {
    user-select: none;
    /* prevents text highlight/selection */
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* loding */

  .container-load {
    width: 100vw;
    height: 100vh;
  }

  .load-ani {
    width: 90vw;
    height: 90vh;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .text-load-ani p {
    font-size: 9vw;
    /* scales text on mobile */
  }

  /* MENU CSS START HERE */

   /* menu-section */

  .menu-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 1000;
    padding: 0 25px;
    display: flex;
    align-items: center;
    background: transparent;
  }

  .menu-right-section {
    padding-top: 20px;
  }

  .menu-top-right-section {
    margin-left: 30px;
    padding-left: 3px;
    background-color: #000813;
    border-radius: 1.7px;
    cursor: pointer;
    font-size: 0.89em;
  }

  .menu-bottom-right-section {
    display: inline-block;
    margin-top: 10px;
    padding-left: 3px;
    background-color: #000813;
    border-radius: 1.7px;
    cursor: pointer;
    font-size: 0.89em;
  }

  .menu-left-section {
    margin-top: -20px;
    cursor: pointer;
    flex-direction: row-reverse;
  }

  .menu-left-section p {
    font-size: 3.5vw;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }

  .option-menu-left-section {
    display: flex;
    flex-direction: column;
    margin-top: 31px;
    padding-right: 25px;
    align-items: left;
    padding-left: 5px;

  }

  .all-option-menu-left-section {
    display: none;
    position: absolute;
    overflow: hidden;
    z-index: 1000;
    top: -8px;
    right: 45px;
  }

  .option-menu-left-section a {
    font-size: 3.5vw;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-top: 1.5px;
  }

  /* work */

  .option-menu-left-section .work::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 65%;
    height: 0.8px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* about */

  .option-menu-left-section .about::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 74%;
    height: 0.8px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* services */

  .option-menu-left-section .services::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 99%;
    height: 0.8px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* contact */

  .option-menu-left-section .contact::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    height: 0.8px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* faq */

  .option-menu-left-section .faq::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 48%;
    height: 0.8px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  .option-menu-left-section .faq:hover::after {
    width: 0;
  }

  /* MENU CSS END HERE */

  /* FOTTER CSS START HERE */

   /* Footer container */
  .footer-section {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
  }

  /* Top footer text */
  .top-footer-section .compony-name-top-footer-section h3 {
    font-size: 17vw;
    padding-top: 4vh;
    /* scale with screen height */
    padding-bottom: 23vh;
    /* bigger on tall phones, smaller on short ones */
    text-align: center;
    align-items: center;
  }

  /* Middle footer box */
  .middle-footer-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .left-middle-footer-section,
  .right-middle-footer-section {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-right: 0px;
  }

  .right-middle-footer-section {
    display: flex;
    justify-content: unset;
    align-items: left;
    text-align: left;
    gap: 60px;
    margin-right: 0px;
    margin-top: 25px;
  }

  .left-middle-footer-section {
    background-color: #ff0c00;
    width: 100%;
    border-radius: 5px;
    padding-top: 25px;
    padding-left: 20px;
    margin-left: 0px;
    margin-top: 5vh;
    padding-bottom: 25px;
    padding-right: 20px;
  }

  .left-middle-footer-section a,
  .right-middle-footer-section a {
    width: 100%;
    text-align: left;
    font-size: 4.5vw;
    padding: 10px 0;
  }

  .top-left-middle-footer-section p {
    font-size: 1.5em;
    padding-right: 30px;
    padding-bottom: 30px;
    width: 80%;
    line-height: 1.3em;
    text-align: left;
  }

  .right-text-bottom-top-left-middle-footer-section p {
    font-size: 0.78em;
  }

  /* Bottom footer line & copyright */
  .bottom-footer-section {
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    /* padding:5px; */
  }

  .left-bottom-footer-section,
  .middle-bottom-footer-section,
  .right-bottom-footer-section {
    width: 100%;
    text-align: center;
  }

  .last-footer-section p {
    font-size: 2.5vw;
    text-align: left;
    margin-top: -15px;
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .copyright {
    color: #fff7ec;
    font-size: 9vw;
    padding-left: 0px;
    padding-right: 2vw;
  }

  .right-bottom-footer-section p {
    color: #fff7ec;
    font-size: 8vw;
    padding-right: 0px;
    padding-left: 2vw;
  }

  .middle-bottom-footer-section hr {
    margin: 0 auto;
    border: 1px solid #fff7ec;
    width: 45vw;
  }

  /* FOTTER CSS END HERE */


  /* TOP SECTION */

  .top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    padding-top: 20vh;
    padding-bottom: 40px;
  }

  .top-left-top-section {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    position: static;
    /* reset pinning */
  }

  .top-left-top-section p {
    font-size: 0.98em;
  }

  .bottom-left-top-section {
    flex-direction: column;
  }

  .left-bottom-left-top-section {
    width: 100%;
    margin: 0 auto 20px auto;
    text-align: left;
    position: static;
    /* reset pinning */
  }

  .left-bottom-left-top-section h3 {
    font-size: 1.4em;
    margin: 0;
    line-height: 1.2em;
    padding-bottom: 0px;
  }

  .padding-inline-class {
    padding-inline: 15px;
  }

  .right-bottom-left-top-section {
    width: 100%;
    position: static;
    /* reset pinned image */
    margin: 0 auto;
    text-align: center;
  }

  .img-right-bottom-left-top-section {
    width: 100%;
    height: auto;
    margin: 20px 0;
    position: static;
  }

  .img-right-bottom-left-top-section {
    margin-top: 40px;
    /* background-color: #ff0c00; */
    border-radius: 4px;
  }

  .img-right-bottom-left-top-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .alkin-school-img {
    height: 280px;
    width: 100%;
  }

  .alkin-school-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .alarm-clock-img {
    height: 280px;
  }

  .marreto-img {
    height: 280px;
  }

  .title-right-bottom-left-top-section {
    width: 100%;
    position: static;
    /* no overlap */
    text-align: left;
    margin-top: 10px;
  }

  .title-right-bottom-left-top-section h5 {
    margin-top: -15px;
    font-size: 1.2em;
    font-weight: 600;
    word-spacing: 0.001em;
  }

  /* WORK PAGE CSS MOBILE VERSION END HERE*/

  /* ABOUT PAGE CSS MOBILE VERSION START HERE */

  .about-top-section {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically center content */
    align-items: center;      /* horizontally center content */
    height: 100vh;            /* full screen height */
    text-align: center;
    padding-top: 15vh;
    padding-bottom: 5vh;
    gap:0px;
  }

  /* Left Side Image */
  .about-left-top-section {
    width: 100%;
    height: 30vh; 
    max-width: 380px;
  }

  .about-img-left-top-section {
    width: 100%;
    height: 100%;
    /* max-width: 360px; */
    border-radius: 8px;
    overflow: hidden;
  }

  .about-img-left-top-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Company Name */
  .about-name-left-top-section {
    margin-top: -5vh;
    text-align: left;
  }

  .about-name-left-top-section h3 {
    font-size: 16vw;
    color: #000;
    font-weight: 600;
  }

  /* Right Side (Intro Text) */
  .about-right-top-section {
    width: 100%;
    padding: 15px 10px;
    text-align: justify;
    word-break: break-word;
    font-size: 4.9vw;
    line-height: 1.5em;
    padding-top: 0px;
    margin-top:8vh;
  }

  /* Vision & Mission Section */
  .vision-mission-section {
    padding: 40px 5px;
    border-top: 1px solid black;
  }

  .top-vision-mission-section {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .left-top-vision-mission-section h4 {
    font-size: 2.3em;
    font-weight: 500;
    margin-top: 0;
    text-align: center;
    width: 100%;
  }

  .right-top-vision-mission-section {
    width: 100%;
  }

  .vision-text-right-top-vision-mission-section h5,
  .mission-text-right-top-vision-misssion-section h5 {
    font-size: 1.4em;
    font-weight: 600;
    padding-bottom: 5px;
    text-align: left;
  }

  .vision-text-right-top-vision-mission-section p,
  .mission-text-right-top-vision-misssion-section p {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
    word-break: break-word;
    padding-bottom: 15px;
  }

  /* Image & Work Button */
  .bottom-vision-mission-section {
    width: 100%;
    background-color: #ff0c00;
    border-radius: 7px;
    padding: 15px 15px;
    text-align: center;
    padding-top: 15px;
    margin-top: 30px;
  }

  .top-bottom-vision-mission-section {
    width: 100%;
    height: auto;
  }

  .img-top-bottom-vision-mission-section img {
    width: 100%;
    height: auto;
    border-radius: 7px;
  }

  .text-bottom-bottom-vision-mission-section h5 {
    font-size: 1.5em;
    width: 100%;
    line-height: 1.2em;
    padding: 20px 0;
    text-align: left;
    word-break: break-word;
    font-weight: 400;
    padding-top: 20px;
  }

  .about-work-btn-bottom-bottom-vision-mission-section {
    padding-bottom: 20px;
    display: flex;
    justify-content: left;
  }

  .about-btn-box-bottom-service-section {
    width: 200px;
    font-size: 1em;
  }

  /* Company line section */

  .company-lines-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }

  .company-lines-section h5 {
    font-size: 1.2em;        
    font-weight: 600;
    line-height: 1.5em;
    padding: 0 20px;
    text-align: center;
    width: 100%;
  }

  /* QNA SECTION */

  .qna-section {
    padding-top: 180px;
    padding-bottom: 20px;
  }

  /* Top QNA intro text */
  .top-qna-section {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .top-qna-section p {
    font-size: 1.2em;
    width: 100%;
    text-align: left;
    line-height: 1.5em;
    padding-bottom: 200px;
  }

  /* Question boxes */
  .bottom-qna-section {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .about-question {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
  }

  .about-qus h5 {
    font-size: 1em;
    font-weight: 500;
    color: #000813;
  }

  .about-aqus i {
    font-size: 0.9em;
    margin-top: 0;
  }

  .about-ans {
    font-size: 0.9em;
    color: #000813;
    line-height: 1.5em;
    padding-top: 8px;
  }
  
  /* big image section */

  .img-section-about-page {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .big-img-section-about-page {
    width: 100%;
    height:40vh; /* Slightly smaller height for phones */
    overflow: hidden;
    position: relative;
  }

  .big-img-section-about-page img {
    width: 120%;       /* Zoom the image 20% */
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3); /* subtle zoom effect */
    transition: transform 0.5s ease; /* smooth appearance */
  }

  /* Optional: add a subtle hover zoom effect */
  .big-img-section-about-page:hover img {
    transform: scale(1.2);
  }
  /* company histry section */
  .company-history-section {
    flex-direction: column;
    gap: 25px;
    padding: 0px 10px;
    padding-bottom: 50px;
  }

  #history-text {
    min-height: 140px; /* collapsed */
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #history-text.expanded {
    max-height: 1000px; /* or none */
  }

  .name-company-history-section h4 {
    font-size: 9vw; /* smaller heading */
    width: 100%;
    margin-top: 0;
    padding-bottom: 5px;
  }

  .full-detlise-company-history-section p {
    font-size: 3.9vw; /* smaller paragraph */
    line-height: 1.6em;
    text-align: justify;
    word-break: break-word;
    padding-bottom: 30px;
  }

  /* read now button */

  .full-detlise-company-history-section p {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
    color: #000813;
    max-height: 170px;
    /* initially short */
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .full-detlise-company-history-section p.expanded {
    max-height: 1000px;
    /* expand smoothly */
  }

  #readMoreBtn {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #ff0c00;
    font-weight: 600;
    cursor: pointer;
  }

  /* ABOUT PAGE CSS MOBILE VERSION END HERE */
  /* CONTACT PAGE CSS MOBILE VERSION START HERE */

  /* contact from section */

  .contact-top-section {
    padding-top: 30vw;
    padding-bottom: 20px;
  }

  .heading-contact-top-section h5 {
    font-size: 8vw;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .heading-contact-top-section p {
    font-size: 4vw;
    margin-top: -150px;
    text-align: center;
  }

  .left-form-contact-top-section {
    font-size: 4vw;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }

  .right-form-contact-top-section {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  input,
  textarea,
  .frist-right-form-contact-top-section,
  .thrid-right-form-contact-top-section {
    width: 90vw;
    font-size: 4vw;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 4vw;
  }

  .bottom-service-section {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .btn-box-bottom-service-section {
    width: 90vw;
  }

  .left-btn-box-bottom-service-section p {
    font-size: 4vw;
  }

  .form-information-section {
    font-size: 3.5vw;
    margin-top: 0;
    text-align: center;
  }

  /* bottom line section */

  /* Hide desktop version on mobile */
  .bottom-lines-section,
  .contact-detiles-section {
    display: none;
  }

  /* Mobile bottom contact section */
  .mobile-bottom-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align everything to the left */
    gap: 15px;
    padding: 20px 0%;
  }

  .mobile-bottom-contact-section .line {
    width: 100%;
    /* Full width line */
    height: 1px;
    background-color: #000813;
  }

  .mobile-bottom-contact-section .left-contact-detiles-section,
  .mobile-bottom-contact-section .right-contact-detiles-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text to the left */
    gap: 5px;
    padding-bottom: 25px;
    padding-top: 20px;
  }

  .mobile-bottom-contact-section p {
    font-size: 5vw;
    text-align: left;
    /* Text aligned left */
    margin: 0;
    cursor: pointer;
    font-weight: 500;
  }

  /* Bottom image section */
  .img-container{
    padding-inline: 20px;
  }


  .bottom-section {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    height: 70vw;
    /* give a fixed relative height */
    position: relative;
    padding-top:0px;
    padding-bottom:0px;   
  }

  .img-bottom-section {
    width: 100%;
    height: 100%;
    /* fill the parent container */
    overflow: hidden;
  }

  .img-bottom-section img {
    width: 100%;
    height: 100%;
    /* fill the container */
    object-fit: cover;
    border-radius: 5px;
  }

  /* Text Bottom Section */
  .contact-text-bottom-section {
    display: flex !important;
    /* flex-direction: column; */
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid black;
    width: 100%;
    margin-left: 0vw;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .contact-text-bottom-section .contact-left-text-bottom-section,
  .contact-text-bottom-section .contact-right-text-bottom-section {
    width: 100%;
    text-align: left;
    margin-top: 0px;
    /* force left alignment */
  }

  .contact-text-bottom-section .contact-left-text-bottom-section p {
    font-size: 3.5vw;
    padding-top: 10px;
    margin: 0;
  }

  .contact-text-bottom-section .contact-right-text-bottom-section {
    width: 100%;
  }

  .contact-text-bottom-section .contact-right-text-bottom-section h5 {
    font-size: 4vw;
    margin: 10px 0 0 0;
    text-align: left;
    line-height: 1.1;
    font-weight: 600;
    margin-left: 30px;
  }

  /* Optional divider line between left and right text */
  .text-bottom-section .divider {
    width: 100%;
    height: 1px;
    background-color: #000813;
    margin: 10px 0;
  }

  /* CONTACT PAGE CSS MOBILE VERSION END HERE  */

  /* FAQ PAGE CSS MOBILE VERSION START HERE */

  .faq-section {
    margin-top: 130px;
    padding: 0 5px;
    /* add breathing room */
  }

  .heading-faq-section h5 {
    font-size: 2em;
    /* readable on small screens */
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .all-questions-answers-faq-section {
    align-items: center;
    /* center questions */
  }

  .question {
    width: 100%;
    /* take full width */
    padding: 15px;
    /* tighter padding for phones */
    font-size: 0.95em;
  }

  .qus h5 {
    font-size: 1em;
  }

  .qus i {
    font-size: 1em;
    margin-top: -20px;
  }

  .ans {
    font-size: 0.9em;
    line-height: 1.4em;
  }

  /* bottom-section */

  .faq-bottom-section {
    padding: 20px 5px;
  }

  .img-bottom-section {
    height: 250px;
    /* smaller height for mobile */
    border-radius: 5px;
  }

  .text-bottom-section {
    width: 100%;
    /* full width text */
    margin: 20px 0 0 0;
    /* stack below image */
    padding: 15px;
    border-top: 1px solid black;
    text-align: center;
  }

  .text-bottom-section p {
    padding-left: 0;
    /* remove large offset */
    font-size: 0.9em;
    line-height: 1.4em;
  }

  /* FAQ PAGE CSS MOBILE VERSION END HERE */

  /* SERVICE PAGE CSS MOBILE VERSION START HERE */

  /* --- Top Section (Hero) --- */
  .service-top-section {
    height: auto; 
    min-height: 100vh;
  }

  .information-top-section {
    position: absolute;  
    top: 50%;           
    left: 50%;           
    transform: translate(-50%, -50%);
    width: 90%;          
    max-width: 400px;    
    padding: 20px;       
    border-radius: 7px;
    text-align: center;  
  }

  .service-infromation-top {
    margin-left: 0;
    font-size: 4vw;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .service-infromation-bottom {
    font-size: 8vw;
    line-height: 1em;
    text-align: center;
    padding: 10px;
    padding-bottom: 20px;
  }

  .service-image-top-section {
    background-position: center;
    background-size: cover;
    min-height: 100vh;
  }

  /* Middle Section - Mobile */
  .service-middle-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
    overflow: hidden;
  }

  /* Top-middle text */
  .service-left-top-middle-section p {
    font-size: 1.3em;  /* responsive text */
    text-align: left;
    margin-bottom: 15px;
  }

  /* Lines (vertical + horizontal) */
  .service-right-top-middle-section,
  .service-right-bottom-middle-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
  }

  .vertical-line {
    width: 2px;
    height: 60px;  /* shorter on mobile */
    background-color: black;
  }

  .horizontal-line {
    height: 2px;
    width: 140px;   /* responsive width */
    background-color: black;
  }

  .new-hori {
    width: 240px;  /* for bottom line on mobile */
  }

  /* Middle image */
  .service-middle-middle-section {
    margin: 20px 0;
  }

  .service-middle-img-top-middle-section {
    width: 80vw;    /* scale image to screen */
    height: auto;
    max-height: 250px;
    border-radius: 7px;
    overflow: hidden;
  }

  /* Bottom-middle text */
  .service-last-bottom-middle-section{
    margin-top: 30px;
  }

  .service-left-bottom-middle-section p {
    font-size: 1.3em;
    text-align: right;
  }

  /* Last bottom section */
  .service-last-bottom-middle-section p {
    font-size: 1.6em;
    padding: 140px 40px;
    text-align: center;
    line-height:27px;
    width: 100%;
  }
  
  .service-last-bottom-middle-section p::after {
    content: '';
    position: absolute;
    top: 25vh;
    left: 0px;
    width: 85%;
    height: 2px;
    background-color: #ff0c00;
  }

  .service-section {
    padding: 20px 0px;
  }

  .heading-service-section h4 {
    font-size: 1.9em;
    text-align: justify;
    word-break: break-word;
    margin-top: 15px;
    margin-bottom: -25px;
  }

  .all-services-service-section {
    flex-direction: column; /* stack vertically */
    gap: 25px;
  }

  .services-box {
    width: 100%;   /* full width */
  }

  .services-box p{
    font-size: 1em;
    /* font-weight: 800; */
  }

  .services-box h5 {
    font-size: 1.2em;
    font-weight: 600;
  }

  .services-box .text-delti {
    font-size: 0.89em;
    line-height: 1.5;
    width: 100%;
  }

  .btn-know-more{
    font-size: 1.3em;
  }
  
  .num-services-box {
    position: relative;
    left: 85vw;
    color: #a39b91;
  }

  /* SERVICE PAGE CSS MOBILE VERSION END HERE */


  
}

/* Tablet Version */

@media (min-width: 479px) and (max-width: 767px) {

  /* COMMAN CODE FOR ALL PAGE */

  .container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 20px;
    background-color: #fff7ec;
    overflow-x: hidden;
  }
  
  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .container-load,
  .footer-section,
  .menu-section {
    max-width: 100vw;
    box-sizing: border-box;
    /* ensures padding doesn't break width */
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Container Load */
  .container-load {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Loading Animation */
  .load-ani {
    width: 80vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Loading Text */
  .text-load-ani p {
    font-size: 6vw;
    /* scale smaller than mobile */
    line-height: 1.2;
    color: #000813;
  }

  /* MENU SECTION CSS START HERE */

  .menu-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 1000;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background: transparent;
  }

  .menu-right-section {
    padding-top: 20px;
  }

  .menu-top-right-section {
    margin-left: 30px;
    padding-left: 3px;
    background-color: #000813;
    border-radius: 1.7px;
    cursor: pointer;
    font-size: 0.89em;
  }

  .menu-bottom-right-section {
    display: inline-block;
    margin-top: 10px;
    padding-left: 3px;
    background-color: #000813;
    border-radius: 1.7px;
    cursor: pointer;
    font-size: 0.89em;
  }

  .menu-left-section {
    margin-top: -20px;
    cursor: pointer;
    flex-direction: row-reverse;
  }

  .menu-left-section p {
    font-size: 1.1em;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }

  .option-menu-left-section {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding-right: 25px;
    align-items: left;
    padding-left: 5px;

  }

  .all-option-menu-left-section {
    display: none;
    position: absolute;
    overflow: hidden;
    z-index: 1000;
    top: -9px;
    right: 45px;
  }

  .option-menu-left-section a {
    font-size: 1.1em;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-top: 1px;
  }

  /* work */

  .option-menu-left-section .work::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 61%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* about */

  .option-menu-left-section .about::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 74%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* services */

  .option-menu-left-section .services::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 99%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* contact */

  .option-menu-left-section .contact::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* faq */

  .option-menu-left-section .faq::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 48%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  .option-menu-left-section .faq:hover::after {
    width: 0;
  }

  /* MENU SECTION CSS END HERE */

  /* FOTTER SECTION CSS START HERE */

  .footer-section {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
  }

  /* Top footer text */
  .top-footer-section .compony-name-top-footer-section h3 {
    font-size: 18vw;
    padding-top: 4vh;
    padding-bottom: 0;
    text-align: center;
    align-items: center;
  }

  /* Middle footer box */
  .middle-footer-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .left-middle-footer-section,
  .right-middle-footer-section {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-right: 0px;
  }

  .right-middle-footer-section {
    display: flex;
    justify-content: unset;
    align-items: left;
    text-align: left;
    gap: 60px;
    margin-right: 0px;
    margin-top: 25px;
  }

  .left-middle-footer-section {
    background-color: #ff0c00;
    width: 100%;
    border-radius: 5px;
    padding-top: 15px;
    padding-left: 15px;
    margin-left: 0px;
    margin-top: 5vh;
    padding-bottom: 10px;
    padding-right: 15px;
  }

  .left-middle-footer-section a,
  .right-middle-footer-section a {
    width: 100%;
    text-align: left;
    font-size: 4.5vw;
    padding: 10px 0;
  }

  .left-right-middle-footer-section p {
    color: #fff7ec;
    font-size: 0.4em !important;
    line-height: 1.8em;
    margin: 0;
    /* background-color: rgb(97, 207, 24); */
    cursor: pointer;
  }

  .right-right-middle-footer-section p {
    color: #fff7ec;
    font-size: 0.4em !important;
    line-height: 1.8em;
    margin: 0;
    /* background-color: rgb(97, 207, 24); */
    cursor: pointer;
  }

  .top-left-middle-footer-section p {
    font-size: 0.95em;
    padding-right: 30px;
    padding-bottom: 30px;
    width: 80%;
    line-height: 1.3em;
    text-align: left;
  }

  .right-text-bottom-top-left-middle-footer-section p {
    font-size: 0.45em;
  }

  /* Bottom footer line & copyright */
  .bottom-footer-section {
    /* flex-direction: column; */
    align-items: center;
    gap: 30px;
    /* padding:5px; */
  }

  .left-bottom-footer-section,
  .middle-bottom-footer-section,
  .right-bottom-footer-section {
    width: 100%;
    text-align: left;
  }

  .last-footer-section p {
    font-size: 2vw;
    text-align: left;
    margin-top: -15px;
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .copyright {
    color: #fff7ec;
    font-size: 6.5vw;
    padding-left: 0px;
    padding-right: 0vw;
  }

  .right-bottom-footer-section p {
    color: #fff7ec;
    font-size: 5vw;
    padding-right: 0px;
    padding-left: 0vw;
  }

  .middle-bottom-footer-section hr {
    margin: 0 auto;
    border: 1px solid #fff7ec;
    width: 60vw;
    margin-left: -60px;
  }

  .left-text-bottom-top-left-middle-footer-section {
    background-color: #000813;
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 3px;
  }

  .middle-arrow {
    color: #fff7ec;
    font-size: 0.79em;
  }

  /* FOTTER SECTION CSS END HERE */

  /* WORK PAGE TABLATE VERSION CSS START HEARE */


  /* TOP SECTION */

  .top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    padding-top: 150px;
    padding-bottom: 40px;
    width: 100%;
  }

  .top-left-top-section {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    position: static;
    /* reset pinning */
  }

  .top-left-top-section p {
    font-size: 0.8em;
  }

  .bottom-left-top-section {
    flex-direction: column;
  }

  .left-bottom-left-top-section {
    width: 100%;
    margin: 0 auto 20px auto;
    text-align: left;
    position: static;
    /* reset pinning */
  }

  .left-bottom-left-top-section h3 {
    font-size: 1.6em;
    margin: 0;
    line-height: 1.2em;
    padding-bottom: 5px;
  }

  .padding-inline-class {
    padding-inline: 15px;
  }

  .right-bottom-left-top-section {
    width: 100%;
    position: static;
    /* reset pinned image */
    margin: 0 auto;
    text-align: center;
  }

  .img-right-bottom-left-top-section {
    width: 100%;
    height: auto;
    margin: 20px 0;
    position: static;
  }

  .img-right-bottom-left-top-section {
    margin-top: 30px;
    /* background-color: #ff0c00; */
    border-radius: 4px;
  }

  .img-right-bottom-left-top-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .alkin-school-img {
    height: 460px;
    width: 100%;
  }

  .alkin-school-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .alarm-clock-img {
    height: 460px;
  }

  .marreto-img {
    height: 460px;
  }

  .title-right-bottom-left-top-section {
    width: 100%;
    position: static;
    /* no overlap */
    text-align: left;
    margin-top: 10px;
  }

  .title-right-bottom-left-top-section h5 {
    margin-top: -15px;
    font-size: 1.4em;
    font-weight: 600;
    word-spacing: 0.001em;
  }

  /* WARK PAGES TABLET VERSION RESPONSIVE CSS END HERE */

  /* ABOUT US PAGES TABLET VERSION RESPONSIVE CSS START HERE */

  /* Top section */

  .about-top-section {
    display: flex;
    flex-direction: row;
    justify-content: center;  
    align-items: center;      
    height: 100dvh;          
    text-align: center;
    overflow: hidden;
  }

  /* Left Side Image */
  .about-left-top-section {
    width: 50%;
    height: 100%; 
    /* max-width: 330px; */
  }

  .about-img-left-top-section {
    width: 300px;
    height: 220px;
    /* max-width: 360px; */
    border-radius: 8px;
    /* overflow: hidden; */
    margin-top: 80px;
  }

  .about-img-left-top-section img {
    width: 40vw;
    height: 100%;
    object-fit: cover;
  }

  /* Company Name */
  .about-name-left-top-section {
    margin-top: -10px;
    text-align: left;
  }

  .about-name-left-top-section h3 {
    font-size: 7vw;
    color: #000;
    font-weight: 600;
  }

  /* Right Side (Intro Text) */
  .about-right-top-section {
    width: 100%;
    padding: 10px 5px;
    margin-top: 60vh;
    text-align: justify;
    word-break: break-word;
    font-size: 2.8vw;
    line-height: 1.5em;
  }

  /* Vision & Mission Section */
  .vision-mission-section {
    padding: 40px 5px;
    border-top: 1px solid black;
  }

  .top-vision-mission-section {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .left-top-vision-mission-section h4 {
    font-size: 2.3em;
    font-weight: 500;
    margin-top: 0;
    text-align: center;
    width: 100%;
  }

  .right-top-vision-mission-section {
    width: 100%;
  }

  .vision-text-right-top-vision-mission-section h5,
  .mission-text-right-top-vision-misssion-section h5 {
    font-size: 1.4em;
    font-weight: 600;
    padding-bottom: 5px;
    text-align: left;
  }

  .vision-text-right-top-vision-mission-section p,
  .mission-text-right-top-vision-misssion-section p {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
    word-break: break-word;
    padding-bottom: 15px;
  }

  /* Image & Work Button */
  .bottom-vision-mission-section {
    width: 100%;
    background-color: #ff0c00;
    border-radius: 7px;
    padding: 17px 17px;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
  }

  .top-bottom-vision-mission-section {
    width: 100%;
    height: auto;
  }

  .img-top-bottom-vision-mission-section img {
    width: 100%;
    height: auto;
    border-radius: 7px;
  }

  .text-bottom-bottom-vision-mission-section h5 {
    font-size: 1.8em;
    width: 80%;
    line-height: 1.3em;
    padding: 20px 0;
    text-align: left;
    word-break: break-word;
    font-weight: 400;
    padding-top: 20px;
  }

  .about-work-btn-bottom-bottom-vision-mission-section {
    padding-bottom: 20px;
    display: flex;
    justify-content: left;
  }

  .about-btn-box-bottom-service-section {
    width: 200px;
    font-size: 1em;
  }

  /* Company line section */

  .company-lines-section {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }

  .company-lines-section h5 {
    font-size: 1.5em;        
    font-weight: 600;
    line-height: 1.5em;
    padding: 0 20px;
    text-align: center;
    width: 100%;
  }

  /* QNA SECTION */

  .qna-section {
    padding-top: 200px;
    padding-bottom: 30px;
  }

  /* Top QNA intro text */
  .top-qna-section {
    justify-content: flex-start;
    align-items: left;
    text-align: left;
  }

  .top-qna-section p {
    font-size: 1.5em;
    width: 80%;
    text-align: left;
    line-height: 1.5em;
    padding-bottom: 200px;
  }

  /* Question boxes */
  .bottom-qna-section {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .about-question {
    width: 100%;
    padding: 20px;
    border-radius: 4px;
  }

  .about-qus h5 {
    font-size: 1.3em;
    font-weight: 400;
    color: #000813;
  }

  .about-qus i {
    font-size: 1em;
    margin-top: 0;
  }

  .about-ans {
    font-size: 1em;
    color: #000813;
    line-height: 1.5em;
    padding-top: 10px;
  }

  /* big image section */

  .img-section-about-page {
    padding-top:140px;
    padding-bottom: 30px;
  }

  .big-img-section-about-page {
    width: 100%;
    height: 600px; /* Slightly smaller height for phones */
    overflow: hidden;
    position: relative;
  }

  .big-img-section-about-page img {
    width: 120%;       /* Zoom the image 20% */
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2); /* subtle zoom effect */
    transition: transform 0.5s ease; /* smooth appearance */
  }

  /* Optional: add a subtle hover zoom effect */
  .big-img-section-about-page:hover img {
    transform: scale(1.2);
  }
  /* company histry section */
  .company-history-section {
    flex-direction: column;
    gap: 25px;
    padding: 0px 10px;
    padding-bottom: 50px;
  }

  .name-company-history-section h4 {
    font-size: 7vw; /* smaller heading */
    width: 100%;
    margin-top: 0;
    padding-bottom: 5px;
  }

  .full-detlise-company-history-section p {
    font-size: 3vw; /* smaller paragraph */
    line-height: 1.6em;
    text-align: justify;
    word-break: break-word;
    padding-bottom: 20px;
  }

  /* read now button */

  .full-detlise-company-history-section p {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
    color: #000813;
    max-height: 170px;
    /* initially short */
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .full-detlise-company-history-section p.expanded {
    max-height: 1000px;
    /* expand smoothly */
  }

  #readMoreBtn {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #ff0c00;
    font-weight: 600;
    cursor: pointer;
    font-size: 1em;
  }

  /* ABOUT US PAGES TABLET VERSION RESPONSIVE CSS END HERE */

  /* CONTACT PAGE TABLET VERSION RESPONSIVE CSS START HERE */

   /* contact from section */

  .contact-top-section {
    padding-top: 25vw;
    padding-bottom: 20px;
  }

  .heading-contact-top-section h5 {
    font-size: 6vw;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .heading-contact-top-section p {
    font-size: 4vw;
    margin-top: -150px;
    text-align: center;
  }

  .left-form-contact-top-section {
    font-size: 2.5vw;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }

  .right-form-contact-top-section {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  input,
  textarea,
  .frist-right-form-contact-top-section,
  .thrid-right-form-contact-top-section {
    width: 90vw;
    font-size: 2.5vw;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 2.5vw;
  }

  .bottom-service-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 40vw;
  }

  .btn-box-bottom-service-section {
    width: 8em;
  }

  .left-btn-box-bottom-service-section p {
    font-size: 0.75em;
  }

  .form-information-section {
    font-size: 0.8em;
    margin-top: -20px;
    text-align: center;
  }

  /* bottom line section */

  /* Hide desktop version on mobile */
  .bottom-lines-section,
  .contact-detiles-section {
    display: none;
  }

  /* Mobile bottom contact section */
  .mobile-bottom-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align everything to the left */
    gap: 15px;
    padding: 20px 0%;
  }

  .mobile-bottom-contact-section .line {
    width: 100%;
    /* Full width line */
    height: 1px;
    background-color: #000813;
  }

  .mobile-bottom-contact-section .left-contact-detiles-section,
  .mobile-bottom-contact-section .right-contact-detiles-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text to the left */
    gap: 5px;
    padding-bottom: 25px;
    padding-top: 20px;
  }

  .mobile-bottom-contact-section p {
    font-size: 3.3vw;
    text-align: left;
    /* Text aligned left */
    margin: 0;
    cursor: pointer;
    font-weight: 500;
  }

   /* Bottom image section */
  .img-container{
    padding-inline: 20px;
  }


  .bottom-section {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    height: 70vw;
    /* give a fixed relative height */
    position: relative;
    padding-top:0px;
    padding-bottom: 0px;
    
  }

  .img-bottom-section {
    width: 100%;
    height: 100%;
    /* fill the parent container */
    overflow: hidden;
  }

  .img-bottom-section img {
    width: 100%;
    height: 100%;
    /* fill the container */
    object-fit: cover;
    border-radius: 5px;
  }

  /* Text Bottom Section */
  .contact-text-bottom-section {
    display: flex !important;
    /* flex-direction: column; */
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid black;
    width: 100%;
    margin-left: 0vw;
    padding-top: 5px;
    padding-bottom: 30px;
  }

  .contact-text-bottom-section .contact-left-text-bottom-section,
  .contact-text-bottom-section .contact-right-text-bottom-section {
    width: 100%;
    text-align: left;
    margin-top: 0px;
    /* force left alignment */
  }

  .contact-text-bottom-section .contact-left-text-bottom-section p {
    font-size: 2vw;
    padding-top: 10px;
    margin: 0;
  }

  .contact-text-bottom-section .contact-right-text-bottom-section {
    width: 100%;
  }

  .contact-text-bottom-section .contact-right-text-bottom-section h5 {
    font-size: 3vw;
    margin: 10px 0 0 0;
    text-align: left;
    line-height: 1.1;
    font-weight: 600;
    margin-left: 35px;
  }

  /* Optional divider line between left and right text */
  .contact-text-bottom-section .divider {
    width: 100%;
    height: 1px;
    background-color: #000813;
    margin: 10px 0;
  }

  /* CONTACT PAGE TABLET VERSION RESPONSIVE CSS END HERE */

  /* FAQ PAGE TABLET VERSION RESPONSIVE CSS END HERE */

  .faq-section {
    margin-top: 130px;
    padding: 0 5px;
    /* add breathing room */
  }

  .heading-faq-section h5 {
    font-size: 2em;
    /* readable on small screens */
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .all-questions-answers-faq-section {
    align-items: center;
    /* center questions */
  }

  .question {
    width: 100%;
    /* take full width */
    padding: 15px;
    /* tighter padding for phones */
    font-size: 0.95em;
  }

  .qus h5 {
    font-size: 1em;
  }

  .qus i {
    font-size: 1em;
    margin-top: -20px;
  }

  .ans {
    font-size: 0.9em;
    line-height: 1.4em;
  }

  /* bottom-section */

  .faq-bottom-section {
    padding: 20px 5px;
  }

  .img-bottom-section {
    height: 350px;
    /* smaller height for mobile */
    border-radius: 5px;
  }

  .text-bottom-section {
    width: 100%;
    /* full width text */
    margin: 20px 0 0 0;
    /* stack below image */
    padding: 15px;
    border-top: 1px solid black;
    text-align: center;
  }

  .text-bottom-section p {
    padding-left: 0;
    /* remove large offset */
    font-size: 0.9em;
    line-height: 1.4em;
  }

  /* FAQ PAGE TABLET VERSION RESPONSVE CSS END HERE */

  /* SERVICE PAGE TABLET VERSION RESPONSVE CSS START HERE */

  
  /* --- Top Section (Hero) --- */
  .service-top-section {
    height: auto; 
    min-height: 100vh;
  }

  .information-top-section {
    position: absolute;  
    top: 50%;           
    left: 50%;           
    transform: translate(-50%, -50%);
    width: 60%;          
    /* max-width: 400px;     */
    padding: 20px;       
    border-radius: 7px;
    text-align: left;  
  }

  .service-infromation-top {
    margin-left: 0;
    font-size: 1em;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .service-infromation-bottom {
    font-size: 2.1em;
    line-height: 1em;
    text-align: center;
    padding-bottom: 30px;
  }

  .service-image-top-section {
    background-position: center;
    background-size: cover;
    min-height: 100vh;
  }

  /* Middle Section - Mobile */
  .service-middle-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
    overflow: hidden;
  }

  /* Top-middle text */
  .service-left-top-middle-section p {
    font-size: 1.4em;  /* responsive text */
    text-align: left;
    margin-bottom: 20px;
    padding-right: 100px;
  }

  /* Lines (vertical + horizontal) */
  .service-right-top-middle-section,
  .service-right-bottom-middle-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
  }

  .vertical-line {
    width: 2px;
    height: 60px;  /* shorter on mobile */
    background-color: black;
  }

  .horizontal-line {
    height: 2px;
    width: 200px;   /* responsive width */
    background-color: black;
  }

  .new-hori {
    width: 260px;  /* for bottom line on mobile */
  }

  /* Middle image */
  .service-middle-middle-section {
    margin: 20px 0;
  }

  .service-middle-img-top-middle-section {
    width: 65vw;    /* scale image to screen */
    height: auto;
    max-height: 300px;
    border-radius: 7px;
    overflow: hidden;
    padding-bottom: 20px;
  }

  /* Bottom-middle text */
  .service-last-bottom-middle-section{
    margin-top: 30px;
  }

  .service-left-bottom-middle-section p {
    font-size: 1.4em;
    text-align: right;
    padding-left: 80px;
  }

  /* Last bottom section */
  .service-last-bottom-middle-section{
    margin-top: 50px;
  }
  .service-last-bottom-middle-section p {
    font-size: 1.9em;
    padding: 140px 40px;
    text-align: center;
    line-height:37px;
    width: 80%;
  }

  .service-section {
    padding: 20px 0px;
    padding-bottom: 40px;
  }

  .num-services-box{
    display: none;
  }

  .heading-service-section h4 {
    font-size: 2.7em;
    text-align: justify;
    word-break: break-word;
    margin-top: 15px;
    margin-bottom: -25px;
  }

  .all-services-service-section {
    flex-direction: column; /* stack vertically */
    gap: 25px;
  }

  .services-box {
    width: 100%;   /* full width */
  }

  .services-box p{
    font-size: 1.1em;
    /* font-weight: 800; */
  }

  .services-box h5 {
    font-size: 1.5em;
    font-weight: 600;
    padding-top:20px;
  }

  .services-box .text-delti {
    font-size: 0.95em;
    line-height: 1.5;
    width: 100%;
  }

  .btn-know-more{
    font-size: 1.3em;
  }

  .last-bottom-middle-section p::after {
    content: '';
    position: absolute;
    top: 244px;
    left: 0px;
    width: 83%;
    height: 2px;
    background-color: #ff0c00;
  }

  /* SERVICE PAGE TABLET VERSION RESPONSVE CSS END HERE */

}

/* LAPTOP VERSION  */


@media (min-width: 768px) and (max-width: 991px) {

  /* COMMAN CODE FOR ALL PAGES */

  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
  }

  .container, .container-load, .footer-section, .menu-section {
    max-width: 100vw;
    box-sizing: border-box; /* ensures padding doesn't break width */
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* loding */

  .container-load {
    width: 100vw; 
    height: 100vh;
  }

  .load-ani {
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* MENU SECTION START HERE */

   .menu-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 1000;
    padding: 0 25px;
    display: flex;
    align-items: center;
    background: transparent;
  }

  .menu-right-section {
    padding-top: 20px;
  }


  .menu-top-right-section {
    margin-left: 30px;
    padding-left: 3px;
    background-color: #000813;
    border-radius: 1.7px;
    cursor: pointer;
    font-size: 0.89em;
  }

  .menu-bottom-right-section {
    display: inline-block;
    margin-top: 10px;
    padding-left: 3px;
    background-color: #000813;
    border-radius: 1.7px;
    cursor: pointer;
    font-size: 0.89em;
  }

  .menu-left-section {
    margin-top: -20px;
    cursor: pointer;
    flex-direction: row-reverse;
  }

  .menu-left-section p {
    font-size: 1.1em;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }

  .option-menu-left-section {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding-right: 25px;
    align-items: left;
    padding-left: 5px;

  }

  .all-option-menu-left-section {
    display: none;
    position: absolute;
    overflow: hidden;
    z-index: 1000;
    top: -9px;
    right: 45px;
  }

  .option-menu-left-section a {
    font-size: 1.1em;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-top: 1px;
  }

  /* work */

  .option-menu-left-section .work::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 61%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* about */

  .option-menu-left-section .about::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 74%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* services */

  .option-menu-left-section .services::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 99%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* contact */

  .option-menu-left-section .contact::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  /* faq */

  .option-menu-left-section .faq::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 48%;
    height: 0.6px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  .option-menu-left-section .faq:hover::after {
    width: 0;
  }

  /* MENU SECTION END HERE */

  /* FOTTER SECTION START HERE */

   .footer-section {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
  }

  /* Top footer text */
  .top-footer-section .compony-name-top-footer-section h3 {
    font-size: 18vw;
    padding-top: 4vh;
    padding-bottom: 0;
    text-align: center;
    align-items: center;
  }

  /* Middle footer box */
  .middle-footer-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .left-middle-footer-section,
  .right-middle-footer-section {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-right: 0px;
  }

  .right-middle-footer-section {
    display: flex;
    justify-content: unset;
    align-items: left;
    text-align: left;
    gap: 60px;
    margin-right: 0px;
    margin-top: 25px;
  }

  .left-middle-footer-section {
    background-color: #ff0c00;
    width: 100%;
    border-radius: 5px;
    padding-top: 15px;
    padding-left: 15px;
    margin-left: 0px;
    margin-top: 5vh;
    padding-bottom: 10px;
    padding-right: 15px;
  }

  .left-middle-footer-section a,
  .right-middle-footer-section a {
    width: 100%;
    text-align: left;
    font-size: 4.5vw;
    padding: 10px 0;
  }

  .left-right-middle-footer-section p {
    color: #fff7ec;
    font-size: 0.4em !important;
    line-height: 1.8em;
    margin: 0;
    /* background-color: rgb(97, 207, 24); */
    cursor: pointer;
  }

  .right-right-middle-footer-section p {
    color: #fff7ec;
    font-size: 0.4em !important;
    line-height: 1.8em;
    margin: 0;
    /* background-color: rgb(97, 207, 24); */
    cursor: pointer;
  }

  .top-left-middle-footer-section p {
    font-size: 0.95em;
    padding-right: 30px;
    padding-bottom: 30px;
    width: 80%;
    line-height: 1.3em;
    text-align: left;
  }

  .right-text-bottom-top-left-middle-footer-section p {
    font-size: 0.45em;
  }

  /* Bottom footer line & copyright */
  .bottom-footer-section {
    /* flex-direction: column; */
    align-items: center;
    gap: 30px;
    /* padding:5px; */
  }

  .left-bottom-footer-section,
  .middle-bottom-footer-section,
  .right-bottom-footer-section {
    width: 100%;
    text-align: left;
  }

  .last-footer-section p {
    font-size: 2vw;
    text-align: left;
    margin-top: -15px;
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .copyright {
    color: #fff7ec;
    font-size: 6.5vw;
    padding-left: 0px;
    padding-right: 0vw;
  }

  .right-bottom-footer-section p {
    color: #fff7ec;
    font-size: 5vw;
    padding-right: 0px;
    padding-left: 0vw;
  }

  .middle-bottom-footer-section hr {
    margin: 0 auto;
    border: 1px solid #fff7ec;
    width: 60vw;
    margin-left: -60px;
  }

  .left-text-bottom-top-left-middle-footer-section {
    background-color: #000813;
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 3px;
  }

  .middle-arrow {
    color: #fff7ec;
    font-size: 0.79em;
  }

  /* FOTTER SECTION END HERE */


  /* WORK PAGE LAPTOP VERSION RESPONSIVE START HEARE */

  /* TOP SECTION */

  .top-section {
    flex-direction: column;
    align-items: center;
    padding: 0px;
    padding-top: 190px;
    padding-bottom: 40px;
    width: 100%!important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .top-left-top-section {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    position: static;
    /* reset pinning */
  }

  .top-left-top-section p {
    font-size: 0.9em;
  }

  .bottom-left-top-section {
    flex-direction: column;
  }

  .left-bottom-left-top-section {
    width: 100%;
    margin: 0 auto 20px auto;
    text-align: left;
    position: static;
    /* reset pinning */
  }

  .left-bottom-left-top-section h3 {
    font-size: 1.9em;
    margin: 0;
    line-height: 1.2em;
    padding-bottom: 10px;
  }

  .padding-inline-class {
    padding-inline: 15px;
  }

  .right-bottom-left-top-section {
    width: 100%;
    position: static;
    /* reset pinned image */
    margin: 0 auto;
    text-align: center;
  }

  .img-right-bottom-left-top-section {
    width: 100%;
    height: auto;
    margin: 20px 0;
    position: static;
  }

  .img-right-bottom-left-top-section {
    margin-top: 30px;
    /* background-color: #ff0c00; */
    border-radius: 4px;
  }

  .img-right-bottom-left-top-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .alkin-school-img {
    height: 570px;
    width: 100%;
  }

  .alkin-school-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .alarm-clock-img {
    height: 570px;
  }

  .marreto-img {
    height: 570px;
  }

  .title-right-bottom-left-top-section {
    width: 100%;
    position: static;
    /* no overlap */
    text-align: left;
    margin-top: 10px;
  }

  .title-right-bottom-left-top-section h5 {
    margin-top: -15px;
    font-size: 1.8em;
    font-weight: 600;
    word-spacing: 0.001em;
  }

  /* WORK PAGE LAPTOP VERSION RESPONSIVE END HEARE */

  /* ABOUT US PAGE CSS LAPTOP VERSION RESPONSIVE START HEARE */

  /* VISION-MISSION-SECTION */

  .vision-mission-section{
    border-top: 1px solid black;
    padding-top:50px;
    padding-bottom:50px;
  }

  .left-top-vision-mission-section h4{
    font-size: 4.5vw;
    font-weight: 400;
    word-spacing: -5px;
    margin-top: -157px;
  }

  .top-vision-mission-section{
    gap:30px;
  }

  .right-top-vision-mission-section{
    width: 50%;
  }

  .vision-text-right-top-vision-mission-section h5{
    font-size: 1.9vw;
  }

  .vision-text-right-top-vision-mission-section p{
    font-size: 1.6vw;
    padding-bottom: 20px;
    text-align: justify;
  }

  .mission-text-right-top-vision-misssion-section h5{
    font-size: 1.9vw;
  }

  .mission-text-right-top-vision-misssion-section p{
    font-size: 1.6vw;
    padding-bottom: 30px;
    text-align: justify;
  }

  /* Image & Work Button */
  .bottom-vision-mission-section {
    width: 100%;
    background-color: #ff0c00;
    border-radius: 7px;
    padding: 17px 17px;
    text-align: center;
    padding-left: 25px;
    padding-top: 20px;
    margin-top: 30px;
  }

  .top-bottom-vision-mission-section {
    width: 100%;
    height: auto;
  }

  .img-top-bottom-vision-mission-section img {
    width: 100%;
    height: auto;
    border-radius: 7px;
  }

  .text-bottom-bottom-vision-mission-section h5 {
    font-size: 1.8em;
    width: 60%;
    line-height: 1.3em;
    padding: 25px 15px;
    text-align: left;
    word-break: break-word;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-work-btn-bottom-bottom-vision-mission-section {
    padding-bottom: 20px;
    display: flex;
    justify-content: left;
  }

  .about-btn-box-bottom-service-section {
    width: 200px;
    font-size: 1em;
  }

  /* Company line section */

  .company-lines-section {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }

  .company-lines-section h5 {
    font-size: 1.7em;        
    font-weight: 600;
    line-height: 1.5em;
    padding: 0 20px;
    text-align: center;
    width: 100%;
  }

  /* QNA SECTION */

  .top-qna-section p {
    font-size: 1.3em;
    width: 70%;
    text-align: justify;
    word-break: break-word;
    line-height: 1.5em;
    padding-bottom: 200px;
  }

  /* big image section */

  .img-section-about-page{
    padding-top: 150px;
    padding-bottom: 40px;
  }

  .big-img-section-about-page{
    background-color: aqua;
    width: 100%;
    height: 110vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .big-img-section-about-page img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .bottom-qna-section {
    overflow: hidden;
  }


  /* COMPANY-HISTORY-SECTION */

  /* company histry section */
  .company-history-section {
    flex-direction: column;
    gap: 25px;
    padding: 0px 10px;
    padding-bottom: 50px;
  }

  .name-company-history-section h4 {
    font-size: 5vw; /* smaller heading */
    width: 100%;
    margin-top: 0;
    padding-bottom: 5px;
  }

  .full-detlise-company-history-section p {
    font-size: 2vw; /* smaller paragraph */
    line-height: 1.6em;
    text-align: justify;
    word-break: break-word;
    padding-bottom: 30px;
  }

  /* read now button */

  .full-detlise-company-history-section p {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
    color: #000813;
    max-height: 170px;
    /* initially short */
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .full-detlise-company-history-section p.expanded {
    max-height: 1000px;
    /* expand smoothly */
  }

  #readMoreBtn {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #ff0c00;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.89em;
  }

  /* ABOUT US PAGE CSS LAPTOP VERSION RESPONSIVE END HERE */

  /* CANTACT PAGE CSS LPTOP VERSION RESPONSIVE START HERE */

  .contact-top-section {
    padding-top: 20vw;
    padding-bottom: 20px;
  }

  .heading-contact-top-section h5 {
    font-size: 6vw;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .heading-contact-top-section p {
    font-size: 3vw;
    margin-top: -150px;
    text-align: center;
  }

  .left-form-contact-top-section {
    font-size: 2.5vw;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }

  .right-form-contact-top-section {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  input,
  textarea,
  .frist-right-form-contact-top-section,
  .thrid-right-form-contact-top-section {
    width: 90vw;
    font-size: 2vw;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 2vw;
  }

  .bottom-service-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 52vw;
  }

  .btn-box-bottom-service-section {
    width: 10em;
  }

  .left-btn-box-bottom-service-section p {
    font-size: 1em;
  }

  .form-information-section {
    font-size: 0.8em;
    margin-top: -20px;
    text-align: center;
  }

  .bottom-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  /* bottom line section */

  /* BOTTTOM-LINES-SECTION */

  .mobile-bottom-contact-section{
    display: none;
  }

  .bottom-lines-section{
    gap: 35px;
  }

  .lines{
    border-top: 1px solid black;
    padding-bottom: 30px;
    margin-top: 30px;
    width: 50vw;
  }

  .contact-detiles-section{
    padding-bottom: 40px;
    align-items: left;
    text-align: left;
  }

  .left-contact-detiles-section p{
    font-size: 2.2vw;
    cursor: pointer;
    position: relative;
    display: inline-block;
  }

  .left-contact-detiles-section p::after{
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  .left-contact-detiles-section p:hover::after{
    width: 0;
  }

  .right-contact-detiles-section{
    margin-right: 33.5vw;
  }

  .right-contact-detiles-section p{
    font-size: 2.2vw;
    cursor: pointer;
    position: relative;
    display: inline-block;
  }

  .right-contact-detiles-section p::after{
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000813;
    transition: width 0.3s ease;
  }

  .right-contact-detiles-section p:hover::after{
    width:0;
  }

  /* CONTACT PAGE CSS LAPTOP VERSION RESPONSIVE END HERE */

  /* FAQ PAGE CSS LAPTOP VERSION RESPONSIVE START HERE */

  .text-bottom-section {
    width: 100%;
    /* full width text */
    margin: 20px 0 0 0;
    /* stack below image */
    padding: 15px;
    border-top: 1px solid black;
    text-align: right;
  }

  .text-bottom-section p {
    padding-left: 0;
    /* remove large offset */
    font-size: 1.2em;
    line-height: 1.4em;
  }

  /* FAQ PAGE CSS LAPTOP VERSION RESPONSIVE END HERE */

  /* SERVICE PAGE CSS LAPTOP VERSIVE RESPONSIVE START HERE */

  
  /* --- Top Section (Hero) --- */
  .service-top-section {
    height: auto; 
    min-height: 100vh;
  }

  .information-top-section {
    position: absolute;  
    top: 70%;           
    left: 50%;           
    transform: translate(-50%, -50%);
    width: 80%;          
    /* max-width: 400px;     */
    padding: 20px;       
    border-radius: 7px;
    text-align: left;  
  }

  .service-infromation-top {
    margin-left: 0;
    font-size: 2vw;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .service-infromation-bottom {
    font-size: 5vw;
    line-height: 1em;
    text-align: center;
    padding-bottom: 30px;
  }

  .service-image-top-section {
    background-position: center;
    background-size: cover;
    min-height: 100vh;
  }

  /* Middle Section - Mobile */
  .service-middle-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
    overflow: hidden;
  }

  /* Top-middle text */
  .service-left-top-middle-section p {
    font-size: 3vw;  /* responsive text */
    text-align: left;
    margin-bottom: 20px;
    padding-right: 140px;
  }

  /* Lines (vertical + horizontal) */
  .service-right-top-middle-section,
  .service-right-bottom-middle-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
  }

  .vertical-line {
    width: 2px;
    height: 60px;  /* shorter on mobile */
    background-color: black;
  }

  .horizontal-line {
    height: 2px;
    width: 280px;   /* responsive width */
    background-color: black;
  }

  .new-hori {
    width: 360px;  /* for bottom line on mobile */
  }

  /* Middle image */
  .service-middle-middle-section {
    margin: 20px 0;
  }

  .service-middle-img-top-middle-section {
    width: 60vw;    /* scale image to screen */
    height: auto;
    max-height: 380px;
    border-radius: 7px;
    overflow: hidden;
    padding-bottom: 20px;
  }

  /* Bottom-middle text */
  .service-last-bottom-middle-section{
    margin-top: 30px;
    padding: 60px;
  }

  .service-left-bottom-middle-section p {
    font-size: 3vw;
    text-align: right;
    padding-left: 160px;
  }

  /* Last bottom section */
  .service-last-bottom-middle-section{
    margin-top: 50px;
  }
  .service-last-bottom-middle-section p {
    font-size: 2.3em;
    padding: 140px 40px;
    text-align: center;
    line-height:37px;
    width: 80%;
  }

  /* service section */
  .service-section{
    padding-top: 20px;
  }
  
  .all-services-service-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: stretch; 
  }

  .services-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%; 
    box-sizing: border-box;
  }

  /* Optional: ensure text doesn't overflow */
  .services-box .text-delti {
    flex-grow: 1;
  }
  .services-box p{
    font-size: 1em;
    /* font-weight: 800; */
  }

  .services-box h5 {
    font-size: 1.1em;
    font-weight: 600;
    padding-top:20px;
  }

  .services-box .text-delti {
    font-size: 0.9em;
    line-height: 1.5;
    width: 100%;
  }

  .btn-know-more{
    font-size: 1.3em;
  }

  .num-services-box{
    display: none;
  }

  /* SERVICE PAGE CSS LAPTOP VERSIVE RESPONSIVE END HERE */

}