@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Poiret+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --text-color: #000;
  --primary: #0A615C;
  --secondary: #fff;
  --hover-color: #FAB131;
}

/*---------------------------------- MOBILE-FIRST DESIGN APPROACH --------------------------------------*/
/** {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}*/

 *, *::after, *::before{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html, body {
	font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

.logo {
  width: 120px;
  height: 50px;
  padding: 0;
}

.container {
  padding: 5%;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sub-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/*------------------- top-section and hero-section area (with background image) ------------------------*/
#header {
	width: 100vw;
	height: 95vh;
  background-size: cover;
  background-repeat: no-repeat;
	background-position: center;
	background-attachment: scroll;
	position: relative;
}

/*-------------- text description section for hero-section -----------------*/
.header-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin: 0;
  text-align: left;
  width: 400px;
  padding: 6% 0 0 0;
  z-index: 6;
}

.header-text .header-title {
  height: auto;
  color: #fff; 
  font-size: 2.8rem; 
  width: 100%; 
  line-height: 50px;
  padding: 0;
  margin-bottom: 10px;
  z-index: 9;
}

.header-text .header-title:hover {
  -webkit-text-stroke: 2px #fff;
  color:transparent;
}

.header-text p {
  line-height: 25px;
  color: #fff;
  width: 350px;
  font-size: .8rem;
  margin-bottom: 20px;
}

.header-btn {
  display: flex;
  flex-direction: column;
  top: 70%;
  left: 0;
  gap: 20px;
  position: absolute;
  width: 100%;
  justify-content: center; 
  align-items: center;
  z-index: 10;
}

.header-btn .primary-btn {
  padding: 15px 45px;
  width: 80%;
  height: 60px;
  font-size: 1.2rem;
}

.header-btn .secondary-btn {
  padding: 15px 30px;
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 80%;
  height: 60px;
  font-size: 1.2rem;
}



/*--------------- top-bar code section for address and follow-us (hidden here on mobile and visible for laptop and large screen) ----------------------*/
.top-bar {
	display: none;
	width: 100vw;
  min-height: 30px;
  position: absolute;
  padding: 0 30px;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--secondary);
  font-size: 12px;
}

.top-bar a {
  display: block;
  font-size: 12px; /* Change the size */
  color: var(--secondary);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--hover-color);
  transform: scale(1.5);
}

 /*------------------- navbar code section for here mobile screen -----------------------------------------*/
nav {
  display: flex;
  max-height: 50px;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px 20px 0 20px;
  margin: 0;
  z-index: 100; 
  box-sizing: content-box;
  line-height: 2;
  background: var(--secondary);
  transition: all 0.75s ease-in-out;
}

nav ul li {
  list-style: none;
  display: block;
  width: 100%;
  margin: 0 180px 0 0;
  padding: 15px 0;
}

nav ul li a {
	color: var(--secondary);
	text-decoration: none;
	font-size: 14px;
	position: relative;
}

.nav-address-section {
  width: 100%;
  border-top: 1px solid var(--secondary);
  color: var(--secondary);
  margin-top: 50px;
}

.nav-address-section li {
  width: 100%;
  font-size: 12px;
  padding: 10px 0;
}

.nav-address-section a {
  display: inline-block;
  color: var(--secondary);
  margin: 0 5px;
  font-size: 14px;  
}

.nav-address-section a:hover {
  color: var(--hover-color);
  opacity: 1;
  transform: scale(1.5);
}


nav ul li a::after {
	content: '';
	width: 0;
	height: 3px;
	background: var(--hover-color);
	position: absolute;
	left: 0;
	bottom: -6px;
	transition: 0.5s;
}

nav ul li a:hover::after {
	width: 0;
}

nav .active::after {
  content: '';
  width: 100%;
  height: 3px;
  background: var(--hover-color);
  position: absolute;
  left: 0;
  bottom: -4px;
}

nav .active:hover::after {
  width: 100%;
}

.links-container {
  height: 100%;
  width: 300px;
  display: flex;
  position: fixed;
  flex-direction: column;
  text-align: left;
  padding: 10px 20px;
 	top: 0;
 	right: -100%;
  z-index: 20;
  background-color: var(--primary);
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
  transition: all 0.75s ease-in-out;
}

/*------------------- contact buttons for navbar ----------------------------------*/
.contact-btn1 {
	display: flex;
/*	justify-content: center;
	align-items: center;
	gap: 10px;
*/}

.contact-btn1 a:hover {
  /*color: var(--hover-color);*/
  opacity: 0.6;
  transform: scale(1.2);
}

.contact-btn2 {
	display: none;
	text-decoration: none;
}

/*------------------- dropdown button properties in navbar ----------------------------*/
.dropdown {
	position: relative;
  display: block;
	padding: 15px 0;
	align-items: center;
	text-decoration: none;
	color: var(--text-color);
}

.dropbtn {
  padding: 0;
  background-color: inherit;
  color: var(--secondary);
  border: none;
  outline: none;
  margin: 0;
  cursor: pointer;
  font-size: 14px;
}

.dropbtn.active {
  opacity: 0.6;
  color: #fff;
}

.dropdown-content {
  position: relative;
  min-width: 220px;
  padding: 0;
  margin: 0;
  background-color: var(--secondary);
  /*background: rgba(70, 70, 70, 1) !important;*/
   display: none;
  /*position: absolute;*/
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  width: 100%;
  color: var(--primary);
  padding: 10px 20px;
  margin: 0;
  text-decoration: none;
  display: block;
  font-size: 10px;
  border-top: 1px solid var(--primary);
  /*align-items: flex-start;*/
}

.dropdown-content a:hover {
  opacity: 0.6;
}

/*.dropdown-content a:hover::after {
  width: 0;
}*/

.dropdown:hover .dropdown-content {
  display: inline;
  float: left;
}

.dropdown .fa{
  float: none;
  padding: 0;
  margin: 0;
}

.dropdown:hover .dropbtn {
  opacity: 0.6;
}

/*----------------- sidebar checkbox icon (hidden on default) ------------------*/
#sidebar-active{
  display: none;
}

/*---------------- open and close button for sidebar menu (visible here on mobile and hidden for laptop and large screen) ----------------*/
.open-sidebar-button, .close-sidebar-button{
	padding: 5px 0;
  cursor: pointer;
  max-width: 30px;
}

.open-sidebar-button svg {
	fill: var(--primary);
}

.close-sidebar-button svg {
	padding: 0;
	fill: var(--secondary);
}

.open-sidebar-button {
  margin: 0 0 0 auto;
  margin-right: 30px;
}

#sidebar-active:checked ~ .links-container {
  right: 0;
}

#sidebar-active:checked ~ #overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

/*---------------- scroll-down functionality for navbar (css class used in javascript for here mobile screen) ------------------*/
.scrolled {
  background: var(--primary);
  transform: all 0.75s ease-in-out; 
}

.scrolled:hover {
	-webkit-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
  -moz-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
  -o-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
  box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
}

.scrolled .open-sidebar-button svg {
  fill: var(--secondary);
}


/*------------------------- our work section ----------------------------------*/
#our-work {
  /*background-image: linear-gradient(180deg, #3335, #fff5);*/
  padding: 5% 0;
}

.sub-header-text p {
  width: 90%;
  margin: 0 auto;
}

.video-container {
  max-width: 350px; /* Limits the size on large screens */
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden; /* Clips video to the border-radius */
  box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

video {
  width: 100%;
  height: 300px;
  display: block; /* Removes unwanted bottom spacing */
  object-fit: cover;
  object-position: center;
}

.work-container {
  width: 100%;
  overflow: hidden;
/*  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;*/
  margin: 20px 0;
}

.work-list {
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  margin: auto;
  padding: 20px;
}

.work {
  position: relative;
  padding: 0;
  margin: 0;
  width: 320px;
  height: 340px;
  background: #fff;
  border-radius: 25px;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.work a {
  position: absolute;
  top: 140px;
  left: 15px;
  display: none;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 15px;
} 

 .work h3 {
  position: absolute;
  top: 210px;
  left: 15px;
  color: var(--primary);
  font-size: .7rem;
  border-radius: 50px;
  padding: 5px 10px;
  background: rgba(0, 89, 129, 0.2) !important;
  text-decoration: none;
  width: auto;
  height: 25px;
} 

.work h4 {
  position: absolute;
  top: 240px;
  left: 20px;
  text-align: left;
  font-size: .8rem;
  transition: color 0.3s ease;
}

.work p {
  position: absolute;
  top: 260px;
  left: 20px;
  text-align: left;
  line-height: 15px;
  font-size: 0.7rem;
  font-weight: 400;
  width: 280px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.work:hover {
  transform: scale(1.02);
  background: #EEF6F6;
  border: 1px solid #C5F4F1;
}

.work:hover h4 {
  color: var(--primary);
}

.work:hover a {
  display: block;
}

.work img {
  width: 100%;
  height: 200px;
  border-radius: 25px 25px 0 0;
  padding: 0;
  margin: 0;
  object-position: center;
  object-fit: cover;
}

.work ul {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: space-between;
  width: 240px;
  list-style-type: none;
  font-weight: 500;
  font-size: 0.6rem;
  top: 310px;
  left: 30px;
  text-align: left;
}

/*----------------------- why-choose-us section -----------------------------*/
.why-choose-us {
  background-color: #A79478;
  padding: 20px 0;
  overflow: hidden;
}

/*.why-choose-btn {
  display: flex;
  gap: 10px;
  margin: 0 0 20px 30px;
}*/

.why-choose-us-col-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
  /*margin-top: 20px;*/
}

.why-choose-us-col-1 img {
  width: 100%;
  height: 400px;
}

.why-choose-us-col-2 {
  flex-basis: 100%;
}

.facts-section {
  display: grid;
  text-align: left;
  padding-top: 10px;
  margin: 0;
  gap: 10px;
}

.fact-card {
  position: relative;
  padding: 0;
  margin: 10px 0;
  width: 100%;
  height: 30px;
}

.fact-card i {
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  top: 5px;
}

.fact-card p {
  position: absolute;
  top: 0;
  left: 40px;
  line-height: 20px;
  font-size: 0.8rem;
  width: 90%;
  height: auto;
  overflow: hidden;
}

.fact-card p span {
  font-weight: 600;
}


/*----------------------- testimonials section ----------------------------------*/
#testimonials {
  padding: 2% 0;
  margin-bottom: 3%;
}

/*.testimonials {
	padding: 20px 0;
}
*/
.testimonial-top-section {
  padding: 0 7%;
}


/*-------------------- testimonial card ---------------------------------------------*/
@layer demo;

@layer demo {
  @supports (corner-shape: scoop) {
    .testimonial {
      border-radius: 20px;
      corner-shape: squircle;
    }

    .testimonial--featured {
      border-radius: 24px;
      corner-shape: scoop;
      box-shadow: 0 2px 8px oklch(0% 0 0 / 0.04),
        0 8px 32px oklch(40% 0.08 40 / 0.06);
    }

    .testimonial:not(.testimonial--featured):nth-child(even) {
      corner-shape: scoop round;
    }

    .testimonial__avatar {
      border-radius: 28%;
      corner-shape: squircle;
    }
  }
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
	margin: 50px 0;
}

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 2rem;
  border-radius: 16px;
  background: oklch(100% 0 0);
  box-shadow: 0 1px 4px oklch(0% 0 0 / 0.04);

  &::before {
    content: "\201C";
    position: absolute;
    inset-block-start: 0.6rem;
    inset-inline-start: 1.5rem;
    font-family: "Lora", Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: oklch(0.3721 0.072 164.2);
    line-height: 1;
  }
}

.testimonial--featured {
	--hue: 124.31;
  /*padding: 2.5rem 3rem;*/
  border: 1px solid oklch(85% 0.02 164.2);
  background: linear-gradient(
    160deg,
    oklch(98% 0.06 var(--hue)),
    oklch(96% 0.04 110)
  );
}

.testimonial__quote {
  margin: 1.5rem 0 1.5rem;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: oklch(28% 0.02 50);
  line-height: 1.7;
}

.testimonial--featured .testimonial__quote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.testimonial__author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: oklch(70% 0.25 var(--hue));
  font-size: 0.85rem;
  font-weight: 700;
  color: oklch(40% 0.12 var(--hue));
  line-height: 1;
}

.testimonial__name {
  display: flex;
  font-style: normal;
  font-size: 0.85rem;
  margin-right: auto;
  font-weight: 600;
  color: oklch(22% 0.02 50);
}

.testimonial__title {
  display: block;
  font-size: 0.72rem;
  color: oklch(55% 0.02 50);
}

/*----------------------- trusted-by clients section ----------------------------------*/
.trusted-by {
	padding: 10px 0;
	background-color: var(--secondary);
	border-top: 1px solid #ddd;
}

.trusted-by .container {
	padding: 0;
}

.trusted-by .row {
	justify-content: center;
	text-align: center;
	padding: 0 7%;
}

.trusted-by .row-1 {
	flex-basis: 100%;
}

.trusted-by .row-2 {
	flex-basis: 100%;
}

/*--------------- scroller for trusted-by clients' logo ----------------*/
.scroller {
  display: grid;
  max-width: 90vw;
  margin: 30px;
  max-height: 500px;
  overflow: hidden;
}

.scroller .scroller_inner {
  padding-block: 1rem;
  display: flex;
  gap: 4rem;
}

.scroller .scroller_inner img {
  width: 100px;
  height: 50px;
  margin: 0;
  padding: 0;
}

.scroller[data-animated="true"] {
  border: 5px solid var(--primary);
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  -moz-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  -o-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller_inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 10s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 120s;
}

@keyframes scroll{
  to{
      transform: translate(calc(-20% - 0.5rem));
  }
}


/*----------------- learn more section / sub navigation menu for about-us and our service -----------------------*/
.col-1 {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.col-2 {
  flex-basis: 100%;
}

.col-1 p {
  width: 90%;
}

.col-1 img {
  max-width: 350px;
  max-height: 350px;
  display: flex;
  justify-self: center;
  margin-top: 50px;
  border-radius: 15px;
}

.col-2 h1 {
  font-size: 1.6rem;
  padding: 20px 0 10px 0;
}

.col-2 p {
  width: 100%;
}

.col-2 ol {
  list-style: none; /* Remove default numbering */
  counter-reset: item; /* Initialize the counter */
  padding-left: 0; /* Adjust padding as needed */
}

.col-2 li {
  counter-increment: item; /* Increment the counter for each list item */
  position: relative; /* Needed for absolute positioning of the number */
  margin: 10px 0;
  padding-left: 2em; /* Space for the custom marker */
}

.col-2 li::before {
  content: counter(item); /* Display the counter value */
  position: absolute;
  left: 0;
  top: 5px;
  /* Additional styling for the number */
  background: var(--primary);
  border-radius: 50%; /* Make it a circle */
  color: white;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  line-height: 1.5em; /* Center the number vertically */
  font-weight: bold;
}

.col-2 ol li span {
  font-weight: 600;
}

.col-2 ol li p {
  font-size: .9rem;
  line-height: 25px;
}

.images {
  display: flex;
  flex-direction: column;
  /*width: 100%;*/
  height: 100%;
  /*gap: 20px;*/
  justify-content: center;
  align-items: center;
  text-align: center; 
  padding-top: 30px;
}

.images img {
  width: 350px;
  height: 300px;
  border-radius: 20px 20px 0 0;
  margin: 0;
  background-color: #DCDCDC;
  /*border: 10px solid var(--primary);*/
  transition: all 0.15s ease;
}

.desc {
  height: auto;
  width: 100%;
}

.desc h1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.desc p {
  text-align: center;
  height: 60px;
  line-height: 1.5;
  margin: 0 auto;
}

.desc p span {
  font-size: 14px;
}

/*----------------------- footer section ----------------------------------*/
.footer {
	padding: 10px 0;
	background: var(--primary);
}

#footer h2, #footer p {
	color: var(--secondary);
}

.footer-col-1 {
	flex-basis: 100%;
	margin: 10px 0;
}

.footer-col-2 {
	flex-basis: 100%;
	margin: 10px 0;
}

.footer-col-3 {
	flex-basis: 100%;
	margin: 10px 0;
}

.footer-col-4 {
	display: flex;
	gap: 10px;
	flex-basis: 100%;
	margin: 10px 0;
}

.footer-col-2 ul {
  list-style: none;
  padding: 0;
}

.footer-col-2 a {
  text-decoration: none;
  display: block; /* Makes links take full width for easier clicking */
  color: var(--secondary);
  margin: 8px 0;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-col-2 ul li:not(:last-child) {
  border-bottom: 1px dotted var(--secondary);
}

#footer p {
  line-height: 20px;
  font-size: 0.8rem;
  padding: 5px 0;
  color: var(--secondary);
}

.footer-col-4 i {
	color: var(--secondary);
	font-size: 20px;
	padding-bottom: 20px;
	text-decoration: none;
}

.footer-col-4 i:hover {
  color: #FAB131;
  transform: scale(1.2);
}

/*----------------------  copyright section  ---------------------------------*/
.copyright {
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background: var(--primary);
	font-weight: 300;
	font-size: 14px;
	border-top: 1px solid var(--secondary);
}


/* ------------------------------------BASIC STYLING FOR ITEMS ---------------------------------------*/

/*--------------------------------- main buttons ------------------------------------------------------*/
.primary-btn {
  background-color: var(--primary);
  border: none;
  border-radius: 4px;
  color: var(--secondary);
  text-align: center;
  padding: 15px 10px;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);
  cursor: pointer;
  width: 120px;
}

nav button.primary-btn {
	padding: 10px;
}

nav button.secondary-btn {
  padding: 10px;
}

.secondary-btn {
  background-color: transparent; /* Makes the background fully transparent */
  color: var(--secondary); /* Sets the text color to ensure visibility */
  cursor: pointer; /* Changes the cursor to a hand icon on hover */
  outline: none; /* Removes the border/outline that appears on focus/click */
  padding: 13px 10px; /* Optional: adds padding for a better clickable area */
  border: 1px solid var(--secondary);
  border-radius: 4px;
  width: 120px;
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);
}

.goback-btn {
  background-color: transparent;
  position: relative;
  border: none;
  color: #333;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: auto 10px;
  cursor: pointer;
  margin-left: 30px;
}

.view-details-btn {
  background-color: #E5E5E5;
  border: none;
  border-radius: 4px;
  color: #000000;
  text-align: center;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
}

.goback-btn i {
  font-size: 1.8rem;
  position: absolute;
  left: -40px;
}

.primary-btn:hover{
  /*color: var(--hover-color);*/
  transform: scale(1.02);
}

.secondary-btn:hover {
  /*color: var(--hover-color);*/
  /*border: 1px solid var(--hover-color);*/
  transform: scale(1.02);
}

.goback-btn:hover {
  transform: scale(1.02);
}

.view-details-btn:hover {
  background-color: #C4C4C4;
}

/*--------------- shadow on-hover properties ---------------------------------------*/
.zone:hover {
  -webkit-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
  -moz-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
  -o-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
  box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
}


  /*------------------------ preloader for slider ----------------------------------*/
.slider-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* A solid background to hide the content */
  display: flex; /* Centers the loader */
  justify-content: center;
  align-items: center;
  z-index: 100; /* Ensures the preloader is on top */
  transition: opacity 0.5s ease-in-out; /* Adds a smooth fade-out effect */
}

.slider-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

 /*------------------------ scroll to the top button  ---------------------------------------*/
#goToTop-btn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 10px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #000000; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 12px 10px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  opacity: 0.8;
}

#goToTop-btn:hover {
  color: #FAB131;
}

/*------------------------- scroll-down button on top-section/hero-section ----------------------------------------*/
  .scroll-down-icon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .scroll-down-icon {
    position: absolute;
    bottom: 20px; /* Position it near the bottom */
    color: #f1f1f1;
    font-size: 2rem;
    text-decoration: none;
    animation: bounce 2s infinite; /* Apply the animation */
    z-index: 10;
  }

/* Keyframes for the bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Start and end position */
    }
    40% {
        transform: translateY(-10px); /* Move up 10px in the middle */
    }
    60% {
        transform: translateY(-5px); /* Move up 5px slightly later */
    }
}


/*---------------------  CSS FOR LARGER SCREENS ----------------------------------*/

/* Styles for large phones in landscape orientation and small tablets */
@media (min-width: 480px) {
  .container {
    /* Adjust styles for wider mobile screens */
  }
}



/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  .container {
    max-width: 768px; /* Example: constraining width for better readability */
    /* Add multi-column layouts here, e.g., using Flexbox or Grid */
  }
}



/* Styles for standard desktops and larger screens */
@media (min-width: 1024px) {

	.container {
	  max-width: 1024px;
    padding: 2% 7%;
	  /* Further layout enhancements */
	}

	.row {
		width: 100vw;
	}

	/*------------------- top-section and hero-section area (with background image) ------------------------*/
	.logo {
		width: 150px;
		margin-top: 10px;
	}

/*	.sub-title {
		font-size: 40px;
	}*/

	/*--------------- top-bar code section for address and follow-us (visible here for laptop and large screen and hidden on mobile) ----------------------*/
	.top-bar {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  }

	/*---------------- open and close button for sidebar menu (visible on mobile and hidden here for laptop and large screen) ----------------*/
  .open-sidebar-button, .close-sidebar-button {
  	display: none;
  }


  /*------------------- navbar code section for here laptop and large screen-----------------------------------------*/
  nav {
  	position: absolute;
  	top: 30px;
    padding: 5px 20px;
  	transition: top 0.3s; 
  }

  nav ul li {
	  display: inline-block;
    width: auto;
	  margin: 0;
	  padding: 0;
	}

  nav ul li a {
   	padding: 0;
   	margin: 0 40px;
   	color: var(--primary);
  }

  nav ul li a:hover::after {
  width: 100%;
}


  .nav-address-section {
    display: none;
  }


 /* nav ul li a:hover::after {
		width: 100%;
	}*/

 .links-container {
    width: fit-content;
    position: absolute;
    flex-direction: row;
    right: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    box-shadow: none;
    transition: all 0.3s;
  }

	/*--------------- contact-us button for navbar (visible on mobile and hidden here for laptop and large screen) ----------------------*/
  .contact-btn1 {
  	display: none;
  }

	/*--------------- contact-us button for navbar (visible here for laptop and large screen and hidden on mobile) ----------------------*/
  .contact-btn2 {
  	display: block;
  	margin-left: auto;
  	margin-right: 80px;
  }

  /*--------------------------- dropdown button properties for large screen -------------------------*/
  .dropbtn {
    padding: 15px 0;
    color: var(--primary);
  }

  .dropdown {
    display: inline-block;
    padding: 0;
    margin: 0;
  }

  .dropdown-content {
    background-color: var(--primary);
    position: absolute;
  }

  .dropdown-content a {
    width: 100%;
    color: var(--secondary);
    padding: 10px 20px;
    margin: 0;
    text-decoration: none;
    display: block;
    font-size: 10px;
    border-top: 1px solid var(--secondary);
    /*align-items: flex-start;*/
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }


  /*---------------- button for hero-section in header -----------------------*/
  .header-btn {
    top: 67%;
    width: 50%;
    left: 7%;
    justify-content: flex-start; 
    align-items: flex-start;
  }

  .header-btn .primary-btn {
    width: 70%;
    font-size: 1.8rem;
  }

  .header-btn .secondary-btn {
    width: 70%;
    font-size: 1.8rem;
  }


	/*---------------- on scroll-down functionality for navbar (css class used in javascript for here laptop and large screen) ------------------*/
	.scrolled {
		top: 0;
		position: fixed;
    padding: 5px 20px;
		background: var(--primary);

		.dropdown .dropbtn {
			/*background: red;*/
			color: var(--secondary);
		}
	}

  .scrolled .nav-link {
  	color: var(--secondary);
  }

   .header-text {
    width: 900px; 
  }

  .header-text .header-title {
    font-size: 4.8rem; 
    width: 95%; 
    line-height: 80px;
    /*margin-top: 40px;*/
  }

  .header-text p {
    line-height: 30px;
    width: 100%;
    font-size: 1.2rem;
  }

  /*----------------------- our-work section ----------------------*/
  #our-work {
      padding: 3% 5%;
      /*margin-bottom: 20px;*/
  }

  .sub-header-text p {
    width: 50%;
  }

  .video-container {
    max-width: 600px; /* Limits the size on large screens */
  }

  video {
    height: 400px;
  }

  .work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    width: 100%;
    padding-bottom: 50px;
  }


/*----------------------- why-choose-us section -----------------------------*/
 /*#why-choose-us button {
  float: right;
}*/

  #why-choose-us .btn-section {
    margin-right: 100px;
  }

  .why-choose-us-col-1 {
    flex-basis: 35%;
  }

  .why-choose-us-col-2 {
    flex-basis: 60%;
  }

  .fact-card {
    width: 80%;
    height: 30px;
  }

  .fact-card i {
    font-size: 32px;
  }

  .fact-card p {
    font-size: .9rem;
    width: 70%;
    left: 50px;
  }

  /*------------------- testimonial section -------------------------*/
  #testimonials {
    padding: 2% 5%;
  }

  .testimonial-top-section {
    margin: 0 auto;
    width: 60%;
  }

  .testimonials .sub-header-text p {
    width: 90%;
    margin: 0 auto;
  }

  .btn-section {
    float: right;
  }

  .testimonial-top-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  /*----------------- learn more section / sub navigation menu for about-us and our service -----------------------*/
  .col-1 {
    flex-basis: 30%;
  }

  .col-2 {
    flex-basis: 70%;
  }

/*  .col-1 img {
    max-width: 0px;
    max-height: 450px;
  }*/

  .col-2 p {
    width: 80%;
  }

  .images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 3%;
  }

	/*--------------------- footer section -----------------------------------*/
	.footer-col-1 {
		flex-basis: 33%;
		padding: 0 10px;
	}

	.footer-col-2 {
		flex-basis: 33%;
		padding: 0 10px;
	}

	.footer-col-3 {
		flex-basis: 33%;
		padding: 0 10px;
	}

	.footer-col-4 {
		flex-basis: 33.3%;
	}
}


