/* Global Styles */
:root {
    --primary-color: #293B45;
    --secondary-color: #f8b400;
    --highlight-color: #ff9800; /* New orange highlight color */
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #fff;
    --font-primary: 'Cambria', 'Cambria Math', Georgia, 'Times New Roman', Times, serif;
    --primary: #293B45;
    --accent: #D4AF37;
    --gray-50: #F9FAFB;
    --gray-700: #293B45;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    text-justify: inter-word;
}

/* Additional content elements that should be justified */
.content, .description, .text-content, .message-content, 
.about-description, .intro-text, .course-description,
.program-description, .academic-content, .committee-description,
.infrastructure-description, .facility-description,
.hero-description, .section-description, .card-description,
.news-content, .event-description, .gallery-description,
.page-content, .main-content, .article-content, .post-content,
.committee-content, .about-text, .facility-text, .program-text {
    text-align: justify !important;
    text-justify: inter-word !important;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

/* Animation for first slide content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2,
.slide-content p,
.slide-content .btn {
    opacity: 0;
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
    animation: fadeInUp 0.8s forwards;
}

.slide.active .slide-content h2 {
    animation-delay: 0.2s;
}

.slide.active .slide-content p {
    animation-delay: 0.4s;
}

.slide.active .slide-content .btn {
    animation-delay: 0.6s;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
header {
    width: 100%;
    background-color: var(--white);
    box-shadow: none;
}

.top-bar {
    background-color: #293B45; /* Updated to new primary color */
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info span {
    margin-right: 20px;
    font-size: 13px;
}

.contact-info i {
    margin-right: 5px;
}

.quick-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quick-links .dropdown {
    position: relative;
    display: inline-block;
}

.quick-links .dropdown a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
}

.quick-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 5px;
    border-top: 3px solid var(--secondary-color);
}

.quick-links .dropdown:hover .dropdown-content {
    display: block;
}

.quick-links .dropdown-content li {
    list-style: none;
}

.quick-links .dropdown-content a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-links .dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--secondary-color);
    padding-left: 20px;
}

.quick-links .fas.fa-caret-down {
    margin-left: 4px;
    font-size: 10px;
}

/* Ensure dropdown appears on hover */
.quick-links .dropdown:hover > a {
    color: var(--secondary-color);
}

/* Animation for dropdown */
.quick-links .dropdown-content {
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: block;
}

.quick-links .dropdown:hover .dropdown-content {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.main-header {
    padding: 15px 0;
    background-color: #fff;
    border-bottom: none;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-text {
    margin-left: 15px;
}

.logo-text h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 14px;
    color: var(--dark-gray);
    margin: 0;
}

.naac-logo img {
    width: 100px;
    height: auto;
    transition: all 0.3s ease;
}

/* Add hover effects for smooth transition */
.logo img:hover,
.naac-logo img:hover {
    transform: scale(1.05);
}

.additional-logo img {
    width: 20px; /* Smaller than NAAC logo */
    height: auto;
    margin-left: 10px; /* Space between logos */
    transition: all 0.3s ease;
}

/* Main Navigation */
.main-nav {
    background-color: #fff;
    padding: 0;
    font-family: var(--font-primary);
    border-top: none;
}

.main-nav .container {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.main-nav > .container > ul > li > a {
    position: relative;
}

.main-nav > .container > ul > li > a:after {
    content: '';
    display: none; /* Hide the underline by default */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--highlight-color); /* Changed to orange for consistency */
}

.main-nav > .container > ul > li:hover > a:after,
.main-nav > .container > ul > li > a.active:after {
    display: block; /* Show the underline on hover/active */
}

.main-nav li:hover > a,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a i {
    font-size: 10px;
    margin-left: 5px;
}

/* Fix for dropdown menus */
.main-nav ul ul {
    flex-direction: column;
    width: 100%;
}

/* Position fix for dropdown containers */
.main-nav li.has-dropdown {
    position: relative;
}

.dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.main-nav li.has-dropdown:hover .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.98); /* White background with high opacity */
    border-top: 3px solid var(--highlight-color); /* Changed to orange highlight */
    padding: 5px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #FFFFFF;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Lighter shadow for white background */
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 15px;
    color: #333333; /* Dark text for white background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500; /* Medium weight for better visibility */
    display: block;
    font-size: 15px; /* Slightly larger font */
    white-space: nowrap;
    text-shadow: none; /* Remove text shadow for cleaner look on white */
    transition: all 0.2s ease;
    border-left: 3px solid transparent; /* Invisible left border for hover effect */
    letter-spacing: 0.3px; /* Slightly increased letter spacing for readability */
}

.dropdown-menu a:hover {
    background-color: rgba(255, 152, 0, 0.15); /* Light orange background on hover */
    color: #FF6600; /* Orange text on hover for better visibility on white */
    text-shadow: none;
    border-left: 3px solid var(--highlight-color); /* Orange left border on hover */
    padding-left: 17px; /* Slight indent effect */
    font-weight: 600; /* Make text slightly bolder on hover for better readability */
    text-decoration-color: #FF6600; /* Set underline color to match text */
}

/* We're using font awesome icons directly in HTML for dropdown indicators */

/* News Ticker */
.news-ticker {
    background-color: #293B45;
    padding: 8px 0;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
}

.news-ticker .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-label {
    display: none; /* Hide the label as it's not in the image */
}

.ticker-content {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    padding: 0 25px;
    font-weight: 400;
    position: relative;
    opacity: 0.9;
}

.ticker-content span:not(:last-child):after {
    content: "•";
    position: absolute;
    right: 0;
    color: #fff;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 750px;
    overflow: hidden;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    height: 100%;
    background-color: var(--light-gray); /* Fallback background */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    background-color: var(--light-gray);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    display: block !important;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ensure image displays properly */
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    z-index: 100; /* Ensure it's above everything */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

.slider-nav:hover {
    background-color: var(--secondary-color);
    opacity: 1;
    border-color: var(--secondary-color);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.indicator.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    width: 25px;
    border-radius: 10px;
}

.indicator:hover:not(.active) {
    background-color: var(--white);
}

/* Overlay text for slides */
.slide-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    z-index: 10; /* Increased to be above the overlay */
    width: 50%;
    max-width: 550px;
    padding: 0;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.slide-content h2:first-line {
    color: var(--white);
}

.slide-content h2 span {
    color: var(--secondary-color);
    display: block;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 90%;
}

.slide-content .btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: rgba(59, 67, 76, 0.9);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.slide-content .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.slide-content .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.slide-content .btn:hover:before {
    left: 100%;
}

/* Intro Section */
.intro {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-gray);
}

.main-heading {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
    position: relative;
}

.about-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    transform: scale(1);
    transition: transform 500ms;
}

.about-image-wrapper:hover {
    transform: scale(1.05);
}

.about-image-border-tl {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 6rem;
    height: 6rem;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
}

.about-image-border-br {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    width: 6rem;
    height: 6rem;
    border-bottom: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-image {
    height: 500px;
    width: 100%;
    object-fit: cover;
    transition: transform 700ms;
}

.about-image:hover {
    transform: scale(1.1);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-heading {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.about-description {
    color: var(--gray-700);
    line-height: 1.625;
    text-align: justify;
}

.about-quote {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent);
    transition: box-shadow 300ms;
}

.about-quote:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-btn {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    transition: all 300ms;
}

.about-btn-primary {
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-btn-primary:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.about-btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.about-btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Message Sections */
.mentor-message, .principal-message {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
}

.mentor-message .container,
.principal-message .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 30px;
}

.section-title {
    font-size: 42px; /* Increased from 36px */
    text-align: center;
    color: #293B45;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px; /* Increased from 80px */
    height: 4px; /* Increased from 3px */
    background-color: #293B45;
    margin: 20px auto 0;
}

.message-flex {
    display: flex;
    gap: 60px; /* Increased from 40px */
    align-items: flex-start;
    width: 100%;
}

.message-image {
    flex: 0 0 40%; /* Increased from 35% */
    position: relative;
}

.message-image:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border-bottom: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
    z-index: -1;
}

.message-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.message-image img:hover {
    transform: scale(1.02);
}

.message-content {
    flex: 0 0 60%; /* Increased from 65% */
}

.message-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.message-heading:before {
    content: '';
    width: 6px; /* Increased from 5px */
    height: 40px; /* Increased from 35px */
    background-color: var(--accent);
    margin-right: 20px;
    display: inline-block;
}

.message-content h3 {
    font-size: 32px; /* Increased from 28px */
    color: var(--primary);
    margin: 0;
}

.message-content p {
    font-size: 17px; /* Increased from 16px */
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.signature {
    margin-top: 40px;
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.signature p {
    margin-bottom: 5px;
    line-height: 1.2;
}

.signature .name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.signature .designation {
    font-size: 18px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 3px;
}

.signature .college {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Principal Message Specific Styles */
.principal-message {
    background-color: var(--gray-50);
}

.principal-message .message-flex {
    flex-direction: row;
}

.principal-message .message-image:after {
    right: -15px;
    left: auto;
    border-right: 5px solid var(--primary);
    border-left: none;
}

.principal-message .message-content {
    padding-left: 0;
    padding-right: 60px;
}

.principal-message .message-heading {
    margin-bottom: 30px;
}

.principal-message .message-heading:before {
    background-color: var(--accent);
}

.principal-message .message-content h3 {
    color: var(--primary);
}

.principal-message .signature {
    margin-top: 40px;
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

/* Update responsive styles */
@media (max-width: 992px) {
    .mentor-message .message-flex,
    .principal-message .message-flex {
        flex-direction: column;
    }
    
    .mentor-message .message-content,
    .principal-message .message-content {
        padding-left: 0;
        padding-right: 0;
    }
    
    .mentor-message .message-image,
    .principal-message .message-image {
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .mentor-message .container,
    .principal-message .container {
        padding: 0 20px;
    }
    
    .mentor-message .section-title,
    .principal-message .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .mentor-message .message-content h3,
    .principal-message .message-content h3 {
        font-size: 28px;
    }
    
    .mentor-message .message-content p,
    .principal-message .message-content p {
        font-size: 16px;
    }
    
    .mentor-message .signature .name,
    .principal-message .signature .name {
        font-size: 20px;
    }
    
    .mentor-message .signature .designation,
    .principal-message .signature .designation {
        font-size: 16px;
    }
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.gallery h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Gallery Container */
.gallery-main-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.gallery-main-image {
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

#main-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main-image:hover #main-gallery-img {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-main-image:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.gallery-info p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

/* Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gallery-nav-btn:hover {
    background: #f8b400;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.prev {
    left: -25px;
}

.gallery-nav-btn.next {
    right: -25px;
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item.active {
    border-color: #f8b400;
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f8b400;
    border-color: #f8b400;
    color: white;
    transform: translateY(-2px);
}

/* Gallery Counter */
.gallery-counter {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-counter span {
    font-weight: 600;
    color: #f8b400;
}

/* Gallery CTA */
.gallery-cta {
    margin-top: 40px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f8b400, #e6a700);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #e6a700, #d4950a);
}

.gallery-btn i {
    transition: transform 0.3s ease;
}

.gallery-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery h2 {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .gallery-main-container {
        margin: 0 20px 30px;
    }
    
    .gallery-main-image {
        height: 300px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav-btn.prev {
        left: 10px;
    }
    
    .gallery-nav-btn.next {
        right: 10px;
    }
    
    .gallery-thumbnails {
        margin: 30px 20px;
        gap: 10px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .gallery-filters {
        margin: 20px;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-main {
        max-width: 800px;
    }
    
    .gallery-large-image {
        height: 450px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery h2 {
        font-size: 2.5rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .gallery-main {
        margin: 0 20px 30px;
    }

    .gallery-large-image {
        height: 300px;
        border-radius: 15px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
    }
    
    .gallery-thumbnails {
        margin: 30px 20px;
        gap: 10px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .gallery-filters {
        margin: 20px;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
    
    .gallery-info h3 {
        font-size: 1.3rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
    
    .gallery-action-btn {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .gallery h2 {
        font-size: 2rem;
    }
    
    .gallery-large-image {
        height: 250px;
    }
    
    .gallery-thumbnails {
        justify-content: flex-start;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* News & Events Section */
.news-events-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    color: #333;
}

.news-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-box {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.section-box-title {
    background-color: #374151;
    color: #ffffff;
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    background-color: #ffffff;
}

.news-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-item h4 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-item p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.date {
    color: #9ca3af;
    font-size: 13px;
    font-style: italic;
}

.box-footer {
    padding: 15px 20px;
    text-align: right;
    background-color: #293B45;
    margin-top: auto;
}

.view-more {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-more:hover {
    color: #d1d5db;
}

/* What's New Section */
.new-items {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1;
    background-color: #ffffff;
}

.new-items a {
    color: #1f2937;
    text-decoration: none;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-right: 90px;
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

.new-items a:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.new-items a:hover {
    color: #374151;
}

.news-date {
    position: absolute;
    right: 0;
    top: 0;
    color: #9ca3af;
    font-size: 12px;
    background-color: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Recruiters Section - Modern Redesign */
.recruiters {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.recruiters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.recruiters .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruiters h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.recruiters h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #f8b400, #D4AF37);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.recruiters .subtitle {
    font-size: 1.2rem;
    margin-bottom: 80px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.recruiter-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
}

.recruiter-logos a {
    display: block;
    width: 100%;
    height: 160px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 1px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recruiter-logos a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.recruiter-logos a:hover::before {
    left: 100%;
}

.recruiter-logos a:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 1);
}

.recruiter-logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(80%) brightness(0.9);
    transition: all 0.4s ease;
    border-radius: 8px;
}

.recruiter-logos a:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Add floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.recruiter-logos a:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.recruiter-logos a:nth-child(even) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Add a subtle glow effect */
.recruiter-logos a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1),
        rgba(248, 180, 0, 0.1)
    );
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.recruiter-logos a:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recruiters {
        padding: 80px 0;
    }

    .recruiters h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .recruiters .subtitle {
        font-size: 1rem;
        margin-bottom: 60px;
        letter-spacing: 1px;
        padding: 0 20px;
    }

    .recruiter-logos {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .recruiter-logos a {
        height: 140px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .recruiters h2 {
        font-size: 2rem;
    }

    .recruiters .subtitle {
        font-size: 0.9rem;
        margin-bottom: 50px;
    }

    .recruiter-logos {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .recruiter-logos a {
        height: 120px;
        padding: 20px;
        border-radius: 15px;
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: #f9fafb; /* bg-gray-50 */
}

.reviews .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header section styles */
.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 3rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.text-primary {
    color: #1f2937;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-20 {
    width: 5rem;
}

.h-1 {
    height: 0.25rem;
}

.bg-accent {
    background-color: #D4AF37; /* Gold/accent color */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-gray-600 {
    color: #6b7280;
}

.max-w-2xl {
    max-width: 42rem;
}

/* Dark container styles */
.bg-\[1e2937\] {
    background-color: #1e2937;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.p-10 {
    padding: 2.5rem;
}

.overall-rating {
    margin-bottom: 2rem;
    text-align: center;
}

.overall-rating span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.overall-rating .stars {
    display: inline-flex;
    color: #f59e0b; /* Gold stars */
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.overall-rating p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 1.5rem; /* Space between columns */
}

.review-item {
    color: #ffffff;
    text-align: left;
    display: flex;
    gap: 1rem;
}

.profile-initial {
    width: 40px;
    height: 40px;
    background-color: #4a5568; /* Gray background for initials */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.review-header .stars {
    display: flex;
    color: #f59e0b; /* Gold stars */
    font-size: 1rem;
}

.review-content p {
    font-size: 0.875rem;
    color: #d1d5db; /* Light gray text */
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.timestamp {
    font-size: 0.75rem;
    color: #9ca3af; /* Gray timestamp */
    font-style: italic;
}

/* Button section styles */
.mt-10 {
    margin-top: 2.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.font-medium {
    font-weight: 500;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.text-white {
    color: #ffffff;
}

/* Hover effects */
a.bg-accent:hover {
    background-color: rgba(212, 175, 55, 0.9);
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr; /* Stack reviews in a single column on smaller screens */
    }
    
    .p-10 {
        padding: 1.5rem;
    }
    
    .text-4xl {
        font-size: 1.875rem;
    }
    
    .overall-rating span {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: #293B45;
    color: var(--white);
    padding: 60px 0 30px;
    font-family: var(--font-primary);
}

.footer-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
}

.footer-about h3, .footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c1272d;
    color: white;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-right: 15px;
}

.footer-logo h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-logo p {
    font-size: 12px;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 0;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Footer Links */
.link-columns {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 250px;
}

.footer-links ul li {
    margin-bottom: 10px;
    min-width: 50%;
}

.footer-links a {
    color: #f1f1f1;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 6px;
    font-size: 12px;
    color: #f8b400;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Footer Contact */
.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #f1f1f1;
    font-size: 14px;
}

.contact-info-list li i {
    margin-right: 10px;
    margin-top: 5px;
    color: #f8b400;
    width: 16px;
}

.social-media {
    margin-top: 25px;
}

.social-media h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-right: 15px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a.facebook, 
.social-icons a.instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a.whatsapp {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.social-icons a.whatsapp i {
    margin-right: 5px;  
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #293B45;
}

/* Copyright Section */
.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text {
    flex: 1;
}

.copyright p {
    margin-bottom: 5px;
    color: #f1f1f1;
}

.terms {
    margin-right: 15px;
}

.terms a {
    color: var(--white);
    margin: 0 10px;
    font-size: 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 10px;
}

.terms a:last-child {
    border-right: none;
}

.terms a:hover {
    color: var(--secondary-color);
}

.visitors {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    color: #f1f1f1;
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-slider {
        height: 625px;
    }
    
    .slide-content {
        width: 90%;
        bottom: 60px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 36px;
    }
    
    .hero-slider {
        height: 565px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slide-content {
        bottom: 50px;
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .about-flex, .message-flex, .principal-message .container, .flex-container, .footer-content {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav ul {
        flex-wrap: wrap;
    }

    /* Footer responsive styles */
    .link-columns {
        max-height: none;
        flex-wrap: nowrap;
    }

    .copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .copyright-text {
        margin-bottom: 15px;
    }

    .terms {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .recruiters {
        padding: 60px 0;
    }

    .recruiters h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .recruiter-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .recruiter-logos img {
        max-width: 140px;
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        bottom: 40px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }

    /* Social icons responsive styling */
    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icons a.whatsapp {
        margin-top: 10px;
    }

    .recruiters h2 {
        font-size: 1.75rem;
    }

    .recruiter-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .recruiter-logos img {
        max-width: 120px;
    }
}

/* Contact Info Links */
.contact-info a,
.contact-info-list a,
.info-group p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover,
.contact-info-list a:hover,
.info-group p a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Top Bar Contact Info */
.contact-info span a {
    display: inline-block;
}

/* Animation classes */
.animate-fadeIn {
  animation: fadeIn 0.8s ease-in-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-in-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Transitions */
.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* Tailwind-like utility classes */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-20 {
  height: 5rem;
}

.h-40 {
  height: 10rem;
}

.h-\[50vh\] {
  height: 50vh;
}

.w-2 {
  width: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-40 {
  width: 10rem;
}

.w-full {
  width: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.min-w-full {
  min-width: 100%;
}

/* Flex classes */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

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

.flex-shrink-0 {
  flex-shrink: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Grid classes */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Typography */
.text-3xl {
  font-size: 1.875rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

/* Colors */
.text-white {
  color: white;
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-gray-600 {
  color: #4B5563;
}

.text-gray-500 {
  color: #6B7280;
}

.text-\[8B2131\] {
  color: #8B2131;
}

.text-yellow-300 {
  color: #FCD34D;
}

.bg-white {
  background-color: white;
}

.bg-gray-100 {
  background-color: #F3F4F6;
}

.bg-\[8B2131\] {
  background-color: var(--primary);
}

.bg-\[8B2131\]\/10 {
  background-color: rgba(139, 33, 49, 0.1);
}

.bg-\[8B2131\]\/20 {
  background-color: rgba(139, 33, 49, 0.2);
}

.bg-\[8B2131\]\/5 {
  background-color: rgba(139, 33, 49, 0.05);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-gray-50 {
  --tw-gradient-from: #F9FAFB;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.to-white {
  --tw-gradient-to: #FFFFFF;
}

.from-\[8B2131\] {
  --tw-gradient-from: var(--primary);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 33, 49, 0));
}

.to-\[C25D67\] {
  --tw-gradient-to: #C25D67;
}

.from-black-80 {
  --tw-gradient-from: rgba(0, 0, 0, 0.8);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-black-50 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.5), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* Borders */
.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-gray-300 {
  border-color: #D1D5DB;
}

.border-gray-100 {
  border-color: #F3F4F6;
}

.border-\[8B2131\] {
  border-color: var(--primary);
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Effects */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.object-cover {
  object-fit: cover;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-8 {
  top: 2rem;
}

.right-8 {
  right: 2rem;
}

.right-10 {
  right: 2.5rem;
}

.top-10 {
  top: 2.5rem;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.-right-10 {
  right: -2.5rem;
}

.-bottom-10 {
  bottom: -2.5rem;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

/* Hover effects */
.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:text-\[\#8B2131\]:hover {
  color: var(--primary);
}

.hover\:bg-\[\#681822\]:hover {
  background-color: #681822;
}

.hover\:bg-gray-50:hover {
  background-color: #F9FAFB;
}

.hover\:bg-white\/20:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hover\:underline:hover {
  text-decoration: underline;
}

.group:hover .group-hover\:bg-\[\#8B2131\]\/20 {
  background-color: rgba(139, 33, 49, 0.2);
}

.group:hover .group-hover\:text-\[\#8B2131\] {
  color: var(--primary);
}

/* Other utilities */
.prose {
  max-width: 65ch;
  color: var(--gray-700);
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.max-w-none {
  max-width: none;
}

.max-w-3xl {
  max-width: 48rem;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:p-8 {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.inline-flex {
  display: inline-flex;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

/* About Section Specific Styles */
.about {
    position: relative;
}