body { 
      margin: 0;
      font-family: Arial, sans-serif;
      color: black;
      background-color: #fff;   }
    .section {
      padding: 60px 20px;
    }
    /* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 1rem;
}
.download-btn {
  background-color: coral;
  color: white !important;
  padding: 8px 15px;
  border-radius: 5px;
}

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background: url('headebg.png') no-repeat right center;
  background-size: cover;
  min-height: 100vh;
  gap: 30px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.2rem;
  margin: 5px 0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

    /*.hero {
  background-color: #fff;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;                    
  padding: 20px;                        
  box-sizing: border-box;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.5);
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f0c040;
}

    .container {
      max-width: 1000px;
      margin: auto;
    }*/
    .section-title {
      font-size: 2rem;
      margin-bottom: 20px;
    }
   
    .slider-wrapper {
      overflow: hidden;
    }
    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      min-width: 100%;
      flex-shrink: 0;
      padding: 20px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 20px;
    }
    .slider-buttons {
      text-align: center;
      margin-top: 20px;
    }
    .slider-buttons button {
      padding: 10px 20px;
      margin: 0 5px;
      background-color: #007BFF;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    form button {
      width: 100%;
      padding: 10px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    footer {
      background-color: #f0f0f0;
      text-align: center;
      padding: 40px 20px;
    }
    .social-links a {
      margin: 0 10px;
      color: #007BFF;
      text-decoration: none;
    }

.about-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/**.slider-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.slider-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    height: 200px;
}

.slide {
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}

.slide ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 40px;
}

.slide li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}*
.slider-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.slider-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    height: 200px;
}

.slide {
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}

.slide ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 40px;
}

.slide li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}
/* RESPONSIVE DESIGN */

.split-slider-section {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-wrap: wrap;
}

.left-background {
  flex: 1;
  background: linear-gradient(to bottom right, #4b6cb7, #182848);
  min-height: 300px;
}

.right-content {
  flex: 1;
  background: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.slide ul {
  list-style-type: disc;
  padding-left: 25px;
}

.slide li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #444;
}
.entrepreneur-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.entrepreneur-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  height: 400px;
}

.entrepreneur-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.entrepreneur-slide.active {
  opacity: 1;
  position: relative;
}

.entrepreneur-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

.entrepreneur-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.entrepreneur-content {
  max-width: 600px;
  text-align: left;
}

.entrepreneur-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.entrepreneur-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/*.tools-section-alt {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.tools-left, .tools-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}

.tools-right {
  background: linear-gradient(to top left, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.tools-heading {
  font-size: 2.5rem;
  text-align: center;
}

.tools-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 350px;
}

.tools-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tools-slide.active {
  opacity: 1;
  position: relative;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
}

.tool {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s forwards;
}

.top {
  animation-delay: 0.3s;
}

.bottom {
  animation-delay: 0.6s;
}

/* Animation *
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}*

.tools-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.tools-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.tools-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  justify-items: center;
  transition: transform 1s ease-in-out;
}

.slide img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Animate Slides *
@keyframes autoSlide {
  0% { transform: translateX(0%); }
  33.33% { transform: translateX(-100%); }
  66.66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

.tools-slider {
  animation: autoSlide 12s infinite;
}

/* Responsive *
@media (max-width: 600px) {
  .slide {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide img {
    width: 60px;
    height: 60px;
  }
}
*/

 .tools-slider-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.tools-slider-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.tools-slider-wrapper {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.tools-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide-container {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}

.slide-container img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slide-container img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .slide-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .slide-container img {
    width: 80px;
    height: 80px;
  }
}

.projects-masonry {
  display: flex;
  flex-direction: column;
  padding: 60px 40px;
  background: #fafafa;
}

.projects-intro {
  max-width: 500px;
  margin-bottom: 30px;
}

.projects-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.projects-intro p {
  color: #666;
  font-size: 1rem;
}

/* Masonry grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 10px;
  gap: 15px;
}

.masonry-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Make grid items span based on image height */
.masonry-item {
  display: flex;
  flex-direction: column;
}

.masonry-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.carousel-section {
  text-align: center;
  background: #eaeaea;
  padding: 60px 20px;
}

.carousel-section h2 {
  font-size: 2rem;
  color: #666;
  margin-bottom: 10px;
}

.carousel-section p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-img {
  min-width: 40%; /* Previously 80% */
  margin: 0 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}


.carousel-img:hover {
  transform: scale(1.03);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}
/**.tools-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.tools-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  height: 300px;
}

.tools-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tools-slide.active {
  opacity: 1;
  position: relative;
}

.tools-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #444;
}

.tools-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tools-icons img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tools-icons img:hover {
  transform: scale(1.1);
}
**/

.contact-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
}

.contact-form h2,
.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  font-size: 1rem;
  border: none;
  background-color: coral;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: coral;
}

.contact-info p {
  margin: 10px 0;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 30px;
        background: #fff;
        padding: 15px 20px;
        border-radius: 8px;
        align-items: center;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .navbar {
        padding: 15px 20px;
    }
}

.academic-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.academic-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.academic-slider {
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.academic-track {
  display: flex;
  transition: transform 0.6s ease;
  width: max-content;
}

.academic-card {
  display: flex;
  min-width: 100%;
  padding: 20px;
  align-items: center;
  gap: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.academic-left img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
}

.academic-right {
  text-align: left;
}

.academic-right h3 {
  margin: 0;
  font-size: 1.4rem;
}

.academic-right .school {
  font-weight: bold;
  color: #555;
}

.academic-right .date {
  font-size: 0.95rem;
  color: #888;
  margin: 6px 0;
  
}

.academic-right .desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
  overflow: hidden;
}

.breadcrumb-section {
  background-image: url('/images/headerbg.png') /* Replace with your actual path */
  background-size cover;
  background-position:center;
  padding: 40px 0;
  position: relative;
  color: white;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.breadcrumb {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb span {
  color: #ddd;
}

.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  color: #555;
}


@media (max-width: 480px) {
    .intro h1 {
        font-size: 1.5rem;
    }

    .intro p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        top: 60px;
        right: 20px;
    }
    
}
