body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #F0F0F0;
  perspective: 1200px; /* for 3D effect */
}

/* Section Layout */
.custom-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
}

/* Center Image (arched top) */
.center-image {
  width: 380px;
  height: 500px;
  border-radius: 150px 150px 0 0; /* top rounded arch */
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Side Boxes */
.side-boxes {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.info-box {
  background: #fff;
  padding: 20px;
  width: 400px;
  height: 230px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.info-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Hover Effect */
.info-box:hover {
  transform: rotateY(15deg) rotateX(8deg) scale(1.05);
  background: linear-gradient(135deg, #6dd5fa, #ffffff);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .custom-layout {
    flex-direction: column;
  }
  .side-boxes {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  z-index: 1000;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #6a5af9, #00d4ff);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    width: 220px;
    text-align: center;
    display: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}









.footer {
  background: linear-gradient(135deg, #0a0f2c, #1e0a4d);
  color: #fff;
  padding: 60px 8% 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-about p {
  line-height: 1.6;
  opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00d4ff;
}

.footer-contact p {
  margin-bottom: 8px;
  opacity: 0.85;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #00d4ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}
