/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight:bold;
   
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
     margin-right: 50px;  /* Increase spacing between title and nav links */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-start; /* Align items to the start */
    align-items: center; /* Vertically center the items */
    gap: 20px; /* Add equal spacing between all items */
    flex-grow: 1; /* Allow the nav links to take up remaining space */
}

.navbar .nav-links li {
    margin-left: 0; /* Remove individual margin-left */
}

.navbar .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    border: none;
    display: inline-block; /* Ensure consistent spacing */
}
.navbar .nav-links a:hover {
    color: orange;
}
/* Navbar Dropdown */
.dropdown {
    position: relative;
    margin-left: 20px;
}

.dropbtn {
    background: none; /* Remove default button background */
    border: none; /* Remove default button border */
    color: black; /* Match the color of the links */
    font-size: 18px; /* Match the font size of the links */
    font-weight: bold; /* Match the font weight of the links */
    padding: 10px; /* Match the padding of the links */
    cursor: pointer; /* Ensure it looks clickable */
    display: inline-block; /* Ensure consistent spacing */
    text-align: left; /* Align text to the left */
    font-family: 'Montserrat', sans-serif; /* Match the font family */
 
}

.dropbtn:hover {
    color: orange; /* Match the hover effect of the links */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #c68dfe;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 10px;
    width: 1000px; /* Increased width to accommodate subcourses */
    border-radius: 5px;
    top: 100%; /* Position the dropdown below the button */
    left: 0;
    flex-direction: row; /* Ensure main courses and subcourses are side by side */
    gap: 30px; /* Add space between main courses and subcourses */
}

/* Main Courses - Fixed Width */
.main-courses {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between main courses */
    width: 200px; /* Fixed width for main courses */
    
}


.course-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    background-color:white;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%; /* Take full width of the container */
}

.course-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.7), 0 0 15px rgba(0, 255, 255, 0.9);

     
}

.course-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.course-item img:hover{

  transform: perspective(1000px) rotateY(15deg) translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.4);
}

/* Subcourses - Fixed Width and Side-by-Side */
.subcourses-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between subcourses */
    width: calc(100% - 220px); /* Take remaining width after main courses */
  
}

.subcourses {
    display: none;
    flex-direction: row; /* Subcourses in a row */
    gap: 10px; /* Space between subcourses */
    flex-wrap: wrap; /* Allow wrapping to the next line */
  height:65px;
  
}

.subcourse {
    display: flex;
    align-items: center;
    padding: 10px; /* Reduced padding for better fit */
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    height:65px;
    cursor: pointer; /* Ensures the hand symbol appears */
    width: calc(33.33% - 10px); /* Fit three in a row with gap */
    min-width: calc(33.33% - 10px); /* Prevent shrinking */
    max-width: calc(33.33% - 10px); /* Prevent expanding */
    box-sizing: border-box; /* Include padding and border in width calculation */
    overflow: hidden; /* Prevent text overflow */
    white-space: nowrap; /* Prevent text from wrapping */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
}
.subcourse a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits text color */
    display: block; /* Makes the link behave like a div */
}

.subcourse img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.active {
    display: flex; /* Show subcourses when active */
}


.logo {
    display: flex;
    align-items: center; /* Align logo and text */
    font-size: 24px;
    font-weight: bold;
}
/* Sidebar Styles */
.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: white;
    padding-top: 60px;
    box-shadow: 5px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

/* Active sidebar */
.sidebar.active {
    left: 0;
}

/* Sidebar links styling */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List items */
.sidebar-links li {
    margin: 0;
    padding: 0;
}

/* Anchor and summary styles */
.sidebar-links a,
.sidebar-links summary {
    display: block;
    padding: 12px 20px;
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    box-sizing: border-box;
}

/* Hover effect */
.sidebar-links a:hover,
.sidebar-links summary:hover {
    color: orange;
}

/* Details tag reset */
details {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Remove default margin on summary */
summary {
    padding: 12px 20px;
    margin: 0;
    list-style: none;
    background: #f9f9f9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* Arrow */
summary::after {
    content: '►';
    transition: transform 0.2s ease;
}

/* Rotate arrow when open */
details[open] summary::after {
    transform: rotate(90deg);
}

/* Hide inner list if not open */
details:not([open]) > ul {
    display: none;
}

/* Nested UL styles */
details > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Sub-items */
details ul li {
    margin: 0;
    padding: 0;
}

/* Sub-links */
details ul li a {
    padding: 10px 30px;
    font-size: 15px;
    color: #555;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    display: block;
    text-decoration: none;
    box-sizing: border-box;
}

/* Sub-links hover */
details ul li a:hover {
    color: orange;
}

/* Optional: Small spacing between main items */
.sidebar-links > li {
    margin-bottom: 5px; /* You can adjust/remove this */
}

.logo-img {
    width: 40px;  /* Adjust size as needed */
    height: auto;
    margin-right: 10px; /* Space between logo and text */
}
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
}
/* Title Text Styles */
.title-text {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -5.5px; /* Adjust to a negative value to reduce letter spacing */
    margin: 0;
    padding: 0;
    display: inline;
    line-height: 1; /* Remove any extra line-height to keep letters close */
}

/* Letter Style with Individual Colors */
.title-text span {
    display: inline;  /* Ensure the letters are inline to prevent spacing */
    margin: 0;  /* Remove any margin around letters */
    padding: 0;  /* Remove any padding */
    letter-spacing: -1px;
}
.subscript {
    font-size: 12px; /* Smaller font size */
    font-weight: bold;
    color: #000000; /* Lighter color for contrast */
    margin-top: -4px; /* Adjust spacing */
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    color:black;
    position: relative;/* Ensure the logo is positioned relative to this container */
     perspective: 1000px; /* Add perspective for 3D effect */
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: 0.4s;
      z-index: 1; /* Ensure bars are above the logo */
}

/* Logo Overlay with 3D Effect */
.menu-toggle .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg) scale(0.8); /* Initial 3D transformation */
    opacity: 0.7; /* Make the logo slightly transparent */
    transition: transform 0.5s ease, opacity 0.3s ease;
    z-index: 0; /* Place the logo behind the bars */
}

/* 3D Effect When Sidebar is Open */
.menu-toggle.sidebar-open .logo-overlay {
    transform: translate(-50%, -50%) rotateY(180deg) rotateX(20deg) scale(1); /* 3D flip and tilt effect */
    opacity: 1; /* Make the logo fully visible */
}
/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* Hide desktop nav links on mobile */
    }

    .menu-toggle {
        display: flex; /* Show menu toggle button on mobile */
    }

    .navbar .logo {
        margin-left: 60px; /* Adjust logo margin to accommodate the toggle button */
    }
}




/*body design startb here */


/* Main Content Box */
.content-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1450px;
    margin: 1px auto;
    padding: 20px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left Side: Course Details */
.course-details {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.course-details h1 {
    font-size: 2.5rem;
    color: #05717F;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.course-details .description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #05717F;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a3471e;
}

/* Right Side: Image Slider */
/* Right Side: Image Slider */
.slider-container {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none; /* Hide all slides by default */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slide.active {
    display: block; /* Show the active slide */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
/* Navigation Dots */
.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #bc5b26;
}

/* Next/Previous Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
    }

    .course-details, .slider-container {
        max-width: 100%;
    }

    .course-details h1 {
        font-size: 2rem;
    }

    .course-details .description {
        font-size: 1rem;
    }
}
/* Most Demand Courses Section */
.most-demand-courses {
    text-align: center;
    padding: 5px 20px;
    background-color: white;
}

.most-demand-courses h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #05717F;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid black; /* Added border */
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 15px;
}

.course-content h3 {
    font-size: 1.5rem;
    color: #05717F;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 1rem;
    color: #555;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #05717F;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .most-demand-courses h2 {
        font-size: 1.8rem;
    }

    .course-content h3 {
        font-size: 1.3rem;
    }

    .course-content p {
        font-size: 0.9rem;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .courses-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .most-demand-courses h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .courses-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .course-content h3 {
        font-size: 1.3rem;
    }
    .course-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .courses-container {
        grid-template-columns: 1fr;
    }
    .most-demand-courses h2 {
        font-size: 1.5rem;
    }
}
.opportunities {
    background-color: white;
    padding: 1rem 0;
}

.opportunities h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #05717F;
}

/* Card Container - Enables Horizontal Scroll */
.cards-container {
    overflow-x: auto;
    display: flex;
    justify-content: center;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 1rem;
}

/* Cards */
.cards {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
}

/* Individual Card */
.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    white-space: normal;
    flex-shrink: 0;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.card button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #05717F;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card button:hover {
    background-color: #e64a19;
}

/* Responsive Design for Different Screen Sizes */
@media (max-width: 768px) {
    .cards-container {
        justify-content: flex-start;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        padding: 0 10px;
    }

    .cards {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .card {
        min-width: 240px;
        max-width: 260px;
    }

    .card img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .card {
        min-width: 220px;
        max-width: 240px;
    }

    .card img {
        height: 140px;
    }
}

/* General Styles */
.services-section {
  text-align: center;
  background: #ff; /* Light blue-gray background */
   padding: 20px 20px 40px 20px; /* Consistent units */ /* Consistent padding */
}

.section-heading {
  font-size: 2.5rem;
  color: #05717F;
  margin-bottom: 40px; /* Increased margin for better spacing */
  margin-top: 0;
  font-weight: 600;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Adjusted gap */
  background-color: transparent; /* Remove yellow background */
}

.service-box {
  width: 300px;
  height: 380px; /* Slightly reduced height for a more compact look */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px; /* Adjusted padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
   border: 0.1px solid grey; /* Added border */
}

.service-box img {
  width: 150px; /* Larger image size */
  height: 150px; /* Larger image size */
  margin-bottom: 15px; /* Reduced margin for less space between image and heading */
  transition: transform 0.3s ease;
}

.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px; /* Reduced margin for less space between heading and paragraph */
  color: #5COE14;
  transition: color 0.3s ease;
}

.service-box p {
  font-size: 0.9rem;
  color: #05717F;
  margin-bottom: 0; /* Removed margin to avoid extra space */
}

/* Unique Hover Effects */
#online-training:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border: 2px solid #1976d2; /* Blue border */
}

#online-training:hover img {
  transform: translateY(-10px); /* Move image up */
}

#online-training:hover h3 {
  color: #1976d2; /* Change heading color */
}

#corporate-training:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border: 2px solid #f57c00; /* Orange border */
}

#corporate-training:hover img {
  transform: translateY(-10px); /* Move image up */
}

#corporate-training:hover h3 {
  color: #f57c00; /* Change heading color */
}

#internship:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border: 2px solid #689f38; /* Green border */
}

#internship:hover img {
  transform: translateY(-10px); /* Move image up */
}

#internship:hover h3 {
  color: #689f38; /* Change heading color */
}
/* Active Effects for Mobile */
@media (hover: none) and (pointer: coarse) {
  #online-training:active {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid #1976d2; /* Blue border */
  }

  #online-training:active img {
    transform: rotate(10deg); /* Slight rotation */
  }

  #online-training:active h3 {
    color: #1976d2; /* Change heading color */
  }

  #corporate-training:active {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid #f57c00; /* Orange border */
  }

  #corporate-training:active img {
    transform: scale(1.1); /* Slightly enlarge the image */
  }

  #corporate-training:active h3 {
    color: #f57c00; /* Change heading color */
  }

  #internship:active {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid #689f38; /* Green border */
  }

  #internship:active img {
    transform: translateY(-10px); /* Move image up */
  }

  #internship:active h3 {
    color: #689f38; /* Change heading color */
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .service-box {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .service-box {
    width: 90%; /* Adjust width for very small screens */
  }
}
/*collaboration*/
/* Collaboration Section Styles */
.collaboration-section {
  text-align: center;
  background: #ffffff; /* White background */
  background-color:white;
  padding: 40px 20px 60px 20px ; /* Increased padding for better spacing */
}

.collaboration-heading {
  font-size: 2.5rem;
  color: #05717F;
  margin-bottom: 20px; /* Increased margin for better spacing */
  margin-top:0.5px;
  font-weight: 600;
  font-family: 'Georgia', serif; /* Different font style for heading */
}

.collaboration-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px; /* Limit width for better readability */
  margin: 0 auto; /* Center the content */
  gap: 40px; /* Space between description and image */
}

.collaboration-description {
  flex: 1;
  text-align: left;
}

.collaboration-description p {
  font-size: 1.1rem;
  color: #05717F;
  line-height: 1.8;
  font-family: 'Merriweather', serif; /* Different font style for description */
}

.collaboration-image {
  flex: 1;
  text-align: right;
}

.collaboration-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners for the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
}

/* Responsive Design */
@media (max-width: 768px) {
  .collaboration-content {
    flex-direction: column; /* Stack description and image vertically on mobile */
    gap: 20px; /* Reduced gap for mobile */
  }

  .collaboration-description {
    text-align: center; /* Center-align text on mobile */
  }

  .collaboration-image {
    text-align: center; /* Center-align image on mobile */
  }
}
/* Internship Program */
.internship-structure-section {
    text-align: center;
    background: white;
    padding: 40px 20px;
}

.structure-heading {
    font-size: 2.5rem;
    color: #05717F;
    font-weight: 600;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.phase {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    animation: floatAnimation 3s infinite ease-in-out alternate;
}

.phase img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes floatAnimation {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .structure-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .structure-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .structure-grid {
        grid-template-columns: 1fr;
    }
    .structure-heading {
        font-size: 1.8rem;
    }
}
/* Domains */
/* Domains */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color:white;
}

.heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9); /* Increased opacity */
    color:black;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added shadow */
}

.box {
    width: 300px;
    background: rgba(255, 255, 255, 0.2); /* Darker background for better contrast */
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9); /* Improved text visibility */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Fix for mobile tap issue */
.box:active {
    transform: scale(0.98);
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.box h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    font-weight: bold;
    color: black; /* Pure white for headings */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.box ul {
    list-style-type: disc;
    padding-left: 18px;
    text-align: left;
    font-size: 14px;
    color: black; /* Better contrast */
}

.category {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-top: 0px;
    color: purple;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 🔥 Mobile Fix */
@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px;
    }

    .box {
        width: 90%;
        max-width: 350px;
        padding: 15px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;

        /* 🔥 Force Initial Render Fix */
        transform: translateZ(0);
        will-change: transform, opacity;
    }

    .box img {
        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    .box h3 {
        font-size: 18px;
        color: black;
        margin-top: 10px;
    }

    .box ul {
        text-align: left;
        font-size: 14px;
        padding-left: 20px;
        color: black;
    }

    .box:active {
        transform: scale(0.98);
    }
}
/* Container for the "What You Will Gain" section */
.gain-container {
  width: 100%; /* Full width */
  /*background: linear-gradient(135deg, #6a11cb, #2575fc);*/ /* Gradient background */
  background-color:#05717F;
  padding: 20px; /* Padding for all sides */
  box-sizing: border-box; /* Include padding in width calculation */
  overflow: hidden; /* Prevent overflow */
}

/* Heading */
.gain-heading {
  text-align: center;
  font-size: 2rem; /* Smaller font size for mobile-first approach */
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Layout */
.gain-content {
  display: flex;
  flex-direction: column; /* Stack image and key points vertically by default */
  gap: 20px; /* Space between image and key points */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box; /* Include padding in width calculation */
}

/* Image Section */
.gain-image-section {
  width: 100%; /* Full width */
}

.gain-image {
  width: 100%; /* Full width */
  max-width: 400px; /* Limit maximum width */
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: block; /* Ensure the image behaves as a block element */
  margin: 0 auto; /* Center the image */
}

/* Key Points Section */
.gain-key-points {
  width: 100%; /* Full width */
}

.gain-list {
  list-style: none;
  padding: 0;
  margin: 0; /* Remove default margin */
}

.gain-list li {
  font-size: 1rem; /* Smaller font size for mobile */
  color: #e0e0e0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.gain-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #4caf50; /* Green tick color */
}

/* Responsive Design for Desktop */
@media (min-width: 768px) {
  .gain-heading {
    font-size: 2.5rem; /* Larger font size for desktop */
    margin-bottom: 40px;
  }

  .gain-content {
    flex-direction: row; /* Side-by-side layout for desktop */
    align-items: center; /* Vertically center items */
    gap: 40px; /* Increase gap between image and key points */
    padding: 30px; /* Increase padding for desktop */
  }

  .gain-image-section {
    flex: 1; /* Take up available space */
  }

  .gain-key-points {
    flex: 1; /* Take up available space */
  }

  .gain-list li {
    font-size: 1.2rem; /* Larger font size for desktop */
  }
}
/* Container for the "What You Will Gain" section */
.gain-container {
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the container */
 /* background: linear-gradient(135deg, #6a11cb, #2575fc);*/ /* Gradient background */
   background-color:#05717F;
  padding: 40px 0; /* Padding top and bottom */
  overflow: hidden; /* Prevent horizontal overflow */
}

/* Wrapper to center content */
.gain-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Add padding to prevent content from touching edges */
  box-sizing: border-box; /* Ensure padding is included in width */
}

/* Heading */
.gain-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Layout */
.gain-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box; /* Ensure padding is included in width */
}

/* Image Section */
.gain-image-section {
  flex: 1;
}

.gain-image {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Key Points Section */
.gain-key-points {
  flex: 1;
}

.gain-list {
  list-style: none;
  padding: 0;
  margin: 0; /* Remove default margin */
}

.gain-list li {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.gain-icon {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #4caf50; /* Green tick color */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .gain-container {
    padding: 20px 0; /* Reduce padding for mobile */
  }

  .gain-wrapper {
    padding: 0 15px; /* Adjust padding for smaller screens */
  }

  .gain-heading {
    font-size: 2rem; /* Smaller heading for mobile */
    margin-bottom: 20px; /* Reduce margin for mobile */
  }

  .gain-content {
    flex-direction: column; /* Stack image and key points vertically */
    gap: 20px; /* Reduce gap between items */
    padding: 20px; /* Reduce padding for mobile */
  }

  .gain-image {
    max-width: 100%; /* Ensure image fits within the container */
    height: auto; /* Maintain aspect ratio */
  }

  .gain-list {
    text-align: left; /* Align list items to the left */
  }

  .gain-list li {
    font-size: 1rem; /* Smaller font size for mobile */
  }
}

/* Fix for very small devices (e.g., iPhone SE) */
@media (max-width: 480px) {
  .gain-heading {
    font-size: 1.8rem; /* Even smaller heading for very small devices */
  }

  .gain-content {
    padding: 15px; /* Further reduce padding for very small devices */
  }

  .gain-list li {
    font-size: 0.9rem; /* Smaller font size for very small devices */
  }
}
.extra {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.section {
    background: #ffffff;
    padding: 25px;
    margin: 15px auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003366;
}

h2 {
    font-size: 1.8rem;
    color: #ff6600;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .extra {
        padding: 20px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
}

/* Container for the Mission, Vision, and Goals section */
.mission-vision-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Heading */
.mv-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

/* Mission, Vision, and Goals Section */
.mv-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Image Section */
.mv-image-section {
  width: 100%;
  max-width: 400px;
  object-fit:cover;
}

.mv-image {
  width: 100%;
  object-fit:cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Description Section */
.mv-description {

  width: 100%;
  max-width: 600px;
  text-align: center;
}

.mv-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.mv-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design for Desktop */
@media (min-width: 768px) {
  .mv-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .mv-description {
    text-align: left;
  }

  .mv-image-section {
    flex: 1;
    object-fit:cover;
  }

  .mv-description {
    flex: 2;
  }
}

/* Responsive Design for Mobile */
@media (max-width: 767px) {
  .mv-heading {
    font-size: 2rem;
  }

  .mv-title {
    font-size: 1.8rem;
  }

  .mv-text {
    font-size: 1rem;
  }
}
/* Container for the About Us section */
.about-vision-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 50px auto;
    width: 100%;
    
    max-width: 1430px; /* Prevents stretching too wide */
    background-color: green;
    padding: 0px; /* Added padding for better spacing */
    box-sizing: border-box; /* Ensures padding is included in width */
   
}

/* About Card */
.about-card {
    flex: 1; /* Makes the card take up available space */
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #d9d9d9);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), 
                -5px -5px 15px rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-width: 300px; /* Ensures text fits well even on small devices */
}

.about-card:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), 
                -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.about-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #6B8E23;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .about-vision-container {
        flex-direction: column; /* Stack cards vertically on mobile */
        align-items: center; /* Center cards horizontally */
        gap: 20px; /* Space between stacked cards */
        padding: 10px; /* Reduce padding for mobile */
    }

    .about-card {
        width: 100%; /* Full width for mobile */
        min-width: unset; /* Remove fixed min-width */
        flex: 1 1 auto; /* Allow cards to grow and shrink */
    }

    .about-card h2 {
        font-size: 20px; /* Slightly smaller heading for mobile */
    }

    .about-card p {
        font-size: 14px; /* Slightly smaller text for mobile */
    }
}

.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 25vh;
    background: #F5F5DC;
    
}

.social h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #6B8E23;
    text-align: center;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.wrapper .icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.wrapper .icon span {
    display: block;
    height: 60px;
    width: 60px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
    transition: 0.4s ease-in-out;
}

.wrapper .icon span i {
    line-height: 60px;
    font-size: 25px;
     color: black; /* Ensures icons are black by default */
    transition: color 0.3s ease-in-out;
}
.wrapper .icon:hover span i {
    color: white; /* Changes to white on hover */
}
/* Simulated hover effect for mobile (when tapped) */
.wrapper .icon:active span i {
    color: white;
}
/* Tooltip styling */
.wrapper .icon .tooltip {
    position: absolute;
    top: 0;
    z-index: 1;
    background: #fff;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease-in-out;
    white-space: nowrap;
}

.wrapper .icon:hover .tooltip {
    top: -40px;
    opacity: 1;
    pointer-events: auto;
}

/* Tooltip Arrow */
.icon .tooltip:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background: #fff;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%) rotate(45deg);
}

/* Hover Effects - Change Background Colors */
.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip:before {
    background: #3B5999;
    color: #fff;
}

.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip:before {
    background: #46C1F6;
    color: #fff;
}

.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip:before {
    background: #E1306C;
    color: #fff;
}

.wrapper .youtube:hover span,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip:before {
    background: #DE463B;
    color: #fff;
}

.wrapper .whatsapp:hover span,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip:before {
    background: #25D366;
    color: #fff;
}

.wrapper .linkedin:hover span,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip:before {
    background: #0077B5;
    color: #fff;
}

.wrapper .gmail:hover span,
.wrapper .gmail:hover .tooltip,
.wrapper .gmail:hover .tooltip:before {
    background: #D14836;
    color: #fff;
}

.wrapper .telegram:hover span,
.wrapper .telegram:hover .tooltip,
.wrapper .telegram:hover .tooltip:before {
    background: #0088CC;
    color: #fff;
}

/* Mobile & Tablet Responsiveness */
@media screen and (max-width: 768px) {
    .social {
        height: auto;
        padding: 30px 10px;
    }

    .wrapper {
        gap: 10px;
    }

    .wrapper .icon span {
        height: 50px;
        width: 50px;
    }

    .wrapper .icon span i {
        font-size: 20px;
        line-height: 50px;
    }

    .wrapper .icon .tooltip {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media screen and (max-width: 480px) {
    .social h2 {
        font-size: 20px;
    }

    .wrapper .icon {
        margin: 5px;
    }

    .wrapper .icon span {
        height: 45px;
        width: 45px;
    }

    .wrapper .icon span i {
        font-size: 18px;
        line-height: 45px;
    }
}

.footer {
        background-color: #162029;
        color: white;
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 20px;
    }
    
    .footer-section {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }
    
    .footer-section h3 {
        border-bottom: 2px solid #bc5b26;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin: 5px 0;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    .social-icons a img {
        width: 30px;
        height: 30px;
        margin: 5px;
    }
    
    .footer-bottom {
        background-color: #111820;
        padding: 10px;
        margin-top: 20px;
    }
    
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
        }
    }

