        /*=========footer============*/
        .footer {
            background-color: #2563eb;
            color: white;
            padding: 40px 0 20px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        background-color: #283145;
            pointer-events: none;
        }

        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .footer-logo img{
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            font-weight: bold;
            color: #2563eb;
            border: 3px solid rgba(0, 0, 0, 0.3);
        }

        .university-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            color: white;
        }

        .alumni-text {
            font-size: 16px;
            color: #ddd;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: white;
            font-weight: bold;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
            color: #ddd;
        }

        .contact-item span:first-child {
            margin-right: 10px;
            width: 20px;
        }
        .social-icon {
            margin-top: 20px;
        }
        .social-icon h4 {
            color: white; 
            font-size: 14px; 
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            justify-content: flex-start;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background-color: white;
            color:black;
            transform: translateY(-2px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            color: #ccc;
            font-size: 14px;
        }
        .contact-item a{
          text-decoration: none;
          color: white;
        }
        /* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
      max-width: 90%;
      padding: 0 15px;
    }
  
    .footer-content {
      gap: 25px;
    }
  }
  
  @media (max-width: 768px) {
    .footer {
      padding: 30px 0 15px;
    }
  
    .footer-container {
      max-width: 95%;
      padding: 0 10px;
    }
  
    .footer-header {
      margin-bottom: 25px;
    }
  
    .footer-logo img {
      width: 70px;
      height: 70px;
    }
  
    .university-name {
      font-size: 20px;
    }
  
    .alumni-text {
      font-size: 14px;
    }
  
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 25px;
    }
  
    .footer-section h3 {
      font-size: 15px;
      margin-bottom: 12px;
    }
  
    .footer-section ul li a {
      font-size: 13px;
    }
  
    .contact-item {
      font-size: 13px;
      margin-bottom: 8px;
    }
  
    .social-links a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  
    .footer-bottom {
      padding-top: 15px;
    }
  
    .footer-bottom p {
      font-size: 13px;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      padding: 25px 0 12px;
    }
  
    .footer-container {
      padding: 0 8px;
    }
  
    .footer-header {
      margin-bottom: 20px;
    }
  
    .footer-logo img {
      width: 60px;
      height: 60px;
    }
  
    .university-name {
      font-size: 18px;
      margin-bottom: 3px;
    }
  
    .alumni-text {
      font-size: 13px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-bottom: 20px;
    }
  
    .footer-section {
      text-align: center;
    }
  
    .footer-section h3 {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    .footer-section ul li {
      margin-bottom: 6px;
    }
  
    .footer-section ul li a {
      font-size: 12px;
    }
  
    .contact-item {
      font-size: 12px;
      margin-bottom: 6px;
      justify-content: center;
    }
  
    .contact-item span:first-child {
      margin-right: 8px;
      width: 18px;
    }
  
    .social-icon {
      margin-top: 15px;
    }
  
    .social-icon h4 {
      font-size: 13px;
      margin-bottom: 8px;
    }
  
    .social-links {
      justify-content: center;
      gap: 12px;
    }
  
    .social-links a {
      width: 30px;
      height: 30px;
      font-size: 13px;
    }
  
    .footer-bottom {
      padding-top: 12px;
    }
  
    .footer-bottom p {
      font-size: 12px;
    }
  }
  
  @media (max-width: 360px) {
    .footer-container {
      padding: 0 5px;
    }
  
    .footer-logo img {
      width: 55px;
      height: 55px;
    }
  
    .university-name {
      font-size: 16px;
    }
  
    .alumni-text {
      font-size: 12px;
    }
  
    .footer-section h3 {
      font-size: 13px;
    }
  
    .footer-section ul li a {
      font-size: 11px;
    }
  
    .contact-item {
      font-size: 11px;
    }
  
    .social-links a {
      width: 28px;
      height: 28px;
      font-size: 12px;
    }
  
    .footer-bottom p {
      font-size: 11px;
    }
  }
  