/* Placements Section */
.placements-section {
    background-color: #4C0013; /* Black background */
    color: #fff; /* Default white text */
    padding: 40px 20px;
}

/* Placements Content */
.placements-content {
    max-width: 1200px; /* Limit content width */
    margin: 0 auto; /* Center align */
    padding: 10px;
}

/* Heading Style */
.heading {
    color: white; /* Yellow color for the heading */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left; /* Align the heading to the left */
}

/* Subheading Style */
.sub-heading {
    color: white; /* Yellow color for subheading */
    font-size: 2rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

/* Content Text Style */
.content {
    color: #fff; /* White text */
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* Objectives List */
.objectives-list {
    list-style: none; /* Remove bullet points */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between items */
    padding: 0;
    margin: 0;
}

.objectives-list li {
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
    font-size: 1.1rem;
    line-height: 1.8;
}

.objectives-list li::before {
    content: "•"; /* Custom bullet */
    position: absolute;
    left: 0;
    color: #ffc107; /* Yellow bullet */
    font-size: 1.5rem; /* Larger bullet size */
}

/* Training Cell Section */
.training-cell-section {
    background-color: #2f040f; /* Darker black background */
    padding: 40px;
    margin-top: 40px;
    color: #fff; /* White text */
}

/* Training Heading */
.training-heading {
    color: white; /* Yellow color for heading */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}

/* Training Description */
.training-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* Training List */
.training-list {
    columns: 2; /* Two columns for desktop */
    column-gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-list li {
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.training-list li::before {
    content: "•"; /* Custom bullet */
    position: absolute;
    left: 0;
    color: #ffc107; /* Yellow bullet */
    font-size: 1.5rem; /* Larger bullet size */
}

/* Primary Objectives Section */
.primary-objectives {
    margin-top: 40px;
}

.primary-objectives-heading {
    color: white; /* Yellow color for heading */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}

.primary-objectives-text {
    color: #fff; /* White text */
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
}

/* Responsive Design */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .heading, .sub-heading, .training-heading, .primary-objectives-heading {
        font-size: 1.8rem; /* Slightly smaller font sizes */
    }

    .content, .training-description, .primary-objectives-text {
        font-size: 1rem; /* Adjust text size */
    }

    .objectives-list {
        grid-template-columns: 1fr; /* Single column for objectives */
    }

    .training-list {
        columns: 1; /* Single column for training list */
    }
}

/* Small Screens (Mobile) */
@media (max-width: 480px) {
    .heading, .sub-heading, .training-heading, .primary-objectives-heading {
        font-size: 1.5rem; /* Smaller font sizes for mobile */
    }

    .content, .training-description, .primary-objectives-text {
        font-size: 0.9rem; /* Adjust text size for mobile */
    }

    .objectives-list li, .training-list li {
        font-size: 1rem; /* Adjust list font size */
    }
}


/* Section Styling */
.bulging-images-section {
    background-color: #4C0013; /* Black background */
    color: white; /* White text for the heading */
    padding: 40px 20px;
    text-align: center;
}

/* Heading Styling */
.section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white; /* Yellow text */
}

/* Image Container (Grid Layout) */
.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamic columns */
    gap: 20px; /* Spacing between grid items */
    justify-content: center;
}

/* Image Box */
.image-box {
    position: relative;
    overflow: hidden; /* Hide overflow for zoom effect */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.3s ease; /* Smooth scaling transition */
}

.image-box img {
    width: 100%; /* Full width inside the grid cell */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

/* Hover Effect */
.image-box:hover img {
    transform: scale(1.1); /* Zoom in on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller columns for tablets */
    }

    .image-box img {
        height: 150px; /* Adjust height for tablets */
    }
}

@media (max-width: 480px) {
    .image-container {
        grid-template-columns: 1fr; /* Single column for small screens */
    }

    .image-box img {
        height: auto; /* Maintain aspect ratio for smaller screens */
    }
}

/* Placement Committee Section */
.placement-committee-section {
    background-color: #4C0013; /* Black background */
    color: white; /* White text */
    padding: 40px 20px;
    text-align: center;
}

/* Section Heading */
.section-heading {
    font-size: 2rem;
    color: white; /* Yellow color for heading */
    margin-bottom: 20px;
}

/* Contact Information Styling */
.contact-info {
    background-color: #f4c60e; /* Yellow background */
    color: black; /* Black text */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    max-width: 600px;
    margin: 0 auto; /* Center the box */
    text-align: left; /* Left-align the content */
}

/* Contact Heading */
.contact-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: black;
    text-align: center;
}

/* Links Styling */
.contact-info a {
    color: #4C0013; /* Darker red for links */
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
    color: blue; /* Hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .placement-committee-section {
        padding: 20px;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-heading {
        font-size: 1.2rem;
    }
}
