* {
    box-sizing: border-box; 
}

body {

    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden; 
}

/* If you have a main wrapper (e.g., .container) */
.container {
    padding-left: 10px;
    padding-right: 10px;
}
/* Enhanced Top Bar */
.citrus-topbar {
    background: linear-gradient(135deg, #aee8f6 0%, #b0e7f2 100%);
    padding: 12px 40px;
    color: #FFFFFF;
}

.citrus-topbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.citrus-contact-info {
    display: flex;
    gap: 24px;
}

.citrus-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000000;
    text-decoration: none;
}

.citrus-contact-item:hover {
    transform: translateY(-2px);
}

.citrus-contact-item i {
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.citrus-social-links {
    display: flex;
    gap: 15px;
}

.citrus-social-link {
    color: #000000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.citrus-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Navigation */
.citrus-nav {
    background: #FFFFFF;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.citrus-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.citrus-logo {
    display: flex;
    align-items: center;
}

.citrus-logo img {
    transform: scale(2.5);
    height: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.citrus-logo:hover img {
    transform: scale(2.5);
}

.citrus-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.citrus-link {
    color: #FF4500;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.citrus-link:hover {
    background: #FFE6DC;
    color: #FF6B35;
}

.citrus-dropdown {
    position: relative;
}

.citrus-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 250px;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #FFE6DC;
}

.citrus-dropdown:hover .citrus-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.citrus-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #FF4500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.citrus-dropdown-item:hover {
    background: #FFE6DC;
    color: #FF6B35;
    transform: translateX(5px);
}

.event {
    padding: 15px;
    border-bottom: 1px solid #FFE6DC;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.event:hover {
    background: #FFE6DC;
}

.event i {
    color: #FF6B35;
    font-size: 20px;
}

.event span {
    flex: 1;
}

.event strong {
    display: block;
    color: #FF4500;
    margin-bottom: 4px;
}

.event small {
    color: #666666;
}

.contact-group {
    padding: 15px;
    border-bottom: 1px solid #FFE6DC;
}

.contact-group h4 {
    color: #FF4500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #666666;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.citrus-signin {
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    color: #FFFFFF;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.citrus-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.citrus-mobile-toggle {
    display: none;
    font-size: 24px;
    color: #FF6B35;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .citrus-topbar {
        display: none;
    }
    
    .citrus-nav {
        padding: 15px 20px;
    }
    
    .citrus-mobile-toggle {
        display: block;
    }
    
    .citrus-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .citrus-menu.active {
        display: flex;
    }
    
    .citrus-dropdown {
        width: 100%;
    }
    
    .citrus-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        margin-top: 10px;
        width: 100%;
    }
    
    .citrus-dropdown.active .citrus-dropdown-menu {
        display: block;
    }

    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 15px 0;
        border-top: 1px solid #FFE6DC;
    }

    .mobile-social-links a {
        color: #FF4500;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #FFE6DC;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-social-links a:hover {
        background: #FF6B35;
        color: #FFFFFF;
    }
}

@media (max-width: 768px) {
    /* Previous mobile styles remain the same */
    
    .citrus-nav-container {
        display: flex;
        justify-content: space-between; /* Creates space between logo and menu icon */
        align-items: center;
        padding: 0 10px; /* Optional: adds some padding on sides */
        gap: 150px; /* Creates specific gap between logo and menu icon */
    }

    /* OR alternatively, you can add margin to the menu icon */
    .citrus-mobile-toggle {
        display: block;
        margin-left: 20px; /* Adjusts space between logo and menu icon */
    }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  body {
    background: #f8f9fa;
    padding: 20px;
  }
  /* Container Styles */
  .container {
    max-width: 1200px;
    margin: auto;
  }
  /* Search & Filter Container */
  .search-filter-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  .search-filter-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  /* Search Wrapper with Suggestion Box */
  .search-wrapper {
    position: relative;
    margin-bottom: 20px;
  }
  .search-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
  }
  .search-input:focus {
    border-color: #FF4500;
  }
  .suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
  }
  .suggestion-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .suggestion-item:hover {
    background: #f8f9fa;
  }
  /* Filter Options */
  .filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .filter-select {
    flex: 1 1 200px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 0.95rem;
    color: #444;
    transition: border-color 0.3s ease;
    outline: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='10' viewBox='0 0 20 20' fill='%23666'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }
  .filter-select:focus {
    border-color: #FF4500;
  }
  /* College List Section */
  .colleges {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  .colleges .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #2a5dba;
  }
  .college-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .college-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
  }
  .college-card:hover {
    transform: translateY(-5px);
  }
  .college-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .college-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .college-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2a5dba;
  }
  .college-name a {
    text-decoration: none;
    color: #2a5dba;
  }
  .college-name a:hover {
    text-decoration: underline;
  }
  .college-location {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
  }
  .college-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .college-stats .stat {
    text-align: center;
    flex: 1;
  }
  .college-stats .stat-value {
    font-weight: bold;
    font-size: 1.1rem;
    color: #2a5dba;
  }
  .college-stats .stat-label {
    font-size: 0.8rem;
    color: #777;
  }
  .college-courses {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  .college-fees {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
  }
  .college-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
  }
  .action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
  }
  .primary-btn {
    background-color: #FF4500;
    border: none;
    color: #fff;
  }
  .secondary-btn {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
  }
  .show-more-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin: 1rem 0;
  }
  /* Mobile responsiveness */
  @media (max-width: 600px) {
    .filters {
      flex-direction: column;
    }
    .college-grid {
      grid-template-columns: 1fr;
    }
  }

/*poster*/
.adm-main-container {
    background: linear-gradient(135deg, #fff6e9 0%, #ffe8d1 100%);
    padding: 2.5rem 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.1);
    margin: 2rem auto;
    max-width: 1400px;
}

.adm-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.adm-text-container {
    flex: 1;
    max-width: 600px;
}

.adm-primary-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(120deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adm-description-text {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.adm-action-button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.adm-action-button:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.adm-arrow-icon {
    transition: transform 0.3s ease;
}

.adm-action-button:hover .adm-arrow-icon {
    transform: translateX(5px);
}

.adm-visual-container {
    flex: 1;
    max-width: 400px;
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.adm-student-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.adm-student-image {
    max-width: 50%;
    height: auto;
    object-fit: contain;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.adm-floating-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

[class^="adm-float-"] {
    position: absolute;
}

.adm-float-dot-primary, .adm-float-dot-secondary {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b00;
    opacity: 0.5;
}

.adm-float-dot-primary {
    top: 20%;
    left: 10%;
    animation: adm-float 3s ease-in-out infinite;
}

.adm-float-dot-secondary {
    bottom: 30%;
    right: 15%;
    animation: adm-float 4s ease-in-out infinite;
}

.adm-float-square {
    width: 15px;
    height: 15px;
    background: #4299e1;
    opacity: 0.5;
    top: 15%;
    right: 20%;
    animation: adm-rotate 5s linear infinite;
}

.adm-float-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ff6b00;
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation: adm-pulse 2s ease-in-out infinite;
}

.adm-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[class^="adm-type-card"] {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[class^="adm-type-card"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

[class^="adm-icon-wrapper"] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.adm-type-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.adm-type-title {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.adm-type-description {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes adm-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes adm-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes adm-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .adm-main-container {
        padding: 2rem;
    }
    
    .adm-primary-heading {
        font-size: 2rem;
    }
    
    .adm-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .adm-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .adm-visual-container {
        height: 250px;
    }
    
    .adm-student-image {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .adm-main-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .adm-primary-heading {
        font-size: 1.5rem;
    }
    
    .adm-description-text {
        font-size: 1rem;
    }
    
    .adm-action-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .adm-types-grid {
        grid-template-columns: 1fr;
    }
    
    .adm-visual-container {
        height: 200px;
    }
}
/*strip2 */
/* Base Styles */
.unique-campus-scale-strip {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: rgb(0, 0, 0);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e0e7ff; /* Light blue border */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15);
    margin: 40px 20px;
}


/* Animated Background */
.unique-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.unique-particle {
    position: absolute;
    background: rgba(226, 105, 105, 0.05);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

/* Container Styles */
.unique-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    border: 1px solid #dbeafe; /* Lighter inner border */
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.8);
}
/* Header Styles */
.unique-header-content {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #bfdbfe; /* Dashed border for separation */
}

.unique-header-logo img {
    transform: scale(2.5);
    height: 60px;
    margin-bottom: 20px;
}

.unique-header-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    color: transparent;
}

.unique-header-content p {
    font-size: 1.2rem;
    color: #93c5fd;
}

/* Feature Cards */
.unique-feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.unique-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e7ff;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.08);
}

.unique-feature-card:hover {
    transform: translateY(-5px);
    border-color: #93c5fd;
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.15);
}


.unique-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #60a5fa;
    margin-bottom: 20px;
    border: 1px solid rgba(96, 165, 250, 0.4);
}

.unique-feature-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.unique-highlight {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.unique-features {
    margin: 15px 0;
}

.unique-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #93c5fd;
    margin-bottom: 8px;
}

.unique-feature i {
    color: #34d399;
}

/* Action Buttons */
.unique-action-btn {
    background: #60a5fa;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.unique-action-btn:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

/* Stats Section */
.unique-platform-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    box-shadow: inset 0 2px 10px rgba(96, 165, 250, 0.1);
}
/* CTA Section */
.unique-strip-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f0f9ff;
    border-radius: 16px;
    border: 1px solid #60a5fa;
    position: relative;
}
.unique-cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.unique-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.unique-primary-btn, .unique-secondary-btn {
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.unique-primary-btn {
    background: #60a5fa;
    color: white;
}

.unique-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Opportunities Section */
.unique-opportunities {
    margin-top: 30px;
    padding: 15px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.unique-opportunity-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #60a5fa;
    font-weight: 500;
}

.unique-opportunity-slider {
    overflow: hidden;
    white-space: nowrap;
}

.unique-opportunity {
    display: inline-block;
    animation: slideLeft 20s infinite linear;
    margin-right: 50px;
}

@keyframes slideLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-header-content h2 {
        font-size: 2rem;
    }

    .unique-feature-container {
        grid-template-columns: 1fr;
    }

    .unique-cta-buttons {
        flex-direction: column;
    }

    .unique-opportunities {
        flex-direction: column;
        text-align: center;
    }
}




/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

/* Contact Float */
.contact-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.contact-btn {
    background:  #FF4500;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.contact-options {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
}

.contact-options a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn {
    color: #25d366;
}

.call-btn {
    color: var(--accent-color);
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f4f4f4;
}

.footer p,
.footer ul,
.footer a {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #ccc;
}

.footer ul li a:hover {
    color: #007bff;
}

.footer-contact p a {
    text-decoration: none;
    color: #ccc;
}

.footer-contact p a:hover {
    color: #007bff;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
}

.footer-social .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #007bff;
    border-color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        min-width: unset;
    }
}

.footer-advertisement {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }
  .ad-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 18px;
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .ad-inquiry:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .ad-inquiry img {
    width: 24px;
    height: 24px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  /* Modal Styling */
  .modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    overflow-y: auto;
    padding: 20px;
  }
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: modalEnter 0.4s ease-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
  @keyframes modalEnter {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 26px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
  }
  .close-btn:hover {
    color: #ff6b00;
  }
  
  /* Form Styling */
  .ad-form .form-group {
    margin-bottom: 20px;
  }
  .ad-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }
  .ad-form input,
  .ad-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
  }
  .ad-form input:focus,
  .ad-form textarea:focus {
    border-color: #ff6b00;
    outline: none;
  }
  .ad-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  .submit-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8533);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .submit-btn:hover {
    background: #e65a00;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  }
  @media (max-width: 480px) {
    .footer {
      padding: 30px 10px;
    }
    .ad-inquiry {
      padding: 10px 15px;
    }
  }
  

  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
  }
  
  .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  .subscription-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    position: relative;
    width: 100%;
  }
  
  .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
  }
  
  input,
  select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  input:focus,
  select:focus {
    outline: none;
    border-color: #ff6b00;
  }
  
  select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
  }
  
  button {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #ff5500;
  }
  
  .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
  }
  
  .notification.success {
    background-color: #4caf50;
    transform: translateY(0);
  }
  
  .notification.error {
    background-color: #f44336;
    transform: translateY(0);
  }
  
  @media (max-width: 600px) {
    .container {
      padding: 20px;
    }
  
    h1 {
      font-size: 24px;
    }
  
    .subtitle {
      font-size: 14px;
    }
  
    input,
    select,
    button {
      padding: 12px;
      font-size: 14px;
    }
  }
  
.inquiry-column {
    background-color: #0073e6;
    color: white;
    padding: 20px;
    cursor: pointer;
    width: 280px;
    text-align: center;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}
.inquiry-column:hover {
    background-color: #005bb5;
}
.inquiry-column img {
    width: 28px;
    height: 28px;
}
.popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    width: 550px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.popup-form h2 {
    margin-bottom: 20px;
    color: #0073e6;
}
.close-btn {
    float: right;
    cursor: pointer;
    font-size: 22px;
    color: #ff4d4d;
}
.close-btn:hover {
    color: #cc0000;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
textarea {
    height: 100px;
    resize: none;
}


.bannerfold {
    padding: 4rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff6e9 0%, #ffe8d1 100%);
};


h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in;
}

.description {
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--accent-color);
    color: rgb(254, 68, 0);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        margin: 1rem 0;
        max-width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .filters {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    .college-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.college-card {
    animation: fadeIn 0.5s ease forwards;
}

/*study places*/
.study-places {
    padding: 40px;
    background: radial-gradient(circle at top left, #f2f9ff, #d8eefe);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
  }

  @keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .study-places h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
  }

  .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .city-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 12px;
  }

  .city-item:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
  }

  .city-icon {
    background-color: #ffffff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .city-item:hover .city-icon {
    transform: scale(1.05);
  }

  .city-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }

  .city-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #4a5568;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .study-places {
      padding: 30px;
    }

    .study-places h2 {
      font-size: 28px;
    }

    .cities-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .city-item {
      padding: 15px;
    }

    .city-icon {
      width: 80px;
      height: 80px;
      padding: 15px;
      margin-bottom: 10px;
    }

    .city-icon img {
      width: 70%;
      height: 70%;
    }

    .city-item p {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .cities-grid {
      grid-template-columns: 1fr;
    }
  }

/* --- Custom Select Base Styles --- */
.custom-select-wrapper {
    position: relative;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #444;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
    flex: 1 1 200px;
    overflow: visible;
    z-index: 1100;
    width: 100%;
    display: flex; /* CHANGED: added flex display */
    align-items: center; /* CHANGED: vertical center alignment */
    justify-content: space-between; /* CHANGED: space between text and arrow */
}

.custom-select-wrapper.active {
    border-color: #FF4500;
}

.select-display-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
    width: 100%; /* CHANGED: full width */
    gap: 8px; /* CHANGED: spacing between text and arrow */
}

.select-arrow {
    font-size: 0.8em;
    color: #666;
    transition: transform 0.3s;
    flex-shrink: 0; /* CHANGED: prevent shrinking */
}

.custom-select-wrapper.active .select-arrow {
    transform: rotate(180deg);
}

/* --- Custom Options List Styling (The dropdown box) --- */
.custom-options-list {
    position: fixed;
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    width: 90vw;
    max-width: 400px;
    min-width: 200px; /* CHANGED: ensure consistent minimum width */
}

.custom-select-wrapper.open .custom-options-list {
    display: block;
}

/* --- Individual Option Styling --- */
.custom-option {
    padding: 15px 16px;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
    transition: background 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; /* CHANGED: ensure consistent block display */
    width: 100%; /* CHANGED: full width of container */
}

.custom-option:hover,
.custom-option.selected {
    background-color: #f8f9fa;
    color: #FF4500;
}

.custom-option.highlighted {
    background-color: #dbeafe;
    color: #2a5dba;
    font-weight: 600;
}

/* --- Search & Filter Container --- */
.search-filter-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.search-filter-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8rem;
}

/* --- Filter Options --- */
.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 100;
    width: 100%;
    align-items: stretch; /* CHANGED: all items same height */
}

.filter-select {
    flex: 1 1 200px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 0.95rem;
    color: #444;
    transition: border-color 0.3s ease;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 101;
    width: auto;
    min-width: 150px;
    height: 44px; /* CHANGED: consistent height */
    display: flex; /* CHANGED: flex display */
    align-items: center; /* CHANGED: vertical center */
}

.custom-select-wrapper {
    flex: 1 1 200px;
    min-width: 150px;
    width: auto;
    height: 44px; /* CHANGED: consistent height */
}

.filter-select:focus,
.custom-select-wrapper:focus {
    border-color: #FF4500;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .search-filter-container {
        padding: 15px 10px;
        margin: 20px auto;
        max-width: 95vw;
        width: 95vw;
        margin-left: auto;
        margin-right: auto;
    }

    .search-filter-container h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .filters {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }

    .filter-select,
    .custom-select-wrapper {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        height: 48px; /* CHANGED: slightly taller on mobile */
    }

    .custom-options-list {
        width: 90vw;
        left: 50% !important;
        transform: translateX(-50%);
        max-height: 320px;
        top: auto;
        bottom: auto;
        min-width: auto;
    }

    .custom-option {
        padding: 18px 16px;
        font-size: 1.05rem;
    }

    .search-input {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .search-filter-container {
        padding: 12px 8px;
        margin: 15px 5px;
        width: 100%;
    }

    .search-filter-container h2 {
        font-size: 1.2rem;
    }

    .filters {
        gap: 8px;
    }

    .filter-select,
    .custom-select-wrapper {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
        padding: 12px 12px;
        font-size: 0.95rem;
        height: 46px; /* CHANGED: mobile height */
    }

    .custom-options-list {
        width: 85vw;
        max-height: 280px;
        font-size: 0.95rem;
    }

    .custom-option {
        padding: 14px 12px;
        font-size: 0.95rem;
    }

    .search-input {
        padding: 12px 12px;
        font-size: 0.95rem;
    }
}