/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
    opacity: 1; 
    padding-top: 70px; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif; 
    font-weight: 700;
    color: #fff; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(8px); 
    z-index: 1000;
    transition: all 0.4s ease; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98); 
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.7); 
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-left: 10px;
    font-family: 'Rajdhani', sans-serif;
    display: inline-block;
    vertical-align: middle;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

.logo-link h2 {
    margin: 0;
    padding: 0;
}

.logo-mark svg {
    display: block;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 1001; 
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative; 
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff4444;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ff4444;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px; 
    transition: transform 0.3s ease;
}

.hamburger span {
    width: 28px; 
    height: 4px; 
    background: #fff;
    margin: 4px 0; 
    transition: 0.4s; 
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 25vh; 
    padding-bottom: 10vh; 
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; 
    background-image: url('hero-bg.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    z-index: -2;
}

/* Add back the generated grid overlay */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2; 
    z-index: 0; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 80%); 
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 900px; 
    padding: 0 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem); 
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem; 
    line-height: 1.1;
    letter-spacing: -3px; 
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem); 
    color: #ccc;
    margin-bottom: 3rem; 
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.carousel-container { 
    display: none; 
}

.carousel-track { 
    display: none; 
}

.portfolio-card { 
    display: none; 
}

.portfolio-image { 
    display: none; 
}

.portfolio-overlay { 
    display: none; 
}

.carousel-btn { 
    display: none; 
}

/* Section Styles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px; 
    left: 50%;
    transform: translateX(-50%);
    width: 120px; 
    height: 5px; 
    background: linear-gradient(90deg, transparent, #ff4444, transparent); 
    border-radius: 2.5px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #0a0a0a; 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #181818 0%, #282828 100%); 
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-card:hover {
    transform: translateY(-12px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4444, #ff6b6b); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px; 
    font-size: 2.2rem; 
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem; 
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
    line-height: 1.7; 
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #111;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    margin-top: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5); 
}

.pricing-card:hover:not(.featured) { 
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.pricing-card.featured:hover { 
    transform: scale(1.06) translateY(-12px); 
    box-shadow: 0 20px 50px rgba(255, 68, 68, 0.7); 
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.6rem; 
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    color: #ff4444;
    font-size: 1.8rem; 
    font-weight: 600;
}

.pricing-card.featured .currency {
    color: #fff;
}

.amount {
    color: #fff;
    font-size: 3.5rem; 
    font-weight: 700;
    letter-spacing: -1px;
}

.period {
    color: #ccc;
    font-size: 1.1rem; 
}

.pricing-card.featured .period {
    color: rgba(255,255,255,0.8);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
    padding: 0 10px; 
}

.features-list li {
    color: #ccc;
    margin-bottom: 12px; 
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card.featured .features-list li {
    color: rgba(255,255,255,0.9);
}

.features-list i {
    color: #ff4444;
    font-size: 1rem; 
    margin-top: 4px; 
    flex-shrink: 0; 
}

.pricing-card.featured .features-list i {
    color: #fff;
}

.pricing-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: -20px;
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-card.featured .pricing-note {
    color: rgba(255,255,255,0.7);
}

.pricing-btn {
    background: transparent;
    border: 2px solid #ff4444;
    color: #ff4444;
    padding: 14px 30px; 
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem; 
}

.pricing-card.featured .pricing-btn {
    background: #fff;
    border: 2px solid #fff;
    color: #ff4444;
}

.pricing-btn:hover:not(.featured .pricing-btn) {
    background: #ff4444;
    color: #fff;
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
}

.pricing-card.featured .pricing-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #0a0a0a;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    opacity: 0;
    /* Transition is handled by GSAP in script.js */
}

.testimonial.active {
    display: block;
    opacity: 1; /* ensure visible by default */
}

.testimonial-content {
    background: linear-gradient(135deg, #181818 0%, #282828 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-content p {
    color: #fff;
    font-size: 1.3rem; 
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: #ff4444;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent; 
}

.dot.active {
    background: #ff4444;
    transform: scale(1.3); 
    border-color: rgba(255,255,255,0.5); 
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem); 
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.contact-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0,0,0,0.6); 
    border: 1px solid rgba(255,255,255,0.15); 
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255,68,68,0.3); 
    background: rgba(0,0,0,0.8); 
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777; 
}

.submit-btn {
    background: linear-gradient(45deg, #ff4444, #ff6b6b); 
    color: #fff;
    border: none;
    padding: 15px 30px; 
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem; 
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(45deg, #ff3333, #ff5b5b); 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.5);
}

.submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
}

.contact-actions .mail-row {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.email-text {
    color: #fff;
    background: rgba(255,255,255,0.04);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    user-select: text; /* allow copy/paste */
    font-size: 0.98rem;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Mobile: stack button and email so they fit */
@media (max-width: 480px) {
    .contact-actions .mail-row {
        flex-direction: column;
    }
    .email-text {
        width: 100%;
        text-align: center;
    }
}

/* Button style for contact links */
.contact-btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.06);
    width: 100%; 
    justify-content: center;
    padding: 14px 18px;
}

/* Individual brand colors (subtle) */
.contact-btn.mail { background: linear-gradient(90deg,#e84a4a,#ff6b6b); }
.contact-btn.linkedin { background: linear-gradient(90deg,#0077b5,#0a66c2); }

/* Footer */
.footer {
    background: transparent; 
    padding: 0; 
    border-top: none; 
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr; 
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.6rem; 
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0; 
}

.footer-column ul li {
    margin-bottom: 10px; 
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: #ff4444;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px; 
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #ff4444;
    transform: translateY(-3px) rotate(5deg); 
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0; 
    visibility: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; 
}

.scroll-to-top:hover {
    background: #ff3333;
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Copy confirmation toast */
.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    font-weight: 600;
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1200;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
}

.copy-toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; 
        flex-direction: column;
        background-color: rgba(0,0,0,0.98); 
        width: 100%;
        text-align: center;
        transition: left 0.4s ease; 
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        height: calc(100vh - 70px); 
        overflow-y: auto; 
        z-index: 999; 
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0; 
    }

    .nav-menu a {
        font-size: 1.2rem; 
    }

    .nav-menu a::after {
        bottom: -8px; 
    }

    .hero {
        padding-top: 20vh;
        padding-bottom: 8vh;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .carousel-container {
        padding: 20px 0; 
    }
    .carousel-track {
        justify-content: flex-start; 
        gap: 20px; 
        padding: 0 20px; 
    }
    .portfolio-card {
        min-width: 80%; 
        width: 80%; 
        max-width: 350px; 
        height: 350px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center; 
    }
    .footer-column ul {
        padding: 0;
    }
    .footer-column ul li {
        text-align: center;
    }

    .social-links {
        justify-content: center; 
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 18vh;
        padding-bottom: 6vh;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 80px; 
        height: 4px;
    }

    .carousel-track {
        padding: 0 15px; 
    }
    .portfolio-card {
        min-width: 90%; 
        width: 90%;
        height: 300px;
    }
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
    .portfolio-overlay p {
        font-size: 0.9rem;
    }
    .portfolio-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .feature-card h3 {
        font-size: 1.3rem;
    }
    .feature-card p {
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    .amount {
        font-size: 3rem;
    }
    .period {
        font-size: 1rem;
    }
    .features-list li {
        font-size: 0.95rem;
    }
    .pricing-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 30px 20px;
    }
    .testimonial-content p {
        font-size: 1.1rem;
    }
    .testimonial-author {
        flex-direction: column; 
        gap: 5px;
    }

    .contact-form {
        padding: 30px 20px;
    }
    .contact-text h2 {
        font-size: 1.8rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .footer-content {
        gap: 20px;
    }
    .footer-logo h3 {
        font-size: 1.4rem;
    }
    .footer-column h4 {
        font-size: 1rem;
    }
    .footer-column ul li a {
        font-size: 0.95rem;
    }
    .social-links {
        gap: 10px;
    }
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 0.8rem;
    }
}