* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    height:100vh;
    width:100%;
    background-color: rgba(0,0,0,0.4);
    display:flex;
    align-items:center;
    justify-content:center;
}

.carousel {
    position: relative;
    top: 0;
    z-index: 1; /* Ensure the carousel is under the navbar when scrolling */
  }

body {
    font-family: 'Poppins', sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
}

/* Fixed Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-links ul li a:hover {
    color: teal;
}

/* Change Navbar Style on Scroll */
.scrolled {
    background-color: white;
}
.scrolled .nav-links ul li a {
    color: black;
}
.scrolled .nav-links ul li a:hover {
    color: teal;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
}
.lead-in {
  font-weight: 700; /* Bold */
  color: white      /* Optional: slightly darker tone */
}

.typewriter-wrapper {
  display: inline-block;
  min-height: 2.5em; /* Adjust based on font size */
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Optional: consistent width if you want to avoid any shift at all */
.typing-text {
  display: inline-block;
  min-width: 250px; /* Based on your longest word */
}


/* Buttons */
.scroll-button, .cta-button {
    font-size: 20px;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    transition: 0.3s;
}
.scroll-button:hover, .cta-button:hover {
    background: white;
    color: teal;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.about-text {
  text-align: justify;
}

.angle-slideshow-container {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  z-index: 2;
}
.image-frame, .image-frame-overlay {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 15px;
}
.image-frame {
  background: rgba(255, 255, 255, 0.5);
}
.image-frame-overlay {
  background: none;
  z-index: 4;
}
.breathe {
  position: absolute;
  width: 450px;
  height: 450px;
  animation: breathe 5s infinite ease-in-out;
  z-index: 5;
  border-radius: 15px;
}
.flicker {
  position: absolute;
  width: 450px;
  height: 450px;
  animation: flicker 1.5s infinite alternate;
  z-index: 3;
  border-radius: 15px;
}
.breathe img, .flicker img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breathe img {
  z-index: 6;
}
@keyframes breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.popup {
  position: absolute;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  max-width: 180px;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(10px);
  z-index: 3;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.popup.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in effect */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Different popups: position them cleanly */
.popup1 {
  top: 20%;
  right: -65px;
}

.popup2 {
  bottom: 15%;
  right: -70px;
}

.popup3 {
  bottom: 5%;
  left: -90px;
}

/* Font styling */
.popup-title {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

.popup-subtitle {
  font-weight: 500;
  font-size: 0.7rem;
  color: #008080;
  margin-bottom: 4px;
}

.popup-text {
  font-size: 0.8rem;
  line-height: 1.3;
  color: #444;
}
.popup1 {
  animation-delay: 0.2s;
}
.popup2 {
  animation-delay: 1.1s;
}
.popup3 {
  animation-delay: 2.0s;
}


/* Special formatting */
.role {
  color: teal;
  font-weight: 500;
}

.goal-label {
  font-size: 0.75rem;
  color: gray;
}

.goal {
  color: #008060;
  font-weight: bold;
}



/* Call to Action */
.cta {
  font-family: 'Raleway', sans-serif;
  margin: 50px auto;
  width: 100%;
  max-width: 1500px;
  min-height: 400px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.png');
  background-position: center;
  background-size: cover;
  border-radius: 0px;
  text-align: center;
  padding: 80px 20px;
}

.cta h1 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
  
.cta p {
  font-size: 18px;
  color: #fff;
}

.cta-button {
  font-size: 20px;
  color: lightseagreen;
  background-color: #fff;
  text-decoration: none;
  border: 2px solid lightseagreen;
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: darkcyan;
  color: #fff;
}

/* Testimonial Section */
.testimonials {
  background: url('images/5-1.jpg') no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Lighter overlay for readability */
}

/* Testimonial Content */
.testimonial-item {
  max-width: 700px;
  margin: auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 4px solid white;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.author-name {
  font-weight: bold;
  font-size: 22px;
  margin-top: 10px;
}

/* Navigation Dots */
.carousel-indicators {
  bottom: -30px;
}

.carousel-indicators li {
  background-color: white;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .testimonial-item {
    max-width: 90%;
    padding: 30px;
  }
  .testimonial-text {
    font-size: 18px;
  }
  .author-name {
    font-size: 20px;
  }
}

.faq-section h2.subheading {
    font-size: 1.5em;
    color: darkcyan;
}

details {
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 8px;
}



/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: auto;
    padding: 50px 20px;
    text-align: left;
}

details {
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 10px;
}

details summary {
    font-weight: bold;
    cursor: pointer;
}

/* Testimonial Section Styling with Background */
.testimonials {
    background: url('/Users/dr.tucker/Documents/Website Development/images/5-1.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}
.carousel {
  position: relative;
  top: 0;
  z-index: 5; /* Lower than navbar */
}

/* Ensuring the Background Covers the Full Section */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
}

/* Center Carousel Properly */
.testimonials .carousel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Testimonial Content Box */
.testimonial-item {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Testimonial Image */
.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 4px solid white;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Testimonial Author */
.author-name {
    font-weight: bold;
    font-size: 22px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

/* Navigation Dots */
.carousel-indicators {
    bottom: -30px;
}

.carousel-indicators li {
    background-color: white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-item {
        max-width: 90%;
        padding: 30px;
    }
    .testimonial-text {
        font-size: 18px;
    }
    .author-name {
        font-size: 20px;
    }
}

/*-------------my blog-------------*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #f5f5f5; /* Adjust the background color as needed */
  }
  
  .blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px; /* Adjusts space between grid items */
  }
  
  .blog-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .blog-section h1{
    font-size: 30px;
    color: lightseagreen;
    margin-bottom: 15px;
  }
  
  .blog-section p{
  
    color: grey;
    font-size: 16px;
    font-weight: 200;
    line-height: 22px;
    margin-bottom: 40px;
    padding: 0;
    text-align: center;
    }
    .blog-post {
      display: flex;
      flex-direction: column;
      align-items: flex-start; /* Align the tops of the images and content */
      background: #fff;
      margin-bottom: 30px; /* Space between posts */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
      border-radius: 10px; /* Rounds the corners of the blog post */
      transition: box-shadow 0.3s ease; /* Smooth transition for shadow */
    }
    
    .blog-post:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow on hover */
  }
  
  .blog-post {
    /* Other styles... */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Original shadow */
    transition: box-shadow 0.3s ease; /* Transition for shadow */
  }
  
  .blog-post:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow on hover */
  }
  
  
    .blog-image-container {
      flex: 1;
      overflow: hidden; /* Keeps the image within the container */
      margin-bottom: 10px;
    }
    
    .blog-image {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease; /* Smooth transition for transform */
    }
    
    .blog-image-container:hover .blog-image {
      transform: scale(1.1); /* Gently zooms the image on hover */
    }
    
    .blog-content {
      flex: 2;
      padding: 20px;
    }
    
    .blog-excerpt {
      color: grey;
      font-size: 16px;
      font-weight: 200;
      line-height: 22px;
      margin-bottom: 10px;
      text-align: justify;
    }
    
    .blog-title {
      margin: 0; /* No margin needed, padding-top is already 0 */
      margin-bottom: 5px; /* Space between title and meta */
    }
    .blog-intro {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .contact-title {
      color: teal;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    
    .blog-title a {
      color: #000; /* Theme color for links */
      font-size: 0.6em; /* Adjusted for larger size */
      line-height: 1.0; /* Line height for titles */
      text-decoration: none; /* No underline for links */
    }
    
    .blog-title a:hover {
      text-decoration: none; /* No underline on hover */
      color: lightseagreen; /* Color change on hover */
    }
    
    .blog-post:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Elevation effect on hover */
    }
    
  
  .blog-meta {
    display: flex;
    align-items: center;
    font-size: 0.8em;
    color: #666;
    gap: 10px; /* Adjust the space between icons and text */
  }
  
  .blog-meta i {
    margin-right: 5px; /* Space after the icon */
    color: #909090; /* Adjust the color to match your theme */
  }
  
  .blog-meta span {
    margin-right: 15px; /* Space after the text if another icon follows */
  }
  
  .blog-section .blog-intro p {
    color: black;
  }
  
  /* You can also add hover effects or additional styling as needed */
  
  
  
  .read-more {
    display: inline-block;
    background-color: #fff;
    color: lightseagreen;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border-color: lightseagreen;
    margin-top: 15px;
    transition: background-color 0.3s ease;
  }
  
  .read-more:hover {
    background: lightseagreen; /* Darker blue on hover */
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .blog-wrapper {
        grid-template-columns: 1fr; /* Stack posts in a single column on smaller screens */
    }
  }
  
  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
  }
  

  
  .site-header {
    /* Styles for your header */
  }
  
  .content-area {
    display: flex;
    margin: 20px;
  }
  
  .blog-main {
    flex: 3; /* Takes up 3/4 of the space */
    margin-right: 20px;
  }
  
  .sidebar {
    flex: 1; /* Takes up 1/4 of the space */
    /* Styles for sidebar */
  }
  
  .site-footer {
    background-color: lightseagreen;
    color: white;
    text-align: center;
    padding: 10px 0;
  }
  
  
   
  .timeline-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .timeline-block {
    text-align: center;
    cursor: pointer;
  }
  
  .event-details {
    margin-top: 20px;
    padding: 20px;
    background-color: #ddd;
    display: none;
  }



.pagebreak-section {
    background: #f5f5f5; /* Light background for the entire section */
    padding: 50px 0; /* Spacing around the services container */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Creates a responsive grid */
    gap: 20px; /* Space between grid items */
    padding: 0 15px; /* Padding for the container */
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center the container */
}

.service-item {
    background: #ffffff; /* White background for each service card */
    border-radius: 10px; /* Rounded corners for the card */
    padding: 30px; /* Padding inside each card */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center the text and icon */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.service-item:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.service-icon .fa {
    font-size: 36px; /* Icon size */
    color: lightseagreen; /* Icon color, can be any hex color */
    margin-bottom: 20px; /* Space below the icon */
}


.service-title {
    color: #333333; /* Dark text for readability */
    margin-bottom: 10px; /* Space below the title */
}

.service-description {
    color: #666666; /* Lighter text color for the description */
}

.services-section  {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.services-section h1{
  font-size: 30px;
  color: lightseagreen;
  margin-bottom: 15px;
}

.services-section p{

  color: grey;
  font-size: 16px;
  font-weight: 200;
  line-height: 22px;
  margin-bottom: 40px;
  padding: 0;
  text-align: center;
  }

.service-card {
  flex: 1; /* Each card will take up equal width */
  text-align: center;
  transition: transform 0.3s;
  overflow: hidden; /* Ensures that content does not overflow */
}

.service-image {
  width: 100%;
  min-height: 600px;
  display: block; /* Removes bottom space under the image */
}


@media (max-width: 1200px) {
  .pagebreak-section {
    flex-direction: column; /* Stack cards on smaller screens */
  }
}




.service-card {
    position: relative;
    flex-basis: 30%; /* Adjust size to fit three items per row */
    text-align: center;
  }
  
  .service-video-container {
    position: relative;
    overflow: hidden;
  }
  
  .service-video {
    width: 100%;
    min-height: 300px; /* Minimum height for all videos */
    /* Ensure the video is centered in the container */
    object-fit: cover;
  }
  
  .service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent overlay */
    color: #000;
    width: 100%;
    padding: 10px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}


/* Spacer for Header Image */
.spacer {
    height: 100px;
}

/* Contact Header Image */
.contact-header-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.contact-header-image {
  width: 100%;
  height: 350px; /* or whatever height you like */
  object-fit: cover;
  object-position: center;
  display: block;
}


/* Contact Page Adjustments */
.contact-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.contact-info-container {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    text-align: center;
    padding: 20px 0;
    background-color: rgb(249, 249, 249);
    margin-bottom: 40px;
}
.contact-info-container div {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contact-info-container i {
    font-size: 24px;
    color: teal;
    margin-bottom: 10px;
}

/* Form & Map Layout */
.form-map-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-height: 150px;
  resize: vertical;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    font-size: 18px;
    color: teal;
    background-color: white;
    text-decoration: none;
    border: 2px solid teal;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}
.contact-form button:hover {
    background-color: darkcyan;
    color: white;
}
.contact-form {
  flex: 1; /* Increase form width */
  min-width: 300px;
  margin-right: 20px;
}

.map-container {
  flex: 1; /* Decrease map width */
  min-width: 250px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.footer {
  background-color: lightseagreen;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.0rem;
  margin-top: 60px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-map-container {
        flex-direction: column;
    }
    .contact-form {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
  


.service-card {
    position: relative;
    flex-basis: 30%; /* Adjust size to fit three items per row */
    text-align: center;
  }
  
  .service-video-container {
    position: relative;
    overflow: hidden;
  }
  
  .service-video {
    width: 100%;
    min-height: 300px; /* Minimum height for all videos */
    /* Ensure the video is centered in the container */
    object-fit: cover;
  }
  
  .service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent overlay */
    color: #000;
    width: 100%;
    padding: 10px;
  }
  
 
.tab-container {
    margin: 0 auto;
    width: 80%;
    font-family: Arial, sans-serif;
    padding: 100px 0;
}

.tabs {
    overflow: hidden;
    background-color: #f1f1f1;
}

.tab-button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #ccc;
}

.tab-content {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.background-layer {
  position: absolute;
  width: 45%;
  height: 90%;
  left: 0;
  background-image: url('/Users/dr.tucker/Documents/Website Development/images/19.png');
  background-size: cover;
  background-position: center;
  transform: rotate(-8deg);
  z-index: -2;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.card {
    margin-bottom: 20px;
    border-radius: 10px;
}
.accordion-button {
    font-weight: bold;
}
.dissertation-container {
display: flex;
justify-content: space-around; /* Distributes items evenly */
gap: 10px;
flex-wrap: nowrap; /* Prevents items from wrapping to a new row */
  }

.dissertation-topic {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-width: 32%; /* Adjusted so all fit in one row */
}
.dissertation-topic img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

body {
  margin: 0;
  padding: 0;
}

/* HERO CONTAINER */
.container {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* CONTENT OVER VIDEO */
.content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 80%;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.lead-in {
  font-weight: 700;
  font-size: 2.8rem;
  margin-right: 10px;
  color: white;
}

/* TYPEWRITER */
.typewriter-wrapper {
  display: inline-block;
  min-height: 2.8rem;
  min-width: 300px; /* prevent jumping layout */
  font-size: 2.5rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
}

.typing-text {
  display: inline-block;
  color: #fff;
}

/* MOTTO TEXT */
.content p {
  font-size: 1.2rem;
  color: #eee;
  margin-top: 15px;
  font-style: italic;
}

/* CTA BUTTON */
.scroll-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 50px;
  transition: 0.3s ease;
}

.scroll-button:hover {
  background: white;
  color: teal;
}


.card {
    margin-bottom: 20px;
    border-radius: 10px;
}
.book-preview {
    text-align: center;
    margin-top: 30px;
}
.blurred-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.blurred-title span {
    filter: blur(4px);
}
.click-to-preview {
    font-size: 1.2rem;
    font-weight: bold;
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.blurred-cover {
    width: 200px;
    height: 300px;
    background-image: url('images/blurred book cover.png');
    background-size: cover;
    filter: blur(5px);
    margin: auto;
    cursor: pointer;
}
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}


/* Navigation Bar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links ul li a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover,
.scrolled .nav-links ul li a:hover {
  color: teal;
}

.scrolled {
  background-color: white;
}

/* Research Accordion */
.card {
  margin-bottom: 20px;
  border-radius: 10px;
}

.accordion-button {
  font-weight: bold;
}

/* Dissertation Section */
.dissertation-container {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: nowrap;
}

.dissertation-topic {
  flex: 1;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 32%;
}

.dissertation-topic img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Book Preview */
.book-preview {
  text-align: center;
  margin-top: 30px;
}

.blurred-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.blurred-title span {
  filter: blur(4px);
}

.click-to-preview {
  font-size: 1.2rem;
  font-weight: bold;
  animation: bounce 1s infinite;
}

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

.blurred-cover {
  width: 200px;
  height: 300px;
  background-image: url('images/blurred%20book%20cover.png');
  background-size: cover;
  filter: blur(5px);
  margin: auto;
  cursor: pointer;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .dissertation-container {
    flex-direction: column;
    align-items: center;
  }

  .dissertation-topic {
    max-width: 90%;
    margin-bottom: 20px;
  }
}
   /* Section Container */
   .innovation-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 50px 5%;
}

/* Left Side: Title & Description */
.innovation-content {
    flex: 1;
    max-width: 40%;
}

.innovation-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.innovation-content h2 .icon {
    margin-right: 10px;
    font-size: 2.5rem;
}

.innovation-content p {
    font-size: 1.1rem;
    margin-top: 10px;
    line-height: 1.6;
    color: #555;
}

/* Right Side: Grid Layout */
.research-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.research-area {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px); /* 3 Per Row */
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.research-area:hover {
    transform: translateY(-5px);
}

.research-area img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.research-area h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.research-area p {
    font-size: 0.95rem;
    color: #666;
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Back to Homepage */
.back-link {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    margin-top: 40px;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .innovation-section {
        flex-direction: column;
        text-align: center;
    }

    .innovation-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .research-grid {
        justify-content: center;
    }

    .research-area {
        flex: 1 1 calc(50% - 20px); /* 2 per row */
    }
}

@media (max-width: 768px) {
    .research-area {
        flex: 1 1 100%; /* 1 per row */
    }
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

/* Section Container */
.innovation-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 50px 5%;
}

/* Left Side: Title & Description */
.innovation-content {
    flex: 1;
    max-width: 40%;
}

.innovation-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.innovation-content h2 .icon {
    margin-right: 10px;
    font-size: 2.5rem;
}

.innovation-content p {
    font-size: 1.1rem;
    margin-top: 10px;
    line-height: 1.6;
    color: #555;
}

/* Right Side: Grid Layout */
.research-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.research-area {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px); /* 3 Per Row */
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.research-area:hover {
    transform: translateY(-5px);
}

.research-area img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.research-area h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.research-area p {
    font-size: 0.95rem;
    color: #666;
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .innovation-section {
        flex-direction: column;
        text-align: center;
    }

    .innovation-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .research-grid {
        justify-content: center;
    }

    .research-area {
        flex: 1 1 calc(50% - 20px); /* 2 per row */
    }
}

@media (max-width: 768px) {
    .research-area {
        flex: 1 1 100%; /* 1 per row */
    }
} 
/* Apply blue only to regular text links inside paragraphs */
p a:link,
p a:visited {
  color: blue;
  text-decoration: underline;
}


