:root {
    --primary-color: #ed672d;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: #f8f9fa;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand h1 {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-item .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.section-bg {
    position: relative;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    z-index: 0;
}

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(44, 62, 80, 0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

#home {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

#home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.typed-text-output {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    border-width: 2px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.scroll-to-bottom {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-to-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.2), rgba(52, 152, 219, 0.2));
    border-radius: 10px;
}

.about-content {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.section-title {
    position: relative;
    z-index: 1;
}

.section-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.title-border {
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 10px;
}

.about-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    margin-right: 15px;
}

.about-info-item {
    transition: all 0.3s ease;
}

.about-info-item:hover {
    transform: translateX(5px);
}

.about-info-content h6 {
    color: var(--primary-color);
    font-weight: 600;
}

.about-info-content p {
    font-size: 0.9rem;
}

.qualification-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qualification-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-header h5 {
    margin: 0;
    color: var(--primary-color);
}

.badge-primary {
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.skills-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.skills-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.skill-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.skill-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
    transform: scale(1.1);
}

.skill-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.skill-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 1rem 0;
}

.skill-progress {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
    animation: shimmer 2s infinite;
}

.skill-percentage {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.skill-item h6 {
    color: var(--primary-color);
    margin: 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 2rem;
}

.contact-item h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(44, 62, 80, 0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
}

#qualification {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    position: relative;
}

#qualification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(44, 62, 80, 0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
}

#skill {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
    position: relative;
}

#skill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(44, 62, 80, 0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
}

#contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    margin-bottom: 0 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#contact::before {
    display: none;
}

#contact .container {
    width: 100%;
    max-width: 1200px;
}

#contact h1.display-1 {
    font-size: 5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.1) !important;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2) !important;
}

#contact .position-absolute.text-uppercase.text-primary {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none;
    font-size: 3rem;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-heading {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-send {
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    #contact h1.display-1 {
        font-size: 3rem;
    }
    
    #contact .position-absolute.text-uppercase.text-primary {
        font-size: 2rem;
    }
}

/* Update text colors for better contrast */
#about .text-white,
#qualification .text-white,
#skill .text-white,
#contact .text-white {
    color: var(--primary-color) !important;
}

#about .text-primary,
#qualification .text-primary,
#skill .text-primary,
#contact .text-primary {
    color: var(--primary-color) !important;
}

/* Update section titles for better visibility */
.position-relative.d-flex.align-items-center.justify-content-center {
    margin-bottom: 4rem;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.position-relative .display-1 {
    font-size: 8rem;
    color: transparent !important;
    -webkit-text-stroke: 2px rgba(44, 62, 80, 0.1) !important;
    letter-spacing: 0.1em;
    user-select: none;
    position: absolute;
    white-space: nowrap;
    transform: translateY(-10px);
    animation: float 6s ease-in-out infinite;
    background: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

.position-absolute.text-uppercase.text-primary {
    font-size: 2.2rem;
    color: var(--primary-color) !important;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Add subtle animation to background text */
@keyframes float {
    0% { transform: translateY(-10px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(-10px); }
}

/* Update card backgrounds */
.about-content,
.qualification-card,
.skills-card,
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.skill-item,
.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Update form controls */
.form-control {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.1);
}

.container-fluid {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Fix footer spacing */
.container-fluid.bg-primary.text-white.mt-5 {
    margin-top: 0 !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Add subtle section separators */
.container-fluid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.1) 50%, 
        rgba(0,0,0,0) 100%
    );
}

/* Update section title container */
.position-relative.d-flex.align-items-center.justify-content-center {
    margin-bottom: 4rem;
    height: 120px;
}

/* Update section backgrounds for better contrast */
#about, #qualification, #skill, #contact {
    position: relative;
    z-index: 1;
}

#about::before,
#qualification::before,
#skill::before,
#contact::before {
    opacity: 0.3;
}

/* Ensure container has proper z-index */
.container {
    position: relative;
    z-index: 2;
}

/* Fix the text-white class override */
.display-1.text-uppercase.text-white {
    color: transparent !important;
}

/* Override any other styles that might affect the text color */
.display-1.text-uppercase.text-white,
.display-1.text-uppercase {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background: transparent !important;
}

/* Update the stroke style in HTML */
[style*="-webkit-text-stroke"] {
    -webkit-text-stroke: 2px rgba(44, 62, 80, 0.1) !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background: transparent !important;
}

/* Add scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: all 0.8s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Add stagger effect for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Footer styling */
.container-fluid.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.container-fluid.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%
    );
}

.container-fluid.bg-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

/* Social buttons styling */
.btn-light.btn-social {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-light.btn-social:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer text styling */
.container-fluid.bg-primary .text-white {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.container-fluid.bg-primary .text-white.font-weight-bold {
    color: white !important;
    font-weight: 600 !important;
}

/* Footer container styling */
.container-fluid.bg-primary .container {
    position: relative;
    z-index: 1;
}

.container-fluid.bg-primary .d-flex {
    margin-bottom: 2rem;
}

/* Copyright text */
.container-fluid.bg-primary .m-0 {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Remove margin from footer */
.container-fluid.bg-primary.text-white.mt-5 {
    margin-top: 0 !important;
}

/* Add subtle animation to social icons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-light.btn-social:hover {
    animation: pulse 1.5s infinite;
} 