body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.left, .right {
  flex: 1 1 300px;
  padding: 40px;
  position: relative;
}

.left {
	padding: 150px 40px;
  background: linear-gradient(rgba(0, 136, 255, 1), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1605902711622-cfb43c44367f?auto=format&fit=crop&w=700&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  color: #00c6ff;
}

.contact-info {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-info a {
  color: #00c6ff;
  text-decoration: none;
}

.social {
  margin-top: 20px;
}

.social i {
  font-size: 22px;
  margin-right: 15px;
  cursor: pointer;
  color: #00c6ff;
  transition: transform 0.3s ease;
}

.social i:hover {
  transform: scale(1.2) rotate(8deg);
}

.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.right h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #00c6ff;
}

.right p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 12px 15px;
  margin-bottom: 15px;
  outline: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

form input:focus, form textarea:focus {
  background: rgba(255,255,255,0.2);
}

form textarea {
  resize: none;
  min-height: 100px;
}

form button {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
}

form button:hover {
  transform: scale(1.05);
}

.nav {
  position: fixed;
  top: 20px;
  right: 40px;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #00c6ff;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }
  .left, .right {
    border: none;
  }
  .nav {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }
}










































/** {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

body {
  color: #333;
  line-height: 1.6;
  font-family: 'Georgia', serif;
}

.container {
  max-width: 2700px;
  margin: auto;
  padding: 40px;
}

.services {
  background: #225ac3;
  background: linear-gradient(180deg,rgba(34, 90, 195, 1) 0%, rgba(45, 229, 253, 1) 34%, rgba(255, 255, 255, 1) 84%);
  padding: 50px 20px;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 550px;
  text-align: left;
}

.services h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #0300AB;
}


.bottom-marquee {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      color: white;
      font-size: 18px;
      font-weight: bold;
      padding: 15px;
    }

marquee {
      width: 100%;
    }

.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: transparent;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      transition: background-color 2.0s ease;
      z-index: 1000;
    }
	
.header.scrolled {
      background-color: white; /* Change this to any color you want */
    }

.content {
      padding-top: 20px;
      height: 450px; /* Just to enable scrolling */
    }




.navbar {
      position: absolute;        /* Fixes navbar at the top */
      top: 0;
      left: 0;
      right: 0;
      height: 90px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 15px;
      z-index: 1000;
    }

.logo {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 8px 12px;
      transition: background-color 0.3s;
    }

.header.scrolled .nav-links a {
      color: #333;
    }

.nav-links a:hover {
      background-color: #A8A8A8;
      border-radius: 10px;
    }









footer {
  background-color:#757575;
  color: #fff;
  padding: 50px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.footer-logo span {
  font-weight: 400;
  opacity: 0.8;
}

.footer-logo p {
  margin: 8px 0;
  color: #aaa;
  font-size: 14px;
}



.footer-links, .contact-info {
  flex: 1 1 200px;
  font-size: 14px;
}

.footer-links ul, .contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.contact-info p {
  margin: 6px 0;
  font-size: 14px;
}

.scroll-up {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 100px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 6px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-up:hover {
  background-color: rgba(255,255,255,0.1);
}

.scroll-up .arrow {
  font-size: 20px;
  margin-top: 10px;
  display: block;
}

.scroll-up .text {
  margin-top: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
}
*/