
/* Hero Section Styles */
:root {
    --primary-color: #050505; /* Dark blue */
    --secondary-color:#ffffff; /* Black */
    --accent-color: #ff0000; /* Teal accent */
    --text-color: #ffffff;
    --text-secondary: #fffffff1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Cardo', serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0; /* Removed horizontal padding */
    position: fixed;
    width: 89%;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}
nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    padding: 15px 10%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display:flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
    color:#ffffff;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Content */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--accent-color);
}

.hero-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color:#ffffff;
    transform: translateY(-3px);
    box-shadow:#ff0000;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .nav-links {
        display: none;
    }
}
/* About Section Styles */
.section {
    padding: 100px 0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text h3 {
    color: var(--accent-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.edu-item {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.edu-item h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.institution {
    color: var(--text-secondary);
    font-style: italic;
}

.mission-list {
    list-style: none;
    margin-top: 15px;
}

.mission-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.mission-list i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Stats Cards */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-secondary);
}

/* Personal Info */
.personal-info {
    grid-column: span 2;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.personal-info h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
}

.info-item span {
    color: var(--accent-color);
    font-weight: 600;
    min-width: 100px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .personal-info {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-item span {
        min-width: auto;
    }
}
/* Skills Section Styles */
#skills {
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.skills-column {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skills-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.skills-header i {
    font-size: 1.8rem;
}

.skills-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.skill-category {
    margin-bottom: 30px;
}

.skill-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.skill-category i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.skills-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent-color);
}

.skills-note i {
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.skills-note p {
    margin: 0;
    color: var(--text-secondary);
}

.skills-note strong {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .skills-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .skill-info {
        font-size: 0.85rem;
    }
    
    .skills-note {
        flex-direction: column;
        text-align: center;
    }
    
    .skills-note i {
        margin-bottom: 10px;
    }
}
/* Portfolio Section Styles */
#portfolio {
    background-color: var(--primary-color);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-links {
    opacity: 1;
}

.portfolio-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.portfolio-links a:hover {
    background-color: var(--text-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tech span {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}
/* Blog Section Styles */
#blog {
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
    color: var(--text-secondary);
}

.medium-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials Section Styles */
#testimonials {
    background-color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    img {
        width: 100px;
        height: 100px;
        max-width: 100%;
        object-fit: cover;
        border-radius: 100px;
    }
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: 8px;
}
    

    
    
/* ==================== */
/* Contact Section */
/* ==================== */
#contact {
    background-color: #000000; /* Dark blue */
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background-color: #000000; /* Slightly lighter blue */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-card h3, .contact-form-container h3 {
    color:#ff0000; /* orange accent */
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #ff0000;
    font-size: 1.2rem;
}

.contact-method h4 {
    color: #ccd6f6;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-method a, .contact-method p {
    color: #8892b0;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #ff0000;
}

.social-section {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Specific colors for each platform */
.social-icons .fa-linkedin-in:hover { background: #00aaff; }
.social-icons .fa-github:hover { background: #9e9e9e; }
.social-icons .fa-twitter:hover { background: #1da1f2; }
.social-icons .fa-whatsapp:hover { background: #ff0000; }
.social-icons .fa-instagram:hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons .fa-reddit-alien:hover { background: #ff2200; }


/* Contact Form */
.contact-form-container {
    background-color: #112240;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    display: block;
    color: #ccd6f6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #0a192f;
    border: 1px solid #233554;
    border-radius: 4px;
    color: #ccd6f6;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64ffda;
}

.submit-btn {
    background-color: #64ffda;
    color: #0a192f;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #52d6c2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-card, .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
/* ==================== */
/* Enhanced Footer Styles */
/* ==================== */
.copyright-footer {
    background-color: #000000;
    padding: 50px 0 20px;
    border-top: 1px solid #233554;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.logo {
    position: relative;
    font-size: 1.8rem;
    color: #e6f1ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.logo span {
    color:#ff0000;
}

.flag-icon {
    width: 30px;
    height: 20px;
    margin-right: 12px;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.tagline {
    color: #8892b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff0000;
    color: #ccd6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #ff0000;
    color: #0a192f;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #ccd6f6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #64ffda;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #8892b0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-links i {
    font-size: 0.7rem;
    color: #ff0000;
}

.legal-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.copyright-notice {
    margin-bottom: 20px;
}

.copyright-notice p {
    color: #8892b0;
    margin-bottom: 10px;
}


.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.policy-links a {
    color:#ff0000;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.policy-links a:hover {
    text-decoration: underline;
}

.policy-links i {
    font-size: 0.8rem;
}



/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .legal-info {
        grid-column: span 2;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .back-to-top {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .legal-info {
        grid-column: span 1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        margin-top: 30px;
    }
}
