 html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  #container {
    margin: 0;
    padding: 0;
    height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-family: Arial, sans-serif;
    color: #fff;
   
    
}
       .content {
            flex: 1;
            padding: 20px;
        }
        
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 0;
            width: 100%;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 5px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #3498db;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #3498db;
        }
        
        .contact-icon {
            margin-right: 10px;
            font-size: 18px;
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .footer-section {
                flex: 100%;
                margin-bottom: 30px;
            }
            
            .footer-container {
                flex-direction: column;
            }
        }


logo {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect */
a:hover .logo {
    transform: scale(1.1); /* Slightly enlarge the logo */
    filter: brightness(1.2); /* Light up effect */
}

/* Change SVG on hover */

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #fff; /* Light background for contrast */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .box {
    border-radius: 10%;
 

    width: 400px;
    height: 400px;
    margin: 10px;
    overflow: hidden; /* Ensures images don't overflow */
    position: relative; /* Allows absolute positioning of images */
  }

  .box:hover{
    background: linear-gradient(rgba(70, 72, 73, 0.7), rgba(255, 255, 255, 0.5));
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

    cursor: pointer;
  }
  .box img {
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    mix-blend-mode: multiply;
    opacity: 95%;
    width: 385px;
    height: 400px;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the image */
  }
  
  #divit{
    display: flex;
}
#divittwo{
    display: none;
}
  @media only screen and (max-width: 800px) {
    .container{
        width: 100vw;
    }
    #divit{
        display: none;
    }
    #divittwo{
        display: block;
    }
  
    .box1 {
        border-radius: 0;
      width: 100%;
      height: 100px;
    
     background: linear-gradient(rgba(100, 170, 213, 0.7), rgba(255, 255, 255, 0.5));
        border: 1px solid black;
        overflow: hidden; /* Ensures images don't overflow */
        position: relative; /* Allows absolute positioning of images */
    }
    .box1 img {
  
        mix-blend-mode: multiply;
        opacity:95%;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the image */
        
      }
      .box1:hover{
        background: linear-gradient(rgba(70, 72, 73, 0.7), rgba(255, 255, 255, 0.5));
       
        cursor: pointer;
      }
   
   
  }
  