* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin-block-start: 2px;
  margin-inline: 100px;
  font-family: 'Open Sans', sans-serif;
  background: #f4f4f4;
  color: #1b281b;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Fixed Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f2f2f2;
  padding: 10px 60px;
  margin: 0;                 /* remove any margin */
  box-sizing: border-box;    /* prevent padding from causing overflow */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* soft shadow */
}

/* Right side: hamburger menu */
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.name-title {
  display: flex;
  align-items: baseline;
  gap: 10px; /* spacing between name and title */


}


.name-title .name {
  font-size: 2.125rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;

}

.name-title .title {
  font-size: 1.250rem;
  font-family: Cursive, sans-serif;
  font-weight: 300;
  color: #4676a9;
  
  padding-top: 4px; /* optional fine-tuning */


}


/* Hamburger Icon */
.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cccccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* soft shadow */
  text-align: center;
  line-height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Slide-out Navigation Menu */
#sideMenu {
  position: fixed;
  top:  65px;
  right: -220px;
  width: 200px;
  background: #053970;
  color: #eef1f4;
  transition: right 0.3s ease;
  padding: 1rem 0;
  border-radius: 10px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.35);
  z-index: 999;
}


#sideMenu.open {
  right: 0;
}

#sideMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

#sideMenu li {
  padding: 15px 20px;
  
}

#sideMenu a {
  color: white;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  font-family: 'Open Sans', sans-serif;

}


#sideMenu a:hover {
  background: #13bce61a;
}


/* Prevent content from hiding behind fixed header */
main {
  padding: 40px 40px 20px; 

}


.profile-carousel {
  text-align: center;
  padding: 40px 20px;
}

#carousel-img {
  transition: opacity 0.6s ease-in-out;
}

.profile-carousel h2 {
  margin: 5px 0 1px; /* Less space below name */
  font-size: 2.125rem;
  font-family: 'Cormorant Garamond', serif; /* Elegant serif font */
  font-weight: 700;

}

.profile-carousel h3 {
  margin: 0 0 2px; /* Less space above tagline */
  font-size: 1.250rem;
  font-family: cursive, sans-serif; /* Thin, modern font */
  font-weight: 300; /* Light weight */
  color: #4676a9;
}

.profile-carousel .tagline {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Professional, readable, and elegant */
  font-weight: 400;
  font-style: italic;
}




.circle {
  width: 180px;
  height: 180px;
   border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 6px;
  border: 4px solid #007acc;
  box-shadow: 0 0 10px rgba(0, 0.9, 0.5, 0.9);
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out;
}

/* Section container with glassmorphism */
.reachout {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 2rem;
  max-width: 700px;
  margin: 3rem auto;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Section title */
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #00e0ff;
}

/* Video styling */
.video-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.video-container video {
  width: 100%;
  max-width: 600px;
  border: 2px solid rgba(0,255,255,0.6);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}


/* Contact info */
.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Buttons */
.cta-buttons {
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0,255,255,0.2);
  border: 1px solid #00e0ff;
  border-radius: 8px;
  color: #00e0ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #00e0ff;
  color: #000;
  box-shadow: 0 0 12px #00e0ff;
}




footer {
  background: #22466c;
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  margin-block-end: 15px;
  border-radius: 8px;
  justify-content: center;

  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  padding-inline: 5px;
  padding-block-end: 25px;;
  gap: 14px;
  margin: 0 auto;
  color: #cccccc;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.8rem;
}

.footer-section {
  flex: 1 1  calc(25% - 14px);
  margin-bottom: 5px;
  padding-inline: 10px;
  box-sizing: border-box;
  line-height: 1.5rem;
  

}


.footer-section h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  
  border-bottom: 1px solid #444;
  padding-bottom: 6px;
}



.footer-section p,
.footer-section a {
  
  color: inherit;
  text-decoration: none;
  margin: 2px 0;
  transition: color 0.3s ease;
 
}

@media (max-width: 768px) {
  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 14px;
  }
}



.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
.social-icons a {
  transition: transform 0.3s ease, 
  color 0.3s ease;
}

.social-icons a:hover {
  
  transform: scale(1.3) rotate(5deg);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


.social-icons a:hover i {
  animation: bounce 0.4s ease;
 
}