 @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.layout {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 70px;
  background-color: #111;
  color: white;
  height: 100vh;
  position: sticky;
  top: 0;
  transition: width 0.3s ease;
  overflow: hidden;
}
.sidebar:hover {
  width: 220px;
}

.logo {
  text-align: center;
  padding: 1rem 0;
}
.logo img {
  width: 40px;
  transition: all 0.3s ease;
  border-radius: 50px;
  border: 2px solid #ccc;
}
.sidebar:hover .logo img {
  width: 80%;
  border: 2px solid #fcb900;
  border-radius: 100px;
}

.nav {
  display: flex;
  flex-direction: column;
}
.nav a {
  color: #ccc;
  padding: 1rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}
.nav a i {
  min-width: 30px;
  text-align: center;
  font-size: 18px;
}
.nav a span {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar:hover .nav a span {
  opacity: 1;
  pointer-events: auto;
  margin-left: 10px;
}
.nav a:hover {
  background-color: #fcb900;
  color: black;
}

/* Main Content */
.main-content {
  overflow-y: auto;
  height: 100vh;
}
/* Footer */
.footer {
  background-color: #111;
  color: #eee;
  padding: 2rem 1.5rem;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer h3,
.footer h4 {
  color: #fcb900;
  margin-bottom: 0.8rem;
}

.footer p,
.footer a,
.footer li {
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer a:hover {
  color: #fcb900;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-contact p i,
.footer-social a i {
  margin-right: 10px;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fcb900;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}
 .phone-dial {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #57595d;
  color: white;
  padding: 12px 0;
  font-size: 18px;
  border-radius: 150px;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.phone-dial i {
  margin-right: 8px;
}

.phone-dial:hover {
  background-color: #1ebe5b;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 1000;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.whatsapp-float a:hover {
  background-color: #1ebe5b;
}
.chat-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background-color: #ffffff;
  color: #333;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

/* Chat bubble arrow */
.chat-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}
/* Show on hover */
.whatsapp-float a:hover .chat-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(-5px);
  pointer-events: auto;
}
.parallax-banner {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px black;
}

.about-title {
  font-size: 3rem;
  font-weight: bold;
}

/* Office Location */
.about-location {
  text-align: center;
  padding: 2rem;
  background-color: #f1ebeb;
}

.location-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.map-vertical {
  flex: 1 1 300px;
  max-width: 500px;
}

.address-block {
  flex: 1 1 250px;
  max-width: 400px;
  text-align: left;
  padding: 1rem;
  background: #f7f7f7;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.address-block h3 {
  margin-top: 0;
  color: #333;
}

.address-block p {
  margin: 0.5rem 0;
  color: #555;
}
.about-ceo {
  padding: 4rem 1rem;
  /* background: linear-gradient(135deg, #424346, #9da2aa); */
  text-align: center;
  background-color: #f1ebeb;
}

.about-ceo h2 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.ceo-glass {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  /* background: linear-gradient(135deg, #737579, #cad1db); */
  background-color: #f1ebeb;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  overflow: hidden;
  padding: 2rem;
  gap: 2rem;
}

.ceo-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.ceo-info {
  flex: 2 1 300px;
  text-align: left;
  color: #302828;
}

.ceo-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.ceo-title {
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.ceo-info p {
  line-height: 1.6;
}
@media (max-width: 520px) {
  .sidebar {
      width: 55px;
  }
  .nav span {
      font-size: 1rem;
  }
  .nav a {
      padding: 0.8rem;
  }
  .sidebar:hover {
      width: 180px;
  }
  .sidebar:hover .logo img {
      width: 40%;
      border-radius: 50px;
  }
  .sidebar:hover .nav a span{
      font-size: 0.9rem;
  }
 }
@media (max-width: 420px) {
  .about-title {
    font-size: 2.0rem;
  }
}