/* About Section Styles */
.about-section {  
    background: rgba(225, 225, 239, 0.299); 
    text-align: center;
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}                                                                                                                                                                           
.about-section {
    height: fit-content;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.about-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-section p {
    margin-top: auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 4.5rem;
}

/* CTA */
.cta {
    background: #060606;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
}

.btnn {
    padding: 10px 20px;
    background: #00aaff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.btnn:hover {
    background: #0077cc;
}

 /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            text-align: center;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .footer-section p, .footer-section li {
            margin-bottom: 1rem;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--primary);
        }
        
        .footer-section ul {
            list-style: none;
        }


        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            color: #ddd;
            transform: translateY(-3px);
        }
        
        .copyright {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }

       

        .footer-line{
        border: none;
        border-top: 1px solid #cfcece;
        margin: 20px 0;
        }

        .copy{
        font-size: x-small;
        }



@media(max-width: 768px){ 
    .nav-main{
        display: none;
    }
    .burger{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #312f2f;  /*make sure it's visible*/

     }
.nav-main.active{
  display: flex;
    flex-direction: column;
    }

header h1{
    margin-right: 31%;
    
}
}
