


/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --light-color: #ecf0f1;
    --dark-color: #333;
    --gray-color: #95a5a6;
    --white-color: #fff;
}
.article-card a{
    text-decoration: none;
    color: black;
}
.hello{
   border: 2px solid #ecf0f1;
    margin-bottom: 10vh;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
  
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5vh;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Header Styles */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    display: none;
}







.welcome-container {
            width: 80%;
            
            max-width: 1400px;
            margin-left: 10%;
            padding: 40px;
            background: var(--white-color);
            border-radius: 20px;
            box-shadow:  20px 20px 60px #d9d9d9, 
                        -20px -20px 60px #ffffff;
            text-align: center;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(0,0,0,0.05);
             margin-top: 20vh;
             margin-bottom: 20vh;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0.5deg); }
            50% { transform: translateY(-20px) rotate(-0.5deg); }
        }

        .welcome-title {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .welcome-subtitle {
            font-size: 1.3rem;
            color: var(--gray-color);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .divider {
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
            margin: 0 auto 30px;
            border-radius: 50px;
            animation: expand 2s ease-out infinite;
        }

        @keyframes expand {
            0% { width: 50px; opacity: 0; }
            100% { width: 150px; opacity: 1; }
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
        }

        .cta-button:active {
            transform: translateY(1px);
        }

        .pulse-dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.7);
            border-radius: 50%;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
            50% { transform: translateY(-50%) scale(1.5); opacity: 0.3; }
        }



.container-main-art{
    margin-top: 10vh;
}
main{
     padding: 40px 0;
}
  
        
        .page-title {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light);
        }
        
        /* Article Cards */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-category {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .article-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .article-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.85rem;
            border-top: 1px solid var(--light);
            padding-top: 15px;
        }
        
        /* Footer */
     
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }































             .newsletter-container {
            width: 95%;
            max-width: 1400px;
            padding: 40px;
            margin-left: 2.5%;
            background: var(--white-color);
            border-radius: 20px;
            box-shadow: 20px 20px 60px #d9d9d9, 
                       -20px -20px 60px #ffffff;
            text-align: center;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(0,0,0,0.05);
            margin-top: 30vh;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0.5deg); }
            50% { transform: translateY(-15px) rotate(-0.5deg); }
        }

        .newsletter-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .newsletter-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            position: relative;
        }

        .newsletter-input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--light-color);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s;
            background: var(--light-color);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .newsletter-button {
            padding: 18px 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white-color);
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .newsletter-button:hover {
            transform: translateY(-3px);
            box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
        }

        .newsletter-button:active {
            transform: translateY(1px);
        }

        .privacy-text {
            font-size: 0.8rem;
            color: var(--gray-color);
            margin-top: 20px;
        }

        .privacy-text a {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Success state (can be added with JavaScript) */
        .success-message {
            display: none;
            color: #2ecc71;
            font-weight: bold;
            margin-top: 20px;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }











 

 .footer {
            background: var(--secondary-color);
            color: var(--white-color);
            padding: 60px 0 30px;
           
            bottom: 0;
            width: 100%;
           
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white-color);
            text-decoration: none;
        }

        .footer-logo span {
            color: var(--primary-color);
        }

        .footer-about {
            color: var(--gray-color);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white-color);
              content: url('https://i.pinimg.com/736x/ce/d4/a3/ced4a3d5f73e81f6f9a8506317e487bb.jpg');
        }
        .social-icon2 {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white-color);
              content: url('https://i.pinimg.com/736x/e7/c1/54/e7c15488d7a9ef341d79bbe19c5bac30.jpg');
             
        }
         .social-icon3 {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white-color);
              content: url(' https://i.pinimg.com/1200x/b2/68/83/b268838fe5a0c0ca504c2fc103843ae3.jpg');
             
        }
           .social-icon4 {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white-color);
              content: url('https://i.pinimg.com/1200x/db/bb/57/dbbb57e4a4dd74be71504cdbac7a3095.jpg');
             
        }


        .social-icon:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        .social-icon2:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        .social-icon3:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        .social-icon4:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links li {
            margin: 0;
        }

        .footer-links a {
            color: var(--gray-color);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            padding: 2px 0;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray-color);
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: var(--primary-color);
            min-width: 20px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-color);
            text-decoration: none;
        }
       


        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            body {
                padding-bottom: 400px;
            }
        }

























/* Responsive Styles */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar ul.show {
        display: flex;
    }
    
    .navbar ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}




