body {
  font-family: 'Arial', sans-serif;
}

.hero {
  background: 
  url('https://res.cloudinary.com/dg8ib26kr/image/upload/v1759211229/club_house_aiautv.jpg') center/cover no-repeat;
}

/* Side menu container */
.side-menu {
  position: fixed;
  top: 0;
  left: -400px;          /* hidden by default */
  width: 400px;
  height: 100vh;
  background-color: #f27921; /* orange theme */
  color: #fff;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 2000;           /* above other content */
  
}

/* Active state (menu shown) */
.side-menu.active {
  left: 0;
}
.header-overlay .menu-toggle {
  background: rgba(0,0,0,0.5);
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
}
/* Close button */
.menu-close {
  font-size: 2rem;
  cursor: pointer;
  display: block;
  text-align: right;
  width: 100%;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Menu links */
.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  margin-bottom: 20px;
}

.side-menu ul li a {
  display: block;                                 /* makes the whole box clickable */
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px 5px;                             /* inner spacing */
  border-radius: 10px;                            /* rounded corners */
  transition: all 0.3s ease;                      /* smooth hover animation */
}

/* Hover effect — orange box with white text */
.side-menu ul li a:hover {
  background-color: #ffffff;                      /* white background on hover */
  color: #f27921;                                 /* orange text */
  border-color: #ffffff;                          /* solid white border */
}


/* Contact heading */
.menu-cont {
  color: #ffffff;
  margin-top: 20px;
  text-align: center;
}

/* Contact address */
.menu-addr {
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}

/* Download Brochure button */
.download-btn {
  text-align: center;
  width: 100%;
}

.download-btn a {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #ff6600;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn a:hover {
  transform: scale(1.05);
}

.projects-section {
  padding: 50px 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 450px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border: 5px solid #ffffff; /* Dark blue border like in screenshot */
  text-align: center;
  transition: transform 0.3s;
  width: 1100px;
  margin-left: 130px;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* Image */
.project-image img {
  width: 100%;
  display: block;
  height: 550px;
  
}

/* Info */
.project-info {
  padding: 20px;
}

.project-info h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
}

.project-info h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.project-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.view-btn {
  display: inline-block;
  background: #ff7b00;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  transition: background 0.3s;
}

.view-btn:hover {
  background: #e86c00;
}


