       

/* Main container styles */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    flex: 1;
 }
 
 h1 {
    text-align: center;
    margin: 20px 0;
    color: #008B8B;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
 }
 
 h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #FFD700;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
 }
 
 /* Country filter section */
 .country-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }
 
 .country-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
 }
 
 .country-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 .country-btn.active {
    background: #FFD700;
    color: #333;
 }
 
 /* University cards section */
 .universities-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
 }
 
 .university-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: none; /* Hidden by default */
 }
 
 .university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }
 
 .university-header {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    padding: 15px;
    position: relative;
 }
 
 .university-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
 }
 
 .university-country {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
 }
 
 .university-country i {
    margin-right: 5px;
 }
 
 .university-details {
    padding: 20px;
 }
 
 .university-info {
    margin-bottom: 15px;
 }
 
 .info-label {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
 }
 
 .info-value {
    font-weight: 500;
    color: #333;
 }
 
 .view-details-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
 }
 
 .view-details-btn:hover {
    background: linear-gradient(135deg, #006666 0%, #004444 100%);
 }
 
 /* App download modal */
 .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
 }
 
 .modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.4s;
 }
 
 @keyframes modalSlideIn {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
 }
 
 .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
 }
 
 .close-modal:hover {
    color: #008B8B;
 }
 
 .app-download-icon {
    font-size: 60px;
    color: #008B8B;
    margin-bottom: 20px;
 }
 
 .modal-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #008B8B;
 }
 
 .modal-text {
    margin-bottom: 25px;
    color: #666;
 }
 
 .download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
 }
 
 .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 /* Animations */
 @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
 }
 
 /* No results message */
 .no-results {
    text-align: center;
    padding: 50px;
    width: 100%;
    display: none;
    grid-column: 1 / -1;
 }
 
 .no-results i {
    font-size: 50px;
    color: #008B8B;
    margin-bottom: 20px;
 }
 
 .no-results h3 {
    color: #333;
    margin-bottom: 10px;
 }
 
 .no-results p {
    color: #666;
 }
 
 /* Footer styles */
 footer {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    padding: 40px 0 0 0;
    margin-top: 60px;
 }
 
 .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px 30px;
 }
 
 .footer-about h3,
 .footer-links h3,
 .footer-contact h3,
 .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
 }
 
 .footer-about h3:after,
 .footer-links h3:after,
 .footer-contact h3:after,
 .footer-social h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #FFD700;
    bottom: 0;
    left: 0;
 }
 
 .footer-about p {
    line-height: 1.7;
 }
 
 .footer-links ul {
    list-style: none;
 }
 
 .footer-links ul li {
    margin-bottom: 10px;
 }
 
 .footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
 }
 
 .footer-links ul li a:hover {
    color: #FFD700;
    transform: translateX(5px);
 }
 
 .footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
 }
 
 .footer-contact p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
 }
 
 .footer-social .social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
 }
 
 .footer-social .social-icons a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
 }
 
 .footer-social .social-icons a i {
    margin-right: 10px;
    font-size: 18px;
 }
 
 .footer-social .social-icons a:hover {
    color: #FFD700;
    transform: translateY(-3px);
 }
 
 .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 15px 0;
    margin-top: 10px;
 }
 
 /* Responsive styles */
 @media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .universities-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .country-filter {
        padding: 15px;
    }
    
    .country-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 20px;
        max-width: 90%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 }
 
 header:hover {
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }
 
 .logo {
 display: flex;
 align-items: center;
 max-width: 200px; /* Adjust this value based on your needs */
 }
 
 .logo img {
 max-height: 45px;
 max-width: 100%;
 width: auto;
 object-fit: contain;
 animation: pulse 2.5s infinite;
 }
 
 header {
 background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 15px 5%;
 position: sticky;
 top: 0;
 z-index: 100;
 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
 transition: all 0.3s ease;
 }
 .logo-text {
 color:white;
 font-weight: 700;
 font-size: 22px;
 margin-left: 10px;
 letter-spacing: 0.5px;
 }
 
 nav {
 display: flex;
 gap: 25px;
 }
 
 nav a {
 color: white;
 text-decoration: none;
 font-weight: 500;
 font-size: 15px;
 position: relative;
 transition: all 0.3s ease;
 }
 
 nav a:after {
 content: '';
 position: absolute;
 width: 0;
 height: 2px;
 bottom: -5px;
 left: 0;
 background-color: #FFD700;
 transition: width 0.3s ease;
 }
 
 nav a:hover:after {
 width: 100%;
 }
 
 .header-contact {
 color:black;
 display: flex;
 align-items: center;
 }
 
 .header-contact i {
 margin-right: 8px;
 animation: pulse 2s infinite;
 color:#044848;
 }̥
 /* Main container styles */
 .container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
 }
 
 h1 {
    text-align: center;
    margin: 20px 0;
    color: #008B8B;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
 }
 
 h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #FFD700;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
 }
 
 /* Country filter section */
 .country-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }
 
 .country-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
 }
 
 .country-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 .country-btn.active {
    background: #FFD700;
    color: #333;
 }
 
 /* University cards section */
 .universities-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
 }
 
 .university-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: none; /* Hidden by default */
 }
 
 .university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }
 
 .university-header {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    padding: 15px;
    position: relative;
 }
 
 .university-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
 }
 
 .university-country {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
 }
 
 .university-country i {
    margin-right: 5px;
 }
 
 .university-details {
    padding: 20px;
 }
 
 .university-info {
    margin-bottom: 15px;
 }
 
 .info-label {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
 }
 
 .info-value {
    font-weight: 500;
    color: #333;
 }
 
 .view-details-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
 }
 
 .view-details-btn:hover {
    background: linear-gradient(135deg, #006666 0%, #004444 100%);
 }
 
 /* App download modal */
 .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
 }
 
 .modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.4s;
 }
 
 @keyframes modalSlideIn {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
 }
 
 .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
 }
 
 .close-modal:hover {
    color: #008B8B;
 }
 
 .app-download-icon {
    font-size: 60px;
    color: #008B8B;
    margin-bottom: 20px;
 }
 
 .modal-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #008B8B;
 }
 
 .modal-text {
    margin-bottom: 25px;
    color: #666;
 }
 
 .download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
 }
 
 .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 /* Animations */
 @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
 }
 
 /* No results message */
 .no-results {
    text-align: center;
    padding: 50px;
    width: 100%;
    display: none;
    grid-column: 1 / -1;
 }
 
 .no-results i {
    font-size: 50px;
    color: #008B8B;
    margin-bottom: 20px;
 }
 
 .no-results h3 {
    color: #333;
    margin-bottom: 10px;
 }
 
 .no-results p {
    color: #666;
 }
 
 /* Responsive styles */
 @media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .universities-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .country-filter {
        padding: 15px;
    }
    
    .country-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 20px;
        max-width: 90%;
    }
 }
 