* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
	font-family: sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
	color: #333;
	line-height: 1.6;
    /*min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    */
	
}

body { 
	background-image: url('default-bg.png');
	background-repeat: repeat-x;
    background-color: #FFF; 
}

/*
form { display: inline }

a:link, a:visited, a:active{
	color: #FFF;
	text-decoration: none; 
}

a:hover { 
	color: #A00E0E 
}
  */
 
      
       
input,
select ,
input checkbox {
	padding: 3px;
	font-size: 14px;
}

/*
h3 {
    font-size: 20px;
    font-weight: bold;
    color: #414141;
    line-height: 30px;
}
*/

.center {
    margin: auto;
    width: 98%;
    border: 0px solid green;
    padding: 10px;
    text-align: center;
}

.table-heading {
    font-weight: Bold;
    font-size: 120%;
    padding: 12px;
    border-bottom: solid 2px #EEE;
    color: rgb(0, 100, 255);
    background-image: url(right_arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    display: block;
}

.error {
    background: #fee;
    border: 1px solid #e74c3c;
    color: #c0392b;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: Bold;
    
}

ul {
	list-style-type: square;
	list-style-position: outside;}

.input1 {
	width: 130px;	height: 21px;
	font-family: verdana;

	font-size: 11px;
	font-weight: bold;
	color: #777777;
	border: 1px solid #BBBDCC;
	background-color: #FFFFFF;
}

.submit-button {
    font-weight: Bold;
    font-size: 100%;
    padding: 8px 18px;
    color: brown;
    
}

.apply-button {
    font-weight: Bold;
    font-size: 100%;
    padding: 8px 18px;
    color: cadetblue;
    
}


.privacy-header {
	align-items: left;
	text-align: left;
     margin-bottom: 20px;
}
        
.privacy-title {
    font-weight: bold;
    font-size: 15px;
    margin-right: 10px;
}
 .pdf-link {
    color: RED;
    text-decoration: underline;
 }
        
.pdf-link:hover {
   text-decoration: underline;
}
        
        
        
        
        
        
        
        
.checkbox-container {
   text-align: left;
   background-color: #F6F6F6;
   padding: 30px;
   margin-top: 4px;
   line-height: 20px;
   border-radius: 6px;
}

.acknowledge-dropdown {
	font-size: 13px;
}        
        
#submit-btn {
   background-color: #4CAF50;
   color: white;
   border: none;
   padding: 10px 20px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   font-size: 16px;
   margin: 4px 2px;
   cursor: pointer;
   border-radius: 4px;
}
        
#submit-btn:disabled {
   background-color: #cccccc;
   cursor: not-allowed;
}

#reset-btn {
   background-color: #AAA;
   color: white;
   border: none;
   padding: 10px 20px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   font-size: 16px;
   margin: 4px 2px;
   cursor: pointer;
   border-radius: 4px;
}

.tabdesc {
 text-align: left;
 padding: 5px 0 5px 10px;
}

.tablable {
 text-align: left;
 padding: 5px 0 5px 10px;
}







/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #001f3f; /* Navy blue to match header */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 15px 0;
    position: relative;
}

/* Burger Menu Button */
.burger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Burger animation when active */
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    padding: 80px 20px 30px 20px;
    display: flex;
    flex-direction: center;
    transition: right 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 8px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background-color: #f0f7ff;
    color: #001f3f;
    transform: translateX(-3px);
}

.nav-menu a i {
    width: 20px;
    color: #4299e1;
    font-size: 16px;
}

/* Menu divider */
.nav-menu .divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 15px 0;
}

/* Header Section - Adjusted for fixed nav */
.page-headerxx {
    height: 300px;
    background-color: #001f3f;
    padding: 0 40px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 60px; /* Space for fixed nav */
}





/* Header Section */
.page-header {
    height: 300px;
    background-color: #001f3f; /* Navy blue */
    padding: 0 40px;
    display: flex;
    align-items: center;
    color: white;
}

.header-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo {
    height: 60px;
    width: 200px;
    
}

.header-text {
    text-align: left;
    flex: 1;
}

.header-text h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.header-text h3 {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 600px;
}








/* Main container with 820px width */
/*main {
    width: 100%;
    max-width: 890px;
    margin-top: 40px;
}*/

main {
    width: 100%;
    max-width: 820px;
    margin: -50px auto 40px auto;
    position: relative;
    z-index: 1;
}

main.mainpage {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 10px auto;
    position: relative;
    z-index: 1;
}


/* Form container */
.application-form {
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 3px;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
}

/* Form sections */
.form-section {
    margin-bottom: 35px;
}

/* Section headings with arrows */
.section-heading {
    color: #001f3f; 
    font-size: 17px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 0px solid #e8eff5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    color: #001f3f; 
    font-size: 20px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.section-heading:hover .arrow {
    transform: translateX(3px);
}

/* Form groups - no longer full width */
.form-group {
    margin-bottom: 22px;
    max-width: 255px; 
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

/* Input and Select styling - fixed width */
.form-group input,
.form-group select {
    width: 100%;
    max-width: 255px; /* Max width for fields */
    padding: 8px 8px;
    border: 1.5px solid #999;
    /*#e2e8f0;*/
    border-radius: 4px;
    font-size: 15px;
    /*background-color: #f8fafc;*/
    transition: all 0.2s ease;
    font-family: inherit;
    color: #333;
}

/* Form row for inline fields */
.form-row {
    display: flex;
    gap: 20px;
    max-width: 755px; /* 255 + 255 + 20 gap */
    margin-bottom: 22px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}








/* Recruitment Categories Section */
.recruitment-categories {
    padding: 80px 40px;
    /*background: linear-gradient(135deg, #f8fafc 0%, #e8f4ff 100%);*/
    position: relative;
    overflow: hidden;
}

.recruitment-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: linear-gradient(90deg, #0056A2, #00C853, #0056A2);*/
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Section Header */
.categories-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 2rem;
    animation: wave 2s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 86, 162, 0.08);
    border-left: 4px solid #0056A2;
}

.section-description::before {
    /*content: '"';*/
    font-size: 4rem;
    color: rgba(0, 86, 162, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
}

.call-to-action {
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0056A2 0%, #0077CC 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 86, 162, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, #0077CC 0%, #0056A2 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 162, 0.3);
}

.cta-button i {
    font-size: 18px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Category Cards */
.category-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--category-color), #0056A2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--category-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

/* Category-specific colors */
.category-card[data-category="qatari-freshers"] {
    --category-color: #c5184a;
}

.category-card[data-category="experienced-expatriates"] {
    --category-color: #606c79;
}

.category-card[data-category="born-in-qatar-expatriates"] {
    --category-color: #9C27B0;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--category-color), color-mix(in srgb, var(--category-color) 70%, white));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-content {
    flex: 1;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: var(--category-color);
}

.category-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 20px;
}

.category-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    /*color: #718096;*/
    color: #FFF;
    font-weight: 500;
}

.meta-item i {
    color: var(--category-color);
    font-size: 14px;
}

.category-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 162, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056A2;
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    background: var(--category-color);
    color: white;
    transform: translateX(5px);
}

/* Additional Information */
.additional-info {
    max-width: 800px;
    margin: 0 auto;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border-left: 5px solid #00C853;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-box i {
    color: #00C853;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .recruitment-categories {
        padding: 60px 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-description {
        padding: 15px;
        font-size: 1rem;
    }
    
    .category-card {
        padding: 25px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .category-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Animation for cards entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

/*
table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    line-height: 15px;
    font-weight: normal;
    font-size: medium;
    font-style: normal;
    color: -internal-quirk-inherit;
    text-align: start;
    border-spacing: 10px;
    border-color: gray;
    white-space: normal;
    font-variant: normal;
    width: 90%;
}

th, td {
  padding: 10px;
}

th {
  font-weight: bold;
  background: #0056A2;
  color: #FFF;
}
*/

table {
    background: white;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(0, 86, 162, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 86, 162, 0.1);
    margin-bottom: 40px;
        width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    background: linear-gradient(135deg, #0056A2 0%, #003366 500%);
}

th {
    padding: 20px 25px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00C853, transparent);
}

th i {
    margin-right: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

td {
    padding: 25px 25px;
    border-bottom: 1px solid #e8eff5;
    background: white;
    transition: all 0.3s ease;
    vertical-align: inherit;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover td {
    background: linear-gradient(90deg, rgba(0, 86, 162, 0.03), rgba(0, 200, 83, 0.03));
    transform: translateX(5px);
}










/* Graduates Spotlight Section */
.graduates-spotlight {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    overflow: hidden;
}

.spotlight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Content Column */
.content-column {
    flex: 1;
    min-width: 0; /* Prevent flex overflow */
}

.content-wrapper {
    max-width: 600px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tag-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0056A2, #00C853);
    border-radius: 2px;
}

.tag-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0056A2;
    text-transform: uppercase;
}

.spotlight-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.spotlight-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 30px;
    font-weight: 400;
    border-left: 4px solid #00C853;
    padding-left: 20px;
    background: rgba(0, 200, 83, 0.05);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
}

.feature-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-divider .divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0056A2, transparent);
}

.feature-divider i {
    color: #00C853;
    font-size: 28px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,86,162,0.1);
}

.spotlight-description {
    margin-bottom: 35px;
}

.spotlight-description h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #003366;
    margin-bottom: 20px;
    font-weight: 600;
}

.spotlight-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.spotlight-description p:last-child {
    margin-bottom: 0;
}

/* Call to Action Buttons */
.spotlight-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: linear-gradient(135deg, #0056A2 0%, #0077CC 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 86, 162, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #0077CC 0%, #0056A2 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 162, 0.4);
}

.secondary-btn {
    background: white;
    color: #0056A2;
    border: 2px solid #0056A2;
}

.secondary-btn:hover {
    background: #0056A2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 162, 0.2);
}

/* Stats */
.graduate-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #003366;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Column */
.image-column {
    flex: 1;
    min-width: 0;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 86, 162, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.spotlight-image {
    width: 100%;
    height: 488px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .spotlight-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,86,162,0.2), rgba(0,200,83,0.2));
    pointer-events: none;
}

.image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-weight: 600;
    color: #003366;
    border-left: 4px solid #00C853;
    z-index: 2;
}

.image-badge i {
    color: #00C853;
    font-size: 20px;
}

.image-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,51,102,0.9);
    backdrop-filter: blur(5px);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border-right: 4px solid #00C853;
    z-index: 2;
}

.image-caption i {
    color: #00C853;
    font-size: 18px;
}

/* Decorative Background Elements */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,86,162,0.05), rgba(0,200,83,0.05));
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.decoration-dots {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#0056A2 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .graduates-spotlight {
        padding: 80px 30px;
    }
    
    .spotlight-container {
        gap: 40px;
    }
    
    .spotlight-title {
        font-size: 3rem;
    }
    
    .spotlight-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .spotlight-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .content-wrapper {
        max-width: 100%;
        text-align: center;
    }
    
    .section-tag {
        justify-content: center;
    }
    
    .tag-line {
        width: 40px;
    }
    
    .spotlight-subtitle {
        text-align: left;
    }
    
    .feature-divider {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .spotlight-cta {
        justify-content: center;
    }
    
    .graduate-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }
    
    .image-wrapper:hover {
        transform: scale(1.02);
    }
    
    .image-badge {
        top: 20px;
        left: 20px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .image-caption {
        bottom: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .graduates-spotlight {
        padding: 60px 20px;
    }
    
    .spotlight-title {
        font-size: 2.2rem;
    }
    
    .spotlight-subtitle {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .spotlight-description h2 {
        font-size: 1.3rem;
    }
    
    .spotlight-description p {
        font-size: 1rem;
    }
    
    .spotlight-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        justify-content: center;
    }
    
    .graduate-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat {
        align-items: center;
        text-align: center;
    }
    
    .image-badge, .image-caption {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-column {
    animation: fadeInLeft 0.8s ease-out;
}

.image-column {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}


