*{
  margin: 0;
  padding: 0;
}


.main {
    width : 100%;	
}

/* header */
.header_nav {
	width : 100%;
	height: 40 px;
}

.header_horizontal {
  height: 92px;
  width: 100%;
}

.auto-style1 {
	width: 58px; 
	height: 58px;
    padding-left: 35px;
	padding-top: 2.5px;
}

.company_name{
	font-size: 24px;
	padding-left: 20px;
}


/* Style the links inside the navigation bar */
.topnav {
  display: flex;
  justify-content: space-between; /* Distributes items evenly */
  align-items: center;
  background-color: #ffffff;
  width: 100%;
}

.topnav a {
  flex-grow: 1;
  text-align: center;
  padding: 20px;
  color: #595959;
  text-decoration: none;
  font-size: 17px;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: gray;
}

/* Active link style */
.topnav a.active {
  background-color: #ffffff;
  color: #ff8000;
}


.navigation_bar_position {
/* Needed to position the navbar */
  position: relative;
}


/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  text-decoration: none;
  color: black;
  padding: 14px 16px;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Dropdown links */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hover effect */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.mySlides {
  display: none;
}
/*
.slideshow-container {
  position: relative;
  width: 100vw; 
  height: 700px; 
  overflow: hidden;
}

.slideshow-container img {
  width: 100vw; 
  height: 100%; 
  object-fit: cover; 
}
*/
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: auto; /* Let height be defined by image ratio */
  overflow: hidden;
}

.slideshow-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 90vh; /* Prevent it from getting too tall */
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.8s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* Home Page of the Website*/
.welcome_notes {
font-family: Arial;	
font-size: 21px;
text-align: center;
font-weight: bold;
}

.welcome_content {
 font-family: Arial;	
 font-size: 19px;
 text-align: center;
 padding-top : 25px;
 line-height: 1.2;
 text-align: justify;
 margin: auto;
 width: 60%;
 text-justify: inter-word;
}

.welcome_content2 {
 font-family: Arial;	
 font-size: 20px;
 text-align: center;
 padding-top : 25px;
 line-height: 1.2;
 text-align: justify;
 margin: auto;
 width: 50%;
 text-justify: inter-word;
}

.list_of_services {
 font-family: Arial;	
 font-size: 19px;
 padding-top : 25px;
 padding-left: 50px;
 line-height: 1.2;
 text-align: justify;
 margin: auto;
 width: 60%;
 text-justify: inter-word;
}

/* Our vision and mission */
.header_design {
font-family: Arial;	
font-size: 28px;
text-align: center;
font-weight: bold;
}

.content_design {
 font-family: Arial;	
 font-size: 20px;
 text-align: justify;
 /*text-align: center;*/
 line-height: 1.8;
 padding-top: 22px;
 margin: auto;
 width: 55%;
 text-justify: inter-word;
}

/* Global Watch */
.content_global_watch {
 font-family: Arial;	
 font-size: 20px;
 text-align: justify;
 text-align: center;
 line-height: 1.1;
 margin: auto;
 width: 60%;
 text-justify: inter-word;
}

/* Our Expertise */
.content_our_expertise{
 font-family: Arial;	
 font-size: 20px;
 text-align: justify;
 line-height: 1.1;
 margin: auto;
 width: 60%;
 text-justify: inter-word;
}

.list_of_services2 {
 font-family: Arial;	
 font-size: 21px;
 padding-top : 25px;
 padding-left : 35px;
 line-height: 1.2;
 text-align: justify;
 margin: auto;
 width: 60%;
 text-justify: inter-word;
}

/* Product and services */
#product_title {
  border-radius: 5px;
  border: 2.5px solid #bfbfbf;
  padding-top: 8px; 
  width: 120%;
  height: 69px;  
  text-align: center;
  font-family: Arial;
  padding-bottom: 5px;
  font-size: 18px;
}

#product_title2 {
  border-radius: 5px;
  border: 2.5px solid #bfbfbf;
  padding-top: 8px; 
  width: 130%;
  height: 90px;  
  text-align: center;
  font-family: Arial;
  padding-bottom: 5px;
  font-size: 18px;
}

/* Botton for selection of products*/
.button_orange {
  background-color: #f98006; /* Orange */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  border-radius: 8px;
}

.button_blue {
  background-color: #06bcf9; /* Blue */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  border-radius: 8px;
}

.button1:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.button2:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}


/* footer */
footer {
  text-align: center;
  font-size: 20px;
  padding: 4px;
  background-color: #ff8000;
  color: white;
}


/* icon */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

/* image overlay effect */
.container {
  position: relative;
  width: 100%;
  width: 100%;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 10px; /* Adds spacing between images */
  flex-wrap: wrap;
  padding: 20px;
}

.image-box {
  text-align: center; /* Center text */
  width: 185px; /* Increased size (1.5x of 150px) */
}

.image-box img {
  width: 100%;
  height: 185px; 
  object-fit: cover; 
  border-radius: 10px; 
}

.image-box p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
}

.container:hover .overlay {
  height: 100%;
}

.text {
  color: black;
  font-size: 30px;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Contact Us */
.contact {
  height: 220px;
  width: 50%;
  font-family: Arial;	
  font-size: 10 px;
  line-height: 1.4;
  text-justify: inter-word;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin: auto;
}

.contact_logo{
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
  padding-right: 5px;
	
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
}

/* Input Box */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container3 {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  width: 50%;
}

.align_h1{
	text-align: center;
}

/*Slidshow with image */
.slideshow-section {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 40px;
}

.slideshow-section .title-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}

.slideshow-section .title-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.slideshow-section .title-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.slideshow-section .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slideshow-section .modal img {
  max-width: 80%;
  max-height: 70vh;
  border-radius: 10px;
}

.slideshow-section .modal-caption {
  color: white;
  margin-top: 15px;
  font-size: 18px;
  text-align: center;
}

.slideshow-section .dots {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.slideshow-section .dot {
  font-size: 30px;
  color: gray;
  cursor: pointer;
}

.slideshow-section .dot.active {
  color: white;
}

.slideshow-section .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.slideshow-section .close-btn:hover {
  color: #000000;
  transform: scale(1.2);
}

/* Grid layout for 3x3 Sudoku-style */
.title-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.title-grid .title-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-grid .title-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

