* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
  }
  

body {
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(Images/protest.jpg);
    background-position: center;
    background-size: cover;
    position: relative
}
nav {
    display: flex;
    padding: 2%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 250px;
    position: relative; bottom: 50px;
    border-radius: 60px;
}

.nav-links {
    position: relative; bottom: 50px;
    flex: 1;
    text-align: right;
    background: transparent;
    border-radius: 10px;
}

.nav-links ul{
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    
}


.nav-links ul li {
    list-style: none;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: #edb641;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.textbox {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.textbox h1 {
    font-size: 62px;
}

.textbox h1:hover {
    color: #58757d;
    transition: 2s;
}

.textbox p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    background: #1c1f2b;
    position: relative; 
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.hero-btn::after, .hero-btn::before{
    --angle: 0deg;
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 70%, #edb641) ;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 5px;
    border-radius: 10px;
    animation: 3s spin linear infinite;
}

@keyframes spin{
    from{
        --angle: 0deg;
    }
    to{
        --angle: 360deg;
    }
}
.hero-btn::before{
    filter: blur(24px);
    opacity: 0.5;
}

.hero-btn:hover {
    border: 1px solid rgb(70, 83, 78);
    background: rgb(127, 133, 127);
    color: black;
    transition: 1s;
}

nav .fa {
    display: none;
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .nav-links ul {
        display: none;
        width: 100%;
        text-align: left;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .nav-links ul li {
        display: block;
        padding: 10px 0;
    }

    .menu-icon {
        display: block;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }

    .textbox h1 {
        font-size: 36px;
    }

    .textbox p {
        font-size: 12px;
    }

    .hero-btn {
        padding: 10px 30px;
    }
}

/* Business Section Styles */
.business-section {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #121212 100%);
    padding: 80px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Animated Stars Background */
@keyframes animStar {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.business-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.5)"/></svg>');
    background-size: 100px 100px;
    animation: animStar 100s linear infinite;
    opacity: 0.3;
}

.business-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.business-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ebc87d, #d4a548);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px rgba(235, 200, 125, 0.3); }
    to { text-shadow: 0 0 20px rgba(235, 200, 125, 0.7); }
}

.business-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Business Cards */
.business-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
    animation: cardEntrance 0.8s forwards;
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Staggered animation delay */
.business-card:nth-child(1) { animation-delay: 0.1s; }
.business-card:nth-child(2) { animation-delay: 0.2s; }
.business-card:nth-child(3) { animation-delay: 0.3s; }
.business-card:nth-child(4) { animation-delay: 0.4s; }
.business-card:nth-child(5) { animation-delay: 0.5s; }

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0,0,0,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.business-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 0 2px rgba(235, 200, 125, 0.3);
}

.business-card:hover::before {
    transform: translateX(100%);
}

.business-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(235, 200, 125, 0.9);
    color: #121212;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.business-card:hover .business-category {
    transform: translateY(0);
    opacity: 1;
}

.business-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.business-card:hover .business-content {
    transform: translateY(0);
    opacity: 1;
}

.business-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.business-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 15px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.business-card:hover .business-list li {
    transform: translateX(0);
    opacity: 1;
}

/* Staggered list item animation */
.business-card:hover .business-list li:nth-child(1) { transition-delay: 0.1s; }
.business-card:hover .business-list li:nth-child(2) { transition-delay: 0.2s; }
.business-card:hover .business-list li:nth-child(3) { transition-delay: 0.3s; }
.business-card:hover .business-list li:nth-child(4) { transition-delay: 0.4s; }

.business-list li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #ebc87d;
    font-weight: bold;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.business-card:hover .business-list li::before {
    transform: scale(1);
}

.business-name {
    color: #fff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.business-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ebc87d;
    transition: width 0.3s ease;
}

.business-card:hover .business-name::after {
    width: 100%;
}

.business-btn {
    background: transparent;
    color: #ebc87d;
    border: 2px solid #ebc87d;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 150px;
    position: relative;
    overflow: hidden;
}

.business-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 200, 125, 0.2), transparent);
    transition: 0.5s;
}

.business-btn:hover {
    background: #ebc87d;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(235, 200, 125, 0.4);
}

.business-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-title {
        font-size: 2rem;
    }
    
    .business-subtitle {
        font-size: 1rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .business-card {
        height: 350px;
        animation-delay: 0s !important;
    }
    
    .business-card:nth-child(n) {
        animation-delay: 0.1s;
    }
}

/* News Section Styles */
.news-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #e20000, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e20000, #ff6b6b);
    border-radius: 2px;
}

.news-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
}

/* News Ticker */
.news-ticker {
    background: #1a1a1a;
    color: white;
    padding: 12px 0;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e20000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.card-content {
    padding: 20px;
}

.news-topic {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}

.news-excerpt {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #888;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #e20000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #b30000;
    text-decoration: underline;
}

/* News Footer */
.news-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: linear-gradient(90deg, #e20000, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(226, 0, 0, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-section {
        width: 95%;
        padding: 30px 0;
    }
    
    .news-title {
        font-size: 2.2rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .card-image-container {
        height: 200px;
    }
}
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f2e9ff 0%, #e2d1ff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4a2c82;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #917cae;
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.member-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.member-card:hover .member-image {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    background: #4a2c82;
    color: white;
}

.member-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.member-info h4 {
    margin: 5px 0;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.contact-form {
    background: #917cae;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.form-title {
    color: white;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.submit-btn {
    background: white;
    color: #4a2c82;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    width: 100%;
    max-width: 200px;
}

.submit-btn:hover {
    background: #f0e5ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-map {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.map-title {
    text-align: center;
    padding: 20px;
    color: #4a2c82;
    font-size: 1.5rem;
    margin: 0;
}

.map-container {
    height: 300px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .member-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact {
        padding: 50px 0;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-info h4 {
        font-size: 0.8rem;
    }
}



/*--category--*/

/*====card==*/
/* Category Section Styles */
.category {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.category-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4cc9f0;
}

.category-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card Container */
.cardcontainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card Article */
.cardarticle {
    perspective: 1000px;
    height: 400px;
}

.card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.cardarticle:hover .card-wrapper {
    transform: translateY(-10px) rotateX(5deg);
}

.card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.cardarticle:hover .card_img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cardarticle:hover .card-overlay {
    opacity: 1;
}

/* Card Data */
.carddata {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.cardarticle:hover .carddata {
    transform: translateY(0);
    opacity: 1;
}

.card-category {
    display: inline-block;
    padding: 5px 15px;
    background: #4cc9f0;
    color: #1a1a2e;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cardtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.card-des {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.cardbutton {
    display: inline-block;
    padding: 12px 30px;
    background: #4cc9f0;
    color: #1a1a2e;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4cc9f0;
}

.cardbutton:hover {
    background: transparent;
    color: #4cc9f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Background Elements */
.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(76, 201, 240, 0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-header h2 {
        font-size: 2rem;
    }
    
    .cardcontainer {
        grid-template-columns: 1fr;
    }
    
    .cardarticle {
        height: 350px;
    }
}

.footer {
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/protest.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.footer-text {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: white;
}

.footer-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.8;
    font-weight: 300;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.social-icon {
    animation: float 4s ease-in-out infinite;
}

.social-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.social-icon:nth-child(3) {
    animation-delay: 1s;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}