*{margin: 0;
    padding: 0;}
    body {
        font-family: Arial, sans-serif;
        background-color: #000000;
        color: white;
        padding: 0;
    }

    @keyframes fadeColor {
         /* Start color */
        0% { color: #18ed5e; } 
        25% { color: #304fff; } 
        50% { color: #6600cc; } 
        75% { color: #ff9cff; } 
        100% { color: #000000; } 
        /* End color */
    }

    #proceed-to-quiz {
        background-color: #6600cc;
        border: none;
        color: white;
        padding: 15px 30px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    #proceed-to-quiz:hover {
        background-color: #304fff;
    }

    .top-nav {
        background:linear-gradient(25deg,#f1efec,#f1efec,#304fff);
        color: #000000; /* Text color */
        font-size: 35px;
        padding: 10px 20px; /* Adjust padding as needed */
        display: flex;
        align-items: center; /* Vertically center content */
        display: flex;
        justify-content: center; /* Align items horizontally centered */
        height: 150px; /* Example height of the flex container */
    }
    
    .logo img {
        margin-right: auto;
        margin-right: 150px;
        height: 90px;
    }
    
    .title {
        text-align: center;
        flex-grow: 1; /* Allows the title to take up remaining space */
    }
    .text-with-outline {
        animation: fadeColor 5s infinite; /* Animation duration and repetition */
        font-size: 1.8rem; 
        line-height: 1.2; 
        margin-left: 75px;
        margin-bottom: 10px; 
    }
    
    .part1{
        background-color: #f1efec;
        background-size: 100% 100%;
        height: 100vh;
        width: 100vw; 
        margin-left: -37px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .part2 {
        background: linear-gradient(315deg, #f1efec, #304fff);
        background-size: 100% 100%;
        height: 100vh;
        width: 100vw;
        margin-left: -37px;
        display: flex;
        flex-direction: column; 
        justify-content: center; 
        align-items: center;
    }
    .clickcourse{
        color:#000000;
        size: 20px;
        animation: fadeColor 5s infinite;
    }
    .quizheading{
        font-size: 100px;
        margin-bottom: 40px;
    }
    .container {
         
        margin-right: 10px;
        text-align: center; 
        padding: 100px; 
        position: relative;
        z-index: 1;
    }
    .learn-more-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        transition: background-color 0.3s ease;
    }
    
    .learn-more-btn:hover {
        background-color: #0056b3;
    }
    header, main, footer {
        text-align: center;
        padding: 20px;
    }
    h1 {
        margin-top: 60px;
    }
    
    .image-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 70px;
        padding: 20px;
        max-width: 715px; 
        margin: 0 auto; 
        color: #000000;
        size: 12px;
        font-family: 'Basis', sans-serif;
        
      }
      
      .image-gallery img {
        width: 100%;
        border-radius: 10px;
      }
      
    .quiz-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 images per row */
        gap: 60px;
        padding: 20px;
        max-width: 1500px; 
        margin: 0 auto;
    }
    .quiz-container img {
        width: 300px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease; /* Add transition property */
    }
    
    .quiz-container img:hover {
        transform: scale(1.1); /* Zoom effect on hover */
    }

    .quizimage-container {
        position: relative;
        display: inline-block;
        background-color: none;
        border-radius: 10px;
        text-align: center;
        color: #f1efec;
      }
      

    .image-container {
        position: relative;
        display: inline-block;
        background-color: #0a1e59;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9);
        border-radius: 10px;
        text-align: center;
        color: #f1efec;
      }

    .image-container p {
        bottom: -30px; /* Adjust this value to position the text below the image */
        width: 100%; /* Ensure the text spans the full width of the container */
        padding-top: 5px;
        padding-bottom: 10px;
    }
      
      .image-container input[type="text"] {
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-top: 8px;
      }
      
      .image-container button {
        background-color: #4CAF50;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 8px;
      }
      
      .image-container p.feedback {
        margin-top: 8px;
        font-style: italic;
      }
      
      .image-container button:hover {
        background-color: #45a049;
      }
    
    .image-container img {
        width: 200px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }
    
    
    .image-gallery-note {
        font-style: italic;
        font-size: 20px;
        margin-top: 20px;
        color: #ffffff;
        margin: 0;
        padding-left: 40px;
    }
    
    /* Style for Quiz Overlay */
.quiz-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000; /* Make sure it's on top */
  }
  
  .quiz-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
  }
  
  /* Style for hidden elements */
  .hidden {
    display: none;
  }
  
    
    .hidden {
        display: none;
    }
    
    .click-instruction {
        font-style: italic;
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 20px;
    }
    
    .career-paths {
        background-color: #0a0a0a; /* Darker section for contrast */
        padding: 20px;
    }
    
    .job-list {
        list-style-type: none;
        padding: 0;
    }
    
    .job-list li {
        display: inline-block;
        margin: 10px;
        color: #ffcc00; /* Gold color for job titles */
    }
    
    footer {
        background-color: #f40e0e; /* Almost black background for footer */
        padding: 20px;
    }
    
    .subheading {
        color: #ffffff;
    }
    
    .info-section {
        display: flex;
        justify-content: space-between;
        background-color: #000066; /* Dark blue background */
        color: white;
        padding: 40px;
    }
    
    .content {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .engineering-section {
        background-image: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/CCCUBackgroundimage.png');
        background-size: 100% 100%;
        height: 100vh;
        width: 100vw; 
        margin-left: -37px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
    }
    .line-spacing {
        padding-top:20px ;
        margin-bottom: 25px;
        font-size: 50px;
    }
    .line-spacing2 {
        margin-bottom: 33px; 
    }
    .line-spacing3 {
        margin-bottom: 33px; 
    }
    .engineering-section h1 {
        font-family: Arial, sans-serif;
        font-size: 36px;
        color: #f7fafc;
    }
    
    .engineering-section p, ul {
        font-family: Arial, sans-serif;
        font-size: 18px;
        color: #dae0da;
    }
    
    ul {
        list-style-type: none;
        padding: 0;
    }
    
    .contact-section {
        background-color: #000000;
        color: #f1efec;
        padding: 20px 0px;
        
    }
    /* bottom section*/
    .container2 {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
    /*contact number*/
.section-content1 {
    background-color: #007bff;
    width: calc(50% - 20px); /* Adjusted width for left container */
    margin-right: 20px; /* Added margin to separate containers */
    text-align: center;
    padding: 20px;
    box-sizing: border-box; 
    border-radius: 10px;
}

.contact-h3 {
    padding-top: 20px;
}

.contact-p {
    padding-top: 20px;
    padding-bottom: 10px;
}
.contact-p1 {
    padding-bottom: 20px;
}

.section-image2 {
    max-width: 100%; /* Adjusted width for image */
    display: block;
    margin: auto;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

.contact-info {
    background-color: #6600cc;
    width: calc(50% - 20px); /* Adjusted width for right container */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px); /* Adjusted width for inputs */
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #FFCD00;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.follow-info img {
    max-width: 100%; /* Make sure the image doesn't exceed its container */
}

.info-section {
    background-color: #000066; /* Dark blue background */
    color: white;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    grid-gap: 20px; /* Spacing between the columns */
    padding: 40px;
    align-items: start; /* Align the start of the items */
}

    
    .career-info {
        padding-right: 20px; /* Spacing to the right of the main content */
    }
    
    .job-list {
        list-style-type: none;
        padding: 0;
    }
    
    .learn-more-btn {
        background-color: #FFCD00; /* Gold color for button */
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        margin-top: 20px; /* Spacing above the button */
    }
    
    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .info-section {
            grid-template-columns: 1fr;
            text-align: center;
        }
    
        .career-info,
        .contact-info,
        .follow-info {
            padding-right: 0;
        }
    }
    /* follow us section*/
    .section-container {
        display: flex;
        align-items: center;
        color:#f1efec;
        background:linear-gradient(315deg,#6600cc,#f1efec);
        background-size: 100% 100%;
        height: 100vh;
        width: 100vw; 
        margin-left: -37px;
    }
    
    .section-content {
        flex: 1;
        padding-right: 20px;
        text-align: center;
        
    }
    
    .section-title {
        margin-bottom: 10px;
        size: 100px;
    }
    .section-image {
        max-width: 80%;
        display: block;
        margin: 0 auto 20px;
        box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.9);
        border-radius: 10px;
    }
    .section-image1 {
        max-width: 50%;
        display: block;
        margin-right: 37px;
    }
    .section-button {
        background-color: #304fff;
        border: 2px solid #000000;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .section-button:hover {
        background-color: #ffcc00;
        color: #000000;
    }
    
    .section-image {
        flex: 1;
        text-align: center;
    }
    
