/* main */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    min-height: 100vh;
    padding: 100px 0 50px;
    position: relative;
}

.section:nth-child(even) {
    background: #f8f9ff;
}

.section:nth-child(odd) {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 80px 0 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}
/* NAVBAR */
#navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000; /* higher than other content */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    color: #764ba2;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 9999;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #667eea;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 10001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.search-box {
    display: none;
    position: absolute;
    right: 20px;
    top: 60px;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10001;
}

.search-box.active {
    display: block;
}

.search-input-container {
    display: flex;
    gap: 6px;
}

.search-input-container input {
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 4px;
    flex: 1;
}

.search-close {
    background: #eee;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .search-box {
        width: 220px;
        top: 75px;
        right: 10px;
    }
}
/* HOME */
#home {
    background: #f8f9ff;
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}

.home-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.home-content {
    padding: 2rem 0;
}

.greeting {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-accent {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.home-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.home-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #333;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #333;
    padding: 14px 28px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #333;
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.image-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 8s linear infinite;
}

.profile-placeholder {
    font-size: 8rem;
    color: #667eea;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    align-self:center ;
}

.social_media {
    margin-top: 10px;
}
.social_media a {
    text-decoration: none; 
    color: inherit;       
}
.social_media i {
    text-decoration: none;
    color: #333;
    font-size: 30px;
    margin: 15px;
    transition: 0.3s ease;
}
.social_media i:hover {
    transform: scale(1.4);
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
.home-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.greeting {
    animation-delay: 0.2s;
}

.main-title {
    animation-delay: 0.4s;
}

.home-description {
    animation-delay: 0.6s;
}

.home-buttons {
    animation-delay: 0.8s;
}

.image-circle {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-layout {
        gap: 3rem;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .image-circle {
        width: 350px;
        height: 350px;
    }
    
    .profile-placeholder {
        font-size: 7rem;
    }
}

@media (max-width: 768px) {
    #home {
        padding: 100px 0 60px;
    }
    
    .home-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .home-description {
        margin: 0 auto 2rem;
    }
    
    .image-circle {
        width: 300px;
        height: 300px;
        order: -1;
    }
    
    .profile-placeholder {
        font-size: 6rem;
    }
    
    .home-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .greeting {
        font-size: 1.1rem;
    }
    
    .home-description {
        font-size: 1.1rem;
    }
    
    .image-circle {
        width: 250px;
        height: 250px;
    }
    
    .profile-placeholder {
        font-size: 5rem;
    }
    
    .home-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
}
/* SKILLS */
#skills {
    background: #f8f9ff;
}
.section-title-skills{
    font-weight: 700; 
    font-size: 100px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1;
    transition: color 0.5s ease;
}
.skillsdot{
    color: purple;
}
.section-title-skills::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #f7df07;
  border-radius: 10px;
  transition: width 0.5s ease;
  z-index: -1;
}

.section-title-skills:hover::before {
  width: 100%;
}

.section-title-skills:hover {
  color: #333;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    place-items:center;
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.1) rotate(10deg);
}
.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: center;
}
.skill-card:hover h3{
    font-size: 1.5rem;
    background-color: beige; 
    border-radius: 10px;
}
.skill-card ul {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    list-style-type: none;
    text-align: center;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .skill-card {
        padding: 2rem 1.5rem;
    }
    
    .skill-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
/* EXPERIENCES */
#experience {
    max-width: 1000px; 
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap; 
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    gap: 30px; 
}

.experience-tabs {
    display: flex;
    flex-direction: column;
    border-left: 4px solid #ccc;
    padding-left: 20px;
    min-width: 150px; 
    flex-shrink: 0;
}

.experience-tabs div {
    padding: 12px 0; 
    cursor: pointer;
    color: #555;
    font-weight: 500;
    transition: color 0.3s, font-weight 0.3s;
    font-size: 16px; 
}

.experience-tabs div.active {
    color: #7c4dff;
    font-weight: 600;
    position: relative;
}

.experience-tabs div.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #7c4dff;
    border-radius: 2px;
}


.experience-content {
    flex: 1;
    min-width: 300px; 
}
.experience-content:hover h3{
    font-size: 1.6rem;
    background-color: beige;
    border-radius: 10px;
}

.experience-content h3 {
    font-size: 24px; 
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}


.experience-content .duration {
    font-size: 15px; 
    color: #888;
    margin-bottom: 20px;
}


.experience-content ul {
    list-style: none;
    padding-left: 0;
}

.experience-content ul li { 
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    font-size: 17px; 
    color: #555;
}

.experience-content ul li::before {
    content: '✔';
    color: #7c4dff;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.2;
}
.experience-tabs div:hover {
    color: #7c4dff;
}
.section-title-experience{
    font-weight: 700; 
    font-size: 100px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1;
    transition: color 0.5s ease;
}
.skillsdot{
    color: purple;
}
.section-title-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #f7df07;
  border-radius: 10px;
  transition: width 0.5s ease;
  z-index: -1;
}

.section-title-experience:hover::before {
  width: 100%;
}

.section-title-experience:hover {
  color: #333;
}
@media (max-width: 768px) {
    #experience {
        flex-direction: column;
        margin: 30px auto;
        padding: 20px;
        gap: 20px;
    }

    .experience-tabs {
        flex-direction: row;
        border-left: none;
        border-bottom: 2px solid #ccc;
        padding-left: 0;
        padding-bottom: 10px;
        min-width: auto;
        overflow-x: auto;
        gap: 10px;
    }

    .experience-tabs div {
        padding: 8px 12px;
        font-size: 14px;
    }

    .experience-tabs div.active::before {
        left: 50%;
        bottom: -8px;
        top: auto;
        transform: translateX(-50%);
        width: 24px;
        height: 4px;
        border-radius: 2px;
    }

    .experience-content {
        min-width: 100%;
    }

    .experience-content h3 {
        font-size: 20px;
    }

    .experience-content ul li {
        font-size: 16px;
    }

    .section-title-experience {
        font-size: 60px;
    }
}
@media (max-width: 480px) {
    #experience {
        padding: 15px;
        gap: 15px;
    }

    .experience-tabs {
        flex-direction: column;
        border-bottom: none;
        border-left: 4px solid #ccc;
    }

    .experience-tabs div {
        padding: 6px 0;
        font-size: 13px;
    }

    .experience-tabs div.active::before {
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 18px;
    }

    .experience-content h3 {
        font-size: 18px;
    }

    .experience-content .duration {
        font-size: 14px;
    }

    .experience-content ul li {
        font-size: 15px;
    }

    .section-title-experience {
        font-size: 40px;
        padding: 0.3rem 0.6rem;
    }
}
/* MY PRPOJECTS */

#projects {
    background: white;
}
.section-title{
    font-weight: 700;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.project-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    padding: 10px 20px;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.project-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.project-link:first-child:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .project-link {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        margin-top: 2rem;
    }
    
    .project-image {
        height: 180px;
    }
}
/* ABOUT */
#about {
    background: #f8f9ff;
}
.section-title-about{
    font-weight: 700; 
    font-size: 100px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1;
    transition: color 0.5s ease;
}
.section-title-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #f7df07;
  border-radius: 10px;
  transition: width 0.5s ease;
  z-index: -1;
}

.section-title-about:hover::before {
  width: 100%;
}

.section-title-about:hover {
  color: #333;
}
.about-content {
    
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.stat {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9ff;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h4 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}
/* CONTACT */
/* contact.css - Contact section styles */

#contact {
    background: #f8f9ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.social-link {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
}
/* FOOTER */
.footer {
  background: white;
  color: black;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;

}

.footer-container h3 {
  color: black;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
  opacity: 0.7;
}

.footer-links ul li a:hover {
  color: #000000;
  opacity: 1.3;
}

.footer-contact p {
  margin: 0.3rem 0;
  font-size: 0.9rem;;
}
.footer-contact p span{
    font-weight: 700;
}
.footer-contact a {
    font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.footer-social a {
  color: #ddd;
  font-size: 20px;
  margin-right: 12px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 1.5;
  transform: scale(1.3);
  color: #000000;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #000000;
  opacity: 0.5;
}
