@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.background-vid {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(15px); /* Adjust the value for more or less blur */
}


body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: silver;
  /*background-color: #f0f2f5;*/
  color: #333;
}

header {
  background: linear-gradient(135deg, #1338be, #63c5da);
  color: white;
  text-align: center;
  padding: 20px 10px 10px;
  font-size:25px;
}

nav {
  margin-top: 0.001em;
}

nav a {
  margin: 0 16px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffd700;
}

@keyframes slide-logo {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}


.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo-container {
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.logo-only {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.logo-only:hover {
  transform: scale(1.6);
}

main {
  position: relative; /* Add this */
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-top:10px;
  margin-bottom:10px;
  font-size:23px;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* Adjust the alpha value for desired opacity */
  border-radius: 8px;
  z-index: -1;
}


a.active {
  color: #ffd700;
}


h2, h3 {
  color: #2a2a72;
}

section {
  margin-bottom: 40px;
}

.site-footer {
  background: linear-gradient(135deg, #63c5da, #1338be );
  color: #f0f0f0;
  padding: 40px 20px 20px;
  font-size:23px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.footer-col {
  flex: 0 0 180px;
}

.footer-col h4 {
  color: #ffd700;
  margin-bottom: 10px;
}

.footer-col a {
  color: #90cdf4;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85em;
}

.map{
	width:300px;
	height:300px;
	border-radius:12px;
}

.map:hover{
	transform: scale(1.05);
}

form input, textarea{
	padding:8px;
	margin:6px;
	border-radius: 12px;
	font-size:16px;
}

textarea{
	width:26rem;
	font-size:16px;
}

button{
	padding:8px;
	margin:8px;
	border-radius: 6px;
	color: #ffffff;
	background-color: #000000;
	width:7rem;
	font-size:16px;
}

button:hover{
	transform: scale(1.05);
	background-color: orange;
}
textarea:hover{
	transform: scale(1.05);
	border-color: blue;
}
input:hover{
	transform: scale(1.05);
	border-color: blue;
}

.map-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 5px;
  text-align: left;
  margin-right: 5px;
}

.contact-align{
	margin-left: 8rem;
}

a{
	color:orange;
}

.p{
	color:#1c2951;
	font-family: Arial;
	font-size: 20px;
	opacity:1;
}

.footer-logo{
	width:130px;
	height:130px;
	border-radius:2rem;
}

.footer-logo:hover{
	transform: scale(1.5);
}

section {
  margin-bottom: 50px;
}

.h22 {
  color: #1520a6;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.pp {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 1 1 200px;
  text-align: center;
  padding: 10px;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.15);
}

.team-member h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
}

.screenshot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.screenshot-grid img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.screenshot-grid img:hover {
  transform: scale(1.03);
}

.contact-invite {
  text-align: center;
  padding: 20px 0;
}

.contact-invite a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.contact-invite a:hover {
  text-decoration: underline;
}

.h3{
	color:#d67229;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.project-info, .project-tech, .project-impact {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.project-info h2, .project-tech h3, .project-impact h3 {
  margin-top: 0;
}

.project-tech ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-tech li {
  margin-bottom: 10px;
}

.project-impact p {
  font-size: 1.2rem;
  font-weight: bold;
}

.icon {
  width: 32px;
  vertical-align: middle;
  margin-right: 10px;
}

.main-image {
  max-width:60%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  align-items:center;
}

.service-icons {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  text-align: center;
}

.service-icons div img {
  width: 60px;
  height: 60px;
}

.cta-btn {
  display: inline-block;
  background-color: #2196F3;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #1976D2;
}

.map-section {
  padding: 40px 0;
  text-align: center;
}

.map-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.map-section iframe {
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 300px;
	border: 2px;
}

@media (max-width: 768px) {
  .map-section iframe {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .map-section iframe {
    height: 200px;
  }
}
