/* Font imports */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variables */
:root {
    /* Colors */
    --primary-color: #FFD700; /* Yellow */
    --secondary-color: #1E1E1E; /* Dark background */
    --text-color: #FFFFFF;
    --text-color-secondary: #CCCCCC;
    --button-primary: #FFD700;
    --button-secondary: #FFFFFF;
    --button-text: #000000;
    --button-border-color: #FF5252; /* Red border for buttons */
    --section-bg: #1E1E1E;
    --section-bg-alt: #232323;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-size-normal: 16px;
    --font-size-hello: 5rem;
    --font-size-name-first: 8rem;
    --font-size-name-rest: 8rem;
    --font-size-designation: 3.5rem;
    --font-size-specialty: 3.5rem;
    --font-size-subtitle: 2.5rem;
    --font-size-h3: 1.75rem;
    --font-size-small: 14px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Borders */
    --border-radius: 50px;
    
    /* Containers */
    --container-width: 85%;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-normal);
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Go to Top Button Styles */
#goToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#goToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#goToTopBtn:hover {
    background-color: #f0c800; /* Slightly lighter yellow */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

#goToTopBtn:active {
    transform: translateY(0) scale(0.95);
}

#goToTopBtn i {
    font-size: 20px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #goToTopBtn {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 25px;
    }
}

@media (max-width: 576px) {
    #goToTopBtn {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    #goToTopBtn i {
        font-size: 16px;
    }
}

section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

.flash-messages-container {
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        width: 90%;
        max-width: 500px;
    }
    
    .flash-message {
        padding: 12px 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        animation: slideIn 0.5s ease forwards;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .flash-success {
        background-color: rgba(46, 204, 113, 0.9);
        color: white;
    }
    
    .flash-error {
        background-color: rgba(231, 76, 60, 0.9);
        color: white;
    }
    
    .flash-message i {
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .close-flash {
        margin-left: auto;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s;
    }
    
    .close-flash:hover {
        opacity: 1;
    }
    
    @keyframes slideIn {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
/* Navigation Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 1000;
    padding: 10px 0;
    height: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center; /* Vertical centering for all children */
    justify-content: center; /* Center all nav items without logo */
    height: 100%; /* Full height of header */
}

.nav-links {
    display: flex;
    justify-content: center; /* Center links now that logo is gone */
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    height: 100%; /* Full height */
    align-items: center; /* Vertical centering */
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown i {
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1E1E1E;
    border: 1px solid #333;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1E1E1E;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: left;
    height: auto;
}

.dropdown-menu li a i {
    margin-right: 10px;
    font-size: 16px;
}

.dropdown-menu li a:hover {
    background-color: #333;
    color: var(--primary-color);
}

.flash-messages-container {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
}

.flash-message {
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flash-success {
    background-color: rgba(46, 204, 113, 0.9);
    color: white;
}

.flash-error {
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
}

.flash-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.close-flash {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-flash:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero-section {
    background-color: var(--secondary-color);
    min-height: 100vh;
    padding-top: 60px; /* Space for navbar */
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px); /* Subtracting navbar height */
}

/* Hero text alignment adjustment */
.hero-text {
    max-width: 55%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 0 0; /* This will push the content to the left side but center it */
    padding-left: 10%; /* Add padding to center the content on the screen */
}

/* Hello text - still left aligned */
.hello-text {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 2px;
    align-self: flex-start;
    width: 100%; /* Make it take full width of the hero-text container */
}

/* Name styles - proper centering */
.name {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 0.9;
    margin: 20px 0 30px;
    text-transform: uppercase;
    letter-spacing: 10px;
    white-space: nowrap;
    display: block; /* Changed from flex to block for better alignment */
    width: 100%; /* Full width */
    text-align: left; /* Align text to left */
}

.name-first {
    color: var(--primary-color);
}

.name-rest {
    color: var(--text-color);
}

.designation {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 5px;
    line-height: 1.2;
    letter-spacing: 2px;
    text-align: center; /* Center text alignment */
    margin-left: 0; /* Remove left margin */
}

.specialty {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    display: block;
    font-size: 3.5rem;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-left: 0; /* Remove left margin */
    white-space: nowrap;
    text-align: center; /* Center text alignment */
}

.designation, .specialty {
    width: 100%;
}

/* Button Styles */
.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin: 40px 0 30px;
    margin-left: 0; /* Remove left margin */
    align-self: center; /* Center align */
    justify-content: center; /* Center buttons */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    text-transform: none;
    font-size: 18px;
    border: 2px solid #FF5252; /* Red border for buttons */
}

.btn i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-contact, .btn-resume {
    background-color: transparent;
}

.btn-contact:hover, .btn-resume:hover {
    background-color: #FF5252;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-left: 0; /* Remove left margin */
    align-self: center; /* Center align */
    justify-content: center; /* Center social icons */
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Hero Image */
.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 45%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0px;
}

.hero-image img {
    max-width: 100%;
    max-height: 90%; /* Prevent touching the navbar */
    object-fit: contain;
    object-position: right bottom;
}

/* Section Heading Styles */
.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding: 0 5%;
}

.about-section .section-heading {
    margin-bottom: 0.5rem;
}

.right-aligned {
    justify-content: flex-end;
}

.section-title {
    font-size: var(--font-size-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}

.line-dot {
    position: relative;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 var(--spacing-md);
}

.line-dot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-heading .line-dot::after {
    right: 0;
}

.right-aligned .line-dot::after {
    left: 0;
}

/* About Section Styles */
.about-section {
    background-color: var(--section-bg-alt);
    padding-top: 50px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 120px); /* Adjusted to account for smaller header spacing */
}

/* Position image absolutely on the left side */
.about-image {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 45%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
    flex: none; /* Remove flex sizing */
}

.about-image img {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    object-position: left bottom;
    border-radius: 0; /* Remove border radius */
}

/* Position text content on the right side */
.about-text {
    max-width: 55%;
    margin: 0 0 0 auto; /* Push to right side */
    padding-right: 10%; /* Add padding to right */
    position: relative;
    z-index: 2;
    flex: none; /* Remove flex sizing */
}

.about-text h2.hello-text {
    margin-bottom: 1rem; /* Reduced from var(--spacing-md) */
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.highlight {
    color: var(--primary-color);
}

.education-intro {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.about-description {
    margin-bottom: 0.5rem;
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}

/* Education Section Styles */
.education-section {
    background-color: var(--section-bg);
    padding-top: 55px; /* Minimal top padding to clear header */
    padding-bottom: 0; /* Remove bottom padding */
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.education-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px); /* Accounting for header and section padding */
}

/* Update education text to match hero-text positioning */
.education-text {
    max-width: 55%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 0 0; /* Position on left */
    padding-left: 10%;
    flex: none;
}

/* Update education image to match hero-image positioning */
.education-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 45%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
    flex: none;
}

.education-image img {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    object-position: right bottom;
}

/* Update timeline styling */
.timeline {
    position: relative;
    padding-left: 25px; /* Reduced padding */
    width: 100%;
}

/* Style each timeline item to stand out more */
.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -16px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.year {
    min-width: 100px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.institution {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.degree {
    color: var(--text-color-secondary);
}

/* Add an education title similar to the hello-text */
.education-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: 2px;
    align-self: flex-start;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .hello-text {
        font-size: 4.5rem;
    }

    .name {
        font-size: 7rem;
    }
    
    .designation, .specialty {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    :root {
        --font-size-hello: 4rem;
        --font-size-name-first: 7rem;
        --font-size-name-rest: 7rem;
        --font-size-designation: 3rem;
        --font-size-specialty: 3rem;
        --font-size-subtitle: 2rem;
        --font-size-h3: 1.5rem;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text {
        padding-left: 5%;
    }

    .hello-text {
        font-size: 4rem;
    }
    
    .name {
        font-size: 6rem;
    }

    .designation, .specialty {
        font-size: 2.8rem;
        margin-left: 0;
    }
    
    .cta-buttons, .social-icons {
        margin-left: 0;
    }
    
    .hero-content, .about-content, .education-content {
        padding: 0 3%;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: var(--spacing-lg);
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero-text {
        max-width: 100%;
        padding-left: 0;
        align-items: center;
        margin: 0 auto;
    }
    
    .hello-text, .name, .designation, .specialty {
        text-align: center;
        align-self: center;
    }
    
    .hello-text {
        font-size: 3.5rem;
        align-self: center; /* Center hello text on mobile */
        text-align: center;
    }
    
    .name {
        font-size: 5rem;
        justify-content: center;
    }
    
    .designation, .specialty {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    .cta-buttons, .social-icons {
        align-self: center;
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        max-width: 70%;
        height: auto;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .about-image img {
        position: relative;
        max-width: 40%;
        max-height: 40%;
        height: auto;
        margin: 0 auto;
        padding-bottom: 0;
        order: 1;
    }
    
    .about-content {
        flex-direction: column;
        padding: 0 5%;
        min-height: auto;
        padding-top: 0rem;
    }
    
    .about-image {
        position: relative;
        max-width: 50%;
        max-height: 40%;
        height: auto;
        margin: 0 auto;
        padding-bottom: 0;
        order: -1;
    }

    .about-image img {
        position: relative;
        max-width: 40%;
        max-height: 40%;
        height: auto;
        margin: 0 auto;
        padding-bottom: 0;
        order: 1;
    }
    
    .about-text {
        max-width: 100%;
        margin: 0 auto;
        padding-right: 0;
        text-align: center;
        padding-top: 0.5rem;
    }

    .about-section .section-heading {
        margin-bottom: 0.25rem;
    }

    .education-content {
        flex-direction: column;
        text-align: center;
        padding-top: var(--spacing-lg);
        min-height: auto;
        padding-bottom: 0px;
    }
    
    .education-text {
        max-width: 100%;
        padding-left: 0;
        align-items: center;
        margin: 0 auto;
        order: 2; /* Text below image on mobile */
    }
    
    .education-title {
        text-align: center;
        align-self: center;
    }
    
    .education-image {
        position: relative;
        max-width: 50%;
        max-height: 40%;
        height: auto;
        margin: 0 auto;
        padding-bottom: 0;
        order: 1;
    }


    .education-image img {
        position: relative;
        max-width: 40%;
        max-height: 30%;
        height: auto;
        margin: 0 auto;
        padding-bottom: 0;
        order: 1;
    }

    .timeline {
        padding-left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--primary-color);
        padding-top: 1.5rem;
    }
    
    .timeline-item::before {
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .year {
        margin-bottom: 0.5rem;
    }
    
    .education-image {
        justify-content: center;
    }
        
    .right-aligned {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-hello: 3rem;
        --font-size-name-first: 5rem;
        --font-size-name-rest: 5rem;
        --font-size-designation: 2rem;
        --font-size-specialty: 2rem;
        --font-size-subtitle: 1.8rem;
        --font-size-h3: 1.3rem;
        --container-width: 95%;
    }
    
    .nav-container {
        justify-content: center;
        position: relative; /* For absolute positioning of children */
    }
    
    .nav-links {
        display: none; /* For mobile, implement a hamburger menu */
    }
    
    .hero-content, .about-content, .education-content {
        padding: 0 5%;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .hello-text {
        font-size: 2.2rem;
    }
    .name {
        font-size: 4rem;
    }
    
    .designation, .specialty {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn {
        width: 100%;
    }
    
    .timeline-item {
        margin-bottom: var(--spacing-lg);
    }

    .about-image {
        max-width: 80%;
    }

    education-image {
        max-width: 80%;
    }
    
    .education-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-hello: 2rem;
        --font-size-name-first: 3.5rem;
        --font-size-name-rest: 3.5rem;
        --font-size-designation: 1.5rem;
        --font-size-specialty: 1.5rem;
        --font-size-subtitle: 1.5rem;
        --font-size-h3: 1.2rem;
    }
    
    .hero-content, .about-content, .education-content {
        padding: 0 3%;
    }

    .hello-text {
        font-size: 2.5rem;
    }
    .name {
        font-size: 3.5rem;
    }
    
    .designation, .specialty {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 90%;
    }
    
    .section-heading {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .line-dot {
        width: 50px;
    }

    .about-image {
        max-width: 90%;
    }
    .education-image {
        max-width: 90%;
    }
    
    .education-title {
        font-size: 2.5rem;
    }
}














/* Resume Section Styles - FIXED VERSION */
.resume-section {
    background-color: var(--section-bg);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.resume-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* Download Button */
.resume-download {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 10;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.download-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.download-btn i {
    margin-right: 8px;
}

/* Resume Container with Two Columns */
.resume-container {
    display: flex;
    margin-top: 60px;
    gap: 40px;
}

.resume-column {
    flex: 1;
}

.left-column {
    position: relative;
}

.right-column {
    position: relative;
}

/* Timeline visual for columns */
.left-column::before,
.right-column::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.left-column::before {
    left: 15px;
}

.right-column::before {
    left: 15px;
}

/* Common block styles for both columns */
.resume-section-block {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: 1;
}

.resume-block-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.resume-block-content {
    color: var(--text-color);
}

.resume-block-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Email styling */
.resume-email {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.resume-email i {
    margin-right: 10px;
}

/* Education items in resume */
.resume-item {
    margin-bottom: 20px;
    position: relative;
}

.resume-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.institution {
    font-weight: 600;
    margin-bottom: 3px;
}

.degree-name {
    color: var(--text-color-secondary);
    font-size: 14px;
}

/* Certification list - FIXED */
.resume-section .certification-list {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.resume-section .certification-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.resume-section .certification-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
}

.resume-section .certification-link {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.resume-section .certification-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.resume-section .certification-link:hover {
    color: var(--primary-color);
}

.resume-section .certification-link:hover::after {
    width: 100%;
}

.resume-section .certification-link i {
    margin-left: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.resume-section .certification-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Experience items */
.experience-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.company-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: -5px;
    top: 5px;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.experience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .resume-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .resume-download {
        position: relative;
        top: auto;
        right: auto;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .left-column::before,
    .right-column::before {
        left: 15px;
    }
}

@media (max-width: 768px) {
    .resume-section-block {
        padding-left: 40px;
    }
    
    .timeline-dot {
        width: 25px;
        height: 25px;
    }
    
    .company-dot {
        width: 12px;
        height: 12px;
    }
    
    .resume-block-title {
        font-size: 1.3rem;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .experience-list li,
    .certification-list li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .resume-section-block {
        padding-left: 35px;
    }
    
    .timeline-dot {
        width: 20px;
        height: 20px;
    }
    
    .resume-block-title {
        font-size: 1.2rem;
    }
    
    .resume-content {
        padding: 0 3%;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .experience-list li,
    .certification-list li {
        padding-left: 15px;
    }
}

























/* Skills Section Styles */
.skills-section {
    background-color: var(--section-bg-alt);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.skills-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* Skills container with two columns */
.skills-container {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}

.skills-column {
    flex: 1;
    position: relative;
}

.left-column::before,
.right-column::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.left-column::before {
    left: 15px;
}

.right-column::before {
    left: 15px;
}

/* Category Styles */
.skills-category {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px;
}

.category-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: 1;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Skills Grid Layout */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

/* Individual Skill Item */
.skill-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.skill-name {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Chart Styles */
.skill-chart {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Circular Chart */
.circular-chart {
    width: 100%;
    max-width: 80px;
    margin: 0 auto;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: #00E0FF; /* Cyan color like in your design */
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }
}

.percentage {
    fill: #fff;
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: 600;
}

/* Semi-Circle Chart */
.semi-circular-chart {
    width: 100%;
    max-width: 80px;
    margin: 0 auto;
    transform: rotate(-90deg);
}

.semicircle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.8;
}

.semicircle {
    fill: none;
    stroke: #00E0FF;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
    transform-origin: center;
}

.semi-circular-chart .percentage {
    transform: rotate(90deg);
    transform-origin: center;
}

/* Bar Chart */
.bar-chart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-container {
    width: 100%;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, #0088ff, #00E0FF);
    border-radius: 10px;
    transition: width 1.5s ease-out;
    position: relative;
}

.bar-text {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 10px;
    font-weight: 600;
}

/* Animation for skill items on scroll */
.skills-category {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.skills-category.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .skills-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .left-column::before,
    .right-column::before {
        left: 15px;
    }
    
    .category-dot {
        width: 25px;
        height: 25px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .skills-category {
        padding-left: 40px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .skill-name {
        font-size: 0.9rem;
    }
    
    .skill-chart {
        height: 80px;
    }
    
    .circular-chart,
    .semi-circular-chart {
        max-width: 70px;
    }
}

@media (max-width: 576px) {
    .skills-category {
        padding-left: 35px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .skill-item {
        padding: 10px;
    }
    
    .category-dot {
        width: 20px;
        height: 20px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .skill-name {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .skill-chart {
        height: 70px;
    }
    
    .circular-chart,
    .semi-circular-chart {
        max-width: 60px;
    }
}

/* Projects Section Styles */
.projects-section {
    background-color: var(--section-bg);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* Project Grid Layout */
.projects-grid {
    opacity: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Project Card Styles */
.project-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* Project Header */
.project-header {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.project-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Project Body */
.project-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-description {
    color: var(--text-color-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* Project Footer */
.project-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-item {
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tech-item:hover {
    background-color: rgba(255, 215, 0, 0.3);
}

/* Animation Classes for Projects Section */
.projects-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.projects-grid.appear {
    opacity: 1;
    transform: translateY(0);
}

.project-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-card.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for Project Cards */
.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }
.project-card:nth-child(4) { transition-delay: 0.4s; }
.project-card:nth-child(5) { transition-delay: 0.5s; }
.project-card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .projects-content {
        padding: 0 3%;
    }
    
    .project-header {
        padding: 15px 15px 8px;
    }
    
    .project-body {
        padding: 15px;
    }
    
    .project-footer {
        padding: 12px 15px;
    }
    
    .tech-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}


/* Certification Section Styles */
.certification-section {
    background-color: var(--section-bg);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.certification-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* Featured Certifications */
.featured-certifications {
    margin-top: 40px;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.featured-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.featured-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.cert-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #FF5252);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.cert-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.cert-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.cert-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cert-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.4;
}

.cert-details {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.cert-details li {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.cert-details li span {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.cert-verify {
    margin-top: auto;
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    align-self: center;
}

.cert-verify i {
    margin-right: 8px;
}

.cert-verify:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Additional Certifications */
.additional-certifications {
    margin-top: 60px;
}

.additional-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.additional-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

/* Certification list styling */
.certification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certification-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.certification-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.certification-link {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    overflow: hidden;
}

.certification-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.certification-link:hover {
    color: var(--primary-color);
}

.certification-link:hover::after {
    width: 100%;
}

.certification-link i {
    margin-left: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.certification-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Animation Classes for Certification Section */
.cert-card, .certification-list {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cert-card.appear, .certification-list.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .featured-cards {
        gap: 20px;
    }
    
    .cert-card {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .featured-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .cert-card {
        max-width: 300px;
        padding: 20px;
    }
    
    .cert-name {
        font-size: 1.2rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .featured-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cert-card {
        max-width: 100%;
    }
    
    .featured-title, .additional-title {
        font-size: 1.8rem;
    }
    
    .certification-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .certification-content {
        padding: 0 3%;
    }
    
    .featured-title, .additional-title {
        font-size: 1.5rem;
    }
    
    .cert-name {
        font-size: 1.1rem;
    }
    
    .cert-details li {
        font-size: 0.9rem;
    }
    
    .cert-verify {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}


/* Blog Section Styles */
.blogs-section {
    background-color: var(--section-bg-alt);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blogs-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.coming-soon-container.appear {
    opacity: 1;
    transform: translateY(0);
}

.coming-soon-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.coming-soon-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: var(--text-color-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.subscribe-form {
    width: 100%;
    max-width: 600px;
}

.subscribe-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.notification-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.form-control {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    outline: none;
}

.field-valid {
    position: relative;
}

.field-valid::after {
    content: '✓';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 1rem;
}

.subscribe-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.subscribe-btn i {
    margin-right: 8px;
}

.subscribe-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        font-size: 4rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-control {
        width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blogs-content {
        padding: 0 3%;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
}








/* Contact Section Styles */
.contact-section {
    background-color: var(--section-bg);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

/* Contact Info Styles */
.contact-info {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-info.appear {
    opacity: 1;
    transform: translateX(0);
}

.contact-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-detail p {
    color: var(--text-color-secondary);
    font-size: 1rem;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-socials .social-icon {
    width: 45px;
    height: 45px;
}

/* Form Container Styles */
.contact-form-container {
    flex: 1.5;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form-container.appear {
    opacity: 1;
    transform: translateX(0);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-field {
    flex: 1;
    margin-bottom: 20px;
}

.form-field.full-width {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.required {
    color: #FF5252;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

/* Phone input styles */
.phone-input-container {
    display: flex;
    gap: 10px;
}

.country-select {
    width: 150px;
    flex-shrink: 0;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    padding-right: 30px;
}

.phone-input {
    flex-grow: 1;
}

/* Captcha Styles */
.captcha-container {
    margin-bottom: 25px;
}

.captcha-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-code {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    flex: 1;
    text-align: center;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.captcha-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(255, 215, 0, 0.05) 5px,
        rgba(255, 215, 0, 0.05) 10px
    );
    pointer-events: none;
}

.refresh-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Submit Button Styles */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Button Animation */
.submit-btn.sending {
    pointer-events: none;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.submit-btn.sending .btn-text {
    visibility: hidden;
    opacity: 0;
}

.submit-btn.sending::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: submitSpin 1s linear infinite;
}

@keyframes submitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Animation */
.submit-btn.success {
    background-color: #28a745;
    pointer-events: none;
}

.submit-btn.success .btn-text {
    visibility: hidden;
    opacity: 0;
}

.submit-btn.success::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    animation: successPop 0.5s forwards;
}

@keyframes successPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Contact Form Validation Styles */
.field-error {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 5px;
    animation: fadeIn 0.3s ease-in-out;
    padding-left: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 1px rgba(255, 77, 77, 0.2) !important;
}

.input-error:focus {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2) !important;
}

.label-error {
    color: #ff4d4d !important;
}

.general-error {
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff4d4d;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
    
    .contact-info, .contact-form-container {
        padding: 30px 20px;
    }
    
    .phone-input-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-content {
        padding: 0 3%;
    }
    
    .captcha-field {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .refresh-btn {
        align-self: flex-end;
    }
}


/* FAQ Section Styles */
.faq-section {
    background-color: var(--section-bg-alt);
    padding-top: 55px;
    padding-bottom: var(--spacing-xl);
    min-height: 100vh;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-intro.appear {
    opacity: 1;
    transform: translateY(0);
}

.faq-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-intro-text {
    font-size: 1.2rem;
    color: var(--text-color-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.faq-item.appear {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
    flex-grow: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    background-color: rgba(255, 215, 0, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-color-secondary);
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 30px 25px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    margin: 0 0 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 10px 0 15px 0;
    padding: 0;
    list-style-type: none;
}

.faq-answer ul li {
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.faq-answer ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Animation delay for staggered appearance */
.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }
.faq-item:nth-child(6) { transition-delay: 0.6s; }
.faq-item:nth-child(7) { transition-delay: 0.7s; }
.faq-item:nth-child(8) { transition-delay: 0.8s; }

/* Responsive Styles */
@media (max-width: 992px) {
    .faq-intro-title {
        font-size: 2.2rem;
    }
    
    .faq-intro-text {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-intro-title {
        font-size: 2rem;
    }
    
    .faq-intro-text {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

@media (max-width: 576px) {
    .faq-content {
        padding: 0 3%;
    }
    
    .faq-intro-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}












/* Footer Styles - FIXED VERSION */
.site-footer {
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF5252);
    z-index: 1;
}

.footer-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

/* Top footer with columns */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

/* Logo and intro section */
.footer-logo-container {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.logo-placeholder.appear {
    opacity: 1;
    transform: translateY(0);
}

.footer-intro {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.footer-intro.appear {
    opacity: 1;
    transform: translateY(0);
}

.footer-intro p {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Links columns */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 1;
    min-width: 280px;
}

.footer-links-column {
    min-width: 140px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.footer-links-column:nth-child(1) { transition-delay: 0.2s; }
.footer-links-column:nth-child(2) { transition-delay: 0.3s; }

.footer-links-column.appear {
    opacity: 1;
    transform: translateY(0);
}

.footer-links-column h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: var(--text-color-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-column ul li a i {
    margin-right: 8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-links-column ul li a:hover i {
    transform: translateX(2px);
}

/* Footer form validation styles */
.footer-subscribe-form .form-control.input-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.2);
}

.footer-form-error {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.footer-form-error i {
    margin-right: 8px;
}

.footer-form-error.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

.footer-form-message.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.footer-form-message i {
    margin-right: 8px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Input focus style */
.footer-subscribe-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.2);
}

/* Newsletter section */
.footer-newsletter {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.footer-newsletter.appear {
    opacity: 1;
    transform: translateY(0);
}

.footer-newsletter h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-newsletter p {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-subscribe-form .form-group {
    display: flex;
    margin-bottom: 25px;
    width: 100%;
}

.footer-subscribe-form .form-control {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px; /* Increased height */
    border-radius: 50px 0 0 50px;
    padding: 0 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-subscribe-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
    outline: none;
}

.footer-subscribe-form .subscribe-btn {
    width: 50px;
    height: 48px; /* Matched height */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-subscribe-form .subscribe-btn:hover {
    background-color: #f0c800;
    transform: translateY(-2px);
}

.footer-subscribe-form .subscribe-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Spinner for loading state */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

/* Bottom footer - FIXED */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    opacity: 1 !important; /* FIXED: Always visible */
    transform: translateY(0) !important; /* FIXED: No initial transform */
    transition: none !important; /* FIXED: No transition */
}

.footer-copyright p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-credit p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credit i {
    color: #ff4d4d;
    margin: 0 2px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.footer-form-message {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease;
    transition: all 0.3s ease;
    width: 100%;
}

/* Form success notification */
.footer-form-success {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.footer-form-success i {
    margin-right: 8px;
}

.footer-form-success.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo-container,
    .footer-links,
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal-links {
        margin: 15px 0;
    }

    .footer-content {
        padding: 0 3%;
    }
    
    .footer-links-column h3,
    .footer-newsletter h3 {
        font-size: 1.1rem;
    }
    
    .footer-intro p,
    .footer-newsletter p,
    .footer-links-column ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-subscribe-form .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-subscribe-form .form-control {
        width: 100%;
        height: 52px; 
        border-radius: 50px;
        padding: 0 25px;
        font-size: 16px;
    }
    
    .footer-subscribe-form .subscribe-btn {
        width: 100%;
        height: 52px; /* Matched height */
        border-radius: 50px;
        font-size: 18px;
    }

    .footer-form-message {
        border-radius: 15px;
        padding: 12px 15px;
    }
    
    .footer-form-error,
    .footer-form-success {
        font-size: 0.85rem;
        border-radius: 8px;
    }
}

/* Animation delay for staggered appearance in footer */
.footer-links-column:nth-child(1) { transition-delay: 0.2s; }
.footer-links-column:nth-child(2) { transition-delay: 0.3s; }
.footer-newsletter { transition-delay: 0.4s; }
.footer-bottom { transition-delay: 0.5s; }

/* Footer form success notification */

.footer-form-success i {
    margin-right: 8px;
}

.footer-form-success.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--section-bg);
    margin: 0 auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-30px);
    transition: all 0.4s ease;
    opacity: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-color-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-color-secondary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1rem;
}

.modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

.modal-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.modal-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.unsubscribe-btn {
    background-color: #FF5252;
    color: var(--text-color);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.unsubscribe-btn:hover {
    background-color: #FF3333;
    transform: translateY(-3px);
}

.unsubscribe-btn i {
    transition: transform 0.3s ease;
}

.unsubscribe-btn:hover i {
    transform: translateX(3px);
}

/* Button Animation */
.unsubscribe-btn.sending {
    pointer-events: none;
    background-color: #FF5252;
    opacity: 0.8;
}

.unsubscribe-btn.sending .btn-text {
    visibility: hidden;
    opacity: 0;
}

.unsubscribe-btn.sending::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top-color: var(--text-color);
    border-radius: 50%;
    animation: submitSpin 1s linear infinite;
}

.modal-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
    text-align: center;
}

.modal-success {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.modal-error {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.modal-warning {
    background-color: rgba(241, 196, 15, 0.2);
    border: 1px solid rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-input {
        padding: 12px 15px;
    }
    
    .unsubscribe-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}