@import url('https://fonts.googleapis.com/css2?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&display=swap');

:root{
    --main-purple: rgb(116, 11, 116);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    width: 100%;
    display: inline-flex;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    z-index: 1000;
}

h4 img{
    width: 95px;
    height: 80px;
    padding-left: 25px;
}

body{
    overflow-x: hidden;
}

.nav-bar{
    width: 100%;
    padding-right: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-element{
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    margin-left: 20px;
    display: inline-flex;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-bar ul{
    display: inline-flex;
}

.nav-bar ul > li{
    list-style-type: none;
}

.nav-element:hover{
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    color: powderblue;
}

/* Slideshow */
.slider{
	position: relative;
	width: 100%;
	background: #2c3e50; /* darckblue */
}

.myslide{
	height: 655px;
	display: none;
    overflow: hidden;
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 30px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.1s;
	user-select: none;
}

.prev:hover, .next:hover{
	color: #00a7ff; /* blue */
    background-color: rgba(0,0,0,0.5);
    border-radius: 50px;
}

.next{
	right: 0;
}

.dotsbox, .dotsbox1{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}

.dotsbox1{
    position: relative;
    bottom: 20px;
}

.dot{
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}

.active, .dot:hover{
	border-color: #00a7ff; /* blue */
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

.txt{
	position: absolute;
	color: #fff;
	letter-spacing: 2px;
	line-height: 35px;
	top: 50%;
	left: 10%;
	-webkit-animation-name: posi;
  	-webkit-animation-duration: 2s;
  	animation-name: posi;
  	animation-duration: 2s;
	z-index: 1;
    background-color: rgba(0,0,0,0.1);
    border-radius: 15px;
}

@-webkit-keyframes posi {
  from {left: 25%;}
  to {left: 10%;}
}


@keyframes posi {
  from {left: 25%;}
  to {left: 10%;}
}

.txt p{
	font-weight: bold;
    letter-spacing: 2px;
    line-height: 50px;
	font-size: 48px;
}

.slider .myslide img{
	transform: scale(1.5, 1.5);
	-webkit-animation-name: zoomin;
  	-webkit-animation-duration: 40s;
  	animation-name: zoomin;
  	animation-duration: 40s;
}
@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}

@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}

@media screen and (max-width: 800px){
	.myslide{
		height: 500px;
	}
	.txt{
		letter-spacing: 2px;
		line-height: 25px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-animation-name: posi2;
		-webkit-animation-duration: 2s;
		animation-name: posi2;
		animation-duration: 2s;
	}

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt p{
		font-size: 13px;
	}

}

@media screen and (max-width: 520px){
	.txt h1{
		font-size: 30px;
		margin-bottom: 20px;
	}
	.sign{
		margin-right: 20px;
	}
	.sign a{
		font-size: 12px;
	}
}

/* Sector Container */
.sector-container{
    width: 100vw;
    height: 100vh;
}

.sector-container .halfsection{
    width: 55%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.8);
}

.halfsection p{
    font-size: 48px;
    color: white;
    position: relative;
    top: 90px;
    left: 100px;
}

.sector-container .slider-section{
    width: 50vw;
    height: 70vh;
    position: absolute;
    right: 65px;
    transform: translate(-10%, -115%);
}
.slider-section{
    display: none;
}
.speciality-text{
    position: absolute;
	color: #fff;
	letter-spacing: 2px;
	line-height: 20px;
	top: 40%;
	left: -40%;
	z-index: 1;
}

.speciality-text h2{
    color: #fff; /* blue */
	font-size: 50px;
	margin-bottom: 20px;
}

.speciality-text p{
    font-weight: bold;
	font-size: 20px;
}

.prev1, .next1 {
    cursor: pointer;
    position: absolute;
    top: 190%;
    left: 20%;
    width: auto;
    margin-top: -22px;
    padding: 10px;
    color: white;
    font-size: 12px;
    transition: 0.6s ease;
    border-radius: 25px;
    border: 1px solid black;
    background-color: black;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next1 {
    margin-left: -55px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev1:hover, .next1:hover {
    background-color: rgba(0,0,0,0.8);
  }

/* About */
.about-us{
    width: 100vw;
    height: 50vh;
    background: url(Images/landing\ page.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
}

.about{
    width: 50%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about h2{
    color: white;
    font-size: 42px;
    background-color: rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.about p{
    color: white;
    line-height: 25px;
    background-color: rgba(0,0,0,0.05);
}

/* Projects Section */
.projects {
    padding: 60px 20px;
    background-color: #f3f4f6;
    text-align: center;
}

.projects h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #007bff;
    font-family: 'Poppins', sans-serif;
}

.project-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.info-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.info-button:hover {
    background-color: #0056b3;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {transform: translateY(-50px);}
    to {transform: translateY(0);}
}

.modal-content h3 {
    margin-top: 0;
    font-size: 24px;
    color: #007bff;
}

.modal-content p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Presence in India Section */
.presence {
    padding: 20px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.presence h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.map-container img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.highlighted-states {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Happy Clients Section */
.clients {
    padding: 60px 20px;
    background-color: #f9fafc;
    text-align: center;
}

.clients h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    width: 150px; /* Set a fixed width */
    height: 100px; /* Set a fixed height */
    object-fit: contain; /* Maintains the aspect ratio of logos */
    padding: 10px;
    background: white;
    border-radius: 5px; /* Optional: Add rounded corners */
    transition: transform 0.3s ease;
}

.client-logo p {
    font-size: 14px;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

/* Patners */
/* General Section Styling */
.partners-section, .about-section {
    padding: 20px 0;
    text-align: center;
    background-color: #f7f7f7; /* Light background for contrast */
}

.partners-section h2, .about-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

/* Container for Partners Logos */
.partners-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between logos */
}

/* Individual Partner Logo Styling */
.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
.partner-logo {
    margin: 20px;
    display: inline-block;
}
  
.partner-logo img {
    width: 120px; /* adjust the width to your desired size */
    height: 120px;
    margin: 0 auto;
}
  
.partner-logo p {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

/* Hover Effect */
.partner-logo:hover {
    transform: scale(1.05);
}

/* About Us Section */
.about-section {
    background-color: #ffffff;
    color: #333;
    padding: 50px 20px;
    line-height: 1.6;
}

.about-section h2 {
    margin-bottom: 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Contact form */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 200px 50px 200px;
    background-color: #f9f9f9; 
    border: 1px solid #ccc; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}

.contact_us h2{
    text-align: center;
    font-size: 42px;
    margin-top: 20px;
    margin-left: -700px;
    margin-bottom: 20px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    border: 1px solid #ccc; 
    border-radius: 10px; 
}

.contact-details {
    width: 40%; 
    height: 50vh;
    padding: 0px 40px; 
    background-color: #fff; 
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-right: 1px solid black;
}

.contact-detail {
    margin-bottom: px;
}

.contact-method {
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-info {
    font-size: 16px;
}

.contact-form {
    width: 60%;
    padding: 20px; 
    background-color: #fff;  
}

.message-text {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-element {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #3e8e41;
}

/* added some additional styles for the form elements */
.form-element:focus {
    border-color: #aaa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-element::placeholder {
    color: #ccc;
}

.form-element:-ms-input-placeholder {
    color: #ccc;
}

.form-element::-moz-placeholder {
    color: #ccc;
}
